diff --git a/.claude/settings.local.json b/.claude/settings.local.json new file mode 100644 index 0000000..c2deff4 --- /dev/null +++ b/.claude/settings.local.json @@ -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)" + ] + } +} diff --git a/.copilot/config.json b/.copilot/config.json new file mode 100644 index 0000000..d5b872e --- /dev/null +++ b/.copilot/config.json @@ -0,0 +1,3 @@ +{ + "defaultModel": "gpt-5-mini" +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..eeb687c --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "cmake.sourceDirectory": "/Users/wmodderman/Work/personal/loramodem/app" +} \ No newline at end of file diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..d9da90d --- /dev/null +++ b/CLAUDE.md @@ -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/.overlay +- Kconfig: prj.conf (shared), boards/.conf (board-specific) +- After .conf edits, verify against build/zephyr/.config diff --git a/README.md b/README.md new file mode 100644 index 0000000..92f1efe --- /dev/null +++ b/README.md @@ -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 `` with your board's Zephyr name (e.g., `heltec_wifi_lora32_v2`). + ```sh + west build -b . + ``` + 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/) diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt index 6bf0fca..0d27747 100644 --- a/app/CMakeLists.txt +++ b/app/CMakeLists.txt @@ -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}) diff --git a/app/Kconfig b/app/Kconfig index 85e0a5a..fc34bf9 100644 --- a/app/Kconfig +++ b/app/Kconfig @@ -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" diff --git a/app/prj.conf b/app/prj.conf index 993c27a..632da6a 100644 --- a/app/prj.conf +++ b/app/prj.conf @@ -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 diff --git a/app/src/lora_modem.c b/app/src/lora_modem.c index 3c2746b..57d6634 100644 --- a/app/src/lora_modem.c +++ b/app/src/lora_modem.c @@ -31,10 +31,22 @@ 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 */ - default: return BW_125_KHZ; + 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) { diff --git a/app/src/lora_modem.h b/app/src/lora_modem.h index 505a149..4151c27 100644 --- a/app/src/lora_modem.h +++ b/app/src/lora_modem.h @@ -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 */ diff --git a/boards/heltec/heltec_meshpocket/board.yml b/boards/heltec/heltec_meshpocket/board.yml index bdc506b..e06590c 100644 --- a/boards/heltec/heltec_meshpocket/board.yml +++ b/boards/heltec/heltec_meshpocket/board.yml @@ -2,6 +2,5 @@ board: name: heltec_meshpocket full_name: "Heltec MeshPocket" vendor: heltec - url: https://heltec.org/project/mesh-pocket/ socs: - name: nrf52840 diff --git a/boards/heltec/heltec_t114/board.yml b/boards/heltec/heltec_t114/board.yml index 66ec7b8..1e30eac 100644 --- a/boards/heltec/heltec_t114/board.yml +++ b/boards/heltec/heltec_t114/board.yml @@ -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 diff --git a/boards/heltec/heltec_wifi_lora32_v3/board.yml b/boards/heltec/heltec_wifi_lora32_v3/board.yml index 4b2b4a8..394535f 100644 --- a/boards/heltec/heltec_wifi_lora32_v3/board.yml +++ b/boards/heltec/heltec_wifi_lora32_v3/board.yml @@ -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: diff --git a/boards/heltec/heltec_wifi_lora32_v4/board.yml b/boards/heltec/heltec_wifi_lora32_v4/board.yml index f6d279e..9b883ee 100644 --- a/boards/heltec/heltec_wifi_lora32_v4/board.yml +++ b/boards/heltec/heltec_wifi_lora32_v4/board.yml @@ -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: diff --git a/boards/lilygo/lilygo_tbeam/board.yml b/boards/lilygo/lilygo_tbeam/board.yml index 5fd7063..a242863 100644 --- a/boards/lilygo/lilygo_tbeam/board.yml +++ b/boards/lilygo/lilygo_tbeam/board.yml @@ -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: diff --git a/boards/lilygo/ttgo_lora32.conf b/boards/lilygo/ttgo_lora32.conf new file mode 100644 index 0000000..b97ac6e --- /dev/null +++ b/boards/lilygo/ttgo_lora32.conf @@ -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 diff --git a/boards/lilygo/ttgo_lora32.overlay b/boards/lilygo/ttgo_lora32.overlay new file mode 100644 index 0000000..a3a2086 --- /dev/null +++ b/boards/lilygo/ttgo_lora32.overlay @@ -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; + }; +}; diff --git a/boards/rak/rak_wismesh_pocket/board.yml b/boards/rak/rak_wismesh_pocket/board.yml index 6a79ce5..f322526 100644 --- a/boards/rak/rak_wismesh_pocket/board.yml +++ b/boards/rak/rak_wismesh_pocket/board.yml @@ -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 diff --git a/boards/rak/rak_wismesh_tag/board.yml b/boards/rak/rak_wismesh_tag/board.yml index bb9a9e7..abf7b74 100644 --- a/boards/rak/rak_wismesh_tag/board.yml +++ b/boards/rak/rak_wismesh_tag/board.yml @@ -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 diff --git a/boards/seeed/seeed_wio_tracker/board.yml b/boards/seeed/seeed_wio_tracker/board.yml index b30f0e0..4f25cba 100644 --- a/boards/seeed/seeed_wio_tracker/board.yml +++ b/boards/seeed/seeed_wio_tracker/board.yml @@ -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 diff --git a/boards/seeed/xiao_wio_sx1262/board.yml b/boards/seeed/xiao_wio_sx1262/board.yml new file mode 100644 index 0000000..d4c87e4 --- /dev/null +++ b/boards/seeed/xiao_wio_sx1262/board.yml @@ -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 diff --git a/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.conf b/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.conf new file mode 100644 index 0000000..cf980a1 --- /dev/null +++ b/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.conf @@ -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 diff --git a/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay b/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay new file mode 100644 index 0000000..13c2465 --- /dev/null +++ b/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay @@ -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"; +}; diff --git a/boards/sensecap/sensecap_t1000e/board.yml b/boards/sensecap/sensecap_t1000e/board.yml index cf58c0a..92ee91a 100644 --- a/boards/sensecap/sensecap_t1000e/board.yml +++ b/boards/sensecap/sensecap_t1000e/board.yml @@ -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 diff --git a/build/.ninja_deps b/build/.ninja_deps new file mode 100644 index 0000000..c6eadd3 Binary files /dev/null and b/build/.ninja_deps differ diff --git a/build/.ninja_log b/build/.ninja_log new file mode 100644 index 0000000..c4be130 --- /dev/null +++ b/build/.ninja_log @@ -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 diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt new file mode 100644 index 0000000..65f5489 --- /dev/null +++ b/build/CMakeCache.txt @@ -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 application’s +// .config file or its default .conf file.Multiple files may be +// listed, e.g. CONF_FILE="prj1.conf;prj2.conf" The CACHED_CONF_FILE +// is internal Zephyr variable used between CMake runs. To change +// CONF_FILE, use the CONF_FILE variable. +CONF_FILE:STRING=/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;;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= + diff --git a/build/CMakeFiles/4.3.0/CMakeASMCompiler.cmake b/build/CMakeFiles/4.3.0/CMakeASMCompiler.cmake new file mode 100644 index 0000000..1c8c245 --- /dev/null +++ b/build/CMakeFiles/4.3.0/CMakeASMCompiler.cmake @@ -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 ) + + diff --git a/build/CMakeFiles/4.3.0/CMakeCCompiler.cmake b/build/CMakeFiles/4.3.0/CMakeCCompiler.cmake new file mode 100644 index 0000000..d9ca77b --- /dev/null +++ b/build/CMakeFiles/4.3.0/CMakeCCompiler.cmake @@ -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 "") diff --git a/build/CMakeFiles/4.3.0/CMakeCXXCompiler.cmake b/build/CMakeFiles/4.3.0/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..5edd9c9 --- /dev/null +++ b/build/CMakeFiles/4.3.0/CMakeCXXCompiler.cmake @@ -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 "") diff --git a/build/CMakeFiles/4.3.0/CMakeSystem.cmake b/build/CMakeFiles/4.3.0/CMakeSystem.cmake new file mode 100644 index 0000000..35c2e00 --- /dev/null +++ b/build/CMakeFiles/4.3.0/CMakeSystem.cmake @@ -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) diff --git a/build/CMakeFiles/4.3.0/CompilerIdC/CMakeCCompilerId.c b/build/CMakeFiles/4.3.0/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..ab3c359 --- /dev/null +++ b/build/CMakeFiles/4.3.0/CompilerIdC/CMakeCCompilerId.c @@ -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 diff --git a/build/CMakeFiles/4.3.0/CompilerIdC/a.out b/build/CMakeFiles/4.3.0/CompilerIdC/a.out new file mode 100755 index 0000000..1484abb Binary files /dev/null and b/build/CMakeFiles/4.3.0/CompilerIdC/a.out differ diff --git a/build/CMakeFiles/4.3.0/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/CMakeFiles/4.3.0/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..b35f567 --- /dev/null +++ b/build/CMakeFiles/4.3.0/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -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; +} diff --git a/build/CMakeFiles/4.3.0/CompilerIdCXX/a.out b/build/CMakeFiles/4.3.0/CompilerIdCXX/a.out new file mode 100755 index 0000000..4fcbfc9 Binary files /dev/null and b/build/CMakeFiles/4.3.0/CompilerIdCXX/a.out differ diff --git a/build/CMakeFiles/CMakeConfigureLog.yaml b/build/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..6bd74b7 --- /dev/null +++ b/build/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,4817 @@ + +--- +events: + - + kind: "find_package-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:28 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + name: "ZephyrBuildConfiguration" + configs: + - + filename: "ZephyrBuild.cps" + kind: "cps" + - + filename: "zephyrbuild.cps" + kind: "cps" + - + filename: "ZephyrBuildConfig.cmake" + kind: "cmake" + - + filename: "zephyrbuild-config.cmake" + kind: "cmake" + version_request: + exact: false + settings: + required: "optional" + quiet: true + global: false + policy_scope: false + bypass_provider: false + names: + - "ZephyrBuild" + search_paths: + - "/Users/wijnand/zephyrproject/zephyr/../*" + path_suffixes: + - "" + paths: + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: false + CMAKE_FIND_USE_INSTALL_PREFIX: true + CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true + CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: false + CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: false + CMAKE_FIND_ROOT_PATH_MODE: "BOTH" + candidates: + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/ZephyrBuildConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/zephyrbuild-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/lib/cps/ZephyrBuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/lib/cps/zephyrbuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/share/cps/ZephyrBuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/share/cps/zephyrbuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/tools/ZephyrBuildConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/tools/zephyrbuild-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/tools/lib/cps/ZephyrBuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/tools/lib/cps/zephyrbuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/tools/share/cps/ZephyrBuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/tools/share/cps/zephyrbuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/bootloader/ZephyrBuildConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/bootloader/zephyrbuild-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/bootloader/lib/cps/ZephyrBuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/bootloader/lib/cps/zephyrbuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/bootloader/share/cps/ZephyrBuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/bootloader/share/cps/zephyrbuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/.venv/ZephyrBuildConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/.venv/zephyrbuild-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/.venv/lib/cps/ZephyrBuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/.venv/lib/cps/zephyrbuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/.venv/share/cps/ZephyrBuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/.venv/share/cps/zephyrbuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/.west/ZephyrBuildConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/.west/zephyrbuild-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/.west/lib/cps/ZephyrBuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/.west/lib/cps/zephyrbuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/.west/share/cps/ZephyrBuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/.west/share/cps/zephyrbuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/modules/ZephyrBuildConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/modules/zephyrbuild-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/modules/lib/cps/ZephyrBuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/modules/lib/cps/zephyrbuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/modules/share/cps/ZephyrBuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/modules/share/cps/zephyrbuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/zephyr/ZephyrBuildConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/zephyr/zephyrbuild-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/zephyr/cmake/ZephyrBuildConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/zephyr/cmake/zephyrbuild-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/zephyr/lib/cps/ZephyrBuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/zephyr/lib/cps/zephyrbuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/zephyr/share/cps/ZephyrBuild.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/zephyr/share/cps/zephyrbuild.cps" + mode: "cps" + reason: "no_exist" + found: null + search_context: + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find_package-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:41 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + name: "ZephyrAppConfiguration" + configs: + - + filename: "ZephyrApp.cps" + kind: "cps" + - + filename: "zephyrapp.cps" + kind: "cps" + - + filename: "ZephyrAppConfig.cmake" + kind: "cmake" + - + filename: "zephyrapp-config.cmake" + kind: "cmake" + version_request: + exact: false + settings: + required: "optional" + quiet: true + global: false + policy_scope: false + bypass_provider: false + names: + - "ZephyrApp" + search_paths: + - "/Volumes/External/Work/radio/loramodem/app" + path_suffixes: + - "" + paths: + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: false + CMAKE_FIND_USE_INSTALL_PREFIX: true + CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true + CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: false + CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: false + CMAKE_FIND_ROOT_PATH_MODE: "BOTH" + candidates: + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/ZephyrAppConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/zephyrapp-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/lib/cps/ZephyrApp.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/lib/cps/zephyrapp.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/share/cps/ZephyrApp.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/share/cps/zephyrapp.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/app/ZephyrAppConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/app/zephyrapp-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/app/lib/cps/ZephyrApp.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/app/lib/cps/zephyrapp.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/app/share/cps/ZephyrApp.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/app/share/cps/zephyrapp.cps" + mode: "cps" + reason: "no_exist" + found: null + search_context: + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/ccache.cmake:10 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:129 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CCACHE_FOUND" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "ccache" + candidate_directories: + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + searched_directories: + - "/Users/wijnand/zephyrproject/.venv/bin/ccache" + - "/Users/wijnand/go/bin/ccache" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/ccache" + - "/Users/wijnand/.rbenv/shims/ccache" + - "/Users/wijnand/.rbenv/bin/ccache" + - "/Users/wijnand/bin/ccache" + - "/Users/wijnand/.local/bin/ccache" + - "/opt/homebrew/sbin/ccache" + found: "/opt/homebrew/bin/ccache" + search_context: + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find_package-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/FindZephyr-sdk.cmake:102 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/FindHostTools.cmake:51 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/dts.cmake:9 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:129 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + name: "Zephyr-sdk" + components: + - + name: "LOAD" + required: false + found: false + configs: + - + filename: "Zephyr-sdk.cps" + kind: "cps" + - + filename: "zephyr-sdk.cps" + kind: "cps" + - + filename: "Zephyr-sdkConfig.cmake" + kind: "cmake" + - + filename: "zephyr-sdk-config.cmake" + kind: "cmake" + version_request: + version: "0.0.0" + version_complete: "0.0.0" + exact: true + settings: + required: "optional" + quiet: true + global: false + policy_scope: true + bypass_provider: false + names: + - "Zephyr-sdk" + search_paths: + - "/usr" + - "/usr/local" + - "/opt" + - "/Users/wijnand" + - "/Users/wijnand/.local" + - "/Users/wijnand/.local/opt" + - "/Users/wijnand/bin" + path_suffixes: + - "" + paths: + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true + CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true + CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true + CMAKE_FIND_ROOT_PATH_MODE: "BOTH" + candidates: + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/lib/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/lib/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/share/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/share/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/.venv/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/.venv/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/.venv/lib/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/.venv/lib/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/.venv/share/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/.venv/share/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/go/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/go/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/go/lib/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/go/lib/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/go/share/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/go/share/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/.nvm/versions/node/v24.12.0/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/.nvm/versions/node/v24.12.0/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/.nvm/versions/node/v24.12.0/lib/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/.nvm/versions/node/v24.12.0/lib/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/.nvm/versions/node/v24.12.0/share/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/.nvm/versions/node/v24.12.0/share/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/.rbenv/shims/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/.rbenv/shims/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/.rbenv/shims/lib/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/.rbenv/shims/lib/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/.rbenv/shims/share/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/.rbenv/shims/share/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/.rbenv/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/.rbenv/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/.rbenv/lib/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/.rbenv/lib/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/.rbenv/share/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/.rbenv/share/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyr-sdk-1.0.0/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyr-sdk-1.0.0/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyr-sdk-1.0.0/cmake/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "insufficient_version" + message: "The version found is not compatible with the version requested." + - + path: "/Users/wijnand/zephyr-sdk-1.0.0/cmake/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/lib/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/lib/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/share/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/share/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/.local/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/.local/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/.local/lib/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/.local/lib/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/.local/share/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/.local/share/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/opt/homebrew/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/opt/homebrew/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/opt/homebrew/lib/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/opt/homebrew/lib/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/opt/homebrew/share/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/opt/homebrew/share/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/local/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/local/lib/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/lib/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/share/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/share/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/System/Cryptexes/App/usr/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/System/Cryptexes/App/usr/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/System/Cryptexes/App/usr/lib/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/System/Cryptexes/App/usr/lib/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/System/Cryptexes/App/usr/share/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/System/Cryptexes/App/usr/share/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/lib/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/share/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/share/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/lib/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/lib/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/share/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/share/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/opt/X11/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/opt/X11/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/opt/X11/lib/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/opt/X11/lib/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/opt/X11/share/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/opt/X11/share/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Library/Apple/usr/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Library/Apple/usr/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Library/Apple/usr/lib/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Library/Apple/usr/lib/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Library/Apple/usr/share/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Library/Apple/usr/share/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Applications/Wireshark.app/Contents/MacOS/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Applications/Wireshark.app/Contents/MacOS/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Applications/Wireshark.app/Contents/MacOS/lib/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Applications/Wireshark.app/Contents/MacOS/lib/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Applications/Wireshark.app/Contents/MacOS/share/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Applications/Wireshark.app/Contents/MacOS/share/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/.cargo/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/.cargo/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/.cargo/lib/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/.cargo/lib/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/.cargo/share/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/.cargo/share/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Applications/iTerm.app/Contents/Resources/utilities/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Applications/iTerm.app/Contents/Resources/utilities/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Applications/iTerm.app/Contents/Resources/utilities/lib/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Applications/iTerm.app/Contents/Resources/utilities/lib/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Applications/iTerm.app/Contents/Resources/utilities/share/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Applications/iTerm.app/Contents/Resources/utilities/share/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyr-sdk-1.0.0/cmake/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "insufficient_version" + message: "The version found is not compatible with the version requested." + - + path: "/Users/wijnand/zephyr-sdk-1.0.0/cmake/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyr-sdk-1.0.0/cmake/lib/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyr-sdk-1.0.0/cmake/lib/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyr-sdk-1.0.0/cmake/share/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyr-sdk-1.0.0/cmake/share/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/opt/Zephyr-sdkConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/opt/zephyr-sdk-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/opt/lib/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/opt/lib/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/opt/share/cps/Zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + - + path: "/opt/share/cps/zephyr-sdk.cps" + mode: "cps" + reason: "no_exist" + found: null + search_context: + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/FindHostTools.cmake:54 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/dts.cmake:9 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:129 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "GPERF" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "gperf" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/" + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + searched_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/gperf" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/gperf" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/gperf" + - "/Users/wijnand/zephyrproject/.venv/bin/gperf" + - "/Users/wijnand/go/bin/gperf" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/gperf" + - "/Users/wijnand/.rbenv/shims/gperf" + - "/Users/wijnand/.rbenv/bin/gperf" + - "/Users/wijnand/bin/gperf" + - "/Users/wijnand/.local/bin/gperf" + - "/opt/homebrew/sbin/gperf" + found: "/opt/homebrew/bin/gperf" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/FindHostTools.cmake:57 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/dts.cmake:9 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:129 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "OPENOCD" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "openocd" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/" + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + found: "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/openocd" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/FindHostTools.cmake:60 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/dts.cmake:9 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:129 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "BOSSAC" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "bossac" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/" + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + searched_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/bossac" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/bossac" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bossac" + - "/Users/wijnand/zephyrproject/.venv/bin/bossac" + - "/Users/wijnand/go/bin/bossac" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/bossac" + - "/Users/wijnand/.rbenv/shims/bossac" + - "/Users/wijnand/.rbenv/bin/bossac" + - "/Users/wijnand/bin/bossac" + - "/Users/wijnand/.local/bin/bossac" + - "/opt/homebrew/sbin/bossac" + - "/opt/homebrew/bin/bossac" + - "/usr/local/bin/bossac" + - "/Users/wijnand/perl5/bin/bossac" + - "/System/Cryptexes/App/usr/bin/bossac" + - "/usr/bin/bossac" + - "/bin/bossac" + - "/usr/sbin/bossac" + - "/sbin/bossac" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/bossac" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/bossac" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/bossac" + - "/opt/pmk/env/global/bin/bossac" + - "/opt/X11/bin/bossac" + - "/Library/Apple/usr/bin/bossac" + - "/Applications/Wireshark.app/Contents/MacOS/bossac" + - "/Users/wijnand/.cargo/bin/bossac" + - "/Applications/iTerm.app/Contents/Resources/utilities/bossac" + found: false + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/FindHostTools.cmake:65 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/dts.cmake:9 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:129 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "IMGTOOL" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "imgtool.py" + - "imgtool" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/" + - "/Users/wijnand/zephyrproject/bootloader/mcuboot/scripts/" + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + searched_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/imgtool.py" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/imgtool" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/imgtool.py" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/imgtool" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/imgtool.py" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/imgtool" + found: "/Users/wijnand/zephyrproject/bootloader/mcuboot/scripts/imgtool.py" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/FindHostTools.cmake:68 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/dts.cmake:9 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:129 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "PTY_INTERFACE" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "winpty" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/" + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + searched_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/winpty" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/winpty" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/winpty" + - "/Users/wijnand/zephyrproject/.venv/bin/winpty" + - "/Users/wijnand/go/bin/winpty" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/winpty" + - "/Users/wijnand/.rbenv/shims/winpty" + - "/Users/wijnand/.rbenv/bin/winpty" + - "/Users/wijnand/bin/winpty" + - "/Users/wijnand/.local/bin/winpty" + - "/opt/homebrew/sbin/winpty" + - "/opt/homebrew/bin/winpty" + - "/usr/local/bin/winpty" + - "/Users/wijnand/perl5/bin/winpty" + - "/System/Cryptexes/App/usr/bin/winpty" + - "/usr/bin/winpty" + - "/bin/winpty" + - "/usr/sbin/winpty" + - "/sbin/winpty" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/winpty" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/winpty" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/winpty" + - "/opt/pmk/env/global/bin/winpty" + - "/opt/X11/bin/winpty" + - "/Library/Apple/usr/bin/winpty" + - "/Applications/Wireshark.app/Contents/MacOS/winpty" + - "/Users/wijnand/.cargo/bin/winpty" + - "/Applications/iTerm.app/Contents/Resources/utilities/winpty" + found: false + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/compiler/gcc/generic.cmake:5 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/FindHostTools.cmake:125 (include)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/dts.cmake:9 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:129 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_C_COMPILER" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/aarch64-zephyr-elf/bin/aarch64-zephyr-elf-gcc" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/" + found: "/Users/wijnand/zephyr-sdk-1.0.0/gnu/aarch64-zephyr-elf/bin/aarch64-zephyr-elf-gcc" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/compiler/gcc/generic.cmake:6 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/FindHostTools.cmake:125 (include)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/dts.cmake:9 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:129 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_GCOV" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/aarch64-zephyr-elf/bin/aarch64-zephyr-elf-gcov" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/" + found: "/Users/wijnand/zephyr-sdk-1.0.0/gnu/aarch64-zephyr-elf/bin/aarch64-zephyr-elf-gcov" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/FindDtc.cmake:19 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/dts.cmake:10 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:129 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "DTC" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "dtc" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/" + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + searched_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/dtc" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/dtc" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/dtc" + - "/Users/wijnand/zephyrproject/.venv/bin/dtc" + - "/Users/wijnand/go/bin/dtc" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/dtc" + - "/Users/wijnand/.rbenv/shims/dtc" + - "/Users/wijnand/.rbenv/bin/dtc" + - "/Users/wijnand/bin/dtc" + - "/Users/wijnand/.local/bin/dtc" + - "/opt/homebrew/sbin/dtc" + found: "/opt/homebrew/bin/dtc" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/compiler/gcc/target.cmake:8 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:103 (include)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_C_COMPILER" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/" + found: "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/compiler/gcc/target.cmake:26 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:103 (include)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_CXX_COMPILER" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-g++" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/" + found: "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-g++" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake:5 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:106 (include)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_OBJCOPY" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objcopy" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/" + found: "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objcopy" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake:6 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:106 (include)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_OBJDUMP" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/" + found: "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake:7 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:106 (include)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_AS" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-as" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/" + found: "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-as" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake:12 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:106 (include)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_AR" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/" + found: "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake:13 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:106 (include)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_RANLIB" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/" + found: "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake:15 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:106 (include)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_READELF" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-readelf" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/" + found: "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-readelf" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake:16 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:106 (include)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_NM" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-nm" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/" + found: "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-nm" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake:17 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:106 (include)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_STRIP" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-strip" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/" + found: "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-strip" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake:19 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake:106 (include)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:25 (find_package)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_GDB" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gdb-py" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/" + found: "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gdb-py" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineSystem.cmake:12 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_UNAME" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "uname" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/" + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + searched_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/uname" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/uname" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/uname" + - "/Users/wijnand/zephyrproject/.venv/bin/uname" + - "/Users/wijnand/go/bin/uname" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/uname" + - "/Users/wijnand/.rbenv/shims/uname" + - "/Users/wijnand/.rbenv/bin/uname" + - "/Users/wijnand/bin/uname" + - "/Users/wijnand/.local/bin/uname" + - "/opt/homebrew/sbin/uname" + - "/opt/homebrew/bin/uname" + - "/usr/local/bin/uname" + - "/Users/wijnand/perl5/bin/uname" + - "/System/Cryptexes/App/usr/bin/uname" + found: "/usr/bin/uname" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineSystem.cmake:207 (message)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + message: | + The target system is: Generic - 4.4.0 - xtensa + The host system is: Darwin - 25.3.0 - arm64 + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeNinjaFindMake.cmake:5 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_MAKE_PROGRAM" + description: "Program used to build from build.ninja files." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "ninja-build" + - "ninja" + - "samu" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/" + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + searched_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/ninja-build" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/ninja" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/samu" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/ninja-build" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/ninja" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/samu" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/ninja-build" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/ninja" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/samu" + - "/Users/wijnand/zephyrproject/.venv/bin/ninja-build" + - "/Users/wijnand/zephyrproject/.venv/bin/ninja" + - "/Users/wijnand/zephyrproject/.venv/bin/samu" + - "/Users/wijnand/go/bin/ninja-build" + - "/Users/wijnand/go/bin/ninja" + - "/Users/wijnand/go/bin/samu" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/ninja-build" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/ninja" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/samu" + - "/Users/wijnand/.rbenv/shims/ninja-build" + - "/Users/wijnand/.rbenv/shims/ninja" + - "/Users/wijnand/.rbenv/shims/samu" + - "/Users/wijnand/.rbenv/bin/ninja-build" + - "/Users/wijnand/.rbenv/bin/ninja" + - "/Users/wijnand/.rbenv/bin/samu" + - "/Users/wijnand/bin/ninja-build" + - "/Users/wijnand/bin/ninja" + - "/Users/wijnand/bin/samu" + - "/Users/wijnand/.local/bin/ninja-build" + - "/Users/wijnand/.local/bin/ninja" + - "/Users/wijnand/.local/bin/samu" + - "/opt/homebrew/sbin/ninja-build" + - "/opt/homebrew/sbin/ninja" + - "/opt/homebrew/sbin/samu" + - "/opt/homebrew/bin/ninja-build" + found: "/opt/homebrew/bin/ninja" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:468 (find_file)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:506 (CMAKE_DETERMINE_COMPILER_ID_WRITE)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:8 (CMAKE_DETERMINE_COMPILER_ID_BUILD)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:122 (CMAKE_DETERMINE_COMPILER_ID)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "file" + variable: "src_in" + description: "Path to a file." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "CMakeCCompilerId.c.in" + candidate_directories: + - "/opt/homebrew/share/cmake/Modules/" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/" + found: "/opt/homebrew/share/cmake/Modules/CMakeCCompilerId.c.in" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:122 (CMAKE_DETERMINE_COMPILER_ID)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc + Build flags: + Id flags: + + The output was: + 0 + + + Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + + The C compiler identification is GNU, found in: + /Volumes/External/Work/radio/loramodem/build/CMakeFiles/4.3.0/CompilerIdC/a.out + + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_DLLTOOL" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "dlltool" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/" + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + searched_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/Users/wijnand/zephyrproject/.venv/bin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/Users/wijnand/go/bin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/Users/wijnand/.rbenv/shims/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/Users/wijnand/.rbenv/bin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/Users/wijnand/bin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/Users/wijnand/.local/bin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/opt/homebrew/sbin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/opt/homebrew/bin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/Users/wijnand/perl5/bin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/System/Cryptexes/App/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/bin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/usr/sbin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/sbin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/opt/pmk/env/global/bin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/opt/X11/bin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/Library/Apple/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/Applications/Wireshark.app/Contents/MacOS/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/Users/wijnand/.cargo/bin/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/Applications/iTerm.app/Contents/Resources/utilities/xtensa-espressif_esp32s3_zephyr-elf-dlltool" + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/dlltool" + - "/Users/wijnand/zephyrproject/.venv/bin/dlltool" + - "/Users/wijnand/go/bin/dlltool" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/dlltool" + - "/Users/wijnand/.rbenv/shims/dlltool" + - "/Users/wijnand/.rbenv/bin/dlltool" + - "/Users/wijnand/bin/dlltool" + - "/Users/wijnand/.local/bin/dlltool" + - "/opt/homebrew/sbin/dlltool" + - "/opt/homebrew/bin/dlltool" + - "/usr/local/bin/dlltool" + - "/Users/wijnand/perl5/bin/dlltool" + - "/System/Cryptexes/App/usr/bin/dlltool" + - "/usr/bin/dlltool" + - "/bin/dlltool" + - "/usr/sbin/dlltool" + - "/sbin/dlltool" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/dlltool" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/dlltool" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/dlltool" + - "/opt/pmk/env/global/bin/dlltool" + - "/opt/X11/bin/dlltool" + - "/Library/Apple/usr/bin/dlltool" + - "/Applications/Wireshark.app/Contents/MacOS/dlltool" + - "/Users/wijnand/.cargo/bin/dlltool" + - "/Applications/iTerm.app/Contents/Resources/utilities/dlltool" + found: false + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_ADDR2LINE" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "xtensa-espressif_esp32s3_zephyr-elf-addr2line" + - "addr2line" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/" + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + found: "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-addr2line" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_TAPI" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "tapi" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/" + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + searched_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/Users/wijnand/zephyrproject/.venv/bin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/Users/wijnand/go/bin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/Users/wijnand/.rbenv/shims/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/Users/wijnand/.rbenv/bin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/Users/wijnand/bin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/Users/wijnand/.local/bin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/opt/homebrew/sbin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/opt/homebrew/bin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/Users/wijnand/perl5/bin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/System/Cryptexes/App/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/bin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/usr/sbin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/sbin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/opt/pmk/env/global/bin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/opt/X11/bin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/Library/Apple/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/Applications/Wireshark.app/Contents/MacOS/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/Users/wijnand/.cargo/bin/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/Applications/iTerm.app/Contents/Resources/utilities/xtensa-espressif_esp32s3_zephyr-elf-tapi" + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/tapi" + - "/Users/wijnand/zephyrproject/.venv/bin/tapi" + - "/Users/wijnand/go/bin/tapi" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/tapi" + - "/Users/wijnand/.rbenv/shims/tapi" + - "/Users/wijnand/.rbenv/bin/tapi" + - "/Users/wijnand/bin/tapi" + - "/Users/wijnand/.local/bin/tapi" + - "/opt/homebrew/sbin/tapi" + - "/opt/homebrew/bin/tapi" + - "/usr/local/bin/tapi" + - "/Users/wijnand/perl5/bin/tapi" + - "/System/Cryptexes/App/usr/bin/tapi" + - "/usr/bin/tapi" + - "/bin/tapi" + - "/usr/sbin/tapi" + - "/sbin/tapi" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/tapi" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/tapi" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/tapi" + - "/opt/pmk/env/global/bin/tapi" + - "/opt/X11/bin/tapi" + - "/Library/Apple/usr/bin/tapi" + - "/Applications/Wireshark.app/Contents/MacOS/tapi" + - "/Users/wijnand/.cargo/bin/tapi" + - "/Applications/iTerm.app/Contents/Resources/utilities/tapi" + found: false + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake:18 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:201 (include)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_C_COMPILER_AR" + description: "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ar" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/" + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + searched_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Users/wijnand/zephyrproject/.venv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Users/wijnand/go/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Users/wijnand/.rbenv/shims/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Users/wijnand/.rbenv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Users/wijnand/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Users/wijnand/.local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/opt/homebrew/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/opt/homebrew/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Users/wijnand/perl5/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/System/Cryptexes/App/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/usr/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/opt/pmk/env/global/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/opt/X11/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Library/Apple/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Applications/Wireshark.app/Contents/MacOS/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Users/wijnand/.cargo/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Applications/iTerm.app/Contents/Resources/utilities/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Users/wijnand/zephyrproject/.venv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Users/wijnand/go/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Users/wijnand/.rbenv/shims/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Users/wijnand/.rbenv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Users/wijnand/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Users/wijnand/.local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/opt/homebrew/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/opt/homebrew/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Users/wijnand/perl5/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/System/Cryptexes/App/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/usr/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/opt/pmk/env/global/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/opt/X11/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Library/Apple/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Applications/Wireshark.app/Contents/MacOS/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Users/wijnand/.cargo/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Applications/iTerm.app/Contents/Resources/utilities/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Users/wijnand/zephyrproject/.venv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Users/wijnand/go/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Users/wijnand/.rbenv/shims/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Users/wijnand/.rbenv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Users/wijnand/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Users/wijnand/.local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/opt/homebrew/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/opt/homebrew/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Users/wijnand/perl5/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/System/Cryptexes/App/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/usr/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/opt/pmk/env/global/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/opt/X11/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Library/Apple/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Applications/Wireshark.app/Contents/MacOS/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Users/wijnand/.cargo/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Applications/iTerm.app/Contents/Resources/utilities/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + found: "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake:30 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:201 (include)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_C_COMPILER_RANLIB" + description: "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/" + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + searched_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Users/wijnand/zephyrproject/.venv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Users/wijnand/go/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Users/wijnand/.rbenv/shims/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Users/wijnand/.rbenv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Users/wijnand/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Users/wijnand/.local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/opt/homebrew/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/opt/homebrew/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Users/wijnand/perl5/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/System/Cryptexes/App/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/usr/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/opt/pmk/env/global/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/opt/X11/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Library/Apple/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Applications/Wireshark.app/Contents/MacOS/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Users/wijnand/.cargo/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Applications/iTerm.app/Contents/Resources/utilities/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Users/wijnand/zephyrproject/.venv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Users/wijnand/go/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Users/wijnand/.rbenv/shims/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Users/wijnand/.rbenv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Users/wijnand/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Users/wijnand/.local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/opt/homebrew/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/opt/homebrew/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Users/wijnand/perl5/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/System/Cryptexes/App/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/usr/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/opt/pmk/env/global/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/opt/X11/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Library/Apple/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Applications/Wireshark.app/Contents/MacOS/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Users/wijnand/.cargo/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Applications/iTerm.app/Contents/Resources/utilities/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Users/wijnand/zephyrproject/.venv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Users/wijnand/go/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Users/wijnand/.rbenv/shims/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Users/wijnand/.rbenv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Users/wijnand/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Users/wijnand/.local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/opt/homebrew/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/opt/homebrew/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Users/wijnand/perl5/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/System/Cryptexes/App/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/usr/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/opt/pmk/env/global/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/opt/X11/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Library/Apple/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Applications/Wireshark.app/Contents/MacOS/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Users/wijnand/.cargo/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Applications/iTerm.app/Contents/Resources/utilities/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + found: "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:468 (find_file)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:506 (CMAKE_DETERMINE_COMPILER_ID_WRITE)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:8 (CMAKE_DETERMINE_COMPILER_ID_BUILD)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:125 (CMAKE_DETERMINE_COMPILER_ID)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "file" + variable: "src_in" + description: "Path to a file." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "CMakeCXXCompilerId.cpp.in" + candidate_directories: + - "/opt/homebrew/share/cmake/Modules/" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/" + found: "/opt/homebrew/share/cmake/Modules/CMakeCXXCompilerId.cpp.in" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:125 (CMAKE_DETERMINE_COMPILER_ID)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-g++ + Build flags: + Id flags: + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + + The CXX compiler identification is GNU, found in: + /Volumes/External/Work/radio/loramodem/build/CMakeFiles/4.3.0/CompilerIdCXX/a.out + + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake:18 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:207 (include)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_CXX_COMPILER_AR" + description: "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ar" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/" + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + searched_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Users/wijnand/zephyrproject/.venv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Users/wijnand/go/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Users/wijnand/.rbenv/shims/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Users/wijnand/.rbenv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Users/wijnand/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Users/wijnand/.local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/opt/homebrew/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/opt/homebrew/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Users/wijnand/perl5/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/System/Cryptexes/App/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/usr/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/opt/pmk/env/global/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/opt/X11/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Library/Apple/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Applications/Wireshark.app/Contents/MacOS/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Users/wijnand/.cargo/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Applications/iTerm.app/Contents/Resources/utilities/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14.3" + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Users/wijnand/zephyrproject/.venv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Users/wijnand/go/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Users/wijnand/.rbenv/shims/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Users/wijnand/.rbenv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Users/wijnand/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Users/wijnand/.local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/opt/homebrew/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/opt/homebrew/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Users/wijnand/perl5/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/System/Cryptexes/App/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/usr/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/opt/pmk/env/global/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/opt/X11/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Library/Apple/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Applications/Wireshark.app/Contents/MacOS/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Users/wijnand/.cargo/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Applications/iTerm.app/Contents/Resources/utilities/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-14" + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Users/wijnand/zephyrproject/.venv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Users/wijnand/go/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Users/wijnand/.rbenv/shims/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Users/wijnand/.rbenv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Users/wijnand/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Users/wijnand/.local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/opt/homebrew/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/opt/homebrew/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Users/wijnand/perl5/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/System/Cryptexes/App/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/usr/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/opt/pmk/env/global/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/opt/X11/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Library/Apple/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Applications/Wireshark.app/Contents/MacOS/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Users/wijnand/.cargo/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + - "/Applications/iTerm.app/Contents/Resources/utilities/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar14" + found: "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake:30 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:207 (include)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:129 (project)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_CXX_COMPILER_RANLIB" + description: "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/" + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + searched_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Users/wijnand/zephyrproject/.venv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Users/wijnand/go/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Users/wijnand/.rbenv/shims/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Users/wijnand/.rbenv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Users/wijnand/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Users/wijnand/.local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/opt/homebrew/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/opt/homebrew/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Users/wijnand/perl5/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/System/Cryptexes/App/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/usr/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/opt/pmk/env/global/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/opt/X11/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Library/Apple/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Applications/Wireshark.app/Contents/MacOS/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Users/wijnand/.cargo/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Applications/iTerm.app/Contents/Resources/utilities/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14.3" + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Users/wijnand/zephyrproject/.venv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Users/wijnand/go/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Users/wijnand/.rbenv/shims/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Users/wijnand/.rbenv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Users/wijnand/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Users/wijnand/.local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/opt/homebrew/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/opt/homebrew/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Users/wijnand/perl5/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/System/Cryptexes/App/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/usr/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/opt/pmk/env/global/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/opt/X11/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Library/Apple/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Applications/Wireshark.app/Contents/MacOS/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Users/wijnand/.cargo/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Applications/iTerm.app/Contents/Resources/utilities/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-14" + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Users/wijnand/zephyrproject/.venv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Users/wijnand/go/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Users/wijnand/.rbenv/shims/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Users/wijnand/.rbenv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Users/wijnand/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Users/wijnand/.local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/opt/homebrew/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/opt/homebrew/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Users/wijnand/perl5/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/System/Cryptexes/App/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/usr/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/opt/pmk/env/global/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/opt/X11/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Library/Apple/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Applications/Wireshark.app/Contents/MacOS/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Users/wijnand/.cargo/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + - "/Applications/iTerm.app/Contents/Resources/utilities/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib14" + found: "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompiler.cmake:54 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:61 (_cmake_find_compiler)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:135 (enable_language)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_ASM_COMPILER" + description: "ASM compiler" + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/" + found: "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PROGRAM_PATH: + - "/bin" + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:1296 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:170 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:135 (enable_language)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + message: | + Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": + xtensa-espressif_esp32s3_zephyr-elf-gcc (Zephyr SDK 1.0.0) 14.3.0 + Copyright (C) 2024 Free Software Foundation, Inc. + This is free software; see the source for copying conditions. There is NO + warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake:18 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:268 (include)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:135 (enable_language)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_ASM_COMPILER_AR" + description: "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ar" + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ar" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/" + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + searched_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Users/wijnand/zephyrproject/.venv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Users/wijnand/go/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Users/wijnand/.rbenv/shims/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Users/wijnand/.rbenv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Users/wijnand/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Users/wijnand/.local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/opt/homebrew/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/opt/homebrew/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Users/wijnand/perl5/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/System/Cryptexes/App/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/usr/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/opt/pmk/env/global/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/opt/X11/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Library/Apple/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Applications/Wireshark.app/Contents/MacOS/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Users/wijnand/.cargo/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Applications/iTerm.app/Contents/Resources/utilities/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Users/wijnand/zephyrproject/.venv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Users/wijnand/go/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Users/wijnand/.rbenv/shims/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Users/wijnand/.rbenv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Users/wijnand/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Users/wijnand/.local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/opt/homebrew/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/opt/homebrew/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Users/wijnand/perl5/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/System/Cryptexes/App/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/usr/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/opt/pmk/env/global/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/opt/X11/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Library/Apple/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Applications/Wireshark.app/Contents/MacOS/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Users/wijnand/.cargo/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + - "/Applications/iTerm.app/Contents/Resources/utilities/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar-" + found: "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PROGRAM_PATH: + - "/bin" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake:30 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake:268 (include)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake:135 (enable_language)" + - "/Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake:138 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)" + - "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)" + - "CMakeLists.txt:16 (find_package)" + mode: "program" + variable: "CMAKE_ASM_COMPILER_RANLIB" + description: "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib" + - "xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/" + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + searched_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Users/wijnand/zephyrproject/.venv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Users/wijnand/go/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Users/wijnand/.rbenv/shims/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Users/wijnand/.rbenv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Users/wijnand/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Users/wijnand/.local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/opt/homebrew/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/opt/homebrew/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Users/wijnand/perl5/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/System/Cryptexes/App/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/usr/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/opt/pmk/env/global/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/opt/X11/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Library/Apple/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Applications/Wireshark.app/Contents/MacOS/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Users/wijnand/.cargo/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Applications/iTerm.app/Contents/Resources/utilities/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Users/wijnand/zephyrproject/.venv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Users/wijnand/go/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Users/wijnand/.rbenv/shims/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Users/wijnand/.rbenv/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Users/wijnand/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Users/wijnand/.local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/opt/homebrew/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/opt/homebrew/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Users/wijnand/perl5/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/System/Cryptexes/App/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/usr/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/sbin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/opt/pmk/env/global/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/opt/X11/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Library/Apple/usr/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Applications/Wireshark.app/Contents/MacOS/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Users/wijnand/.cargo/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + - "/Applications/iTerm.app/Contents/Resources/utilities/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib-" + found: "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PROGRAM_PATH: + - "/bin" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/CMakeLists.txt:5 (find_program)" + mode: "program" + variable: "ESPTOOL_EXECUTABLE" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "esptool" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/" + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + searched_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/esptool" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/esptool" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/esptool" + found: "/Users/wijnand/zephyrproject/.venv/bin/esptool" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PROGRAM_PATH: + - "/bin" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/modules/lib/picolibc/CMakeLists.txt:49 (find_program)" + mode: "program" + variable: "CCACHE_PROGRAM" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "ccache" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/" + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + searched_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/ccache" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/ccache" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/ccache" + - "/Users/wijnand/zephyrproject/.venv/bin/ccache" + - "/Users/wijnand/go/bin/ccache" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/ccache" + - "/Users/wijnand/.rbenv/shims/ccache" + - "/Users/wijnand/.rbenv/bin/ccache" + - "/Users/wijnand/bin/ccache" + - "/Users/wijnand/.local/bin/ccache" + - "/opt/homebrew/sbin/ccache" + found: "/opt/homebrew/bin/ccache" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PROGRAM_PATH: + - "/bin" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/kobj.cmake:3 (find_program)" + - "/Users/wijnand/zephyrproject/zephyr/CMakeLists.txt:985 (include)" + mode: "program" + variable: "GEN_KOBJECT_LIST" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "gen_kobject_list" + - "gen_kobject_list.py" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/" + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + - "/Users/wijnand/zephyrproject/zephyr/scripts/build/" + searched_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/gen_kobject_list" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/gen_kobject_list" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/gen_kobject_list" + - "/Users/wijnand/zephyrproject/.venv/bin/gen_kobject_list" + - "/Users/wijnand/go/bin/gen_kobject_list" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/gen_kobject_list" + - "/Users/wijnand/.rbenv/shims/gen_kobject_list" + - "/Users/wijnand/.rbenv/bin/gen_kobject_list" + - "/Users/wijnand/bin/gen_kobject_list" + - "/Users/wijnand/.local/bin/gen_kobject_list" + - "/opt/homebrew/sbin/gen_kobject_list" + - "/opt/homebrew/bin/gen_kobject_list" + - "/usr/local/bin/gen_kobject_list" + - "/Users/wijnand/perl5/bin/gen_kobject_list" + - "/System/Cryptexes/App/usr/bin/gen_kobject_list" + - "/usr/bin/gen_kobject_list" + - "/bin/gen_kobject_list" + - "/usr/sbin/gen_kobject_list" + - "/sbin/gen_kobject_list" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/gen_kobject_list" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/gen_kobject_list" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/gen_kobject_list" + - "/opt/pmk/env/global/bin/gen_kobject_list" + - "/opt/X11/bin/gen_kobject_list" + - "/Library/Apple/usr/bin/gen_kobject_list" + - "/Applications/Wireshark.app/Contents/MacOS/gen_kobject_list" + - "/Users/wijnand/.cargo/bin/gen_kobject_list" + - "/Applications/iTerm.app/Contents/Resources/utilities/gen_kobject_list" + - "/Users/wijnand/zephyrproject/zephyr/scripts/build/gen_kobject_list" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/gen_kobject_list.py" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/gen_kobject_list.py" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/gen_kobject_list.py" + - "/Users/wijnand/zephyrproject/.venv/bin/gen_kobject_list.py" + - "/Users/wijnand/go/bin/gen_kobject_list.py" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/gen_kobject_list.py" + - "/Users/wijnand/.rbenv/shims/gen_kobject_list.py" + - "/Users/wijnand/.rbenv/bin/gen_kobject_list.py" + - "/Users/wijnand/bin/gen_kobject_list.py" + - "/Users/wijnand/.local/bin/gen_kobject_list.py" + - "/opt/homebrew/sbin/gen_kobject_list.py" + - "/opt/homebrew/bin/gen_kobject_list.py" + - "/usr/local/bin/gen_kobject_list.py" + - "/Users/wijnand/perl5/bin/gen_kobject_list.py" + - "/System/Cryptexes/App/usr/bin/gen_kobject_list.py" + - "/usr/bin/gen_kobject_list.py" + - "/bin/gen_kobject_list.py" + - "/usr/sbin/gen_kobject_list.py" + - "/sbin/gen_kobject_list.py" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/gen_kobject_list.py" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/gen_kobject_list.py" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/gen_kobject_list.py" + - "/opt/pmk/env/global/bin/gen_kobject_list.py" + - "/opt/X11/bin/gen_kobject_list.py" + - "/Library/Apple/usr/bin/gen_kobject_list.py" + - "/Applications/Wireshark.app/Contents/MacOS/gen_kobject_list.py" + - "/Users/wijnand/.cargo/bin/gen_kobject_list.py" + - "/Applications/iTerm.app/Contents/Resources/utilities/gen_kobject_list.py" + found: "/Users/wijnand/zephyrproject/zephyr/scripts/build/gen_kobject_list.py" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PROGRAM_PATH: + - "/bin" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/reports/CMakeLists.txt:115 (find_program)" + mode: "program" + variable: "PUNCOVER" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "puncover" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/" + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + searched_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/puncover" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/puncover" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/puncover" + - "/Users/wijnand/zephyrproject/.venv/bin/puncover" + - "/Users/wijnand/go/bin/puncover" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/puncover" + - "/Users/wijnand/.rbenv/shims/puncover" + - "/Users/wijnand/.rbenv/bin/puncover" + - "/Users/wijnand/bin/puncover" + - "/Users/wijnand/.local/bin/puncover" + - "/opt/homebrew/sbin/puncover" + - "/opt/homebrew/bin/puncover" + - "/usr/local/bin/puncover" + - "/Users/wijnand/perl5/bin/puncover" + - "/System/Cryptexes/App/usr/bin/puncover" + - "/usr/bin/puncover" + - "/bin/puncover" + - "/usr/sbin/puncover" + - "/sbin/puncover" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/puncover" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/puncover" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/puncover" + - "/opt/pmk/env/global/bin/puncover" + - "/opt/X11/bin/puncover" + - "/Library/Apple/usr/bin/puncover" + - "/Applications/Wireshark.app/Contents/MacOS/puncover" + - "/Users/wijnand/.cargo/bin/puncover" + - "/Applications/iTerm.app/Contents/Resources/utilities/puncover" + found: false + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PROGRAM_PATH: + - "/bin" + - + kind: "find-v1" + backtrace: + - "/Users/wijnand/zephyrproject/zephyr/cmake/reports/CMakeLists.txt:142 (find_program)" + mode: "program" + variable: "PAHOLE" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "pahole" + candidate_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/" + - "/Users/wijnand/zephyrproject/.venv/bin/" + - "/Users/wijnand/go/bin/" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/" + - "/Users/wijnand/.rbenv/shims/" + - "/Users/wijnand/.rbenv/bin/" + - "/Users/wijnand/bin/" + - "/Users/wijnand/.local/bin/" + - "/opt/homebrew/sbin/" + - "/opt/homebrew/bin/" + - "/usr/local/bin/" + - "/Users/wijnand/perl5/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/opt/X11/bin/" + - "/Library/Apple/usr/bin/" + - "/Applications/Wireshark.app/Contents/MacOS/" + - "/Users/wijnand/.cargo/bin/" + - "/Applications/iTerm.app/Contents/Resources/utilities/" + searched_directories: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/pahole" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/sbin/pahole" + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/pahole" + - "/Users/wijnand/zephyrproject/.venv/bin/pahole" + - "/Users/wijnand/go/bin/pahole" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin/pahole" + - "/Users/wijnand/.rbenv/shims/pahole" + - "/Users/wijnand/.rbenv/bin/pahole" + - "/Users/wijnand/bin/pahole" + - "/Users/wijnand/.local/bin/pahole" + - "/opt/homebrew/sbin/pahole" + - "/opt/homebrew/bin/pahole" + - "/usr/local/bin/pahole" + - "/Users/wijnand/perl5/bin/pahole" + - "/System/Cryptexes/App/usr/bin/pahole" + - "/usr/bin/pahole" + - "/bin/pahole" + - "/usr/sbin/pahole" + - "/sbin/pahole" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/pahole" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/pahole" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/pahole" + - "/opt/pmk/env/global/bin/pahole" + - "/opt/X11/bin/pahole" + - "/Library/Apple/usr/bin/pahole" + - "/Applications/Wireshark.app/Contents/MacOS/pahole" + - "/Users/wijnand/.cargo/bin/pahole" + - "/Applications/iTerm.app/Contents/Resources/utilities/pahole" + found: false + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PROGRAM_PATH: + - "/bin" + - + kind: "find_package-v1" + backtrace: + - "CMakeLists.txt:16 (find_package)" + name: "Zephyr" + configs: + - + filename: "Zephyr.cps" + kind: "cps" + - + filename: "zephyr.cps" + kind: "cps" + - + filename: "ZephyrConfig.cmake" + kind: "cmake" + - + filename: "zephyr-config.cmake" + kind: "cmake" + version_request: + exact: false + settings: + required: "required_explicit" + quiet: false + global: false + policy_scope: true + bypass_provider: false + hints: + - "/Users/wijnand/zephyrproject/zephyr" + names: + - "Zephyr" + path_suffixes: + - "" + paths: + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true + CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true + CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true + CMAKE_FIND_ROOT_PATH_MODE: "BOTH" + candidates: + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/ZephyrConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/zephyr-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/lib/cps/Zephyr.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/lib/cps/zephyr.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/share/cps/Zephyr.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects/share/cps/zephyr.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/zephyr/ZephyrConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/zephyr/zephyr-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/zephyr/cmake/ZephyrConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/zephyr/cmake/zephyr-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/zephyr/lib/cps/Zephyr.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/zephyr/lib/cps/zephyr.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/zephyr/share/cps/Zephyr.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/zephyr/share/cps/zephyr.cps" + mode: "cps" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/zephyr/share/zephyrunittest-package/ZephyrConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/zephyr/share/zephyrunittest-package/zephyr-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/ZephyrConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/zephyr-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/zephyr/share/zephyrunittest-package/cmake/ZephyrConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/wijnand/zephyrproject/zephyr/share/zephyrunittest-package/cmake/zephyr-config.cmake" + mode: "config" + reason: "no_exist" + found: + path: "/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake" + mode: "config" + version: "4.4.0" + search_context: + CMAKE_PREFIX_PATH: + - "/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr" + ENV{PATH}: + - "/Users/wijnand/zephyrproject/.venv/bin" + - "/Users/wijnand/go/bin" + - "/Users/wijnand/.nvm/versions/node/v24.12.0/bin" + - "/Users/wijnand/.rbenv/shims" + - "/Users/wijnand/.rbenv/bin" + - "/Users/wijnand/bin" + - "/Users/wijnand/.local/bin" + - "/opt/homebrew/sbin" + - "/opt/homebrew/bin" + - "/usr/local/bin" + - "/Users/wijnand/perl5/bin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/opt/X11/bin" + - "/Library/Apple/usr/bin" + - "/Applications/Wireshark.app/Contents/MacOS" + - "/Users/wijnand/.cargo/bin" + - "/Applications/iTerm.app/Contents/Resources/utilities" + CMAKE_INSTALL_PREFIX: "/usr/local" +... diff --git a/build/CMakeFiles/InstallScripts.json b/build/CMakeFiles/InstallScripts.json new file mode 100644 index 0000000..0287d6e --- /dev/null +++ b/build/CMakeFiles/InstallScripts.json @@ -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 +} diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..ca76be2 --- /dev/null +++ b/build/CMakeFiles/TargetDirectories.txt @@ -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 diff --git a/build/CMakeFiles/app.dir/src/kiss.c.obj b/build/CMakeFiles/app.dir/src/kiss.c.obj new file mode 100644 index 0000000..5e7ad04 Binary files /dev/null and b/build/CMakeFiles/app.dir/src/kiss.c.obj differ diff --git a/build/CMakeFiles/app.dir/src/lora_modem.c.obj b/build/CMakeFiles/app.dir/src/lora_modem.c.obj new file mode 100644 index 0000000..9911b80 Binary files /dev/null and b/build/CMakeFiles/app.dir/src/lora_modem.c.obj differ diff --git a/build/CMakeFiles/app.dir/src/main.c.obj b/build/CMakeFiles/app.dir/src/main.c.obj new file mode 100644 index 0000000..a91e441 Binary files /dev/null and b/build/CMakeFiles/app.dir/src/main.c.obj differ diff --git a/build/CMakeFiles/clean_additional.cmake b/build/CMakeFiles/clean_additional.cmake new file mode 100644 index 0000000..f276c0e --- /dev/null +++ b/build/CMakeFiles/clean_additional.cmake @@ -0,0 +1,8 @@ +# Additional clean files +cmake_minimum_required(VERSION 3.16) + +if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "") + file(REMOVE_RECURSE + "zephyr/include/generated/zephyr/syscalls" + ) +endif() diff --git a/build/CMakeFiles/cmake.check_cache b/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/CMakeFiles/rules.ninja b/build/CMakeFiles/rules.ninja new file mode 100644 index 0000000..a506309 --- /dev/null +++ b/build/CMakeFiles/rules.ninja @@ -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: + diff --git a/build/Kconfig/Kconfig.dts b/build/Kconfig/Kconfig.dts new file mode 100644 index 0000000..1c62e91 --- /dev/null +++ b/build/Kconfig/Kconfig.dts @@ -0,0 +1,16738 @@ +# Generated devicetree Kconfig +# +# SPDX-License-Identifier: Apache-2.0 + +DT_COMPAT_ADAFRUIT_SEESAW_GAMEPAD := adafruit,seesaw-gamepad + +config DT_HAS_ADAFRUIT_SEESAW_GAMEPAD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADAFRUIT_SEESAW_GAMEPAD)) + +DT_COMPAT_ADAFRUIT_FEATHER_HEADER := adafruit-feather-header + +config DT_HAS_ADAFRUIT_FEATHER_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADAFRUIT_FEATHER_HEADER)) + +DT_COMPAT_ADC_KEYS := adc-keys + +config DT_HAS_ADC_KEYS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADC_KEYS)) + +DT_COMPAT_ADH_TECH_GT5X := adh-tech,gt5x + +config DT_HAS_ADH_TECH_GT5X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADH_TECH_GT5X)) + +DT_COMPAT_ADI_AD2S1210 := adi,ad2s1210 + +config DT_HAS_ADI_AD2S1210_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD2S1210)) + +DT_COMPAT_ADI_AD4050_ADC := adi,ad4050-adc + +config DT_HAS_ADI_AD4050_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD4050_ADC)) + +DT_COMPAT_ADI_AD4052_ADC := adi,ad4052-adc + +config DT_HAS_ADI_AD4052_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD4052_ADC)) + +DT_COMPAT_ADI_AD4114_ADC := adi,ad4114-adc + +config DT_HAS_ADI_AD4114_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD4114_ADC)) + +DT_COMPAT_ADI_AD4130_ADC := adi,ad4130-adc + +config DT_HAS_ADI_AD4130_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD4130_ADC)) + +DT_COMPAT_ADI_AD4170_ADC := adi,ad4170-adc + +config DT_HAS_ADI_AD4170_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD4170_ADC)) + +DT_COMPAT_ADI_AD4190_ADC := adi,ad4190-adc + +config DT_HAS_ADI_AD4190_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD4190_ADC)) + +DT_COMPAT_ADI_AD4195_ADC := adi,ad4195-adc + +config DT_HAS_ADI_AD4195_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD4195_ADC)) + +DT_COMPAT_ADI_AD559X := adi,ad559x + +config DT_HAS_ADI_AD559X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD559X)) + +DT_COMPAT_ADI_AD559X_ADC := adi,ad559x-adc + +config DT_HAS_ADI_AD559X_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD559X_ADC)) + +DT_COMPAT_ADI_AD559X_DAC := adi,ad559x-dac + +config DT_HAS_ADI_AD559X_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD559X_DAC)) + +DT_COMPAT_ADI_AD559X_GPIO := adi,ad559x-gpio + +config DT_HAS_ADI_AD559X_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD559X_GPIO)) + +DT_COMPAT_ADI_AD5601 := adi,ad5601 + +config DT_HAS_ADI_AD5601_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5601)) + +DT_COMPAT_ADI_AD5611 := adi,ad5611 + +config DT_HAS_ADI_AD5611_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5611)) + +DT_COMPAT_ADI_AD5621 := adi,ad5621 + +config DT_HAS_ADI_AD5621_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5621)) + +DT_COMPAT_ADI_AD5628 := adi,ad5628 + +config DT_HAS_ADI_AD5628_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5628)) + +DT_COMPAT_ADI_AD5648 := adi,ad5648 + +config DT_HAS_ADI_AD5648_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5648)) + +DT_COMPAT_ADI_AD5668 := adi,ad5668 + +config DT_HAS_ADI_AD5668_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5668)) + +DT_COMPAT_ADI_AD5672 := adi,ad5672 + +config DT_HAS_ADI_AD5672_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5672)) + +DT_COMPAT_ADI_AD5674 := adi,ad5674 + +config DT_HAS_ADI_AD5674_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5674)) + +DT_COMPAT_ADI_AD5676 := adi,ad5676 + +config DT_HAS_ADI_AD5676_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5676)) + +DT_COMPAT_ADI_AD5679 := adi,ad5679 + +config DT_HAS_ADI_AD5679_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5679)) + +DT_COMPAT_ADI_AD5684 := adi,ad5684 + +config DT_HAS_ADI_AD5684_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5684)) + +DT_COMPAT_ADI_AD5686 := adi,ad5686 + +config DT_HAS_ADI_AD5686_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5686)) + +DT_COMPAT_ADI_AD5687 := adi,ad5687 + +config DT_HAS_ADI_AD5687_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5687)) + +DT_COMPAT_ADI_AD5689 := adi,ad5689 + +config DT_HAS_ADI_AD5689_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5689)) + +DT_COMPAT_ADI_AD5691 := adi,ad5691 + +config DT_HAS_ADI_AD5691_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5691)) + +DT_COMPAT_ADI_AD5692 := adi,ad5692 + +config DT_HAS_ADI_AD5692_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5692)) + +DT_COMPAT_ADI_AD5693 := adi,ad5693 + +config DT_HAS_ADI_AD5693_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD5693)) + +DT_COMPAT_ADI_AD7124_ADC := adi,ad7124-adc + +config DT_HAS_ADI_AD7124_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_AD7124_ADC)) + +DT_COMPAT_ADI_ADE7978 := adi,ade7978 + +config DT_HAS_ADI_ADE7978_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADE7978)) + +DT_COMPAT_ADI_ADIN1100_PHY := adi,adin1100-phy + +config DT_HAS_ADI_ADIN1100_PHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADIN1100_PHY)) + +DT_COMPAT_ADI_ADIN1110 := adi,adin1110 + +config DT_HAS_ADI_ADIN1110_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADIN1110)) + +DT_COMPAT_ADI_ADIN2111 := adi,adin2111 + +config DT_HAS_ADI_ADIN2111_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADIN2111)) + +DT_COMPAT_ADI_ADIN2111_MDIO := adi,adin2111-mdio + +config DT_HAS_ADI_ADIN2111_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADIN2111_MDIO)) + +DT_COMPAT_ADI_ADIN2111_PHY := adi,adin2111-phy + +config DT_HAS_ADI_ADIN2111_PHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADIN2111_PHY)) + +DT_COMPAT_ADI_ADLTC2990 := adi,adltc2990 + +config DT_HAS_ADI_ADLTC2990_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADLTC2990)) + +DT_COMPAT_ADI_ADP5360 := adi,adp5360 + +config DT_HAS_ADI_ADP5360_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADP5360)) + +DT_COMPAT_ADI_ADP5360_REGULATOR := adi,adp5360-regulator + +config DT_HAS_ADI_ADP5360_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADP5360_REGULATOR)) + +DT_COMPAT_ADI_ADP5585 := adi,adp5585 + +config DT_HAS_ADI_ADP5585_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADP5585)) + +DT_COMPAT_ADI_ADP5585_GPIO := adi,adp5585-gpio + +config DT_HAS_ADI_ADP5585_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADP5585_GPIO)) + +DT_COMPAT_ADI_ADT7310 := adi,adt7310 + +config DT_HAS_ADI_ADT7310_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADT7310)) + +DT_COMPAT_ADI_ADT7410 := adi,adt7410 + +config DT_HAS_ADI_ADT7410_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADT7410)) + +DT_COMPAT_ADI_ADT7420 := adi,adt7420 + +config DT_HAS_ADI_ADT7420_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADT7420)) + +DT_COMPAT_ADI_ADT7422 := adi,adt7422 + +config DT_HAS_ADI_ADT7422_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADT7422)) + +DT_COMPAT_ADI_ADXL345 := adi,adxl345 + +config DT_HAS_ADI_ADXL345_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADXL345)) + +DT_COMPAT_ADI_ADXL355 := adi,adxl355 + +config DT_HAS_ADI_ADXL355_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADXL355)) + +DT_COMPAT_ADI_ADXL362 := adi,adxl362 + +config DT_HAS_ADI_ADXL362_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADXL362)) + +DT_COMPAT_ADI_ADXL366 := adi,adxl366 + +config DT_HAS_ADI_ADXL366_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADXL366)) + +DT_COMPAT_ADI_ADXL367 := adi,adxl367 + +config DT_HAS_ADI_ADXL367_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADXL367)) + +DT_COMPAT_ADI_ADXL372 := adi,adxl372 + +config DT_HAS_ADI_ADXL372_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_ADXL372)) + +DT_COMPAT_ADI_LTC2959 := adi,ltc2959 + +config DT_HAS_ADI_LTC2959_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_LTC2959)) + +DT_COMPAT_ADI_MAX14906_GPIO := adi,max14906-gpio + +config DT_HAS_ADI_MAX14906_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX14906_GPIO)) + +DT_COMPAT_ADI_MAX14915_GPIO := adi,max14915-gpio + +config DT_HAS_ADI_MAX14915_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX14915_GPIO)) + +DT_COMPAT_ADI_MAX14916_GPIO := adi,max14916-gpio + +config DT_HAS_ADI_MAX14916_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX14916_GPIO)) + +DT_COMPAT_ADI_MAX14917_GPIO := adi,max14917-gpio + +config DT_HAS_ADI_MAX14917_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX14917_GPIO)) + +DT_COMPAT_ADI_MAX22017 := adi,max22017 + +config DT_HAS_ADI_MAX22017_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX22017)) + +DT_COMPAT_ADI_MAX22017_DAC := adi,max22017-dac + +config DT_HAS_ADI_MAX22017_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX22017_DAC)) + +DT_COMPAT_ADI_MAX22017_GPIO := adi,max22017-gpio + +config DT_HAS_ADI_MAX22017_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX22017_GPIO)) + +DT_COMPAT_ADI_MAX22190_GPIO := adi,max22190-gpio + +config DT_HAS_ADI_MAX22190_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX22190_GPIO)) + +DT_COMPAT_ADI_MAX22199_GPIO := adi,max22199-gpio + +config DT_HAS_ADI_MAX22199_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX22199_GPIO)) + +DT_COMPAT_ADI_MAX2221X := adi,max2221x + +config DT_HAS_ADI_MAX2221X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX2221X)) + +DT_COMPAT_ADI_MAX2221X_MISC := adi,max2221x-misc + +config DT_HAS_ADI_MAX2221X_MISC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX2221X_MISC)) + +DT_COMPAT_ADI_MAX2221X_PWM := adi,max2221x-pwm + +config DT_HAS_ADI_MAX2221X_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX2221X_PWM)) + +DT_COMPAT_ADI_MAX30210 := adi,max30210 + +config DT_HAS_ADI_MAX30210_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX30210)) + +DT_COMPAT_ADI_MAX31331 := adi,max31331 + +config DT_HAS_ADI_MAX31331_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX31331)) + +DT_COMPAT_ADI_MAX32_ADC := adi,max32-adc + +config DT_HAS_ADI_MAX32_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_ADC)) + +DT_COMPAT_ADI_MAX32_ADC_10B := adi,max32-adc-10b + +config DT_HAS_ADI_MAX32_ADC_10B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_ADC_10B)) + +DT_COMPAT_ADI_MAX32_ADC_B_ME18 := adi,max32-adc-b-me18 + +config DT_HAS_ADI_MAX32_ADC_B_ME18_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_ADC_B_ME18)) + +DT_COMPAT_ADI_MAX32_ADC_SAR := adi,max32-adc-sar + +config DT_HAS_ADI_MAX32_ADC_SAR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_ADC_SAR)) + +DT_COMPAT_ADI_MAX32_BACKUP_SRAM := adi,max32-backup-sram + +config DT_HAS_ADI_MAX32_BACKUP_SRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_BACKUP_SRAM)) + +DT_COMPAT_ADI_MAX32_CAN := adi,max32-can + +config DT_HAS_ADI_MAX32_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_CAN)) + +DT_COMPAT_ADI_MAX32_COUNTER := adi,max32-counter + +config DT_HAS_ADI_MAX32_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_COUNTER)) + +DT_COMPAT_ADI_MAX32_DMA := adi,max32-dma + +config DT_HAS_ADI_MAX32_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_DMA)) + +DT_COMPAT_ADI_MAX32_FLASH_CONTROLLER := adi,max32-flash-controller + +config DT_HAS_ADI_MAX32_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_FLASH_CONTROLLER)) + +DT_COMPAT_ADI_MAX32_GCR := adi,max32-gcr + +config DT_HAS_ADI_MAX32_GCR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_GCR)) + +DT_COMPAT_ADI_MAX32_GPIO := adi,max32-gpio + +config DT_HAS_ADI_MAX32_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_GPIO)) + +DT_COMPAT_ADI_MAX32_HPB := adi,max32-hpb + +config DT_HAS_ADI_MAX32_HPB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_HPB)) + +DT_COMPAT_ADI_MAX32_I2C := adi,max32-i2c + +config DT_HAS_ADI_MAX32_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_I2C)) + +DT_COMPAT_ADI_MAX32_I2S := adi,max32-i2s + +config DT_HAS_ADI_MAX32_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_I2S)) + +DT_COMPAT_ADI_MAX32_I3C := adi,max32-i3c + +config DT_HAS_ADI_MAX32_I3C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_I3C)) + +DT_COMPAT_ADI_MAX32_PINCTRL := adi,max32-pinctrl + +config DT_HAS_ADI_MAX32_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_PINCTRL)) + +DT_COMPAT_ADI_MAX32_PWM := adi,max32-pwm + +config DT_HAS_ADI_MAX32_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_PWM)) + +DT_COMPAT_ADI_MAX32_RTC_COUNTER := adi,max32-rtc-counter + +config DT_HAS_ADI_MAX32_RTC_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_RTC_COUNTER)) + +DT_COMPAT_ADI_MAX32_RV32 := adi,max32-rv32 + +config DT_HAS_ADI_MAX32_RV32_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_RV32)) + +DT_COMPAT_ADI_MAX32_RV32_INTC := adi,max32-rv32-intc + +config DT_HAS_ADI_MAX32_RV32_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_RV32_INTC)) + +DT_COMPAT_ADI_MAX32_RV32_SYS_TIMER := adi,max32-rv32-sys-timer + +config DT_HAS_ADI_MAX32_RV32_SYS_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_RV32_SYS_TIMER)) + +DT_COMPAT_ADI_MAX32_SDHC := adi,max32-sdhc + +config DT_HAS_ADI_MAX32_SDHC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_SDHC)) + +DT_COMPAT_ADI_MAX32_SPI := adi,max32-spi + +config DT_HAS_ADI_MAX32_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_SPI)) + +DT_COMPAT_ADI_MAX32_SPIXF := adi,max32-spixf + +config DT_HAS_ADI_MAX32_SPIXF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_SPIXF)) + +DT_COMPAT_ADI_MAX32_SPIXF_NOR := adi,max32-spixf-nor + +config DT_HAS_ADI_MAX32_SPIXF_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_SPIXF_NOR)) + +DT_COMPAT_ADI_MAX32_TIMER := adi,max32-timer + +config DT_HAS_ADI_MAX32_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_TIMER)) + +DT_COMPAT_ADI_MAX32_TRNG := adi,max32-trng + +config DT_HAS_ADI_MAX32_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_TRNG)) + +DT_COMPAT_ADI_MAX32_UART := adi,max32-uart + +config DT_HAS_ADI_MAX32_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_UART)) + +DT_COMPAT_ADI_MAX32_USBHS := adi,max32-usbhs + +config DT_HAS_ADI_MAX32_USBHS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_USBHS)) + +DT_COMPAT_ADI_MAX32_W1 := adi,max32-w1 + +config DT_HAS_ADI_MAX32_W1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_W1)) + +DT_COMPAT_ADI_MAX32_WATCHDOG := adi,max32-watchdog + +config DT_HAS_ADI_MAX32_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_WATCHDOG)) + +DT_COMPAT_ADI_MAX32_WUT := adi,max32-wut + +config DT_HAS_ADI_MAX32_WUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_WUT)) + +DT_COMPAT_ADI_MAX32_WUT_TIMER := adi,max32-wut-timer + +config DT_HAS_ADI_MAX32_WUT_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX32_WUT_TIMER)) + +DT_COMPAT_ADI_MAX42500_WATCHDOG := adi,max42500-watchdog + +config DT_HAS_ADI_MAX42500_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAX42500_WATCHDOG)) + +DT_COMPAT_ADI_MAXQ10XX := adi,maxq10xx + +config DT_HAS_ADI_MAXQ10XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAXQ10XX)) + +DT_COMPAT_ADI_MAXQ10XX_TRNG := adi,maxq10xx-trng + +config DT_HAS_ADI_MAXQ10XX_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MAXQ10XX_TRNG)) + +DT_COMPAT_ADI_MBOX_MAX32_SEMA := adi,mbox-max32-sema + +config DT_HAS_ADI_MBOX_MAX32_SEMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_MBOX_MAX32_SEMA)) + +DT_COMPAT_ADI_SDP_120 := adi,sdp-120 + +config DT_HAS_ADI_SDP_120_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_SDP_120)) + +DT_COMPAT_ADI_TMC2209 := adi,tmc2209 + +config DT_HAS_ADI_TMC2209_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_TMC2209)) + +DT_COMPAT_ADI_TMC50XX := adi,tmc50xx + +config DT_HAS_ADI_TMC50XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_TMC50XX)) + +DT_COMPAT_ADI_TMC50XX_STEPPER_CTRL := adi,tmc50xx-stepper-ctrl + +config DT_HAS_ADI_TMC50XX_STEPPER_CTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_TMC50XX_STEPPER_CTRL)) + +DT_COMPAT_ADI_TMC50XX_STEPPER_DRIVER := adi,tmc50xx-stepper-driver + +config DT_HAS_ADI_TMC50XX_STEPPER_DRIVER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_TMC50XX_STEPPER_DRIVER)) + +DT_COMPAT_ADI_TMC51XX := adi,tmc51xx + +config DT_HAS_ADI_TMC51XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_TMC51XX)) + +DT_COMPAT_ADI_TMC51XX_STEPPER_CTRL := adi,tmc51xx-stepper-ctrl + +config DT_HAS_ADI_TMC51XX_STEPPER_CTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_TMC51XX_STEPPER_CTRL)) + +DT_COMPAT_ADI_TMC51XX_STEPPER_DRIVER := adi,tmc51xx-stepper-driver + +config DT_HAS_ADI_TMC51XX_STEPPER_DRIVER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_TMC51XX_STEPPER_DRIVER)) + +DT_COMPAT_ADI_TMCM3216 := adi,tmcm3216 + +config DT_HAS_ADI_TMCM3216_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_TMCM3216)) + +DT_COMPAT_ADI_TMCM3216_STEPPER_CTRL := adi,tmcm3216-stepper-ctrl + +config DT_HAS_ADI_TMCM3216_STEPPER_CTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_TMCM3216_STEPPER_CTRL)) + +DT_COMPAT_ADI_TMCM3216_STEPPER_DRIVER := adi,tmcm3216-stepper-driver + +config DT_HAS_ADI_TMCM3216_STEPPER_DRIVER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ADI_TMCM3216_STEPPER_DRIVER)) + +DT_COMPAT_AESC_GPIO := aesc,gpio + +config DT_HAS_AESC_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AESC_GPIO)) + +DT_COMPAT_AESC_UART := aesc,uart + +config DT_HAS_AESC_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AESC_UART)) + +DT_COMPAT_ALIF_CLOCKCTRL := alif,clockctrl + +config DT_HAS_ALIF_CLOCKCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALIF_CLOCKCTRL)) + +DT_COMPAT_ALIF_PINCTRL := alif,pinctrl + +config DT_HAS_ALIF_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALIF_PINCTRL)) + +DT_COMPAT_ALLEGRO_A4979 := allegro,a4979 + +config DT_HAS_ALLEGRO_A4979_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALLEGRO_A4979)) + +DT_COMPAT_ALLEGRO_ALS31300 := allegro,als31300 + +config DT_HAS_ALLEGRO_ALS31300_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALLEGRO_ALS31300)) + +DT_COMPAT_ALTR_JTAG_UART := altr,jtag-uart + +config DT_HAS_ALTR_JTAG_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALTR_JTAG_UART)) + +DT_COMPAT_ALTR_MSGDMA := altr,msgdma + +config DT_HAS_ALTR_MSGDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALTR_MSGDMA)) + +DT_COMPAT_ALTR_NIOS2_I2C := altr,nios2-i2c + +config DT_HAS_ALTR_NIOS2_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALTR_NIOS2_I2C)) + +DT_COMPAT_ALTR_NIOS2_QSPI := altr,nios2-qspi + +config DT_HAS_ALTR_NIOS2_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALTR_NIOS2_QSPI)) + +DT_COMPAT_ALTR_NIOS2_QSPI_NOR := altr,nios2-qspi-nor + +config DT_HAS_ALTR_NIOS2_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALTR_NIOS2_QSPI_NOR)) + +DT_COMPAT_ALTR_PIO_1_0 := altr,pio-1.0 + +config DT_HAS_ALTR_PIO_1_0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALTR_PIO_1_0)) + +DT_COMPAT_ALTR_UART := altr,uart + +config DT_HAS_ALTR_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ALTR_UART)) + +DT_COMPAT_AMBIQ_ADC := ambiq,adc + +config DT_HAS_AMBIQ_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_ADC)) + +DT_COMPAT_AMBIQ_AM1805 := ambiq,am1805 + +config DT_HAS_AMBIQ_AM1805_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_AM1805)) + +DT_COMPAT_AMBIQ_APOLLO2_PINCTRL := ambiq,apollo2-pinctrl + +config DT_HAS_AMBIQ_APOLLO2_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_APOLLO2_PINCTRL)) + +DT_COMPAT_AMBIQ_APOLLO3_PINCTRL := ambiq,apollo3-pinctrl + +config DT_HAS_AMBIQ_APOLLO3_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_APOLLO3_PINCTRL)) + +DT_COMPAT_AMBIQ_APOLLO4_PINCTRL := ambiq,apollo4-pinctrl + +config DT_HAS_AMBIQ_APOLLO4_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_APOLLO4_PINCTRL)) + +DT_COMPAT_AMBIQ_APOLLO5_PINCTRL := ambiq,apollo5-pinctrl + +config DT_HAS_AMBIQ_APOLLO5_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_APOLLO5_PINCTRL)) + +DT_COMPAT_AMBIQ_BT_HCI_SPI := ambiq,bt-hci-spi + +config DT_HAS_AMBIQ_BT_HCI_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_BT_HCI_SPI)) + +DT_COMPAT_AMBIQ_CLKCTRL := ambiq,clkctrl + +config DT_HAS_AMBIQ_CLKCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_CLKCTRL)) + +DT_COMPAT_AMBIQ_COUNTER := ambiq,counter + +config DT_HAS_AMBIQ_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_COUNTER)) + +DT_COMPAT_AMBIQ_CTIMER := ambiq,ctimer + +config DT_HAS_AMBIQ_CTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_CTIMER)) + +DT_COMPAT_AMBIQ_CTIMER_PWM := ambiq,ctimer-pwm + +config DT_HAS_AMBIQ_CTIMER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_CTIMER_PWM)) + +DT_COMPAT_AMBIQ_FLASH_CONTROLLER := ambiq,flash-controller + +config DT_HAS_AMBIQ_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_FLASH_CONTROLLER)) + +DT_COMPAT_AMBIQ_GPIO := ambiq,gpio + +config DT_HAS_AMBIQ_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_GPIO)) + +DT_COMPAT_AMBIQ_GPIO_BANK := ambiq,gpio-bank + +config DT_HAS_AMBIQ_GPIO_BANK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_GPIO_BANK)) + +DT_COMPAT_AMBIQ_I2C := ambiq,i2c + +config DT_HAS_AMBIQ_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_I2C)) + +DT_COMPAT_AMBIQ_I2S := ambiq,i2s + +config DT_HAS_AMBIQ_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_I2S)) + +DT_COMPAT_AMBIQ_IOM := ambiq,iom + +config DT_HAS_AMBIQ_IOM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_IOM)) + +DT_COMPAT_AMBIQ_MSPI := ambiq,mspi + +config DT_HAS_AMBIQ_MSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_MSPI)) + +DT_COMPAT_AMBIQ_MSPI_CONTROLLER := ambiq,mspi-controller + +config DT_HAS_AMBIQ_MSPI_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_MSPI_CONTROLLER)) + +DT_COMPAT_AMBIQ_MSPI_DEVICE := ambiq,mspi-device + +config DT_HAS_AMBIQ_MSPI_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_MSPI_DEVICE)) + +DT_COMPAT_AMBIQ_PDM := ambiq,pdm + +config DT_HAS_AMBIQ_PDM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_PDM)) + +DT_COMPAT_AMBIQ_PL011_UART := ambiq,pl011-uart + +config DT_HAS_AMBIQ_PL011_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_PL011_UART)) + +DT_COMPAT_AMBIQ_PUF_TRNG := ambiq,puf-trng + +config DT_HAS_AMBIQ_PUF_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_PUF_TRNG)) + +DT_COMPAT_AMBIQ_RTC := ambiq,rtc + +config DT_HAS_AMBIQ_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_RTC)) + +DT_COMPAT_AMBIQ_SDIO := ambiq,sdio + +config DT_HAS_AMBIQ_SDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_SDIO)) + +DT_COMPAT_AMBIQ_SPI := ambiq,spi + +config DT_HAS_AMBIQ_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_SPI)) + +DT_COMPAT_AMBIQ_SPI_BLEIF := ambiq,spi-bleif + +config DT_HAS_AMBIQ_SPI_BLEIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_SPI_BLEIF)) + +DT_COMPAT_AMBIQ_SPID := ambiq,spid + +config DT_HAS_AMBIQ_SPID_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_SPID)) + +DT_COMPAT_AMBIQ_STIMER := ambiq,stimer + +config DT_HAS_AMBIQ_STIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_STIMER)) + +DT_COMPAT_AMBIQ_TIMER := ambiq,timer + +config DT_HAS_AMBIQ_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_TIMER)) + +DT_COMPAT_AMBIQ_TIMER_PWM := ambiq,timer-pwm + +config DT_HAS_AMBIQ_TIMER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_TIMER_PWM)) + +DT_COMPAT_AMBIQ_UART := ambiq,uart + +config DT_HAS_AMBIQ_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_UART)) + +DT_COMPAT_AMBIQ_USB := ambiq,usb + +config DT_HAS_AMBIQ_USB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_USB)) + +DT_COMPAT_AMBIQ_WATCHDOG := ambiq,watchdog + +config DT_HAS_AMBIQ_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_WATCHDOG)) + +DT_COMPAT_AMBIQ_HEADER := ambiq-header + +config DT_HAS_AMBIQ_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMBIQ_HEADER)) + +DT_COMPAT_AMD_SB_TSI := amd,sb-tsi + +config DT_HAS_AMD_SB_TSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMD_SB_TSI)) + +DT_COMPAT_AMS_AS5048 := ams,as5048 + +config DT_HAS_AMS_AS5048_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_AS5048)) + +DT_COMPAT_AMS_AS5600 := ams,as5600 + +config DT_HAS_AMS_AS5600_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_AS5600)) + +DT_COMPAT_AMS_AS6212 := ams,as6212 + +config DT_HAS_AMS_AS6212_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_AS6212)) + +DT_COMPAT_AMS_AS6221 := ams,as6221 + +config DT_HAS_AMS_AS6221_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_AS6221)) + +DT_COMPAT_AMS_CCS811 := ams,ccs811 + +config DT_HAS_AMS_CCS811_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_CCS811)) + +DT_COMPAT_AMS_ENS210 := ams,ens210 + +config DT_HAS_AMS_ENS210_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_ENS210)) + +DT_COMPAT_AMS_IAQCORE := ams,iaqcore + +config DT_HAS_AMS_IAQCORE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_IAQCORE)) + +DT_COMPAT_AMS_TCS3400 := ams,tcs3400 + +config DT_HAS_AMS_TCS3400_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_TCS3400)) + +DT_COMPAT_AMS_TMD2620 := ams,tmd2620 + +config DT_HAS_AMS_TMD2620_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_TMD2620)) + +DT_COMPAT_AMS_TSL2540 := ams,tsl2540 + +config DT_HAS_AMS_TSL2540_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_TSL2540)) + +DT_COMPAT_AMS_TSL2561 := ams,tsl2561 + +config DT_HAS_AMS_TSL2561_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_TSL2561)) + +DT_COMPAT_AMS_TSL2591 := ams,tsl2591 + +config DT_HAS_AMS_TSL2591_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AMS_TSL2591)) + +DT_COMPAT_ANALOG_AXIS := analog-axis + +config DT_HAS_ANALOG_AXIS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANALOG_AXIS)) + +DT_COMPAT_ANDESTECH_ANDESCORE_V5 := andestech,andescore-v5 + +config DT_HAS_ANDESTECH_ANDESCORE_V5_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_ANDESCORE_V5)) + +DT_COMPAT_ANDESTECH_ATCDMACX00 := andestech,atcdmacx00 + +config DT_HAS_ANDESTECH_ATCDMACX00_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_ATCDMACX00)) + +DT_COMPAT_ANDESTECH_ATCGPIO100 := andestech,atcgpio100 + +config DT_HAS_ANDESTECH_ATCGPIO100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_ATCGPIO100)) + +DT_COMPAT_ANDESTECH_ATCIIC100 := andestech,atciic100 + +config DT_HAS_ANDESTECH_ATCIIC100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_ATCIIC100)) + +DT_COMPAT_ANDESTECH_ATCPIT100 := andestech,atcpit100 + +config DT_HAS_ANDESTECH_ATCPIT100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_ATCPIT100)) + +DT_COMPAT_ANDESTECH_ATCSPI200 := andestech,atcspi200 + +config DT_HAS_ANDESTECH_ATCSPI200_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_ATCSPI200)) + +DT_COMPAT_ANDESTECH_ATCWDT200 := andestech,atcwdt200 + +config DT_HAS_ANDESTECH_ATCWDT200_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_ATCWDT200)) + +DT_COMPAT_ANDESTECH_L2C := andestech,l2c + +config DT_HAS_ANDESTECH_L2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_L2C)) + +DT_COMPAT_ANDESTECH_MBOX_PLIC_SW := andestech,mbox-plic-sw + +config DT_HAS_ANDESTECH_MBOX_PLIC_SW_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_MBOX_PLIC_SW)) + +DT_COMPAT_ANDESTECH_NCEPLIC100 := andestech,nceplic100 + +config DT_HAS_ANDESTECH_NCEPLIC100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_NCEPLIC100)) + +DT_COMPAT_ANDESTECH_QSPI_NOR := andestech,qspi-nor + +config DT_HAS_ANDESTECH_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_QSPI_NOR)) + +DT_COMPAT_ANDESTECH_QSPI_NOR_XIP := andestech,qspi-nor-xip + +config DT_HAS_ANDESTECH_QSPI_NOR_XIP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ANDESTECH_QSPI_NOR_XIP)) + +DT_COMPAT_AOSONG_AGS10 := aosong,ags10 + +config DT_HAS_AOSONG_AGS10_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AOSONG_AGS10)) + +DT_COMPAT_AOSONG_AHT20 := aosong,aht20 + +config DT_HAS_AOSONG_AHT20_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AOSONG_AHT20)) + +DT_COMPAT_AOSONG_AM2301B := aosong,am2301b + +config DT_HAS_AOSONG_AM2301B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AOSONG_AM2301B)) + +DT_COMPAT_AOSONG_DHT := aosong,dht + +config DT_HAS_AOSONG_DHT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AOSONG_DHT)) + +DT_COMPAT_AOSONG_DHT20 := aosong,dht20 + +config DT_HAS_AOSONG_DHT20_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AOSONG_DHT20)) + +DT_COMPAT_AP_FCX_MLDX5 := ap,fcx-mldx5 + +config DT_HAS_AP_FCX_MLDX5_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AP_FCX_MLDX5)) + +DT_COMPAT_APA_APA102 := apa,apa102 + +config DT_HAS_APA_APA102_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_APA_APA102)) + +DT_COMPAT_APTINA_MT9M114 := aptina,mt9m114 + +config DT_HAS_APTINA_MT9M114_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_APTINA_MT9M114)) + +DT_COMPAT_ARC_DCCM := arc,dccm + +config DT_HAS_ARC_DCCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARC_DCCM)) + +DT_COMPAT_ARC_ICCM := arc,iccm + +config DT_HAS_ARC_ICCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARC_ICCM)) + +DT_COMPAT_ARC_XCCM := arc,xccm + +config DT_HAS_ARC_XCCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARC_XCCM)) + +DT_COMPAT_ARC_YCCM := arc,yccm + +config DT_HAS_ARC_YCCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARC_YCCM)) + +DT_COMPAT_ARDUCAM_DVP_20PIN_CONNECTOR := arducam,dvp-20pin-connector + +config DT_HAS_ARDUCAM_DVP_20PIN_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUCAM_DVP_20PIN_CONNECTOR)) + +DT_COMPAT_ARDUCAM_FFC_40PIN_CONNECTOR := arducam,ffc-40pin-connector + +config DT_HAS_ARDUCAM_FFC_40PIN_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUCAM_FFC_40PIN_CONNECTOR)) + +DT_COMPAT_ARDUCAM_MEGA := arducam,mega + +config DT_HAS_ARDUCAM_MEGA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUCAM_MEGA)) + +DT_COMPAT_ARDUINO_MODULINO_BUTTONS := arduino,modulino-buttons + +config DT_HAS_ARDUINO_MODULINO_BUTTONS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUINO_MODULINO_BUTTONS)) + +DT_COMPAT_ARDUINO_MODULINO_BUTTONS_LEDS := arduino,modulino-buttons-leds + +config DT_HAS_ARDUINO_MODULINO_BUTTONS_LEDS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUINO_MODULINO_BUTTONS_LEDS)) + +DT_COMPAT_ARDUINO_MODULINO_LATCH_RELAY := arduino,modulino-latch-relay + +config DT_HAS_ARDUINO_MODULINO_LATCH_RELAY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUINO_MODULINO_LATCH_RELAY)) + +DT_COMPAT_ARDUINO_MODULINO_PIXELS := arduino,modulino-pixels + +config DT_HAS_ARDUINO_MODULINO_PIXELS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUINO_MODULINO_PIXELS)) + +DT_COMPAT_ARDUINO_UNO_ADC := arduino,uno-adc + +config DT_HAS_ARDUINO_UNO_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUINO_UNO_ADC)) + +DT_COMPAT_ARDUINO_HEADER_PWM := arduino-header-pwm + +config DT_HAS_ARDUINO_HEADER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUINO_HEADER_PWM)) + +DT_COMPAT_ARDUINO_HEADER_R3 := arduino-header-r3 + +config DT_HAS_ARDUINO_HEADER_R3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUINO_HEADER_R3)) + +DT_COMPAT_ARDUINO_MKR_HEADER := arduino-mkr-header + +config DT_HAS_ARDUINO_MKR_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUINO_MKR_HEADER)) + +DT_COMPAT_ARDUINO_NANO_HEADER := arduino-nano-header + +config DT_HAS_ARDUINO_NANO_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARDUINO_NANO_HEADER)) + +DT_COMPAT_ARM_ARMV6M_MPU := arm,armv6m-mpu + +config DT_HAS_ARM_ARMV6M_MPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV6M_MPU)) + +DT_COMPAT_ARM_ARMV6M_SYSTICK := arm,armv6m-systick + +config DT_HAS_ARM_ARMV6M_SYSTICK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV6M_SYSTICK)) + +DT_COMPAT_ARM_ARMV7_TIMER := arm,armv7-timer + +config DT_HAS_ARM_ARMV7_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV7_TIMER)) + +DT_COMPAT_ARM_ARMV7M_ITM := arm,armv7m-itm + +config DT_HAS_ARM_ARMV7M_ITM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV7M_ITM)) + +DT_COMPAT_ARM_ARMV7M_MPU := arm,armv7m-mpu + +config DT_HAS_ARM_ARMV7M_MPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV7M_MPU)) + +DT_COMPAT_ARM_ARMV7M_SYSTICK := arm,armv7m-systick + +config DT_HAS_ARM_ARMV7M_SYSTICK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV7M_SYSTICK)) + +DT_COMPAT_ARM_ARMV8_TIMER := arm,armv8-timer + +config DT_HAS_ARM_ARMV8_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV8_TIMER)) + +DT_COMPAT_ARM_ARMV8_1M_MPU := arm,armv8.1m-mpu + +config DT_HAS_ARM_ARMV8_1M_MPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV8_1M_MPU)) + +DT_COMPAT_ARM_ARMV8_1M_SYSTICK := arm,armv8.1m-systick + +config DT_HAS_ARM_ARMV8_1M_SYSTICK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV8_1M_SYSTICK)) + +DT_COMPAT_ARM_ARMV8M_ITM := arm,armv8m-itm + +config DT_HAS_ARM_ARMV8M_ITM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV8M_ITM)) + +DT_COMPAT_ARM_ARMV8M_MPU := arm,armv8m-mpu + +config DT_HAS_ARM_ARMV8M_MPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV8M_MPU)) + +DT_COMPAT_ARM_ARMV8M_SYSTICK := arm,armv8m-systick + +config DT_HAS_ARM_ARMV8M_SYSTICK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ARMV8M_SYSTICK)) + +DT_COMPAT_ARM_AXI_TIMING_ADAPTER := arm,axi-timing-adapter + +config DT_HAS_ARM_AXI_TIMING_ADAPTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_AXI_TIMING_ADAPTER)) + +DT_COMPAT_ARM_BEETLE_SYSCON := arm,beetle-syscon + +config DT_HAS_ARM_BEETLE_SYSCON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_BEETLE_SYSCON)) + +DT_COMPAT_ARM_CMSDK_DTIMER := arm,cmsdk-dtimer + +config DT_HAS_ARM_CMSDK_DTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CMSDK_DTIMER)) + +DT_COMPAT_ARM_CMSDK_GPIO := arm,cmsdk-gpio + +config DT_HAS_ARM_CMSDK_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CMSDK_GPIO)) + +DT_COMPAT_ARM_CMSDK_TIMER := arm,cmsdk-timer + +config DT_HAS_ARM_CMSDK_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CMSDK_TIMER)) + +DT_COMPAT_ARM_CMSDK_UART := arm,cmsdk-uart + +config DT_HAS_ARM_CMSDK_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CMSDK_UART)) + +DT_COMPAT_ARM_CMSDK_WATCHDOG := arm,cmsdk-watchdog + +config DT_HAS_ARM_CMSDK_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CMSDK_WATCHDOG)) + +DT_COMPAT_ARM_CORTEX_A320 := arm,cortex-a320 + +config DT_HAS_ARM_CORTEX_A320_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_A320)) + +DT_COMPAT_ARM_CORTEX_A510 := arm,cortex-a510 + +config DT_HAS_ARM_CORTEX_A510_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_A510)) + +DT_COMPAT_ARM_CORTEX_A53 := arm,cortex-a53 + +config DT_HAS_ARM_CORTEX_A53_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_A53)) + +DT_COMPAT_ARM_CORTEX_A55 := arm,cortex-a55 + +config DT_HAS_ARM_CORTEX_A55_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_A55)) + +DT_COMPAT_ARM_CORTEX_A7 := arm,cortex-a7 + +config DT_HAS_ARM_CORTEX_A7_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_A7)) + +DT_COMPAT_ARM_CORTEX_A72 := arm,cortex-a72 + +config DT_HAS_ARM_CORTEX_A72_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_A72)) + +DT_COMPAT_ARM_CORTEX_A76 := arm,cortex-a76 + +config DT_HAS_ARM_CORTEX_A76_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_A76)) + +DT_COMPAT_ARM_CORTEX_A78 := arm,cortex-a78 + +config DT_HAS_ARM_CORTEX_A78_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_A78)) + +DT_COMPAT_ARM_CORTEX_A9 := arm,cortex-a9 + +config DT_HAS_ARM_CORTEX_A9_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_A9)) + +DT_COMPAT_ARM_CORTEX_M0 := arm,cortex-m0 + +config DT_HAS_ARM_CORTEX_M0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M0)) + +DT_COMPAT_ARM_CORTEX_M0_ := arm,cortex-m0+ + +config DT_HAS_ARM_CORTEX_M0__ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M0_)) + +DT_COMPAT_ARM_CORTEX_M1 := arm,cortex-m1 + +config DT_HAS_ARM_CORTEX_M1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M1)) + +DT_COMPAT_ARM_CORTEX_M23 := arm,cortex-m23 + +config DT_HAS_ARM_CORTEX_M23_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M23)) + +DT_COMPAT_ARM_CORTEX_M3 := arm,cortex-m3 + +config DT_HAS_ARM_CORTEX_M3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M3)) + +DT_COMPAT_ARM_CORTEX_M33 := arm,cortex-m33 + +config DT_HAS_ARM_CORTEX_M33_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M33)) + +DT_COMPAT_ARM_CORTEX_M33F := arm,cortex-m33f + +config DT_HAS_ARM_CORTEX_M33F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M33F)) + +DT_COMPAT_ARM_CORTEX_M4 := arm,cortex-m4 + +config DT_HAS_ARM_CORTEX_M4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M4)) + +DT_COMPAT_ARM_CORTEX_M4F := arm,cortex-m4f + +config DT_HAS_ARM_CORTEX_M4F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M4F)) + +DT_COMPAT_ARM_CORTEX_M52 := arm,cortex-m52 + +config DT_HAS_ARM_CORTEX_M52_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M52)) + +DT_COMPAT_ARM_CORTEX_M52F := arm,cortex-m52f + +config DT_HAS_ARM_CORTEX_M52F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M52F)) + +DT_COMPAT_ARM_CORTEX_M55 := arm,cortex-m55 + +config DT_HAS_ARM_CORTEX_M55_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M55)) + +DT_COMPAT_ARM_CORTEX_M55F := arm,cortex-m55f + +config DT_HAS_ARM_CORTEX_M55F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M55F)) + +DT_COMPAT_ARM_CORTEX_M7 := arm,cortex-m7 + +config DT_HAS_ARM_CORTEX_M7_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M7)) + +DT_COMPAT_ARM_CORTEX_M85 := arm,cortex-m85 + +config DT_HAS_ARM_CORTEX_M85_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M85)) + +DT_COMPAT_ARM_CORTEX_M85F := arm,cortex-m85f + +config DT_HAS_ARM_CORTEX_M85F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_M85F)) + +DT_COMPAT_ARM_CORTEX_R4 := arm,cortex-r4 + +config DT_HAS_ARM_CORTEX_R4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R4)) + +DT_COMPAT_ARM_CORTEX_R4F := arm,cortex-r4f + +config DT_HAS_ARM_CORTEX_R4F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R4F)) + +DT_COMPAT_ARM_CORTEX_R5 := arm,cortex-r5 + +config DT_HAS_ARM_CORTEX_R5_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R5)) + +DT_COMPAT_ARM_CORTEX_R52 := arm,cortex-r52 + +config DT_HAS_ARM_CORTEX_R52_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R52)) + +DT_COMPAT_ARM_CORTEX_R5F := arm,cortex-r5f + +config DT_HAS_ARM_CORTEX_R5F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R5F)) + +DT_COMPAT_ARM_CORTEX_R7 := arm,cortex-r7 + +config DT_HAS_ARM_CORTEX_R7_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R7)) + +DT_COMPAT_ARM_CORTEX_R8 := arm,cortex-r8 + +config DT_HAS_ARM_CORTEX_R8_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R8)) + +DT_COMPAT_ARM_CORTEX_R82 := arm,cortex-r82 + +config DT_HAS_ARM_CORTEX_R82_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CORTEX_R82)) + +DT_COMPAT_ARM_CRYPTOCELL_310 := arm,cryptocell-310 + +config DT_HAS_ARM_CRYPTOCELL_310_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CRYPTOCELL_310)) + +DT_COMPAT_ARM_CRYPTOCELL_312 := arm,cryptocell-312 + +config DT_HAS_ARM_CRYPTOCELL_312_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_CRYPTOCELL_312)) + +DT_COMPAT_ARM_DMA_PL330 := arm,dma-pl330 + +config DT_HAS_ARM_DMA_PL330_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_DMA_PL330)) + +DT_COMPAT_ARM_DTCM := arm,dtcm + +config DT_HAS_ARM_DTCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_DTCM)) + +DT_COMPAT_ARM_ETHOS_U := arm,ethos-u + +config DT_HAS_ARM_ETHOS_U_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ETHOS_U)) + +DT_COMPAT_ARM_FVP_PWRC := arm,fvp-pwrc + +config DT_HAS_ARM_FVP_PWRC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_FVP_PWRC)) + +DT_COMPAT_ARM_GIC := arm,gic + +config DT_HAS_ARM_GIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_GIC)) + +DT_COMPAT_ARM_GIC_V1 := arm,gic-v1 + +config DT_HAS_ARM_GIC_V1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_GIC_V1)) + +DT_COMPAT_ARM_GIC_V2 := arm,gic-v2 + +config DT_HAS_ARM_GIC_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_GIC_V2)) + +DT_COMPAT_ARM_GIC_V3 := arm,gic-v3 + +config DT_HAS_ARM_GIC_V3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_GIC_V3)) + +DT_COMPAT_ARM_GIC_V3_ITS := arm,gic-v3-its + +config DT_HAS_ARM_GIC_V3_ITS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_GIC_V3_ITS)) + +DT_COMPAT_ARM_ITCM := arm,itcm + +config DT_HAS_ARM_ITCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_ITCM)) + +DT_COMPAT_ARM_MHU := arm,mhu + +config DT_HAS_ARM_MHU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_MHU)) + +DT_COMPAT_ARM_MHUV3 := arm,mhuv3 + +config DT_HAS_ARM_MHUV3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_MHUV3)) + +DT_COMPAT_ARM_MMIO32_GPIO := arm,mmio32-gpio + +config DT_HAS_ARM_MMIO32_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_MMIO32_GPIO)) + +DT_COMPAT_ARM_MPS2_PINCTRL := arm,mps2-pinctrl + +config DT_HAS_ARM_MPS2_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_MPS2_PINCTRL)) + +DT_COMPAT_ARM_MPS3_PINCTRL := arm,mps3-pinctrl + +config DT_HAS_ARM_MPS3_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_MPS3_PINCTRL)) + +DT_COMPAT_ARM_MPS4_PINCTRL := arm,mps4-pinctrl + +config DT_HAS_ARM_MPS4_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_MPS4_PINCTRL)) + +DT_COMPAT_ARM_PL011 := arm,pl011 + +config DT_HAS_ARM_PL011_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_PL011)) + +DT_COMPAT_ARM_PL022 := arm,pl022 + +config DT_HAS_ARM_PL022_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_PL022)) + +DT_COMPAT_ARM_PSCI_0_2 := arm,psci-0.2 + +config DT_HAS_ARM_PSCI_0_2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_PSCI_0_2)) + +DT_COMPAT_ARM_PSCI_1_1 := arm,psci-1.1 + +config DT_HAS_ARM_PSCI_1_1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_PSCI_1_1)) + +DT_COMPAT_ARM_SBSA_UART := arm,sbsa-uart + +config DT_HAS_ARM_SBSA_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SBSA_UART)) + +DT_COMPAT_ARM_SCC := arm,scc + +config DT_HAS_ARM_SCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SCC)) + +DT_COMPAT_ARM_SCMI := arm,scmi + +config DT_HAS_ARM_SCMI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SCMI)) + +DT_COMPAT_ARM_SCMI_CLOCK := arm,scmi-clock + +config DT_HAS_ARM_SCMI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SCMI_CLOCK)) + +DT_COMPAT_ARM_SCMI_PINCTRL := arm,scmi-pinctrl + +config DT_HAS_ARM_SCMI_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SCMI_PINCTRL)) + +DT_COMPAT_ARM_SCMI_POWER := arm,scmi-power + +config DT_HAS_ARM_SCMI_POWER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SCMI_POWER)) + +DT_COMPAT_ARM_SCMI_POWER_DOMAIN := arm,scmi-power-domain + +config DT_HAS_ARM_SCMI_POWER_DOMAIN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SCMI_POWER_DOMAIN)) + +DT_COMPAT_ARM_SCMI_SHMEM := arm,scmi-shmem + +config DT_HAS_ARM_SCMI_SHMEM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SCMI_SHMEM)) + +DT_COMPAT_ARM_SCMI_SMC := arm,scmi-smc + +config DT_HAS_ARM_SCMI_SMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SCMI_SMC)) + +DT_COMPAT_ARM_SCMI_SYSTEM := arm,scmi-system + +config DT_HAS_ARM_SCMI_SYSTEM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_SCMI_SYSTEM)) + +DT_COMPAT_ARM_STMESP := arm,stmesp + +config DT_HAS_ARM_STMESP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_STMESP)) + +DT_COMPAT_ARM_V2M_BEETLE_PINCTRL := arm,v2m_beetle-pinctrl + +config DT_HAS_ARM_V2M_BEETLE_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_V2M_BEETLE_PINCTRL)) + +DT_COMPAT_ARM_V6M_NVIC := arm,v6m-nvic + +config DT_HAS_ARM_V6M_NVIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_V6M_NVIC)) + +DT_COMPAT_ARM_V7M_NVIC := arm,v7m-nvic + +config DT_HAS_ARM_V7M_NVIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_V7M_NVIC)) + +DT_COMPAT_ARM_V8_1M_NVIC := arm,v8.1m-nvic + +config DT_HAS_ARM_V8_1M_NVIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_V8_1M_NVIC)) + +DT_COMPAT_ARM_V8M_NVIC := arm,v8m-nvic + +config DT_HAS_ARM_V8M_NVIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_V8M_NVIC)) + +DT_COMPAT_ARM_VERSATILE_I2C := arm,versatile-i2c + +config DT_HAS_ARM_VERSATILE_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ARM_VERSATILE_I2C)) + +DT_COMPAT_ASAHI_KASEI_AK8975 := asahi-kasei,ak8975 + +config DT_HAS_ASAHI_KASEI_AK8975_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ASAHI_KASEI_AK8975)) + +DT_COMPAT_ASAHI_KASEI_AKM09918C := asahi-kasei,akm09918c + +config DT_HAS_ASAHI_KASEI_AKM09918C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ASAHI_KASEI_AKM09918C)) + +DT_COMPAT_ASMEDIA_ASM2364 := asmedia,asm2364 + +config DT_HAS_ASMEDIA_ASM2364_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ASMEDIA_ASM2364)) + +DT_COMPAT_ASPEED_AST10X0_CLOCK := aspeed,ast10x0-clock + +config DT_HAS_ASPEED_AST10X0_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ASPEED_AST10X0_CLOCK)) + +DT_COMPAT_ASPEED_AST10X0_RESET := aspeed,ast10x0-reset + +config DT_HAS_ASPEED_AST10X0_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ASPEED_AST10X0_RESET)) + +DT_COMPAT_ATMEL_AT24 := atmel,at24 + +config DT_HAS_ATMEL_AT24_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_AT24)) + +DT_COMPAT_ATMEL_AT24MAC402 := atmel,at24mac402 + +config DT_HAS_ATMEL_AT24MAC402_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_AT24MAC402)) + +DT_COMPAT_ATMEL_AT25 := atmel,at25 + +config DT_HAS_ATMEL_AT25_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_AT25)) + +DT_COMPAT_ATMEL_AT25XV021A := atmel,at25xv021a + +config DT_HAS_ATMEL_AT25XV021A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_AT25XV021A)) + +DT_COMPAT_ATMEL_AT45 := atmel,at45 + +config DT_HAS_ATMEL_AT45_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_AT45)) + +DT_COMPAT_ATMEL_ATAES132A := atmel,ataes132a + +config DT_HAS_ATMEL_ATAES132A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_ATAES132A)) + +DT_COMPAT_ATMEL_RF2XX := atmel,rf2xx + +config DT_HAS_ATMEL_RF2XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_RF2XX)) + +DT_COMPAT_ATMEL_SAM_ADC := atmel,sam-adc + +config DT_HAS_ATMEL_SAM_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_ADC)) + +DT_COMPAT_ATMEL_SAM_AFEC := atmel,sam-afec + +config DT_HAS_ATMEL_SAM_AFEC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_AFEC)) + +DT_COMPAT_ATMEL_SAM_CAN := atmel,sam-can + +config DT_HAS_ATMEL_SAM_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_CAN)) + +DT_COMPAT_ATMEL_SAM_DAC := atmel,sam-dac + +config DT_HAS_ATMEL_SAM_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_DAC)) + +DT_COMPAT_ATMEL_SAM_FLASH := atmel,sam-flash + +config DT_HAS_ATMEL_SAM_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_FLASH)) + +DT_COMPAT_ATMEL_SAM_FLASH_CONTROLLER := atmel,sam-flash-controller + +config DT_HAS_ATMEL_SAM_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_FLASH_CONTROLLER)) + +DT_COMPAT_ATMEL_SAM_GMAC := atmel,sam-gmac + +config DT_HAS_ATMEL_SAM_GMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_GMAC)) + +DT_COMPAT_ATMEL_SAM_GPIO := atmel,sam-gpio + +config DT_HAS_ATMEL_SAM_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_GPIO)) + +DT_COMPAT_ATMEL_SAM_HSMCI := atmel,sam-hsmci + +config DT_HAS_ATMEL_SAM_HSMCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_HSMCI)) + +DT_COMPAT_ATMEL_SAM_I2C_TWI := atmel,sam-i2c-twi + +config DT_HAS_ATMEL_SAM_I2C_TWI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_I2C_TWI)) + +DT_COMPAT_ATMEL_SAM_I2C_TWIHS := atmel,sam-i2c-twihs + +config DT_HAS_ATMEL_SAM_I2C_TWIHS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_I2C_TWIHS)) + +DT_COMPAT_ATMEL_SAM_I2C_TWIM := atmel,sam-i2c-twim + +config DT_HAS_ATMEL_SAM_I2C_TWIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_I2C_TWIM)) + +DT_COMPAT_ATMEL_SAM_MDIO := atmel,sam-mdio + +config DT_HAS_ATMEL_SAM_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_MDIO)) + +DT_COMPAT_ATMEL_SAM_PINCTRL := atmel,sam-pinctrl + +config DT_HAS_ATMEL_SAM_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_PINCTRL)) + +DT_COMPAT_ATMEL_SAM_PMC := atmel,sam-pmc + +config DT_HAS_ATMEL_SAM_PMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_PMC)) + +DT_COMPAT_ATMEL_SAM_PWM := atmel,sam-pwm + +config DT_HAS_ATMEL_SAM_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_PWM)) + +DT_COMPAT_ATMEL_SAM_RSTC := atmel,sam-rstc + +config DT_HAS_ATMEL_SAM_RSTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_RSTC)) + +DT_COMPAT_ATMEL_SAM_RTC := atmel,sam-rtc + +config DT_HAS_ATMEL_SAM_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_RTC)) + +DT_COMPAT_ATMEL_SAM_SMC := atmel,sam-smc + +config DT_HAS_ATMEL_SAM_SMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_SMC)) + +DT_COMPAT_ATMEL_SAM_SPI := atmel,sam-spi + +config DT_HAS_ATMEL_SAM_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_SPI)) + +DT_COMPAT_ATMEL_SAM_SSC := atmel,sam-ssc + +config DT_HAS_ATMEL_SAM_SSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_SSC)) + +DT_COMPAT_ATMEL_SAM_SUPC := atmel,sam-supc + +config DT_HAS_ATMEL_SAM_SUPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_SUPC)) + +DT_COMPAT_ATMEL_SAM_TC := atmel,sam-tc + +config DT_HAS_ATMEL_SAM_TC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_TC)) + +DT_COMPAT_ATMEL_SAM_TC_QDEC := atmel,sam-tc-qdec + +config DT_HAS_ATMEL_SAM_TC_QDEC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_TC_QDEC)) + +DT_COMPAT_ATMEL_SAM_TRNG := atmel,sam-trng + +config DT_HAS_ATMEL_SAM_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_TRNG)) + +DT_COMPAT_ATMEL_SAM_UART := atmel,sam-uart + +config DT_HAS_ATMEL_SAM_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_UART)) + +DT_COMPAT_ATMEL_SAM_UDP := atmel,sam-udp + +config DT_HAS_ATMEL_SAM_UDP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_UDP)) + +DT_COMPAT_ATMEL_SAM_USART := atmel,sam-usart + +config DT_HAS_ATMEL_SAM_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_USART)) + +DT_COMPAT_ATMEL_SAM_USBC := atmel,sam-usbc + +config DT_HAS_ATMEL_SAM_USBC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_USBC)) + +DT_COMPAT_ATMEL_SAM_USBHS := atmel,sam-usbhs + +config DT_HAS_ATMEL_SAM_USBHS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_USBHS)) + +DT_COMPAT_ATMEL_SAM_WATCHDOG := atmel,sam-watchdog + +config DT_HAS_ATMEL_SAM_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_WATCHDOG)) + +DT_COMPAT_ATMEL_SAM_XDMAC := atmel,sam-xdmac + +config DT_HAS_ATMEL_SAM_XDMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM_XDMAC)) + +DT_COMPAT_ATMEL_SAM0_ADC := atmel,sam0-adc + +config DT_HAS_ATMEL_SAM0_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_ADC)) + +DT_COMPAT_ATMEL_SAM0_CAN := atmel,sam0-can + +config DT_HAS_ATMEL_SAM0_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_CAN)) + +DT_COMPAT_ATMEL_SAM0_DAC := atmel,sam0-dac + +config DT_HAS_ATMEL_SAM0_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_DAC)) + +DT_COMPAT_ATMEL_SAM0_DMAC := atmel,sam0-dmac + +config DT_HAS_ATMEL_SAM0_DMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_DMAC)) + +DT_COMPAT_ATMEL_SAM0_EIC := atmel,sam0-eic + +config DT_HAS_ATMEL_SAM0_EIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_EIC)) + +DT_COMPAT_ATMEL_SAM0_GCLK := atmel,sam0-gclk + +config DT_HAS_ATMEL_SAM0_GCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_GCLK)) + +DT_COMPAT_ATMEL_SAM0_GMAC := atmel,sam0-gmac + +config DT_HAS_ATMEL_SAM0_GMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_GMAC)) + +DT_COMPAT_ATMEL_SAM0_GPIO := atmel,sam0-gpio + +config DT_HAS_ATMEL_SAM0_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_GPIO)) + +DT_COMPAT_ATMEL_SAM0_I2C := atmel,sam0-i2c + +config DT_HAS_ATMEL_SAM0_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_I2C)) + +DT_COMPAT_ATMEL_SAM0_ID := atmel,sam0-id + +config DT_HAS_ATMEL_SAM0_ID_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_ID)) + +DT_COMPAT_ATMEL_SAM0_MCLK := atmel,sam0-mclk + +config DT_HAS_ATMEL_SAM0_MCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_MCLK)) + +DT_COMPAT_ATMEL_SAM0_NVMCTRL := atmel,sam0-nvmctrl + +config DT_HAS_ATMEL_SAM0_NVMCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_NVMCTRL)) + +DT_COMPAT_ATMEL_SAM0_OSC32KCTRL := atmel,sam0-osc32kctrl + +config DT_HAS_ATMEL_SAM0_OSC32KCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_OSC32KCTRL)) + +DT_COMPAT_ATMEL_SAM0_PINCTRL := atmel,sam0-pinctrl + +config DT_HAS_ATMEL_SAM0_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_PINCTRL)) + +DT_COMPAT_ATMEL_SAM0_PINMUX := atmel,sam0-pinmux + +config DT_HAS_ATMEL_SAM0_PINMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_PINMUX)) + +DT_COMPAT_ATMEL_SAM0_RTC := atmel,sam0-rtc + +config DT_HAS_ATMEL_SAM0_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_RTC)) + +DT_COMPAT_ATMEL_SAM0_SERCOM := atmel,sam0-sercom + +config DT_HAS_ATMEL_SAM0_SERCOM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_SERCOM)) + +DT_COMPAT_ATMEL_SAM0_SPI := atmel,sam0-spi + +config DT_HAS_ATMEL_SAM0_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_SPI)) + +DT_COMPAT_ATMEL_SAM0_TC_PWM := atmel,sam0-tc-pwm + +config DT_HAS_ATMEL_SAM0_TC_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_TC_PWM)) + +DT_COMPAT_ATMEL_SAM0_TC32 := atmel,sam0-tc32 + +config DT_HAS_ATMEL_SAM0_TC32_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_TC32)) + +DT_COMPAT_ATMEL_SAM0_TCC_PWM := atmel,sam0-tcc-pwm + +config DT_HAS_ATMEL_SAM0_TCC_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_TCC_PWM)) + +DT_COMPAT_ATMEL_SAM0_UART := atmel,sam0-uart + +config DT_HAS_ATMEL_SAM0_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_UART)) + +DT_COMPAT_ATMEL_SAM0_USB := atmel,sam0-usb + +config DT_HAS_ATMEL_SAM0_USB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_USB)) + +DT_COMPAT_ATMEL_SAM0_WATCHDOG := atmel,sam0-watchdog + +config DT_HAS_ATMEL_SAM0_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM0_WATCHDOG)) + +DT_COMPAT_ATMEL_SAM4L_FLASHCALW_CONTROLLER := atmel,sam4l-flashcalw-controller + +config DT_HAS_ATMEL_SAM4L_FLASHCALW_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM4L_FLASHCALW_CONTROLLER)) + +DT_COMPAT_ATMEL_SAM4L_GPIO := atmel,sam4l-gpio + +config DT_HAS_ATMEL_SAM4L_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM4L_GPIO)) + +DT_COMPAT_ATMEL_SAM4L_UID := atmel,sam4l-uid + +config DT_HAS_ATMEL_SAM4L_UID_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM4L_UID)) + +DT_COMPAT_ATMEL_SAM4L_WATCHDOG := atmel,sam4l-watchdog + +config DT_HAS_ATMEL_SAM4L_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAM4L_WATCHDOG)) + +DT_COMPAT_ATMEL_SAMD5X_DAC := atmel,samd5x-dac + +config DT_HAS_ATMEL_SAMD5X_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_SAMD5X_DAC)) + +DT_COMPAT_ATMEL_WINC1500 := atmel,winc1500 + +config DT_HAS_ATMEL_WINC1500_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_WINC1500)) + +DT_COMPAT_ATMEL_XPLAINED_HEADER := atmel-xplained-header + +config DT_HAS_ATMEL_XPLAINED_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_XPLAINED_HEADER)) + +DT_COMPAT_ATMEL_XPLAINED_PRO_HEADER := atmel-xplained-pro-header + +config DT_HAS_ATMEL_XPLAINED_PRO_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ATMEL_XPLAINED_PRO_HEADER)) + +DT_COMPAT_AVAGO_APDS9253 := avago,apds9253 + +config DT_HAS_AVAGO_APDS9253_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AVAGO_APDS9253)) + +DT_COMPAT_AVAGO_APDS9306 := avago,apds9306 + +config DT_HAS_AVAGO_APDS9306_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AVAGO_APDS9306)) + +DT_COMPAT_AVAGO_APDS9960 := avago,apds9960 + +config DT_HAS_AVAGO_APDS9960_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AVAGO_APDS9960)) + +DT_COMPAT_AVIA_HX711_SPI := avia,hx711-spi + +config DT_HAS_AVIA_HX711_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AVIA_HX711_SPI)) + +DT_COMPAT_AWINIC_AW88298 := awinic,aw88298 + +config DT_HAS_AWINIC_AW88298_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AWINIC_AW88298)) + +DT_COMPAT_AWINIC_AW9523B := awinic,aw9523b + +config DT_HAS_AWINIC_AW9523B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AWINIC_AW9523B)) + +DT_COMPAT_AWINIC_AW9523B_GPIO := awinic,aw9523b-gpio + +config DT_HAS_AWINIC_AW9523B_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_AWINIC_AW9523B_GPIO)) + +DT_COMPAT_BFLB_ADC := bflb,adc + +config DT_HAS_BFLB_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_ADC)) + +DT_COMPAT_BFLB_AON_REGULATOR := bflb,aon-regulator + +config DT_HAS_BFLB_AON_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_AON_REGULATOR)) + +DT_COMPAT_BFLB_BCLK := bflb,bclk + +config DT_HAS_BFLB_BCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BCLK)) + +DT_COMPAT_BFLB_BL60X_CLOCK_CONTROLLER := bflb,bl60x-clock-controller + +config DT_HAS_BFLB_BL60X_CLOCK_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL60X_CLOCK_CONTROLLER)) + +DT_COMPAT_BFLB_BL60X_70X_GPIO := bflb,bl60x_70x-gpio + +config DT_HAS_BFLB_BL60X_70X_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL60X_70X_GPIO)) + +DT_COMPAT_BFLB_BL61X_CLOCK_CONTROLLER := bflb,bl61x-clock-controller + +config DT_HAS_BFLB_BL61X_CLOCK_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL61X_CLOCK_CONTROLLER)) + +DT_COMPAT_BFLB_BL61X_GPIO := bflb,bl61x-gpio + +config DT_HAS_BFLB_BL61X_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL61X_GPIO)) + +DT_COMPAT_BFLB_BL61X_PSRAM := bflb,bl61x-psram + +config DT_HAS_BFLB_BL61X_PSRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL61X_PSRAM)) + +DT_COMPAT_BFLB_BL70X_BT_HCI := bflb,bl70x-bt-hci + +config DT_HAS_BFLB_BL70X_BT_HCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL70X_BT_HCI)) + +DT_COMPAT_BFLB_BL70X_CLOCK_CONTROLLER := bflb,bl70x-clock-controller + +config DT_HAS_BFLB_BL70X_CLOCK_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL70X_CLOCK_CONTROLLER)) + +DT_COMPAT_BFLB_BL70X_L_CLOCK_CONTROLLER := bflb,bl70x_l-clock-controller + +config DT_HAS_BFLB_BL70X_L_CLOCK_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL70X_L_CLOCK_CONTROLLER)) + +DT_COMPAT_BFLB_BL70X_L_DLL := bflb,bl70x_l-dll + +config DT_HAS_BFLB_BL70X_L_DLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_BL70X_L_DLL)) + +DT_COMPAT_BFLB_CLOCK_CONTROLLER := bflb,clock-controller + +config DT_HAS_BFLB_CLOCK_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_CLOCK_CONTROLLER)) + +DT_COMPAT_BFLB_DBI := bflb,dbi + +config DT_HAS_BFLB_DBI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_DBI)) + +DT_COMPAT_BFLB_DMA := bflb,dma + +config DT_HAS_BFLB_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_DMA)) + +DT_COMPAT_BFLB_EFUSE := bflb,efuse + +config DT_HAS_BFLB_EFUSE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_EFUSE)) + +DT_COMPAT_BFLB_F32K := bflb,f32k + +config DT_HAS_BFLB_F32K_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_F32K)) + +DT_COMPAT_BFLB_FLASH_CLK := bflb,flash-clk + +config DT_HAS_BFLB_FLASH_CLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_FLASH_CLK)) + +DT_COMPAT_BFLB_FLASH_CONTROLLER := bflb,flash-controller + +config DT_HAS_BFLB_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_FLASH_CONTROLLER)) + +DT_COMPAT_BFLB_I2C := bflb,i2c + +config DT_HAS_BFLB_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_I2C)) + +DT_COMPAT_BFLB_IRX := bflb,irx + +config DT_HAS_BFLB_IRX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_IRX)) + +DT_COMPAT_BFLB_L1C := bflb,l1c + +config DT_HAS_BFLB_L1C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_L1C)) + +DT_COMPAT_BFLB_PINCTRL := bflb,pinctrl + +config DT_HAS_BFLB_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_PINCTRL)) + +DT_COMPAT_BFLB_PLL := bflb,pll + +config DT_HAS_BFLB_PLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_PLL)) + +DT_COMPAT_BFLB_POWER_CONTROLLER := bflb,power-controller + +config DT_HAS_BFLB_POWER_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_POWER_CONTROLLER)) + +DT_COMPAT_BFLB_PWM_1 := bflb,pwm-1 + +config DT_HAS_BFLB_PWM_1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_PWM_1)) + +DT_COMPAT_BFLB_PWM_2 := bflb,pwm-2 + +config DT_HAS_BFLB_PWM_2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_PWM_2)) + +DT_COMPAT_BFLB_ROOT_CLK := bflb,root-clk + +config DT_HAS_BFLB_ROOT_CLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_ROOT_CLK)) + +DT_COMPAT_BFLB_RT_REGULATOR := bflb,rt-regulator + +config DT_HAS_BFLB_RT_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_RT_REGULATOR)) + +DT_COMPAT_BFLB_RTC := bflb,rtc + +config DT_HAS_BFLB_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_RTC)) + +DT_COMPAT_BFLB_SEC_ENG_AES := bflb,sec-eng-aes + +config DT_HAS_BFLB_SEC_ENG_AES_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_SEC_ENG_AES)) + +DT_COMPAT_BFLB_SEC_ENG_SHA := bflb,sec-eng-sha + +config DT_HAS_BFLB_SEC_ENG_SHA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_SEC_ENG_SHA)) + +DT_COMPAT_BFLB_SEC_ENG_TRNG := bflb,sec-eng-trng + +config DT_HAS_BFLB_SEC_ENG_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_SEC_ENG_TRNG)) + +DT_COMPAT_BFLB_SOC_REGULATOR := bflb,soc-regulator + +config DT_HAS_BFLB_SOC_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_SOC_REGULATOR)) + +DT_COMPAT_BFLB_SPI := bflb,spi + +config DT_HAS_BFLB_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_SPI)) + +DT_COMPAT_BFLB_TIMER := bflb,timer + +config DT_HAS_BFLB_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_TIMER)) + +DT_COMPAT_BFLB_TIMER_CHANNEL := bflb,timer-channel + +config DT_HAS_BFLB_TIMER_CHANNEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_TIMER_CHANNEL)) + +DT_COMPAT_BFLB_UART := bflb,uart + +config DT_HAS_BFLB_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_UART)) + +DT_COMPAT_BFLB_UDC_1 := bflb,udc-1 + +config DT_HAS_BFLB_UDC_1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_UDC_1)) + +DT_COMPAT_BFLB_WDT := bflb,wdt + +config DT_HAS_BFLB_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BFLB_WDT)) + +DT_COMPAT_BOSCH_BMA280 := bosch,bma280 + +config DT_HAS_BOSCH_BMA280_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMA280)) + +DT_COMPAT_BOSCH_BMA4XX := bosch,bma4xx + +config DT_HAS_BOSCH_BMA4XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMA4XX)) + +DT_COMPAT_BOSCH_BMC150_MAGN := bosch,bmc150_magn + +config DT_HAS_BOSCH_BMC150_MAGN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMC150_MAGN)) + +DT_COMPAT_BOSCH_BME280 := bosch,bme280 + +config DT_HAS_BOSCH_BME280_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BME280)) + +DT_COMPAT_BOSCH_BME680 := bosch,bme680 + +config DT_HAS_BOSCH_BME680_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BME680)) + +DT_COMPAT_BOSCH_BMG160 := bosch,bmg160 + +config DT_HAS_BOSCH_BMG160_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMG160)) + +DT_COMPAT_BOSCH_BMI08X_ACCEL := bosch,bmi08x-accel + +config DT_HAS_BOSCH_BMI08X_ACCEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMI08X_ACCEL)) + +DT_COMPAT_BOSCH_BMI08X_GYRO := bosch,bmi08x-gyro + +config DT_HAS_BOSCH_BMI08X_GYRO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMI08X_GYRO)) + +DT_COMPAT_BOSCH_BMI160 := bosch,bmi160 + +config DT_HAS_BOSCH_BMI160_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMI160)) + +DT_COMPAT_BOSCH_BMI270 := bosch,bmi270 + +config DT_HAS_BOSCH_BMI270_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMI270)) + +DT_COMPAT_BOSCH_BMI323 := bosch,bmi323 + +config DT_HAS_BOSCH_BMI323_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMI323)) + +DT_COMPAT_BOSCH_BMM150 := bosch,bmm150 + +config DT_HAS_BOSCH_BMM150_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMM150)) + +DT_COMPAT_BOSCH_BMM350 := bosch,bmm350 + +config DT_HAS_BOSCH_BMM350_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMM350)) + +DT_COMPAT_BOSCH_BMP180 := bosch,bmp180 + +config DT_HAS_BOSCH_BMP180_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMP180)) + +DT_COMPAT_BOSCH_BMP388 := bosch,bmp388 + +config DT_HAS_BOSCH_BMP388_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMP388)) + +DT_COMPAT_BOSCH_BMP390 := bosch,bmp390 + +config DT_HAS_BOSCH_BMP390_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMP390)) + +DT_COMPAT_BOSCH_BMP581 := bosch,bmp581 + +config DT_HAS_BOSCH_BMP581_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BOSCH_BMP581)) + +DT_COMPAT_BRCM_AFBR_S50 := brcm,afbr-s50 + +config DT_HAS_BRCM_AFBR_S50_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_AFBR_S50)) + +DT_COMPAT_BRCM_BCM2711_AUX_UART := brcm,bcm2711-aux-uart + +config DT_HAS_BRCM_BCM2711_AUX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_BCM2711_AUX_UART)) + +DT_COMPAT_BRCM_BCM2711_GPIO := brcm,bcm2711-gpio + +config DT_HAS_BRCM_BCM2711_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_BCM2711_GPIO)) + +DT_COMPAT_BRCM_BCM2711_PINCTRL := brcm,bcm2711-pinctrl + +config DT_HAS_BRCM_BCM2711_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_BCM2711_PINCTRL)) + +DT_COMPAT_BRCM_BRCMSTB_GPIO := brcm,brcmstb-gpio + +config DT_HAS_BRCM_BRCMSTB_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_BRCMSTB_GPIO)) + +DT_COMPAT_BRCM_BRCMSTB_PCIE := brcm,brcmstb-pcie + +config DT_HAS_BRCM_BRCMSTB_PCIE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_BRCMSTB_PCIE)) + +DT_COMPAT_BRCM_IPROC_GPIO := brcm,iproc-gpio + +config DT_HAS_BRCM_IPROC_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_IPROC_GPIO)) + +DT_COMPAT_BRCM_IPROC_I2C := brcm,iproc-i2c + +config DT_HAS_BRCM_IPROC_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_IPROC_I2C)) + +DT_COMPAT_BRCM_IPROC_PAX_DMA_V1 := brcm,iproc-pax-dma-v1 + +config DT_HAS_BRCM_IPROC_PAX_DMA_V1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_IPROC_PAX_DMA_V1)) + +DT_COMPAT_BRCM_IPROC_PAX_DMA_V2 := brcm,iproc-pax-dma-v2 + +config DT_HAS_BRCM_IPROC_PAX_DMA_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_IPROC_PAX_DMA_V2)) + +DT_COMPAT_BRCM_IPROC_PCIE_EP := brcm,iproc-pcie-ep + +config DT_HAS_BRCM_IPROC_PCIE_EP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_IPROC_PCIE_EP)) + +DT_COMPAT_BRCM_IPROC_RNG200 := brcm,iproc-rng200 + +config DT_HAS_BRCM_IPROC_RNG200_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_BRCM_IPROC_RNG200)) + +DT_COMPAT_CAN_TRANSCEIVER_GPIO := can-transceiver-gpio + +config DT_HAS_CAN_TRANSCEIVER_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CAN_TRANSCEIVER_GPIO)) + +DT_COMPAT_CDNS_I2C := cdns,i2c + +config DT_HAS_CDNS_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_I2C)) + +DT_COMPAT_CDNS_I3C := cdns,i3c + +config DT_HAS_CDNS_I3C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_I3C)) + +DT_COMPAT_CDNS_NAND := cdns,nand + +config DT_HAS_CDNS_NAND_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_NAND)) + +DT_COMPAT_CDNS_QSPI_NOR := cdns,qspi-nor + +config DT_HAS_CDNS_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_QSPI_NOR)) + +DT_COMPAT_CDNS_SDHC := cdns,sdhc + +config DT_HAS_CDNS_SDHC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_SDHC)) + +DT_COMPAT_CDNS_SPI := cdns,spi + +config DT_HAS_CDNS_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_SPI)) + +DT_COMPAT_CDNS_SWERV_S400 := cdns,swerv,s400 + +config DT_HAS_CDNS_SWERV_S400_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_SWERV_S400)) + +DT_COMPAT_CDNS_SWERV_S420 := cdns,swerv,s420 + +config DT_HAS_CDNS_SWERV_S420_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_SWERV_S420)) + +DT_COMPAT_CDNS_SWERV_PIC := cdns,swerv-pic + +config DT_HAS_CDNS_SWERV_PIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_SWERV_PIC)) + +DT_COMPAT_CDNS_TENSILICA_XTENSA_LX3 := cdns,tensilica-xtensa-lx3 + +config DT_HAS_CDNS_TENSILICA_XTENSA_LX3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_TENSILICA_XTENSA_LX3)) + +DT_COMPAT_CDNS_TENSILICA_XTENSA_LX4 := cdns,tensilica-xtensa-lx4 + +config DT_HAS_CDNS_TENSILICA_XTENSA_LX4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_TENSILICA_XTENSA_LX4)) + +DT_COMPAT_CDNS_TENSILICA_XTENSA_LX6 := cdns,tensilica-xtensa-lx6 + +config DT_HAS_CDNS_TENSILICA_XTENSA_LX6_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_TENSILICA_XTENSA_LX6)) + +DT_COMPAT_CDNS_TENSILICA_XTENSA_LX7 := cdns,tensilica-xtensa-lx7 + +config DT_HAS_CDNS_TENSILICA_XTENSA_LX7_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_TENSILICA_XTENSA_LX7)) + +DT_COMPAT_CDNS_UART := cdns,uart + +config DT_HAS_CDNS_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_UART)) + +DT_COMPAT_CDNS_XTENSA_CORE_INTC := cdns,xtensa-core-intc + +config DT_HAS_CDNS_XTENSA_CORE_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CDNS_XTENSA_CORE_INTC)) + +DT_COMPAT_CHIPONE_CO5300 := chipone,co5300 + +config DT_HAS_CHIPONE_CO5300_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CHIPONE_CO5300)) + +DT_COMPAT_CHIPSEMI_CHSC5X := chipsemi,chsc5x + +config DT_HAS_CHIPSEMI_CHSC5X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CHIPSEMI_CHSC5X)) + +DT_COMPAT_CHIPSEMI_CHSC6540 := chipsemi,chsc6540 + +config DT_HAS_CHIPSEMI_CHSC6540_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CHIPSEMI_CHSC6540)) + +DT_COMPAT_CHIPSEMI_CHSC6X := chipsemi,chsc6x + +config DT_HAS_CHIPSEMI_CHSC6X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CHIPSEMI_CHSC6X)) + +DT_COMPAT_CIRQUE_PINNACLE := cirque,pinnacle + +config DT_HAS_CIRQUE_PINNACLE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CIRQUE_PINNACLE)) + +DT_COMPAT_CIRRUS_CP9314 := cirrus,cp9314 + +config DT_HAS_CIRRUS_CP9314_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CIRRUS_CP9314)) + +DT_COMPAT_CIRRUS_CS40L5X := cirrus,cs40l5x + +config DT_HAS_CIRRUS_CS40L5X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CIRRUS_CS40L5X)) + +DT_COMPAT_CIRRUS_CS43L22 := cirrus,cs43l22 + +config DT_HAS_CIRRUS_CS43L22_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CIRRUS_CS43L22)) + +DT_COMPAT_CIRRUS_CS47L63 := cirrus,cs47l63 + +config DT_HAS_CIRRUS_CS47L63_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CIRRUS_CS47L63)) + +DT_COMPAT_CURRENT_SENSE_AMPLIFIER := current-sense-amplifier + +config DT_HAS_CURRENT_SENSE_AMPLIFIER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CURRENT_SENSE_AMPLIFIER)) + +DT_COMPAT_CURRENT_SENSE_SHUNT := current-sense-shunt + +config DT_HAS_CURRENT_SENSE_SHUNT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CURRENT_SENSE_SHUNT)) + +DT_COMPAT_CYPRESS_CY8C95XX_GPIO := cypress,cy8c95xx-gpio + +config DT_HAS_CYPRESS_CY8C95XX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_CY8C95XX_GPIO)) + +DT_COMPAT_CYPRESS_CY8C95XX_GPIO_PORT := cypress,cy8c95xx-gpio-port + +config DT_HAS_CYPRESS_CY8C95XX_GPIO_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_CY8C95XX_GPIO_PORT)) + +DT_COMPAT_CYPRESS_CY8CMBR3XXX := cypress,cy8cmbr3xxx + +config DT_HAS_CYPRESS_CY8CMBR3XXX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_CY8CMBR3XXX)) + +DT_COMPAT_CYPRESS_PSOC6_FLASH_CONTROLLER := cypress,psoc6-flash-controller + +config DT_HAS_CYPRESS_PSOC6_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_FLASH_CONTROLLER)) + +DT_COMPAT_CYPRESS_PSOC6_GPIO := cypress,psoc6-gpio + +config DT_HAS_CYPRESS_PSOC6_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_GPIO)) + +DT_COMPAT_CYPRESS_PSOC6_HSIOM := cypress,psoc6-hsiom + +config DT_HAS_CYPRESS_PSOC6_HSIOM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_HSIOM)) + +DT_COMPAT_CYPRESS_PSOC6_INTMUX := cypress,psoc6-intmux + +config DT_HAS_CYPRESS_PSOC6_INTMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_INTMUX)) + +DT_COMPAT_CYPRESS_PSOC6_INTMUX_CH := cypress,psoc6-intmux-ch + +config DT_HAS_CYPRESS_PSOC6_INTMUX_CH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_INTMUX_CH)) + +DT_COMPAT_CYPRESS_PSOC6_SPI := cypress,psoc6-spi + +config DT_HAS_CYPRESS_PSOC6_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_SPI)) + +DT_COMPAT_CYPRESS_PSOC6_UART := cypress,psoc6-uart + +config DT_HAS_CYPRESS_PSOC6_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_UART)) + +DT_COMPAT_CYPRESS_PSOC6_UID := cypress,psoc6-uid + +config DT_HAS_CYPRESS_PSOC6_UID_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_CYPRESS_PSOC6_UID)) + +DT_COMPAT_DAC_LEDS := dac-leds + +config DT_HAS_DAC_LEDS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_DAC_LEDS)) + +DT_COMPAT_DAVICOM_DM8806_PHY := davicom,dm8806-phy + +config DT_HAS_DAVICOM_DM8806_PHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_DAVICOM_DM8806_PHY)) + +DT_COMPAT_DAVICOM_DM9051 := davicom,dm9051 + +config DT_HAS_DAVICOM_DM9051_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_DAVICOM_DM9051)) + +DT_COMPAT_DECAWAVE_DW1000 := decawave,dw1000 + +config DT_HAS_DECAWAVE_DW1000_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_DECAWAVE_DW1000)) + +DT_COMPAT_DFROBOT_A01NYUB := dfrobot,a01nyub + +config DT_HAS_DFROBOT_A01NYUB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_DFROBOT_A01NYUB)) + +DT_COMPAT_DIGILENT_PMOD := digilent,pmod + +config DT_HAS_DIGILENT_PMOD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_DIGILENT_PMOD)) + +DT_COMPAT_DIODES_PI3USB9201 := diodes,pi3usb9201 + +config DT_HAS_DIODES_PI3USB9201_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_DIODES_PI3USB9201)) + +DT_COMPAT_DLG_DA7212 := dlg,da7212 + +config DT_HAS_DLG_DA7212_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_DLG_DA7212)) + +DT_COMPAT_EFINIX_SAPPHIRE_GPIO := efinix,sapphire-gpio + +config DT_HAS_EFINIX_SAPPHIRE_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_EFINIX_SAPPHIRE_GPIO)) + +DT_COMPAT_EFINIX_SAPPHIRE_TIMER0 := efinix,sapphire-timer0 + +config DT_HAS_EFINIX_SAPPHIRE_TIMER0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_EFINIX_SAPPHIRE_TIMER0)) + +DT_COMPAT_EFINIX_SAPPHIRE_UART0 := efinix,sapphire-uart0 + +config DT_HAS_EFINIX_SAPPHIRE_UART0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_EFINIX_SAPPHIRE_UART0)) + +DT_COMPAT_EFINIX_VEXRISCV_SAPPHIRE := efinix,vexriscv-sapphire + +config DT_HAS_EFINIX_VEXRISCV_SAPPHIRE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_EFINIX_VEXRISCV_SAPPHIRE)) + +DT_COMPAT_EGIS_ET171_SPI := egis,et171-spi + +config DT_HAS_EGIS_ET171_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_EGIS_ET171_SPI)) + +DT_COMPAT_EINK_AC057TC1 := eink,ac057tc1 + +config DT_HAS_EINK_AC057TC1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_EINK_AC057TC1)) + +DT_COMPAT_ELAN_EM32_AHB := elan,em32-ahb + +config DT_HAS_ELAN_EM32_AHB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ELAN_EM32_AHB)) + +DT_COMPAT_ELAN_EM32_APB := elan,em32-apb + +config DT_HAS_ELAN_EM32_APB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ELAN_EM32_APB)) + +DT_COMPAT_ELAN_EM32_GPIO := elan,em32-gpio + +config DT_HAS_ELAN_EM32_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ELAN_EM32_GPIO)) + +DT_COMPAT_ELAN_EM32_PWM := elan,em32-pwm + +config DT_HAS_ELAN_EM32_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ELAN_EM32_PWM)) + +DT_COMPAT_ENE_KB106X_ADC := ene,kb106x-adc + +config DT_HAS_ENE_KB106X_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB106X_ADC)) + +DT_COMPAT_ENE_KB106X_GCFG := ene,kb106x-gcfg + +config DT_HAS_ENE_KB106X_GCFG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB106X_GCFG)) + +DT_COMPAT_ENE_KB106X_GPIO := ene,kb106x-gpio + +config DT_HAS_ENE_KB106X_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB106X_GPIO)) + +DT_COMPAT_ENE_KB106X_PINCTRL := ene,kb106x-pinctrl + +config DT_HAS_ENE_KB106X_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB106X_PINCTRL)) + +DT_COMPAT_ENE_KB106X_PWM := ene,kb106x-pwm + +config DT_HAS_ENE_KB106X_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB106X_PWM)) + +DT_COMPAT_ENE_KB106X_UART := ene,kb106x-uart + +config DT_HAS_ENE_KB106X_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB106X_UART)) + +DT_COMPAT_ENE_KB106X_WATCHDOG := ene,kb106x-watchdog + +config DT_HAS_ENE_KB106X_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB106X_WATCHDOG)) + +DT_COMPAT_ENE_KB1200_ADC := ene,kb1200-adc + +config DT_HAS_ENE_KB1200_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_ADC)) + +DT_COMPAT_ENE_KB1200_GCFG := ene,kb1200-gcfg + +config DT_HAS_ENE_KB1200_GCFG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_GCFG)) + +DT_COMPAT_ENE_KB1200_GPIO := ene,kb1200-gpio + +config DT_HAS_ENE_KB1200_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_GPIO)) + +DT_COMPAT_ENE_KB1200_I2C := ene,kb1200-i2c + +config DT_HAS_ENE_KB1200_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_I2C)) + +DT_COMPAT_ENE_KB1200_PINCTRL := ene,kb1200-pinctrl + +config DT_HAS_ENE_KB1200_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_PINCTRL)) + +DT_COMPAT_ENE_KB1200_PMU := ene,kb1200-pmu + +config DT_HAS_ENE_KB1200_PMU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_PMU)) + +DT_COMPAT_ENE_KB1200_PWM := ene,kb1200-pwm + +config DT_HAS_ENE_KB1200_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_PWM)) + +DT_COMPAT_ENE_KB1200_TACH := ene,kb1200-tach + +config DT_HAS_ENE_KB1200_TACH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_TACH)) + +DT_COMPAT_ENE_KB1200_UART := ene,kb1200-uart + +config DT_HAS_ENE_KB1200_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_UART)) + +DT_COMPAT_ENE_KB1200_WATCHDOG := ene,kb1200-watchdog + +config DT_HAS_ENE_KB1200_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ENE_KB1200_WATCHDOG)) + +DT_COMPAT_EPCOS_B57861S0103A039 := epcos,b57861s0103a039 + +config DT_HAS_EPCOS_B57861S0103A039_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_EPCOS_B57861S0103A039)) + +DT_COMPAT_EPSON_RX8130CE_RTC := epson,rx8130ce-rtc + +config DT_HAS_EPSON_RX8130CE_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_EPSON_RX8130CE_RTC)) + +DT_COMPAT_ESPRESSIF_ESP_AT := espressif,esp-at + +config DT_HAS_ESPRESSIF_ESP_AT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP_AT)) + +DT_COMPAT_ESPRESSIF_ESP_HOSTED := espressif,esp-hosted + +config DT_HAS_ESPRESSIF_ESP_HOSTED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP_HOSTED)) + +DT_COMPAT_ESPRESSIF_ESP_THREADBR_HEADER := espressif,esp-threadbr-header + +config DT_HAS_ESPRESSIF_ESP_THREADBR_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP_THREADBR_HEADER)) + +DT_COMPAT_ESPRESSIF_ESP32_ADC := espressif,esp32-adc + +config DT_HAS_ESPRESSIF_ESP32_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_ADC)) + +DT_COMPAT_ESPRESSIF_ESP32_AES := espressif,esp32-aes + +config DT_HAS_ESPRESSIF_ESP32_AES_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_AES)) + +DT_COMPAT_ESPRESSIF_ESP32_BT_HCI := espressif,esp32-bt-hci + +config DT_HAS_ESPRESSIF_ESP32_BT_HCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_BT_HCI)) + +DT_COMPAT_ESPRESSIF_ESP32_CLOCK := espressif,esp32-clock + +config DT_HAS_ESPRESSIF_ESP32_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_CLOCK)) + +DT_COMPAT_ESPRESSIF_ESP32_COUNTER := espressif,esp32-counter + +config DT_HAS_ESPRESSIF_ESP32_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_COUNTER)) + +DT_COMPAT_ESPRESSIF_ESP32_DAC := espressif,esp32-dac + +config DT_HAS_ESPRESSIF_ESP32_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_DAC)) + +DT_COMPAT_ESPRESSIF_ESP32_ETH := espressif,esp32-eth + +config DT_HAS_ESPRESSIF_ESP32_ETH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_ETH)) + +DT_COMPAT_ESPRESSIF_ESP32_FLASH_CONTROLLER := espressif,esp32-flash-controller + +config DT_HAS_ESPRESSIF_ESP32_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_FLASH_CONTROLLER)) + +DT_COMPAT_ESPRESSIF_ESP32_GDMA := espressif,esp32-gdma + +config DT_HAS_ESPRESSIF_ESP32_GDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_GDMA)) + +DT_COMPAT_ESPRESSIF_ESP32_GPIO := espressif,esp32-gpio + +config DT_HAS_ESPRESSIF_ESP32_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_GPIO)) + +DT_COMPAT_ESPRESSIF_ESP32_I2C := espressif,esp32-i2c + +config DT_HAS_ESPRESSIF_ESP32_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_I2C)) + +DT_COMPAT_ESPRESSIF_ESP32_I2S := espressif,esp32-i2s + +config DT_HAS_ESPRESSIF_ESP32_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_I2S)) + +DT_COMPAT_ESPRESSIF_ESP32_IEEE802154 := espressif,esp32-ieee802154 + +config DT_HAS_ESPRESSIF_ESP32_IEEE802154_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_IEEE802154)) + +DT_COMPAT_ESPRESSIF_ESP32_INTC := espressif,esp32-intc + +config DT_HAS_ESPRESSIF_ESP32_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_INTC)) + +DT_COMPAT_ESPRESSIF_ESP32_IPM := espressif,esp32-ipm + +config DT_HAS_ESPRESSIF_ESP32_IPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_IPM)) + +DT_COMPAT_ESPRESSIF_ESP32_LCD_CAM := espressif,esp32-lcd-cam + +config DT_HAS_ESPRESSIF_ESP32_LCD_CAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_LCD_CAM)) + +DT_COMPAT_ESPRESSIF_ESP32_LCD_CAM_DVP := espressif,esp32-lcd-cam-dvp + +config DT_HAS_ESPRESSIF_ESP32_LCD_CAM_DVP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_LCD_CAM_DVP)) + +DT_COMPAT_ESPRESSIF_ESP32_LCD_CAM_MIPI_DBI := espressif,esp32-lcd-cam-mipi-dbi + +config DT_HAS_ESPRESSIF_ESP32_LCD_CAM_MIPI_DBI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_LCD_CAM_MIPI_DBI)) + +DT_COMPAT_ESPRESSIF_ESP32_LEDC := espressif,esp32-ledc + +config DT_HAS_ESPRESSIF_ESP32_LEDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_LEDC)) + +DT_COMPAT_ESPRESSIF_ESP32_LPGPIO := espressif,esp32-lpgpio + +config DT_HAS_ESPRESSIF_ESP32_LPGPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_LPGPIO)) + +DT_COMPAT_ESPRESSIF_ESP32_LPUART := espressif,esp32-lpuart + +config DT_HAS_ESPRESSIF_ESP32_LPUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_LPUART)) + +DT_COMPAT_ESPRESSIF_ESP32_MCPWM := espressif,esp32-mcpwm + +config DT_HAS_ESPRESSIF_ESP32_MCPWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_MCPWM)) + +DT_COMPAT_ESPRESSIF_ESP32_MDIO := espressif,esp32-mdio + +config DT_HAS_ESPRESSIF_ESP32_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_MDIO)) + +DT_COMPAT_ESPRESSIF_ESP32_PCNT := espressif,esp32-pcnt + +config DT_HAS_ESPRESSIF_ESP32_PCNT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_PCNT)) + +DT_COMPAT_ESPRESSIF_ESP32_PINCTRL := espressif,esp32-pinctrl + +config DT_HAS_ESPRESSIF_ESP32_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_PINCTRL)) + +DT_COMPAT_ESPRESSIF_ESP32_PSRAM := espressif,esp32-psram + +config DT_HAS_ESPRESSIF_ESP32_PSRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_PSRAM)) + +DT_COMPAT_ESPRESSIF_ESP32_REGULATOR := espressif,esp32-regulator + +config DT_HAS_ESPRESSIF_ESP32_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_REGULATOR)) + +DT_COMPAT_ESPRESSIF_ESP32_RTC_TIMER := espressif,esp32-rtc-timer + +config DT_HAS_ESPRESSIF_ESP32_RTC_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_RTC_TIMER)) + +DT_COMPAT_ESPRESSIF_ESP32_SDHC := espressif,esp32-sdhc + +config DT_HAS_ESPRESSIF_ESP32_SDHC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_SDHC)) + +DT_COMPAT_ESPRESSIF_ESP32_SDHC_SLOT := espressif,esp32-sdhc-slot + +config DT_HAS_ESPRESSIF_ESP32_SDHC_SLOT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_SDHC_SLOT)) + +DT_COMPAT_ESPRESSIF_ESP32_SHA := espressif,esp32-sha + +config DT_HAS_ESPRESSIF_ESP32_SHA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_SHA)) + +DT_COMPAT_ESPRESSIF_ESP32_SPI := espressif,esp32-spi + +config DT_HAS_ESPRESSIF_ESP32_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_SPI)) + +DT_COMPAT_ESPRESSIF_ESP32_SYSTIMER := espressif,esp32-systimer + +config DT_HAS_ESPRESSIF_ESP32_SYSTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_SYSTIMER)) + +DT_COMPAT_ESPRESSIF_ESP32_TEMP := espressif,esp32-temp + +config DT_HAS_ESPRESSIF_ESP32_TEMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_TEMP)) + +DT_COMPAT_ESPRESSIF_ESP32_TIMER := espressif,esp32-timer + +config DT_HAS_ESPRESSIF_ESP32_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_TIMER)) + +DT_COMPAT_ESPRESSIF_ESP32_TOUCH := espressif,esp32-touch + +config DT_HAS_ESPRESSIF_ESP32_TOUCH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_TOUCH)) + +DT_COMPAT_ESPRESSIF_ESP32_TRNG := espressif,esp32-trng + +config DT_HAS_ESPRESSIF_ESP32_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_TRNG)) + +DT_COMPAT_ESPRESSIF_ESP32_TWAI := espressif,esp32-twai + +config DT_HAS_ESPRESSIF_ESP32_TWAI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_TWAI)) + +DT_COMPAT_ESPRESSIF_ESP32_UART := espressif,esp32-uart + +config DT_HAS_ESPRESSIF_ESP32_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_UART)) + +DT_COMPAT_ESPRESSIF_ESP32_USB_OTG := espressif,esp32-usb-otg + +config DT_HAS_ESPRESSIF_ESP32_USB_OTG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_USB_OTG)) + +DT_COMPAT_ESPRESSIF_ESP32_USB_SERIAL := espressif,esp32-usb-serial + +config DT_HAS_ESPRESSIF_ESP32_USB_SERIAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_USB_SERIAL)) + +DT_COMPAT_ESPRESSIF_ESP32_WATCHDOG := espressif,esp32-watchdog + +config DT_HAS_ESPRESSIF_ESP32_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_WATCHDOG)) + +DT_COMPAT_ESPRESSIF_ESP32_WIFI := espressif,esp32-wifi + +config DT_HAS_ESPRESSIF_ESP32_WIFI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_WIFI)) + +DT_COMPAT_ESPRESSIF_ESP32_XT_WDT := espressif,esp32-xt-wdt + +config DT_HAS_ESPRESSIF_ESP32_XT_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_ESP32_XT_WDT)) + +DT_COMPAT_ESPRESSIF_MBOX_ESP32 := espressif,mbox-esp32 + +config DT_HAS_ESPRESSIF_MBOX_ESP32_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_MBOX_ESP32)) + +DT_COMPAT_ESPRESSIF_RISCV := espressif,riscv + +config DT_HAS_ESPRESSIF_RISCV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_RISCV)) + +DT_COMPAT_ESPRESSIF_XTENSA_LX6 := espressif,xtensa-lx6 + +config DT_HAS_ESPRESSIF_XTENSA_LX6_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_XTENSA_LX6)) + +DT_COMPAT_ESPRESSIF_XTENSA_LX7 := espressif,xtensa-lx7 + +config DT_HAS_ESPRESSIF_XTENSA_LX7_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ESPRESSIF_XTENSA_LX7)) + +DT_COMPAT_ETHERNET_PHY := ethernet-phy + +config DT_HAS_ETHERNET_PHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ETHERNET_PHY)) + +DT_COMPAT_ETHERNET_PHY_FIXED_LINK := ethernet-phy-fixed-link + +config DT_HAS_ETHERNET_PHY_FIXED_LINK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ETHERNET_PHY_FIXED_LINK)) + +DT_COMPAT_EVERLIGHT_ALS_PT19 := everlight,als-pt19 + +config DT_HAS_EVERLIGHT_ALS_PT19_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_EVERLIGHT_ALS_PT19)) + +DT_COMPAT_FCS_FXL6408 := fcs,fxl6408 + +config DT_HAS_FCS_FXL6408_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FCS_FXL6408)) + +DT_COMPAT_FESTO_VEAA_X_3 := festo,veaa-x-3 + +config DT_HAS_FESTO_VEAA_X_3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FESTO_VEAA_X_3)) + +DT_COMPAT_FINTEK_F75303 := fintek,f75303 + +config DT_HAS_FINTEK_F75303_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FINTEK_F75303)) + +DT_COMPAT_FIXED_CLOCK := fixed-clock + +config DT_HAS_FIXED_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FIXED_CLOCK)) + +DT_COMPAT_FIXED_FACTOR_CLOCK := fixed-factor-clock + +config DT_HAS_FIXED_FACTOR_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FIXED_FACTOR_CLOCK)) + +DT_COMPAT_FIXED_LAYOUT := fixed-layout + +config DT_HAS_FIXED_LAYOUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FIXED_LAYOUT)) + +DT_COMPAT_FIXED_PARTITIONS := fixed-partitions + +config DT_HAS_FIXED_PARTITIONS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FIXED_PARTITIONS)) + +DT_COMPAT_FIXED_SUBPARTITIONS := fixed-subpartitions + +config DT_HAS_FIXED_SUBPARTITIONS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FIXED_SUBPARTITIONS)) + +DT_COMPAT_FOBE_QUILL_HEADER := fobe,quill-header + +config DT_HAS_FOBE_QUILL_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FOBE_QUILL_HEADER)) + +DT_COMPAT_FOCALTECH_FT5336 := focaltech,ft5336 + +config DT_HAS_FOCALTECH_FT5336_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FOCALTECH_FT5336)) + +DT_COMPAT_FOCALTECH_FT6146 := focaltech,ft6146 + +config DT_HAS_FOCALTECH_FT6146_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FOCALTECH_FT6146)) + +DT_COMPAT_FOCALTECH_FT9001_CPM := focaltech,ft9001-cpm + +config DT_HAS_FOCALTECH_FT9001_CPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FOCALTECH_FT9001_CPM)) + +DT_COMPAT_FOCALTECH_FT9001_CPM_RCTL := focaltech,ft9001-cpm-rctl + +config DT_HAS_FOCALTECH_FT9001_CPM_RCTL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FOCALTECH_FT9001_CPM_RCTL)) + +DT_COMPAT_FOCALTECH_FT9001_USART := focaltech,ft9001-usart + +config DT_HAS_FOCALTECH_FT9001_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FOCALTECH_FT9001_USART)) + +DT_COMPAT_FRIDA_NT35510 := frida,nt35510 + +config DT_HAS_FRIDA_NT35510_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FRIDA_NT35510)) + +DT_COMPAT_FSL_IMX21_I2C := fsl,imx21-i2c + +config DT_HAS_FSL_IMX21_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FSL_IMX21_I2C)) + +DT_COMPAT_FSL_IMX27_PWM := fsl,imx27-pwm + +config DT_HAS_FSL_IMX27_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FSL_IMX27_PWM)) + +DT_COMPAT_FTDI_FT800 := ftdi,ft800 + +config DT_HAS_FTDI_FT800_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FTDI_FT800)) + +DT_COMPAT_FUJITSU_MB85RCXX := fujitsu,mb85rcxx + +config DT_HAS_FUJITSU_MB85RCXX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FUJITSU_MB85RCXX)) + +DT_COMPAT_FUJITSU_MB85RSXX := fujitsu,mb85rsxx + +config DT_HAS_FUJITSU_MB85RSXX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FUJITSU_MB85RSXX)) + +DT_COMPAT_FUTABA_SBUS := futaba,sbus + +config DT_HAS_FUTABA_SBUS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_FUTABA_SBUS)) + +DT_COMPAT_GAISLER_APBUART := gaisler,apbuart + +config DT_HAS_GAISLER_APBUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GAISLER_APBUART)) + +DT_COMPAT_GAISLER_GPTIMER := gaisler,gptimer + +config DT_HAS_GAISLER_GPTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GAISLER_GPTIMER)) + +DT_COMPAT_GAISLER_GRGPIO := gaisler,grgpio + +config DT_HAS_GAISLER_GRGPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GAISLER_GRGPIO)) + +DT_COMPAT_GAISLER_IRQMP := gaisler,irqmp + +config DT_HAS_GAISLER_IRQMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GAISLER_IRQMP)) + +DT_COMPAT_GAISLER_LEON3 := gaisler,leon3 + +config DT_HAS_GAISLER_LEON3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GAISLER_LEON3)) + +DT_COMPAT_GAISLER_SPIMCTRL := gaisler,spimctrl + +config DT_HAS_GAISLER_SPIMCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GAISLER_SPIMCTRL)) + +DT_COMPAT_GALAXYCORE_GC2145 := galaxycore,gc2145 + +config DT_HAS_GALAXYCORE_GC2145_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GALAXYCORE_GC2145)) + +DT_COMPAT_GALAXYCORE_GC9X01X := galaxycore,gc9x01x + +config DT_HAS_GALAXYCORE_GC9X01X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GALAXYCORE_GC9X01X)) + +DT_COMPAT_GD_GD32_ADC := gd,gd32-adc + +config DT_HAS_GD_GD32_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_ADC)) + +DT_COMPAT_GD_GD32_AFIO := gd,gd32-afio + +config DT_HAS_GD_GD32_AFIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_AFIO)) + +DT_COMPAT_GD_GD32_CCTL := gd,gd32-cctl + +config DT_HAS_GD_GD32_CCTL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_CCTL)) + +DT_COMPAT_GD_GD32_DAC := gd,gd32-dac + +config DT_HAS_GD_GD32_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_DAC)) + +DT_COMPAT_GD_GD32_DMA := gd,gd32-dma + +config DT_HAS_GD_GD32_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_DMA)) + +DT_COMPAT_GD_GD32_DMA_V1 := gd,gd32-dma-v1 + +config DT_HAS_GD_GD32_DMA_V1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_DMA_V1)) + +DT_COMPAT_GD_GD32_EXTI := gd,gd32-exti + +config DT_HAS_GD_GD32_EXTI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_EXTI)) + +DT_COMPAT_GD_GD32_FLASH_CONTROLLER := gd,gd32-flash-controller + +config DT_HAS_GD_GD32_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_FLASH_CONTROLLER)) + +DT_COMPAT_GD_GD32_FWDGT := gd,gd32-fwdgt + +config DT_HAS_GD_GD32_FWDGT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_FWDGT)) + +DT_COMPAT_GD_GD32_GPIO := gd,gd32-gpio + +config DT_HAS_GD_GD32_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_GPIO)) + +DT_COMPAT_GD_GD32_I2C := gd,gd32-i2c + +config DT_HAS_GD_GD32_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_I2C)) + +DT_COMPAT_GD_GD32_NV_FLASH_V1 := gd,gd32-nv-flash-v1 + +config DT_HAS_GD_GD32_NV_FLASH_V1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_NV_FLASH_V1)) + +DT_COMPAT_GD_GD32_NV_FLASH_V2 := gd,gd32-nv-flash-v2 + +config DT_HAS_GD_GD32_NV_FLASH_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_NV_FLASH_V2)) + +DT_COMPAT_GD_GD32_NV_FLASH_V3 := gd,gd32-nv-flash-v3 + +config DT_HAS_GD_GD32_NV_FLASH_V3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_NV_FLASH_V3)) + +DT_COMPAT_GD_GD32_PINCTRL_AF := gd,gd32-pinctrl-af + +config DT_HAS_GD_GD32_PINCTRL_AF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_PINCTRL_AF)) + +DT_COMPAT_GD_GD32_PINCTRL_AFIO := gd,gd32-pinctrl-afio + +config DT_HAS_GD_GD32_PINCTRL_AFIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_PINCTRL_AFIO)) + +DT_COMPAT_GD_GD32_PWM := gd,gd32-pwm + +config DT_HAS_GD_GD32_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_PWM)) + +DT_COMPAT_GD_GD32_RCTL := gd,gd32-rctl + +config DT_HAS_GD_GD32_RCTL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_RCTL)) + +DT_COMPAT_GD_GD32_RCU := gd,gd32-rcu + +config DT_HAS_GD_GD32_RCU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_RCU)) + +DT_COMPAT_GD_GD32_SPI := gd,gd32-spi + +config DT_HAS_GD_GD32_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_SPI)) + +DT_COMPAT_GD_GD32_SYSCFG := gd,gd32-syscfg + +config DT_HAS_GD_GD32_SYSCFG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_SYSCFG)) + +DT_COMPAT_GD_GD32_TIMER := gd,gd32-timer + +config DT_HAS_GD_GD32_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_TIMER)) + +DT_COMPAT_GD_GD32_TRNG := gd,gd32-trng + +config DT_HAS_GD_GD32_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_TRNG)) + +DT_COMPAT_GD_GD32_USART := gd,gd32-usart + +config DT_HAS_GD_GD32_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_USART)) + +DT_COMPAT_GD_GD32_WWDGT := gd,gd32-wwdgt + +config DT_HAS_GD_GD32_WWDGT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_WWDGT)) + +DT_COMPAT_GLOBALTOP_PA6H := globaltop,pa6h + +config DT_HAS_GLOBALTOP_PA6H_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GLOBALTOP_PA6H)) + +DT_COMPAT_GNSS_NMEA_GENERIC := gnss-nmea-generic + +config DT_HAS_GNSS_NMEA_GENERIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GNSS_NMEA_GENERIC)) + +DT_COMPAT_GOODIX_GT911 := goodix,gt911 + +config DT_HAS_GOODIX_GT911_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GOODIX_GT911)) + +DT_COMPAT_GPIO_7_SEGMENT := gpio-7-segment + +config DT_HAS_GPIO_7_SEGMENT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GPIO_7_SEGMENT)) + +DT_COMPAT_GPIO_I2C := gpio-i2c + +config DT_HAS_GPIO_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GPIO_I2C)) + +DT_COMPAT_GPIO_I2C_SWITCH := gpio-i2c-switch + +config DT_HAS_GPIO_I2C_SWITCH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GPIO_I2C_SWITCH)) + +DT_COMPAT_GPIO_KBD_MATRIX := gpio-kbd-matrix + +config DT_HAS_GPIO_KBD_MATRIX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GPIO_KBD_MATRIX)) + +DT_COMPAT_GPIO_KEYS := gpio-keys + +config DT_HAS_GPIO_KEYS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GPIO_KEYS)) + +DT_COMPAT_GPIO_LEDS := gpio-leds + +config DT_HAS_GPIO_LEDS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GPIO_LEDS)) + +DT_COMPAT_GPIO_QDEC := gpio-qdec + +config DT_HAS_GPIO_QDEC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GPIO_QDEC)) + +DT_COMPAT_GREELED_LPD8803 := greeled,lpd8803 + +config DT_HAS_GREELED_LPD8803_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GREELED_LPD8803)) + +DT_COMPAT_GREELED_LPD8806 := greeled,lpd8806 + +config DT_HAS_GREELED_LPD8806_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GREELED_LPD8806)) + +DT_COMPAT_GROVE_HEADER := grove-header + +config DT_HAS_GROVE_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GROVE_HEADER)) + +DT_COMPAT_GSS_EXPLORIR_M := gss,explorir-m + +config DT_HAS_GSS_EXPLORIR_M_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_GSS_EXPLORIR_M)) + +DT_COMPAT_HAMAMATSU_S11059 := hamamatsu,s11059 + +config DT_HAS_HAMAMATSU_S11059_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HAMAMATSU_S11059)) + +DT_COMPAT_HAZARD3_HAZARD3_INTC := hazard3,hazard3-intc + +config DT_HAS_HAZARD3_HAZARD3_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HAZARD3_HAZARD3_INTC)) + +DT_COMPAT_HC_SR04 := hc-sr04 + +config DT_HAS_HC_SR04_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HC_SR04)) + +DT_COMPAT_HIMAX_HM01B0 := himax,hm01b0 + +config DT_HAS_HIMAX_HM01B0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HIMAX_HM01B0)) + +DT_COMPAT_HIMAX_HM0360 := himax,hm0360 + +config DT_HAS_HIMAX_HM0360_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HIMAX_HM0360)) + +DT_COMPAT_HIMAX_HX8379C := himax,hx8379c + +config DT_HAS_HIMAX_HX8379C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HIMAX_HX8379C)) + +DT_COMPAT_HIMAX_HX8394 := himax,hx8394 + +config DT_HAS_HIMAX_HX8394_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HIMAX_HX8394)) + +DT_COMPAT_HIT_HD44780 := hit,hd44780 + +config DT_HAS_HIT_HD44780_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HIT_HD44780)) + +DT_COMPAT_HOLTEK_HT16K33 := holtek,ht16k33 + +config DT_HAS_HOLTEK_HT16K33_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HOLTEK_HT16K33)) + +DT_COMPAT_HONEYWELL_HMC5883L := honeywell,hmc5883l + +config DT_HAS_HONEYWELL_HMC5883L_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HONEYWELL_HMC5883L)) + +DT_COMPAT_HONEYWELL_MPR := honeywell,mpr + +config DT_HAS_HONEYWELL_MPR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HONEYWELL_MPR)) + +DT_COMPAT_HONEYWELL_SM351LT := honeywell,sm351lt + +config DT_HAS_HONEYWELL_SM351LT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HONEYWELL_SM351LT)) + +DT_COMPAT_HOPERF_HP206C := hoperf,hp206c + +config DT_HAS_HOPERF_HP206C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HOPERF_HP206C)) + +DT_COMPAT_HOPERF_TH02 := hoperf,th02 + +config DT_HAS_HOPERF_TH02_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HOPERF_TH02)) + +DT_COMPAT_HYCON_HY4245 := hycon,hy4245 + +config DT_HAS_HYCON_HY4245_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HYCON_HY4245)) + +DT_COMPAT_HYNITRON_CST8XX := hynitron,cst8xx + +config DT_HAS_HYNITRON_CST8XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HYNITRON_CST8XX)) + +DT_COMPAT_HZGROW_R502A := hzgrow,r502a + +config DT_HAS_HZGROW_R502A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_HZGROW_R502A)) + +DT_COMPAT_ICLEGEND_S3KM1110 := iclegend,s3km1110 + +config DT_HAS_ICLEGEND_S3KM1110_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ICLEGEND_S3KM1110)) + +DT_COMPAT_ILITEK_ILI2132A := ilitek,ili2132a + +config DT_HAS_ILITEK_ILI2132A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ILITEK_ILI2132A)) + +DT_COMPAT_ILITEK_ILI9163C := ilitek,ili9163c + +config DT_HAS_ILITEK_ILI9163C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ILITEK_ILI9163C)) + +DT_COMPAT_ILITEK_ILI9340 := ilitek,ili9340 + +config DT_HAS_ILITEK_ILI9340_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ILITEK_ILI9340)) + +DT_COMPAT_ILITEK_ILI9341 := ilitek,ili9341 + +config DT_HAS_ILITEK_ILI9341_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ILITEK_ILI9341)) + +DT_COMPAT_ILITEK_ILI9342C := ilitek,ili9342c + +config DT_HAS_ILITEK_ILI9342C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ILITEK_ILI9342C)) + +DT_COMPAT_ILITEK_ILI9488 := ilitek,ili9488 + +config DT_HAS_ILITEK_ILI9488_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ILITEK_ILI9488)) + +DT_COMPAT_ILITEK_ILI9806E := ilitek,ili9806e + +config DT_HAS_ILITEK_ILI9806E_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ILITEK_ILI9806E)) + +DT_COMPAT_INFINEON_ADC := infineon,adc + +config DT_HAS_INFINEON_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_ADC)) + +DT_COMPAT_INFINEON_AIROC_WIFI := infineon,airoc-wifi + +config DT_HAS_INFINEON_AIROC_WIFI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_AIROC_WIFI)) + +DT_COMPAT_INFINEON_AUTANALOG_SAR_ADC := infineon,autanalog-sar-adc + +config DT_HAS_INFINEON_AUTANALOG_SAR_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_AUTANALOG_SAR_ADC)) + +DT_COMPAT_INFINEON_BLESS_HCI := infineon,bless-hci + +config DT_HAS_INFINEON_BLESS_HCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_BLESS_HCI)) + +DT_COMPAT_INFINEON_BT_HCI_UART := infineon,bt-hci-uart + +config DT_HAS_INFINEON_BT_HCI_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_BT_HCI_UART)) + +DT_COMPAT_INFINEON_CAN := infineon,can + +config DT_HAS_INFINEON_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAN)) + +DT_COMPAT_INFINEON_CANFD_CONTROLLER := infineon,canfd-controller + +config DT_HAS_INFINEON_CANFD_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CANFD_CONTROLLER)) + +DT_COMPAT_INFINEON_CAT1_LP_TIMER_PDL := infineon,cat1-lp-timer-pdl + +config DT_HAS_INFINEON_CAT1_LP_TIMER_PDL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1_LP_TIMER_PDL)) + +DT_COMPAT_INFINEON_CAT1B_POWER := infineon,cat1b-power + +config DT_HAS_INFINEON_CAT1B_POWER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CAT1B_POWER)) + +DT_COMPAT_INFINEON_COUNTER := infineon,counter + +config DT_HAS_INFINEON_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_COUNTER)) + +DT_COMPAT_INFINEON_CYW208XX_HCI := infineon,cyw208xx-hci + +config DT_HAS_INFINEON_CYW208XX_HCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CYW208XX_HCI)) + +DT_COMPAT_INFINEON_CYW43_GPIO := infineon,cyw43-gpio + +config DT_HAS_INFINEON_CYW43_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_CYW43_GPIO)) + +DT_COMPAT_INFINEON_DMA := infineon,dma + +config DT_HAS_INFINEON_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_DMA)) + +DT_COMPAT_INFINEON_DMAC := infineon,dmac + +config DT_HAS_INFINEON_DMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_DMAC)) + +DT_COMPAT_INFINEON_DPS310 := infineon,dps310 + +config DT_HAS_INFINEON_DPS310_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_DPS310)) + +DT_COMPAT_INFINEON_FIXED_CLOCK := infineon,fixed-clock + +config DT_HAS_INFINEON_FIXED_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_FIXED_CLOCK)) + +DT_COMPAT_INFINEON_FIXED_FACTOR_CLOCK := infineon,fixed-factor-clock + +config DT_HAS_INFINEON_FIXED_FACTOR_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_FIXED_FACTOR_CLOCK)) + +DT_COMPAT_INFINEON_FLASH_CONTROLLER := infineon,flash-controller + +config DT_HAS_INFINEON_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_FLASH_CONTROLLER)) + +DT_COMPAT_INFINEON_FM25XXX := infineon,fm25xxx + +config DT_HAS_INFINEON_FM25XXX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_FM25XXX)) + +DT_COMPAT_INFINEON_GPIO := infineon,gpio + +config DT_HAS_INFINEON_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_GPIO)) + +DT_COMPAT_INFINEON_HPPASS_SAR_ADC := infineon,hppass-sar-adc + +config DT_HAS_INFINEON_HPPASS_SAR_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_HPPASS_SAR_ADC)) + +DT_COMPAT_INFINEON_I2C := infineon,i2c + +config DT_HAS_INFINEON_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_I2C)) + +DT_COMPAT_INFINEON_I2S := infineon,i2s + +config DT_HAS_INFINEON_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_I2S)) + +DT_COMPAT_INFINEON_LP_TIMER := infineon,lp-timer + +config DT_HAS_INFINEON_LP_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_LP_TIMER)) + +DT_COMPAT_INFINEON_PDM := infineon,pdm + +config DT_HAS_INFINEON_PDM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_PDM)) + +DT_COMPAT_INFINEON_PERI_DIV := infineon,peri-div + +config DT_HAS_INFINEON_PERI_DIV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_PERI_DIV)) + +DT_COMPAT_INFINEON_PINCTRL := infineon,pinctrl + +config DT_HAS_INFINEON_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_PINCTRL)) + +DT_COMPAT_INFINEON_QSPI_FLASH := infineon,qspi-flash + +config DT_HAS_INFINEON_QSPI_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_QSPI_FLASH)) + +DT_COMPAT_INFINEON_RTC := infineon,rtc + +config DT_HAS_INFINEON_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_RTC)) + +DT_COMPAT_INFINEON_SAR_ADC := infineon,sar-adc + +config DT_HAS_INFINEON_SAR_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_SAR_ADC)) + +DT_COMPAT_INFINEON_SCB := infineon,scb + +config DT_HAS_INFINEON_SCB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_SCB)) + +DT_COMPAT_INFINEON_SDHC_SDIO := infineon,sdhc-sdio + +config DT_HAS_INFINEON_SDHC_SDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_SDHC_SDIO)) + +DT_COMPAT_INFINEON_SHARED_GPIO := infineon,shared-gpio + +config DT_HAS_INFINEON_SHARED_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_SHARED_GPIO)) + +DT_COMPAT_INFINEON_SPI := infineon,spi + +config DT_HAS_INFINEON_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_SPI)) + +DT_COMPAT_INFINEON_TCPWM := infineon,tcpwm + +config DT_HAS_INFINEON_TCPWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_TCPWM)) + +DT_COMPAT_INFINEON_TCPWM_COUNTER := infineon,tcpwm-counter + +config DT_HAS_INFINEON_TCPWM_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_TCPWM_COUNTER)) + +DT_COMPAT_INFINEON_TCPWM_PWM := infineon,tcpwm-pwm + +config DT_HAS_INFINEON_TCPWM_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_TCPWM_PWM)) + +DT_COMPAT_INFINEON_TLE9104 := infineon,tle9104 + +config DT_HAS_INFINEON_TLE9104_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_TLE9104)) + +DT_COMPAT_INFINEON_TLE9104_DIAGNOSTICS := infineon,tle9104-diagnostics + +config DT_HAS_INFINEON_TLE9104_DIAGNOSTICS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_TLE9104_DIAGNOSTICS)) + +DT_COMPAT_INFINEON_TLE9104_GPIO := infineon,tle9104-gpio + +config DT_HAS_INFINEON_TLE9104_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_TLE9104_GPIO)) + +DT_COMPAT_INFINEON_UART := infineon,uart + +config DT_HAS_INFINEON_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_UART)) + +DT_COMPAT_INFINEON_WATCHDOG := infineon,watchdog + +config DT_HAS_INFINEON_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_WATCHDOG)) + +DT_COMPAT_INFINEON_XMC4XXX_ADC := infineon,xmc4xxx-adc + +config DT_HAS_INFINEON_XMC4XXX_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_ADC)) + +DT_COMPAT_INFINEON_XMC4XXX_CAN := infineon,xmc4xxx-can + +config DT_HAS_INFINEON_XMC4XXX_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_CAN)) + +DT_COMPAT_INFINEON_XMC4XXX_CAN_NODE := infineon,xmc4xxx-can-node + +config DT_HAS_INFINEON_XMC4XXX_CAN_NODE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_CAN_NODE)) + +DT_COMPAT_INFINEON_XMC4XXX_CCU4_PWM := infineon,xmc4xxx-ccu4-pwm + +config DT_HAS_INFINEON_XMC4XXX_CCU4_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_CCU4_PWM)) + +DT_COMPAT_INFINEON_XMC4XXX_CCU8_PWM := infineon,xmc4xxx-ccu8-pwm + +config DT_HAS_INFINEON_XMC4XXX_CCU8_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_CCU8_PWM)) + +DT_COMPAT_INFINEON_XMC4XXX_DMA := infineon,xmc4xxx-dma + +config DT_HAS_INFINEON_XMC4XXX_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_DMA)) + +DT_COMPAT_INFINEON_XMC4XXX_ETHERNET := infineon,xmc4xxx-ethernet + +config DT_HAS_INFINEON_XMC4XXX_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_ETHERNET)) + +DT_COMPAT_INFINEON_XMC4XXX_FLASH_CONTROLLER := infineon,xmc4xxx-flash-controller + +config DT_HAS_INFINEON_XMC4XXX_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_FLASH_CONTROLLER)) + +DT_COMPAT_INFINEON_XMC4XXX_GPIO := infineon,xmc4xxx-gpio + +config DT_HAS_INFINEON_XMC4XXX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_GPIO)) + +DT_COMPAT_INFINEON_XMC4XXX_I2C := infineon,xmc4xxx-i2c + +config DT_HAS_INFINEON_XMC4XXX_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_I2C)) + +DT_COMPAT_INFINEON_XMC4XXX_INTC := infineon,xmc4xxx-intc + +config DT_HAS_INFINEON_XMC4XXX_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_INTC)) + +DT_COMPAT_INFINEON_XMC4XXX_MDIO := infineon,xmc4xxx-mdio + +config DT_HAS_INFINEON_XMC4XXX_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_MDIO)) + +DT_COMPAT_INFINEON_XMC4XXX_NV_FLASH := infineon,xmc4xxx-nv-flash + +config DT_HAS_INFINEON_XMC4XXX_NV_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_NV_FLASH)) + +DT_COMPAT_INFINEON_XMC4XXX_PINCTRL := infineon,xmc4xxx-pinctrl + +config DT_HAS_INFINEON_XMC4XXX_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_PINCTRL)) + +DT_COMPAT_INFINEON_XMC4XXX_RTC := infineon,xmc4xxx-rtc + +config DT_HAS_INFINEON_XMC4XXX_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_RTC)) + +DT_COMPAT_INFINEON_XMC4XXX_SPI := infineon,xmc4xxx-spi + +config DT_HAS_INFINEON_XMC4XXX_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_SPI)) + +DT_COMPAT_INFINEON_XMC4XXX_TEMP := infineon,xmc4xxx-temp + +config DT_HAS_INFINEON_XMC4XXX_TEMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_TEMP)) + +DT_COMPAT_INFINEON_XMC4XXX_UART := infineon,xmc4xxx-uart + +config DT_HAS_INFINEON_XMC4XXX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_UART)) + +DT_COMPAT_INFINEON_XMC4XXX_WATCHDOG := infineon,xmc4xxx-watchdog + +config DT_HAS_INFINEON_XMC4XXX_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INFINEON_XMC4XXX_WATCHDOG)) + +DT_COMPAT_INPUT_KEYMAP := input-keymap + +config DT_HAS_INPUT_KEYMAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INPUT_KEYMAP)) + +DT_COMPAT_INTEL_ACE_ART_COUNTER := intel,ace-art-counter + +config DT_HAS_INTEL_ACE_ART_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ACE_ART_COUNTER)) + +DT_COMPAT_INTEL_ACE_INTC := intel,ace-intc + +config DT_HAS_INTEL_ACE_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ACE_INTC)) + +DT_COMPAT_INTEL_ACE_RTC_COUNTER := intel,ace-rtc-counter + +config DT_HAS_INTEL_ACE_RTC_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ACE_RTC_COUNTER)) + +DT_COMPAT_INTEL_ACE_TIMESTAMP := intel,ace-timestamp + +config DT_HAS_INTEL_ACE_TIMESTAMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ACE_TIMESTAMP)) + +DT_COMPAT_INTEL_ADSP_COMMUNICATION_WIDGET := intel,adsp-communication-widget + +config DT_HAS_INTEL_ADSP_COMMUNICATION_WIDGET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_COMMUNICATION_WIDGET)) + +DT_COMPAT_INTEL_ADSP_DFPMCCH := intel,adsp-dfpmcch + +config DT_HAS_INTEL_ADSP_DFPMCCH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_DFPMCCH)) + +DT_COMPAT_INTEL_ADSP_DFPMCCU := intel,adsp-dfpmccu + +config DT_HAS_INTEL_ADSP_DFPMCCU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_DFPMCCU)) + +DT_COMPAT_INTEL_ADSP_DMIC_VSS := intel,adsp-dmic-vss + +config DT_HAS_INTEL_ADSP_DMIC_VSS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_DMIC_VSS)) + +DT_COMPAT_INTEL_ADSP_GPDMA := intel,adsp-gpdma + +config DT_HAS_INTEL_ADSP_GPDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_GPDMA)) + +DT_COMPAT_INTEL_ADSP_HDA_DMIC_CAP := intel,adsp-hda-dmic-cap + +config DT_HAS_INTEL_ADSP_HDA_DMIC_CAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_HDA_DMIC_CAP)) + +DT_COMPAT_INTEL_ADSP_HDA_HOST_IN := intel,adsp-hda-host-in + +config DT_HAS_INTEL_ADSP_HDA_HOST_IN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_HDA_HOST_IN)) + +DT_COMPAT_INTEL_ADSP_HDA_HOST_OUT := intel,adsp-hda-host-out + +config DT_HAS_INTEL_ADSP_HDA_HOST_OUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_HDA_HOST_OUT)) + +DT_COMPAT_INTEL_ADSP_HDA_LINK_IN := intel,adsp-hda-link-in + +config DT_HAS_INTEL_ADSP_HDA_LINK_IN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_HDA_LINK_IN)) + +DT_COMPAT_INTEL_ADSP_HDA_LINK_OUT := intel,adsp-hda-link-out + +config DT_HAS_INTEL_ADSP_HDA_LINK_OUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_HDA_LINK_OUT)) + +DT_COMPAT_INTEL_ADSP_HDA_SSP_CAP := intel,adsp-hda-ssp-cap + +config DT_HAS_INTEL_ADSP_HDA_SSP_CAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_HDA_SSP_CAP)) + +DT_COMPAT_INTEL_ADSP_HOST_IPC := intel,adsp-host-ipc + +config DT_HAS_INTEL_ADSP_HOST_IPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_HOST_IPC)) + +DT_COMPAT_INTEL_ADSP_IDC := intel,adsp-idc + +config DT_HAS_INTEL_ADSP_IDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_IDC)) + +DT_COMPAT_INTEL_ADSP_IMR := intel,adsp-imr + +config DT_HAS_INTEL_ADSP_IMR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_IMR)) + +DT_COMPAT_INTEL_ADSP_MAILBOX := intel,adsp-mailbox + +config DT_HAS_INTEL_ADSP_MAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_MAILBOX)) + +DT_COMPAT_INTEL_ADSP_MEM_WINDOW := intel,adsp-mem-window + +config DT_HAS_INTEL_ADSP_MEM_WINDOW_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_MEM_WINDOW)) + +DT_COMPAT_INTEL_ADSP_MIC_PRIVACY := intel,adsp-mic-privacy + +config DT_HAS_INTEL_ADSP_MIC_PRIVACY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_MIC_PRIVACY)) + +DT_COMPAT_INTEL_ADSP_MTL_TLB := intel,adsp-mtl-tlb + +config DT_HAS_INTEL_ADSP_MTL_TLB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_MTL_TLB)) + +DT_COMPAT_INTEL_ADSP_POWER_DOMAIN := intel,adsp-power-domain + +config DT_HAS_INTEL_ADSP_POWER_DOMAIN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_POWER_DOMAIN)) + +DT_COMPAT_INTEL_ADSP_SHA := intel,adsp-sha + +config DT_HAS_INTEL_ADSP_SHA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_SHA)) + +DT_COMPAT_INTEL_ADSP_SHIM_CLKCTL := intel,adsp-shim-clkctl + +config DT_HAS_INTEL_ADSP_SHIM_CLKCTL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_SHIM_CLKCTL)) + +DT_COMPAT_INTEL_ADSP_TIMER := intel,adsp-timer + +config DT_HAS_INTEL_ADSP_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_TIMER)) + +DT_COMPAT_INTEL_ADSP_TLB := intel,adsp-tlb + +config DT_HAS_INTEL_ADSP_TLB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_TLB)) + +DT_COMPAT_INTEL_ADSP_UAOL := intel,adsp-uaol + +config DT_HAS_INTEL_ADSP_UAOL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_UAOL)) + +DT_COMPAT_INTEL_ADSP_WATCHDOG := intel,adsp-watchdog + +config DT_HAS_INTEL_ADSP_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ADSP_WATCHDOG)) + +DT_COMPAT_INTEL_AGILEX_CLOCK := intel,agilex-clock + +config DT_HAS_INTEL_AGILEX_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_AGILEX_CLOCK)) + +DT_COMPAT_INTEL_AGILEX5_CLOCK := intel,agilex5-clock + +config DT_HAS_INTEL_AGILEX5_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_AGILEX5_CLOCK)) + +DT_COMPAT_INTEL_ALDER_LAKE := intel,alder-lake + +config DT_HAS_INTEL_ALDER_LAKE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ALDER_LAKE)) + +DT_COMPAT_INTEL_ALH_DAI := intel,alh-dai + +config DT_HAS_INTEL_ALH_DAI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ALH_DAI)) + +DT_COMPAT_INTEL_APOLLO_LAKE := intel,apollo-lake + +config DT_HAS_INTEL_APOLLO_LAKE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_APOLLO_LAKE)) + +DT_COMPAT_INTEL_BARTLETT_LAKE := intel,bartlett-lake + +config DT_HAS_INTEL_BARTLETT_LAKE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_BARTLETT_LAKE)) + +DT_COMPAT_INTEL_BLINKY_PWM := intel,blinky-pwm + +config DT_HAS_INTEL_BLINKY_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_BLINKY_PWM)) + +DT_COMPAT_INTEL_CAVS_I2S := intel,cavs-i2s + +config DT_HAS_INTEL_CAVS_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_CAVS_I2S)) + +DT_COMPAT_INTEL_CAVS_INTC := intel,cavs-intc + +config DT_HAS_INTEL_CAVS_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_CAVS_INTC)) + +DT_COMPAT_INTEL_DAI_DMIC := intel,dai-dmic + +config DT_HAS_INTEL_DAI_DMIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_DAI_DMIC)) + +DT_COMPAT_INTEL_E1000 := intel,e1000 + +config DT_HAS_INTEL_E1000_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_E1000)) + +DT_COMPAT_INTEL_ELKHART_LAKE := intel,elkhart-lake + +config DT_HAS_INTEL_ELKHART_LAKE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ELKHART_LAKE)) + +DT_COMPAT_INTEL_EMMC_HOST := intel,emmc-host + +config DT_HAS_INTEL_EMMC_HOST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_EMMC_HOST)) + +DT_COMPAT_INTEL_ETH_PLAT := intel,eth-plat + +config DT_HAS_INTEL_ETH_PLAT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ETH_PLAT)) + +DT_COMPAT_INTEL_GPIO := intel,gpio + +config DT_HAS_INTEL_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_GPIO)) + +DT_COMPAT_INTEL_HDA_DAI := intel,hda-dai + +config DT_HAS_INTEL_HDA_DAI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_HDA_DAI)) + +DT_COMPAT_INTEL_HPET := intel,hpet + +config DT_HAS_INTEL_HPET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_HPET)) + +DT_COMPAT_INTEL_IBECC := intel,ibecc + +config DT_HAS_INTEL_IBECC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_IBECC)) + +DT_COMPAT_INTEL_IGC_MAC := intel,igc-mac + +config DT_HAS_INTEL_IGC_MAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_IGC_MAC)) + +DT_COMPAT_INTEL_IGC_MDIO := intel,igc-mdio + +config DT_HAS_INTEL_IGC_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_IGC_MDIO)) + +DT_COMPAT_INTEL_IOAPIC := intel,ioapic + +config DT_HAS_INTEL_IOAPIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_IOAPIC)) + +DT_COMPAT_INTEL_ISH := intel,ish + +config DT_HAS_INTEL_ISH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_ISH)) + +DT_COMPAT_INTEL_LAKEMONT := intel,lakemont + +config DT_HAS_INTEL_LAKEMONT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_LAKEMONT)) + +DT_COMPAT_INTEL_LOAPIC := intel,loapic + +config DT_HAS_INTEL_LOAPIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_LOAPIC)) + +DT_COMPAT_INTEL_LPSS := intel,lpss + +config DT_HAS_INTEL_LPSS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_LPSS)) + +DT_COMPAT_INTEL_LW_UART := intel,lw-uart + +config DT_HAS_INTEL_LW_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_LW_UART)) + +DT_COMPAT_INTEL_MULTIBOOT_FRAMEBUFFER := intel,multiboot-framebuffer + +config DT_HAS_INTEL_MULTIBOOT_FRAMEBUFFER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_MULTIBOOT_FRAMEBUFFER)) + +DT_COMPAT_INTEL_NIOSV := intel,niosv + +config DT_HAS_INTEL_NIOSV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_NIOSV)) + +DT_COMPAT_INTEL_PANTHER_LAKE := intel,panther-lake + +config DT_HAS_INTEL_PANTHER_LAKE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_PANTHER_LAKE)) + +DT_COMPAT_INTEL_PCH_SMBUS := intel,pch-smbus + +config DT_HAS_INTEL_PCH_SMBUS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_PCH_SMBUS)) + +DT_COMPAT_INTEL_PENWELL_SPI := intel,penwell-spi + +config DT_HAS_INTEL_PENWELL_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_PENWELL_SPI)) + +DT_COMPAT_INTEL_RAPTOR_LAKE := intel,raptor-lake + +config DT_HAS_INTEL_RAPTOR_LAKE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_RAPTOR_LAKE)) + +DT_COMPAT_INTEL_SEDI_DMA := intel,sedi-dma + +config DT_HAS_INTEL_SEDI_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SEDI_DMA)) + +DT_COMPAT_INTEL_SEDI_GPIO := intel,sedi-gpio + +config DT_HAS_INTEL_SEDI_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SEDI_GPIO)) + +DT_COMPAT_INTEL_SEDI_I2C := intel,sedi-i2c + +config DT_HAS_INTEL_SEDI_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SEDI_I2C)) + +DT_COMPAT_INTEL_SEDI_IPM := intel,sedi-ipm + +config DT_HAS_INTEL_SEDI_IPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SEDI_IPM)) + +DT_COMPAT_INTEL_SEDI_SPI := intel,sedi-spi + +config DT_HAS_INTEL_SEDI_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SEDI_SPI)) + +DT_COMPAT_INTEL_SEDI_UART := intel,sedi-uart + +config DT_HAS_INTEL_SEDI_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SEDI_UART)) + +DT_COMPAT_INTEL_SOCFPGA_AGILEX_SIP_SMC := intel,socfpga-agilex-sip-smc + +config DT_HAS_INTEL_SOCFPGA_AGILEX_SIP_SMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SOCFPGA_AGILEX_SIP_SMC)) + +DT_COMPAT_INTEL_SOCFPGA_RESET := intel,socfpga-reset + +config DT_HAS_INTEL_SOCFPGA_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SOCFPGA_RESET)) + +DT_COMPAT_INTEL_SSP := intel,ssp + +config DT_HAS_INTEL_SSP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SSP)) + +DT_COMPAT_INTEL_SSP_DAI := intel,ssp-dai + +config DT_HAS_INTEL_SSP_DAI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SSP_DAI)) + +DT_COMPAT_INTEL_SSP_SSPBASE := intel,ssp-sspbase + +config DT_HAS_INTEL_SSP_SSPBASE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_SSP_SSPBASE)) + +DT_COMPAT_INTEL_TCO_WDT := intel,tco-wdt + +config DT_HAS_INTEL_TCO_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_TCO_WDT)) + +DT_COMPAT_INTEL_TIMEAWARE_GPIO := intel,timeaware-gpio + +config DT_HAS_INTEL_TIMEAWARE_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_TIMEAWARE_GPIO)) + +DT_COMPAT_INTEL_UAOL_DAI := intel,uaol-dai + +config DT_HAS_INTEL_UAOL_DAI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_UAOL_DAI)) + +DT_COMPAT_INTEL_VT_D := intel,vt-d + +config DT_HAS_INTEL_VT_D_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_VT_D)) + +DT_COMPAT_INTEL_WILDCAT_LAKE := intel,wildcat-lake + +config DT_HAS_INTEL_WILDCAT_LAKE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_WILDCAT_LAKE)) + +DT_COMPAT_INTEL_X86 := intel,x86 + +config DT_HAS_INTEL_X86_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INTEL_X86)) + +DT_COMPAT_INVENSENSE_ICM40627 := invensense,icm40627 + +config DT_HAS_INVENSENSE_ICM40627_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM40627)) + +DT_COMPAT_INVENSENSE_ICM42370P := invensense,icm42370p + +config DT_HAS_INVENSENSE_ICM42370P_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM42370P)) + +DT_COMPAT_INVENSENSE_ICM42605 := invensense,icm42605 + +config DT_HAS_INVENSENSE_ICM42605_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM42605)) + +DT_COMPAT_INVENSENSE_ICM42670P := invensense,icm42670p + +config DT_HAS_INVENSENSE_ICM42670P_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM42670P)) + +DT_COMPAT_INVENSENSE_ICM42670S := invensense,icm42670s + +config DT_HAS_INVENSENSE_ICM42670S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM42670S)) + +DT_COMPAT_INVENSENSE_ICM42686 := invensense,icm42686 + +config DT_HAS_INVENSENSE_ICM42686_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM42686)) + +DT_COMPAT_INVENSENSE_ICM42688 := invensense,icm42688 + +config DT_HAS_INVENSENSE_ICM42688_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM42688)) + +DT_COMPAT_INVENSENSE_ICM4268X := invensense,icm4268x + +config DT_HAS_INVENSENSE_ICM4268X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM4268X)) + +DT_COMPAT_INVENSENSE_ICM45605 := invensense,icm45605 + +config DT_HAS_INVENSENSE_ICM45605_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM45605)) + +DT_COMPAT_INVENSENSE_ICM45605S := invensense,icm45605s + +config DT_HAS_INVENSENSE_ICM45605S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM45605S)) + +DT_COMPAT_INVENSENSE_ICM45686 := invensense,icm45686 + +config DT_HAS_INVENSENSE_ICM45686_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM45686)) + +DT_COMPAT_INVENSENSE_ICM45686S := invensense,icm45686s + +config DT_HAS_INVENSENSE_ICM45686S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM45686S)) + +DT_COMPAT_INVENSENSE_ICM45688P := invensense,icm45688p + +config DT_HAS_INVENSENSE_ICM45688P_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICM45688P)) + +DT_COMPAT_INVENSENSE_ICP101XX := invensense,icp101xx + +config DT_HAS_INVENSENSE_ICP101XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICP101XX)) + +DT_COMPAT_INVENSENSE_ICP201XX := invensense,icp201xx + +config DT_HAS_INVENSENSE_ICP201XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_ICP201XX)) + +DT_COMPAT_INVENSENSE_MPU6050 := invensense,mpu6050 + +config DT_HAS_INVENSENSE_MPU6050_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_MPU6050)) + +DT_COMPAT_INVENSENSE_MPU9250 := invensense,mpu9250 + +config DT_HAS_INVENSENSE_MPU9250_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENSENSE_MPU9250)) + +DT_COMPAT_INVENTEK_ESWIFI := inventek,eswifi + +config DT_HAS_INVENTEK_ESWIFI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENTEK_ESWIFI)) + +DT_COMPAT_INVENTEK_ESWIFI_UART := inventek,eswifi-uart + +config DT_HAS_INVENTEK_ESWIFI_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_INVENTEK_ESWIFI_UART)) + +DT_COMPAT_ISENTEK_IST8310 := isentek,ist8310 + +config DT_HAS_ISENTEK_IST8310_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ISENTEK_IST8310)) + +DT_COMPAT_ISIL_ISL29035 := isil,isl29035 + +config DT_HAS_ISIL_ISL29035_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ISIL_ISL29035)) + +DT_COMPAT_ISSI_IS31FL3194 := issi,is31fl3194 + +config DT_HAS_ISSI_IS31FL3194_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ISSI_IS31FL3194)) + +DT_COMPAT_ISSI_IS31FL3197 := issi,is31fl3197 + +config DT_HAS_ISSI_IS31FL3197_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ISSI_IS31FL3197)) + +DT_COMPAT_ISSI_IS31FL3216A := issi,is31fl3216a + +config DT_HAS_ISSI_IS31FL3216A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ISSI_IS31FL3216A)) + +DT_COMPAT_ISSI_IS31FL3733 := issi,is31fl3733 + +config DT_HAS_ISSI_IS31FL3733_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ISSI_IS31FL3733)) + +DT_COMPAT_IST_TSIC_XX6 := ist,tsic-xx6 + +config DT_HAS_IST_TSIC_XX6_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_IST_TSIC_XX6)) + +DT_COMPAT_ISTECH_IST3931 := istech,ist3931 + +config DT_HAS_ISTECH_IST3931_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ISTECH_IST3931)) + +DT_COMPAT_ITE_ENHANCE_I2C := ite,enhance-i2c + +config DT_HAS_ITE_ENHANCE_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_ENHANCE_I2C)) + +DT_COMPAT_ITE_IT51XXX_ADC := ite,it51xxx-adc + +config DT_HAS_ITE_IT51XXX_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_ADC)) + +DT_COMPAT_ITE_IT51XXX_COUNTER := ite,it51xxx-counter + +config DT_HAS_ITE_IT51XXX_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_COUNTER)) + +DT_COMPAT_ITE_IT51XXX_ECPM := ite,it51xxx-ecpm + +config DT_HAS_ITE_IT51XXX_ECPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_ECPM)) + +DT_COMPAT_ITE_IT51XXX_GPIO := ite,it51xxx-gpio + +config DT_HAS_ITE_IT51XXX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_GPIO)) + +DT_COMPAT_ITE_IT51XXX_I2C := ite,it51xxx-i2c + +config DT_HAS_ITE_IT51XXX_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_I2C)) + +DT_COMPAT_ITE_IT51XXX_I3CM := ite,it51xxx-i3cm + +config DT_HAS_ITE_IT51XXX_I3CM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_I3CM)) + +DT_COMPAT_ITE_IT51XXX_I3CS := ite,it51xxx-i3cs + +config DT_HAS_ITE_IT51XXX_I3CS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_I3CS)) + +DT_COMPAT_ITE_IT51XXX_INTC := ite,it51xxx-intc + +config DT_HAS_ITE_IT51XXX_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_INTC)) + +DT_COMPAT_ITE_IT51XXX_KBD := ite,it51xxx-kbd + +config DT_HAS_ITE_IT51XXX_KBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_KBD)) + +DT_COMPAT_ITE_IT51XXX_MANUAL_FLASH_1K := ite,it51xxx-manual-flash-1k + +config DT_HAS_ITE_IT51XXX_MANUAL_FLASH_1K_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_MANUAL_FLASH_1K)) + +DT_COMPAT_ITE_IT51XXX_PS2 := ite,it51xxx-ps2 + +config DT_HAS_ITE_IT51XXX_PS2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_PS2)) + +DT_COMPAT_ITE_IT51XXX_PWM := ite,it51xxx-pwm + +config DT_HAS_ITE_IT51XXX_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_PWM)) + +DT_COMPAT_ITE_IT51XXX_SHA := ite,it51xxx-sha + +config DT_HAS_ITE_IT51XXX_SHA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_SHA)) + +DT_COMPAT_ITE_IT51XXX_SPI := ite,it51xxx-spi + +config DT_HAS_ITE_IT51XXX_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_SPI)) + +DT_COMPAT_ITE_IT51XXX_TACH := ite,it51xxx-tach + +config DT_HAS_ITE_IT51XXX_TACH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_TACH)) + +DT_COMPAT_ITE_IT51XXX_TIMER := ite,it51xxx-timer + +config DT_HAS_ITE_IT51XXX_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_TIMER)) + +DT_COMPAT_ITE_IT51XXX_UART := ite,it51xxx-uart + +config DT_HAS_ITE_IT51XXX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_UART)) + +DT_COMPAT_ITE_IT51XXX_VCMP := ite,it51xxx-vcmp + +config DT_HAS_ITE_IT51XXX_VCMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_VCMP)) + +DT_COMPAT_ITE_IT51XXX_WATCHDOG := ite,it51xxx-watchdog + +config DT_HAS_ITE_IT51XXX_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_WATCHDOG)) + +DT_COMPAT_ITE_IT51XXX_WUC := ite,it51xxx-wuc + +config DT_HAS_ITE_IT51XXX_WUC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_WUC)) + +DT_COMPAT_ITE_IT51XXX_WUC_MAP := ite,it51xxx-wuc-map + +config DT_HAS_ITE_IT51XXX_WUC_MAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT51XXX_WUC_MAP)) + +DT_COMPAT_ITE_IT82XX2_USB := ite,it82xx2-usb + +config DT_HAS_ITE_IT82XX2_USB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT82XX2_USB)) + +DT_COMPAT_ITE_IT8801_ALTCTRL := ite,it8801-altctrl + +config DT_HAS_ITE_IT8801_ALTCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8801_ALTCTRL)) + +DT_COMPAT_ITE_IT8801_GPIO := ite,it8801-gpio + +config DT_HAS_ITE_IT8801_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8801_GPIO)) + +DT_COMPAT_ITE_IT8801_KBD := ite,it8801-kbd + +config DT_HAS_ITE_IT8801_KBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8801_KBD)) + +DT_COMPAT_ITE_IT8801_MFD := ite,it8801-mfd + +config DT_HAS_ITE_IT8801_MFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8801_MFD)) + +DT_COMPAT_ITE_IT8801_MFD_MAP := ite,it8801-mfd-map + +config DT_HAS_ITE_IT8801_MFD_MAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8801_MFD_MAP)) + +DT_COMPAT_ITE_IT8801_PWM := ite,it8801-pwm + +config DT_HAS_ITE_IT8801_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8801_PWM)) + +DT_COMPAT_ITE_IT8XXX2_ADC := ite,it8xxx2-adc + +config DT_HAS_ITE_IT8XXX2_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_ADC)) + +DT_COMPAT_ITE_IT8XXX2_BBRAM := ite,it8xxx2-bbram + +config DT_HAS_ITE_IT8XXX2_BBRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_BBRAM)) + +DT_COMPAT_ITE_IT8XXX2_COUNTER := ite,it8xxx2-counter + +config DT_HAS_ITE_IT8XXX2_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_COUNTER)) + +DT_COMPAT_ITE_IT8XXX2_ESPI := ite,it8xxx2-espi + +config DT_HAS_ITE_IT8XXX2_ESPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_ESPI)) + +DT_COMPAT_ITE_IT8XXX2_FLASH_CONTROLLER := ite,it8xxx2-flash-controller + +config DT_HAS_ITE_IT8XXX2_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_FLASH_CONTROLLER)) + +DT_COMPAT_ITE_IT8XXX2_GPIO := ite,it8xxx2-gpio + +config DT_HAS_ITE_IT8XXX2_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_GPIO)) + +DT_COMPAT_ITE_IT8XXX2_GPIO_V2 := ite,it8xxx2-gpio-v2 + +config DT_HAS_ITE_IT8XXX2_GPIO_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_GPIO_V2)) + +DT_COMPAT_ITE_IT8XXX2_GPIOKSCAN := ite,it8xxx2-gpiokscan + +config DT_HAS_ITE_IT8XXX2_GPIOKSCAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_GPIOKSCAN)) + +DT_COMPAT_ITE_IT8XXX2_I2C := ite,it8xxx2-i2c + +config DT_HAS_ITE_IT8XXX2_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_I2C)) + +DT_COMPAT_ITE_IT8XXX2_ILM := ite,it8xxx2-ilm + +config DT_HAS_ITE_IT8XXX2_ILM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_ILM)) + +DT_COMPAT_ITE_IT8XXX2_INTC := ite,it8xxx2-intc + +config DT_HAS_ITE_IT8XXX2_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_INTC)) + +DT_COMPAT_ITE_IT8XXX2_INTC_V2 := ite,it8xxx2-intc-v2 + +config DT_HAS_ITE_IT8XXX2_INTC_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_INTC_V2)) + +DT_COMPAT_ITE_IT8XXX2_KBD := ite,it8xxx2-kbd + +config DT_HAS_ITE_IT8XXX2_KBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_KBD)) + +DT_COMPAT_ITE_IT8XXX2_PECI := ite,it8xxx2-peci + +config DT_HAS_ITE_IT8XXX2_PECI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_PECI)) + +DT_COMPAT_ITE_IT8XXX2_PINCTRL := ite,it8xxx2-pinctrl + +config DT_HAS_ITE_IT8XXX2_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_PINCTRL)) + +DT_COMPAT_ITE_IT8XXX2_PINCTRL_FUNC := ite,it8xxx2-pinctrl-func + +config DT_HAS_ITE_IT8XXX2_PINCTRL_FUNC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_PINCTRL_FUNC)) + +DT_COMPAT_ITE_IT8XXX2_POWER_ELPM := ite,it8xxx2-power-elpm + +config DT_HAS_ITE_IT8XXX2_POWER_ELPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_POWER_ELPM)) + +DT_COMPAT_ITE_IT8XXX2_PWM := ite,it8xxx2-pwm + +config DT_HAS_ITE_IT8XXX2_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_PWM)) + +DT_COMPAT_ITE_IT8XXX2_PWMPRS := ite,it8xxx2-pwmprs + +config DT_HAS_ITE_IT8XXX2_PWMPRS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_PWMPRS)) + +DT_COMPAT_ITE_IT8XXX2_SHA := ite,it8xxx2-sha + +config DT_HAS_ITE_IT8XXX2_SHA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_SHA)) + +DT_COMPAT_ITE_IT8XXX2_SHA_V2 := ite,it8xxx2-sha-v2 + +config DT_HAS_ITE_IT8XXX2_SHA_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_SHA_V2)) + +DT_COMPAT_ITE_IT8XXX2_SHI := ite,it8xxx2-shi + +config DT_HAS_ITE_IT8XXX2_SHI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_SHI)) + +DT_COMPAT_ITE_IT8XXX2_SPI := ite,it8xxx2-spi + +config DT_HAS_ITE_IT8XXX2_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_SPI)) + +DT_COMPAT_ITE_IT8XXX2_TACH := ite,it8xxx2-tach + +config DT_HAS_ITE_IT8XXX2_TACH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_TACH)) + +DT_COMPAT_ITE_IT8XXX2_TIMER := ite,it8xxx2-timer + +config DT_HAS_ITE_IT8XXX2_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_TIMER)) + +DT_COMPAT_ITE_IT8XXX2_UART := ite,it8xxx2-uart + +config DT_HAS_ITE_IT8XXX2_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_UART)) + +DT_COMPAT_ITE_IT8XXX2_USBPD := ite,it8xxx2-usbpd + +config DT_HAS_ITE_IT8XXX2_USBPD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_USBPD)) + +DT_COMPAT_ITE_IT8XXX2_VCMP := ite,it8xxx2-vcmp + +config DT_HAS_ITE_IT8XXX2_VCMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_VCMP)) + +DT_COMPAT_ITE_IT8XXX2_WATCHDOG := ite,it8xxx2-watchdog + +config DT_HAS_ITE_IT8XXX2_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_WATCHDOG)) + +DT_COMPAT_ITE_IT8XXX2_WUC := ite,it8xxx2-wuc + +config DT_HAS_ITE_IT8XXX2_WUC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_WUC)) + +DT_COMPAT_ITE_IT8XXX2_WUC_MAP := ite,it8xxx2-wuc-map + +config DT_HAS_ITE_IT8XXX2_WUC_MAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_IT8XXX2_WUC_MAP)) + +DT_COMPAT_ITE_RISCV_ITE := ite,riscv-ite + +config DT_HAS_ITE_RISCV_ITE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ITE_RISCV_ITE)) + +DT_COMPAT_JDI_LPM013M126 := jdi,lpm013m126 + +config DT_HAS_JDI_LPM013M126_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_JDI_LPM013M126)) + +DT_COMPAT_JEDEC_JC_42_4_TEMP := jedec,jc-42.4-temp + +config DT_HAS_JEDEC_JC_42_4_TEMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_JEDEC_JC_42_4_TEMP)) + +DT_COMPAT_JEDEC_MSPI_NOR := jedec,mspi-nor + +config DT_HAS_JEDEC_MSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_JEDEC_MSPI_NOR)) + +DT_COMPAT_JEDEC_QSPI_NOR := jedec,qspi-nor + +config DT_HAS_JEDEC_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_JEDEC_QSPI_NOR)) + +DT_COMPAT_JEDEC_SPI_NAND := jedec,spi-nand + +config DT_HAS_JEDEC_SPI_NAND_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_JEDEC_SPI_NAND)) + +DT_COMPAT_JEDEC_SPI_NOR := jedec,spi-nor + +config DT_HAS_JEDEC_SPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_JEDEC_SPI_NOR)) + +DT_COMPAT_JHD_JHD1313 := jhd,jhd1313 + +config DT_HAS_JHD_JHD1313_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_JHD_JHD1313)) + +DT_COMPAT_KVASER_PCICAN := kvaser,pcican + +config DT_HAS_KVASER_PCICAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_KVASER_PCICAN)) + +DT_COMPAT_LATTICE_ICE40_FPGA := lattice,ice40-fpga + +config DT_HAS_LATTICE_ICE40_FPGA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LATTICE_ICE40_FPGA)) + +DT_COMPAT_LATTICE_ICE40_FPGA_BASE := lattice,ice40-fpga-base + +config DT_HAS_LATTICE_ICE40_FPGA_BASE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LATTICE_ICE40_FPGA_BASE)) + +DT_COMPAT_LATTICE_ICE40_FPGA_BITBANG := lattice,ice40-fpga-bitbang + +config DT_HAS_LATTICE_ICE40_FPGA_BITBANG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LATTICE_ICE40_FPGA_BITBANG)) + +DT_COMPAT_LED_STRIP_MATRIX := led-strip-matrix + +config DT_HAS_LED_STRIP_MATRIX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LED_STRIP_MATRIX)) + +DT_COMPAT_LEDS_GROUP_MULTICOLOR := leds-group-multicolor + +config DT_HAS_LEDS_GROUP_MULTICOLOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LEDS_GROUP_MULTICOLOR)) + +DT_COMPAT_LINARO_96B_LSCON_1V8 := linaro,96b-lscon-1v8 + +config DT_HAS_LINARO_96B_LSCON_1V8_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LINARO_96B_LSCON_1V8)) + +DT_COMPAT_LINARO_96B_LSCON_3V3 := linaro,96b-lscon-3v3 + +config DT_HAS_LINARO_96B_LSCON_3V3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LINARO_96B_LSCON_3V3)) + +DT_COMPAT_LINARO_IVSHMEM_IPM := linaro,ivshmem-ipm + +config DT_HAS_LINARO_IVSHMEM_IPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LINARO_IVSHMEM_IPM)) + +DT_COMPAT_LINARO_IVSHMEM_MBOX := linaro,ivshmem-mbox + +config DT_HAS_LINARO_IVSHMEM_MBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LINARO_IVSHMEM_MBOX)) + +DT_COMPAT_LINARO_OPTEE_TZ := linaro,optee-tz + +config DT_HAS_LINARO_OPTEE_TZ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LINARO_OPTEE_TZ)) + +DT_COMPAT_LITEON_LTR329 := liteon,ltr329 + +config DT_HAS_LITEON_LTR329_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEON_LTR329)) + +DT_COMPAT_LITEON_LTR553 := liteon,ltr553 + +config DT_HAS_LITEON_LTR553_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEON_LTR553)) + +DT_COMPAT_LITEON_LTRF216A := liteon,ltrf216a + +config DT_HAS_LITEON_LTRF216A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEON_LTRF216A)) + +DT_COMPAT_LITEX_CLK := litex,clk + +config DT_HAS_LITEX_CLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_CLK)) + +DT_COMPAT_LITEX_CLKOUT := litex,clkout + +config DT_HAS_LITEX_CLKOUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_CLKOUT)) + +DT_COMPAT_LITEX_DNA0 := litex,dna0 + +config DT_HAS_LITEX_DNA0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_DNA0)) + +DT_COMPAT_LITEX_GPIO := litex,gpio + +config DT_HAS_LITEX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_GPIO)) + +DT_COMPAT_LITEX_I2C := litex,i2c + +config DT_HAS_LITEX_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_I2C)) + +DT_COMPAT_LITEX_I2S := litex,i2s + +config DT_HAS_LITEX_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_I2S)) + +DT_COMPAT_LITEX_LITEETH := litex,liteeth + +config DT_HAS_LITEX_LITEETH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_LITEETH)) + +DT_COMPAT_LITEX_LITEETH_MDIO := litex,liteeth-mdio + +config DT_HAS_LITEX_LITEETH_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_LITEETH_MDIO)) + +DT_COMPAT_LITEX_LITEI2C := litex,litei2c + +config DT_HAS_LITEX_LITEI2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_LITEI2C)) + +DT_COMPAT_LITEX_MMC := litex,mmc + +config DT_HAS_LITEX_MMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_MMC)) + +DT_COMPAT_LITEX_PRBS := litex,prbs + +config DT_HAS_LITEX_PRBS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_PRBS)) + +DT_COMPAT_LITEX_PWM := litex,pwm + +config DT_HAS_LITEX_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_PWM)) + +DT_COMPAT_LITEX_SOC_CONTROLLER := litex,soc-controller + +config DT_HAS_LITEX_SOC_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_SOC_CONTROLLER)) + +DT_COMPAT_LITEX_SPI := litex,spi + +config DT_HAS_LITEX_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_SPI)) + +DT_COMPAT_LITEX_SPI_LITESPI := litex,spi-litespi + +config DT_HAS_LITEX_SPI_LITESPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_SPI_LITESPI)) + +DT_COMPAT_LITEX_TIMER0 := litex,timer0 + +config DT_HAS_LITEX_TIMER0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_TIMER0)) + +DT_COMPAT_LITEX_UART := litex,uart + +config DT_HAS_LITEX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_UART)) + +DT_COMPAT_LITEX_VEXRISCV_INTC0 := litex,vexriscv-intc0 + +config DT_HAS_LITEX_VEXRISCV_INTC0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_VEXRISCV_INTC0)) + +DT_COMPAT_LITEX_VEXRISCV_STANDARD := litex,vexriscv-standard + +config DT_HAS_LITEX_VEXRISCV_STANDARD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_VEXRISCV_STANDARD)) + +DT_COMPAT_LITEX_WATCHDOG := litex,watchdog + +config DT_HAS_LITEX_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LITEX_WATCHDOG)) + +DT_COMPAT_LLTC_LTC1660 := lltc,ltc1660 + +config DT_HAS_LLTC_LTC1660_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LLTC_LTC1660)) + +DT_COMPAT_LLTC_LTC1665 := lltc,ltc1665 + +config DT_HAS_LLTC_LTC1665_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LLTC_LTC1665)) + +DT_COMPAT_LLTC_LTC2451 := lltc,ltc2451 + +config DT_HAS_LLTC_LTC2451_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LLTC_LTC2451)) + +DT_COMPAT_LM35 := lm35 + +config DT_HAS_LM35_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LM35)) + +DT_COMPAT_LM75 := lm75 + +config DT_HAS_LM75_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LM75)) + +DT_COMPAT_LM77 := lm77 + +config DT_HAS_LM77_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LM77)) + +DT_COMPAT_LOWRISC_IBEX := lowrisc,ibex + +config DT_HAS_LOWRISC_IBEX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LOWRISC_IBEX)) + +DT_COMPAT_LOWRISC_OPENTITAN_AONTIMER := lowrisc,opentitan-aontimer + +config DT_HAS_LOWRISC_OPENTITAN_AONTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LOWRISC_OPENTITAN_AONTIMER)) + +DT_COMPAT_LOWRISC_OPENTITAN_PWRMGR := lowrisc,opentitan-pwrmgr + +config DT_HAS_LOWRISC_OPENTITAN_PWRMGR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LOWRISC_OPENTITAN_PWRMGR)) + +DT_COMPAT_LOWRISC_OPENTITAN_SPI := lowrisc,opentitan-spi + +config DT_HAS_LOWRISC_OPENTITAN_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LOWRISC_OPENTITAN_SPI)) + +DT_COMPAT_LOWRISC_OPENTITAN_UART := lowrisc,opentitan-uart + +config DT_HAS_LOWRISC_OPENTITAN_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LOWRISC_OPENTITAN_UART)) + +DT_COMPAT_LUATOS_AIR530Z := luatos,air530z + +config DT_HAS_LUATOS_AIR530Z_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_LUATOS_AIR530Z)) + +DT_COMPAT_M5STACK_ATOM_HEADER := m5stack,atom-header + +config DT_HAS_M5STACK_ATOM_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_M5STACK_ATOM_HEADER)) + +DT_COMPAT_M5STACK_MBUS_HEADER := m5stack,mbus-header + +config DT_HAS_M5STACK_MBUS_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_M5STACK_MBUS_HEADER)) + +DT_COMPAT_M5STACK_STAMPS3_HEADER := m5stack,stamps3-header + +config DT_HAS_M5STACK_STAMPS3_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_M5STACK_STAMPS3_HEADER)) + +DT_COMPAT_MAXBOTIX_MB7040 := maxbotix,mb7040 + +config DT_HAS_MAXBOTIX_MB7040_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXBOTIX_MB7040)) + +DT_COMPAT_MAXIM_DS1302 := maxim,ds1302 + +config DT_HAS_MAXIM_DS1302_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS1302)) + +DT_COMPAT_MAXIM_DS1307 := maxim,ds1307 + +config DT_HAS_MAXIM_DS1307_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS1307)) + +DT_COMPAT_MAXIM_DS1337 := maxim,ds1337 + +config DT_HAS_MAXIM_DS1337_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS1337)) + +DT_COMPAT_MAXIM_DS18B20 := maxim,ds18b20 + +config DT_HAS_MAXIM_DS18B20_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS18B20)) + +DT_COMPAT_MAXIM_DS18S20 := maxim,ds18s20 + +config DT_HAS_MAXIM_DS18S20_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS18S20)) + +DT_COMPAT_MAXIM_DS2482_800 := maxim,ds2482-800 + +config DT_HAS_MAXIM_DS2482_800_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS2482_800)) + +DT_COMPAT_MAXIM_DS2482_800_CHANNEL := maxim,ds2482-800-channel + +config DT_HAS_MAXIM_DS2482_800_CHANNEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS2482_800_CHANNEL)) + +DT_COMPAT_MAXIM_DS2484 := maxim,ds2484 + +config DT_HAS_MAXIM_DS2484_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS2484)) + +DT_COMPAT_MAXIM_DS2485 := maxim,ds2485 + +config DT_HAS_MAXIM_DS2485_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS2485)) + +DT_COMPAT_MAXIM_DS3231 := maxim,ds3231 + +config DT_HAS_MAXIM_DS3231_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS3231)) + +DT_COMPAT_MAXIM_DS3231_MFD := maxim,ds3231-mfd + +config DT_HAS_MAXIM_DS3231_MFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS3231_MFD)) + +DT_COMPAT_MAXIM_DS3231_RTC := maxim,ds3231-rtc + +config DT_HAS_MAXIM_DS3231_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS3231_RTC)) + +DT_COMPAT_MAXIM_DS3231_SENSOR := maxim,ds3231-sensor + +config DT_HAS_MAXIM_DS3231_SENSOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_DS3231_SENSOR)) + +DT_COMPAT_MAXIM_MAX11102 := maxim,max11102 + +config DT_HAS_MAXIM_MAX11102_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11102)) + +DT_COMPAT_MAXIM_MAX11103 := maxim,max11103 + +config DT_HAS_MAXIM_MAX11103_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11103)) + +DT_COMPAT_MAXIM_MAX11105 := maxim,max11105 + +config DT_HAS_MAXIM_MAX11105_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11105)) + +DT_COMPAT_MAXIM_MAX11106 := maxim,max11106 + +config DT_HAS_MAXIM_MAX11106_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11106)) + +DT_COMPAT_MAXIM_MAX11110 := maxim,max11110 + +config DT_HAS_MAXIM_MAX11110_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11110)) + +DT_COMPAT_MAXIM_MAX11111 := maxim,max11111 + +config DT_HAS_MAXIM_MAX11111_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11111)) + +DT_COMPAT_MAXIM_MAX11115 := maxim,max11115 + +config DT_HAS_MAXIM_MAX11115_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11115)) + +DT_COMPAT_MAXIM_MAX11116 := maxim,max11116 + +config DT_HAS_MAXIM_MAX11116_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11116)) + +DT_COMPAT_MAXIM_MAX11117 := maxim,max11117 + +config DT_HAS_MAXIM_MAX11117_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11117)) + +DT_COMPAT_MAXIM_MAX11253 := maxim,max11253 + +config DT_HAS_MAXIM_MAX11253_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11253)) + +DT_COMPAT_MAXIM_MAX11254 := maxim,max11254 + +config DT_HAS_MAXIM_MAX11254_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX11254)) + +DT_COMPAT_MAXIM_MAX17048 := maxim,max17048 + +config DT_HAS_MAXIM_MAX17048_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX17048)) + +DT_COMPAT_MAXIM_MAX17055 := maxim,max17055 + +config DT_HAS_MAXIM_MAX17055_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX17055)) + +DT_COMPAT_MAXIM_MAX17262 := maxim,max17262 + +config DT_HAS_MAXIM_MAX17262_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX17262)) + +DT_COMPAT_MAXIM_MAX20335 := maxim,max20335 + +config DT_HAS_MAXIM_MAX20335_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX20335)) + +DT_COMPAT_MAXIM_MAX20335_CHARGER := maxim,max20335-charger + +config DT_HAS_MAXIM_MAX20335_CHARGER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX20335_CHARGER)) + +DT_COMPAT_MAXIM_MAX20335_REGULATOR := maxim,max20335-regulator + +config DT_HAS_MAXIM_MAX20335_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX20335_REGULATOR)) + +DT_COMPAT_MAXIM_MAX2253X := maxim,max2253x + +config DT_HAS_MAXIM_MAX2253X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX2253X)) + +DT_COMPAT_MAXIM_MAX30101 := maxim,max30101 + +config DT_HAS_MAXIM_MAX30101_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX30101)) + +DT_COMPAT_MAXIM_MAX31790 := maxim,max31790 + +config DT_HAS_MAXIM_MAX31790_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX31790)) + +DT_COMPAT_MAXIM_MAX31790_FAN_FAULT := maxim,max31790-fan-fault + +config DT_HAS_MAXIM_MAX31790_FAN_FAULT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX31790_FAN_FAULT)) + +DT_COMPAT_MAXIM_MAX31790_FAN_SPEED := maxim,max31790-fan-speed + +config DT_HAS_MAXIM_MAX31790_FAN_SPEED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX31790_FAN_SPEED)) + +DT_COMPAT_MAXIM_MAX31790_PWM := maxim,max31790-pwm + +config DT_HAS_MAXIM_MAX31790_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX31790_PWM)) + +DT_COMPAT_MAXIM_MAX31855 := maxim,max31855 + +config DT_HAS_MAXIM_MAX31855_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX31855)) + +DT_COMPAT_MAXIM_MAX31865 := maxim,max31865 + +config DT_HAS_MAXIM_MAX31865_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX31865)) + +DT_COMPAT_MAXIM_MAX31875 := maxim,max31875 + +config DT_HAS_MAXIM_MAX31875_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX31875)) + +DT_COMPAT_MAXIM_MAX32664C := maxim,max32664c + +config DT_HAS_MAXIM_MAX32664C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX32664C)) + +DT_COMPAT_MAXIM_MAX3421E_SPI := maxim,max3421e-spi + +config DT_HAS_MAXIM_MAX3421E_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX3421E_SPI)) + +DT_COMPAT_MAXIM_MAX44009 := maxim,max44009 + +config DT_HAS_MAXIM_MAX44009_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX44009)) + +DT_COMPAT_MAXIM_MAX6675 := maxim,max6675 + +config DT_HAS_MAXIM_MAX6675_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX6675)) + +DT_COMPAT_MAXIM_MAX7219 := maxim,max7219 + +config DT_HAS_MAXIM_MAX7219_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX7219)) + +DT_COMPAT_MAXIM_MAX98091 := maxim,max98091 + +config DT_HAS_MAXIM_MAX98091_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXIM_MAX98091)) + +DT_COMPAT_MAXLINEAR_GPY111 := maxlinear,gpy111 + +config DT_HAS_MAXLINEAR_GPY111_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MAXLINEAR_GPY111)) + +DT_COMPAT_MEAS_MS5607 := meas,ms5607 + +config DT_HAS_MEAS_MS5607_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEAS_MS5607)) + +DT_COMPAT_MEAS_MS5837_02BA := meas,ms5837-02ba + +config DT_HAS_MEAS_MS5837_02BA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEAS_MS5837_02BA)) + +DT_COMPAT_MEAS_MS5837_30BA := meas,ms5837-30ba + +config DT_HAS_MEAS_MS5837_30BA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEAS_MS5837_30BA)) + +DT_COMPAT_MEDIATEK_ADSP_INTC := mediatek,adsp_intc + +config DT_HAS_MEDIATEK_ADSP_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEDIATEK_ADSP_INTC)) + +DT_COMPAT_MEDIATEK_AFE := mediatek,afe + +config DT_HAS_MEDIATEK_AFE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEDIATEK_AFE)) + +DT_COMPAT_MEDIATEK_MT818X_CPUCLK := mediatek,mt818x_cpuclk + +config DT_HAS_MEDIATEK_MT818X_CPUCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEDIATEK_MT818X_CPUCLK)) + +DT_COMPAT_MEDIATEK_MT8195_CPUCLK := mediatek,mt8195_cpuclk + +config DT_HAS_MEDIATEK_MT8195_CPUCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEDIATEK_MT8195_CPUCLK)) + +DT_COMPAT_MEDIATEK_OSTIMER64 := mediatek,ostimer64 + +config DT_HAS_MEDIATEK_OSTIMER64_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEDIATEK_OSTIMER64)) + +DT_COMPAT_MELEXIS_MLX90394 := melexis,mlx90394 + +config DT_HAS_MELEXIS_MLX90394_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MELEXIS_MLX90394)) + +DT_COMPAT_MEMSIC_MC3419 := memsic,mc3419 + +config DT_HAS_MEMSIC_MC3419_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEMSIC_MC3419)) + +DT_COMPAT_MEMSIC_MMC56X3 := memsic,mmc56x3 + +config DT_HAS_MEMSIC_MMC56X3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MEMSIC_MMC56X3)) + +DT_COMPAT_MICROBIT_EDGE_CONNECTOR := microbit,edge-connector + +config DT_HAS_MICROBIT_EDGE_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROBIT_EDGE_CONNECTOR)) + +DT_COMPAT_MICROCHIP_AC_G1_COMPARATOR := microchip,ac-g1-comparator + +config DT_HAS_MICROCHIP_AC_G1_COMPARATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_AC_G1_COMPARATOR)) + +DT_COMPAT_MICROCHIP_ADC_G1 := microchip,adc-g1 + +config DT_HAS_MICROCHIP_ADC_G1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_ADC_G1)) + +DT_COMPAT_MICROCHIP_AES_G1 := microchip,aes-g1 + +config DT_HAS_MICROCHIP_AES_G1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_AES_G1)) + +DT_COMPAT_MICROCHIP_AIC_G1_INTC := microchip,aic-g1-intc + +config DT_HAS_MICROCHIP_AIC_G1_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_AIC_G1_INTC)) + +DT_COMPAT_MICROCHIP_CAP12XX := microchip,cap12xx + +config DT_HAS_MICROCHIP_CAP12XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_CAP12XX)) + +DT_COMPAT_MICROCHIP_COREUART := microchip,coreuart + +config DT_HAS_MICROCHIP_COREUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_COREUART)) + +DT_COMPAT_MICROCHIP_DAC_G1 := microchip,dac-g1 + +config DT_HAS_MICROCHIP_DAC_G1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_DAC_G1)) + +DT_COMPAT_MICROCHIP_DBGU_G1_UART := microchip,dbgu-g1-uart + +config DT_HAS_MICROCHIP_DBGU_G1_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_DBGU_G1_UART)) + +DT_COMPAT_MICROCHIP_DMAC_G1_DMA := microchip,dmac-g1-dma + +config DT_HAS_MICROCHIP_DMAC_G1_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_DMAC_G1_DMA)) + +DT_COMPAT_MICROCHIP_DMAC_G2_DMA := microchip,dmac-g2-dma + +config DT_HAS_MICROCHIP_DMAC_G2_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_DMAC_G2_DMA)) + +DT_COMPAT_MICROCHIP_DMEC_ECIA_GIRQ := microchip,dmec-ecia-girq + +config DT_HAS_MICROCHIP_DMEC_ECIA_GIRQ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_DMEC_ECIA_GIRQ)) + +DT_COMPAT_MICROCHIP_EIC_G1_INTC := microchip,eic-g1-intc + +config DT_HAS_MICROCHIP_EIC_G1_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_EIC_G1_INTC)) + +DT_COMPAT_MICROCHIP_ENC28J60 := microchip,enc28j60 + +config DT_HAS_MICROCHIP_ENC28J60_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_ENC28J60)) + +DT_COMPAT_MICROCHIP_ENC424J600 := microchip,enc424j600 + +config DT_HAS_MICROCHIP_ENC424J600_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_ENC424J600)) + +DT_COMPAT_MICROCHIP_HWINFO_G1 := microchip,hwinfo-g1 + +config DT_HAS_MICROCHIP_HWINFO_G1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_HWINFO_G1)) + +DT_COMPAT_MICROCHIP_KSZ8081 := microchip,ksz8081 + +config DT_HAS_MICROCHIP_KSZ8081_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_KSZ8081)) + +DT_COMPAT_MICROCHIP_KSZ9131 := microchip,ksz9131 + +config DT_HAS_MICROCHIP_KSZ9131_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_KSZ9131)) + +DT_COMPAT_MICROCHIP_LAN865X := microchip,lan865x + +config DT_HAS_MICROCHIP_LAN865X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_LAN865X)) + +DT_COMPAT_MICROCHIP_LAN865X_MDIO := microchip,lan865x-mdio + +config DT_HAS_MICROCHIP_LAN865X_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_LAN865X_MDIO)) + +DT_COMPAT_MICROCHIP_LAN8742 := microchip,lan8742 + +config DT_HAS_MICROCHIP_LAN8742_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_LAN8742)) + +DT_COMPAT_MICROCHIP_LAN9250 := microchip,lan9250 + +config DT_HAS_MICROCHIP_LAN9250_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_LAN9250)) + +DT_COMPAT_MICROCHIP_MCP23008 := microchip,mcp23008 + +config DT_HAS_MICROCHIP_MCP23008_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23008)) + +DT_COMPAT_MICROCHIP_MCP23009 := microchip,mcp23009 + +config DT_HAS_MICROCHIP_MCP23009_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23009)) + +DT_COMPAT_MICROCHIP_MCP23016 := microchip,mcp23016 + +config DT_HAS_MICROCHIP_MCP23016_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23016)) + +DT_COMPAT_MICROCHIP_MCP23017 := microchip,mcp23017 + +config DT_HAS_MICROCHIP_MCP23017_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23017)) + +DT_COMPAT_MICROCHIP_MCP23018 := microchip,mcp23018 + +config DT_HAS_MICROCHIP_MCP23018_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23018)) + +DT_COMPAT_MICROCHIP_MCP23S08 := microchip,mcp23s08 + +config DT_HAS_MICROCHIP_MCP23S08_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23S08)) + +DT_COMPAT_MICROCHIP_MCP23S09 := microchip,mcp23s09 + +config DT_HAS_MICROCHIP_MCP23S09_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23S09)) + +DT_COMPAT_MICROCHIP_MCP23S17 := microchip,mcp23s17 + +config DT_HAS_MICROCHIP_MCP23S17_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23S17)) + +DT_COMPAT_MICROCHIP_MCP23S18 := microchip,mcp23s18 + +config DT_HAS_MICROCHIP_MCP23S18_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP23S18)) + +DT_COMPAT_MICROCHIP_MCP2515 := microchip,mcp2515 + +config DT_HAS_MICROCHIP_MCP2515_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP2515)) + +DT_COMPAT_MICROCHIP_MCP251XFD := microchip,mcp251xfd + +config DT_HAS_MICROCHIP_MCP251XFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP251XFD)) + +DT_COMPAT_MICROCHIP_MCP3204 := microchip,mcp3204 + +config DT_HAS_MICROCHIP_MCP3204_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP3204)) + +DT_COMPAT_MICROCHIP_MCP3208 := microchip,mcp3208 + +config DT_HAS_MICROCHIP_MCP3208_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP3208)) + +DT_COMPAT_MICROCHIP_MCP3221 := microchip,mcp3221 + +config DT_HAS_MICROCHIP_MCP3221_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP3221)) + +DT_COMPAT_MICROCHIP_MCP356XR := microchip,mcp356xr + +config DT_HAS_MICROCHIP_MCP356XR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP356XR)) + +DT_COMPAT_MICROCHIP_MCP4725 := microchip,mcp4725 + +config DT_HAS_MICROCHIP_MCP4725_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP4725)) + +DT_COMPAT_MICROCHIP_MCP4728 := microchip,mcp4728 + +config DT_HAS_MICROCHIP_MCP4728_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP4728)) + +DT_COMPAT_MICROCHIP_MCP7940N := microchip,mcp7940n + +config DT_HAS_MICROCHIP_MCP7940N_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP7940N)) + +DT_COMPAT_MICROCHIP_MCP9600 := microchip,mcp9600 + +config DT_HAS_MICROCHIP_MCP9600_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP9600)) + +DT_COMPAT_MICROCHIP_MCP970X := microchip,mcp970x + +config DT_HAS_MICROCHIP_MCP970X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MCP970X)) + +DT_COMPAT_MICROCHIP_MEC5_GPIO := microchip,mec5-gpio + +config DT_HAS_MICROCHIP_MEC5_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MEC5_GPIO)) + +DT_COMPAT_MICROCHIP_MPFS_GPIO := microchip,mpfs-gpio + +config DT_HAS_MICROCHIP_MPFS_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MPFS_GPIO)) + +DT_COMPAT_MICROCHIP_MPFS_I2C := microchip,mpfs-i2c + +config DT_HAS_MICROCHIP_MPFS_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MPFS_I2C)) + +DT_COMPAT_MICROCHIP_MPFS_QSPI := microchip,mpfs-qspi + +config DT_HAS_MICROCHIP_MPFS_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MPFS_QSPI)) + +DT_COMPAT_MICROCHIP_MPFS_RESET := microchip,mpfs-reset + +config DT_HAS_MICROCHIP_MPFS_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MPFS_RESET)) + +DT_COMPAT_MICROCHIP_MPFS_SPI := microchip,mpfs-spi + +config DT_HAS_MICROCHIP_MPFS_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MPFS_SPI)) + +DT_COMPAT_MICROCHIP_MTCH9010 := microchip,mtch9010 + +config DT_HAS_MICROCHIP_MTCH9010_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_MTCH9010)) + +DT_COMPAT_MICROCHIP_NVMCTRL_G1_FLASH := microchip,nvmctrl-g1-flash + +config DT_HAS_MICROCHIP_NVMCTRL_G1_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_NVMCTRL_G1_FLASH)) + +DT_COMPAT_MICROCHIP_PIC32CM_JH_CLOCK := microchip,pic32cm-jh-clock + +config DT_HAS_MICROCHIP_PIC32CM_JH_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CM_JH_CLOCK)) + +DT_COMPAT_MICROCHIP_PIC32CM_JH_FDPLL := microchip,pic32cm-jh-fdpll + +config DT_HAS_MICROCHIP_PIC32CM_JH_FDPLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CM_JH_FDPLL)) + +DT_COMPAT_MICROCHIP_PIC32CM_JH_GCLKGEN := microchip,pic32cm-jh-gclkgen + +config DT_HAS_MICROCHIP_PIC32CM_JH_GCLKGEN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CM_JH_GCLKGEN)) + +DT_COMPAT_MICROCHIP_PIC32CM_JH_GCLKPERIPH := microchip,pic32cm-jh-gclkperiph + +config DT_HAS_MICROCHIP_PIC32CM_JH_GCLKPERIPH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CM_JH_GCLKPERIPH)) + +DT_COMPAT_MICROCHIP_PIC32CM_JH_MCLKCPU := microchip,pic32cm-jh-mclkcpu + +config DT_HAS_MICROCHIP_PIC32CM_JH_MCLKCPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CM_JH_MCLKCPU)) + +DT_COMPAT_MICROCHIP_PIC32CM_JH_MCLKPERIPH := microchip,pic32cm-jh-mclkperiph + +config DT_HAS_MICROCHIP_PIC32CM_JH_MCLKPERIPH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CM_JH_MCLKPERIPH)) + +DT_COMPAT_MICROCHIP_PIC32CM_JH_OSC32K := microchip,pic32cm-jh-osc32k + +config DT_HAS_MICROCHIP_PIC32CM_JH_OSC32K_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CM_JH_OSC32K)) + +DT_COMPAT_MICROCHIP_PIC32CM_JH_OSC48M := microchip,pic32cm-jh-osc48m + +config DT_HAS_MICROCHIP_PIC32CM_JH_OSC48M_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CM_JH_OSC48M)) + +DT_COMPAT_MICROCHIP_PIC32CM_JH_RTC := microchip,pic32cm-jh-rtc + +config DT_HAS_MICROCHIP_PIC32CM_JH_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CM_JH_RTC)) + +DT_COMPAT_MICROCHIP_PIC32CM_JH_XOSC := microchip,pic32cm-jh-xosc + +config DT_HAS_MICROCHIP_PIC32CM_JH_XOSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CM_JH_XOSC)) + +DT_COMPAT_MICROCHIP_PIC32CM_JH_XOSC32K := microchip,pic32cm-jh-xosc32k + +config DT_HAS_MICROCHIP_PIC32CM_JH_XOSC32K_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CM_JH_XOSC32K)) + +DT_COMPAT_MICROCHIP_PIC32CM_PL_CLOCK := microchip,pic32cm-pl-clock + +config DT_HAS_MICROCHIP_PIC32CM_PL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CM_PL_CLOCK)) + +DT_COMPAT_MICROCHIP_PIC32CM_PL_GCLKGEN := microchip,pic32cm-pl-gclkgen + +config DT_HAS_MICROCHIP_PIC32CM_PL_GCLKGEN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CM_PL_GCLKGEN)) + +DT_COMPAT_MICROCHIP_PIC32CM_PL_GCLKPERIPH := microchip,pic32cm-pl-gclkperiph + +config DT_HAS_MICROCHIP_PIC32CM_PL_GCLKPERIPH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CM_PL_GCLKPERIPH)) + +DT_COMPAT_MICROCHIP_PIC32CM_PL_MCLKCPU := microchip,pic32cm-pl-mclkcpu + +config DT_HAS_MICROCHIP_PIC32CM_PL_MCLKCPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CM_PL_MCLKCPU)) + +DT_COMPAT_MICROCHIP_PIC32CM_PL_MCLKPERIPH := microchip,pic32cm-pl-mclkperiph + +config DT_HAS_MICROCHIP_PIC32CM_PL_MCLKPERIPH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CM_PL_MCLKPERIPH)) + +DT_COMPAT_MICROCHIP_PIC32CM_PL_OSC32K := microchip,pic32cm-pl-osc32k + +config DT_HAS_MICROCHIP_PIC32CM_PL_OSC32K_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CM_PL_OSC32K)) + +DT_COMPAT_MICROCHIP_PIC32CM_PL_OSCHF := microchip,pic32cm-pl-oschf + +config DT_HAS_MICROCHIP_PIC32CM_PL_OSCHF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CM_PL_OSCHF)) + +DT_COMPAT_MICROCHIP_PIC32CM_PL_RTC := microchip,pic32cm-pl-rtc + +config DT_HAS_MICROCHIP_PIC32CM_PL_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CM_PL_RTC)) + +DT_COMPAT_MICROCHIP_PIC32CM_PL_XOSC32K := microchip,pic32cm-pl-xosc32k + +config DT_HAS_MICROCHIP_PIC32CM_PL_XOSC32K_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CM_PL_XOSC32K)) + +DT_COMPAT_MICROCHIP_PIC32CZ_CA_CLOCK := microchip,pic32cz-ca-clock + +config DT_HAS_MICROCHIP_PIC32CZ_CA_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CZ_CA_CLOCK)) + +DT_COMPAT_MICROCHIP_PIC32CZ_CA_DFLL48M := microchip,pic32cz-ca-dfll48m + +config DT_HAS_MICROCHIP_PIC32CZ_CA_DFLL48M_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CZ_CA_DFLL48M)) + +DT_COMPAT_MICROCHIP_PIC32CZ_CA_DPLL := microchip,pic32cz-ca-dpll + +config DT_HAS_MICROCHIP_PIC32CZ_CA_DPLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CZ_CA_DPLL)) + +DT_COMPAT_MICROCHIP_PIC32CZ_CA_GCLKGEN := microchip,pic32cz-ca-gclkgen + +config DT_HAS_MICROCHIP_PIC32CZ_CA_GCLKGEN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CZ_CA_GCLKGEN)) + +DT_COMPAT_MICROCHIP_PIC32CZ_CA_GCLKPERIPH := microchip,pic32cz-ca-gclkperiph + +config DT_HAS_MICROCHIP_PIC32CZ_CA_GCLKPERIPH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CZ_CA_GCLKPERIPH)) + +DT_COMPAT_MICROCHIP_PIC32CZ_CA_MCLKDOMAIN := microchip,pic32cz-ca-mclkdomain + +config DT_HAS_MICROCHIP_PIC32CZ_CA_MCLKDOMAIN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CZ_CA_MCLKDOMAIN)) + +DT_COMPAT_MICROCHIP_PIC32CZ_CA_MCLKPERIPH := microchip,pic32cz-ca-mclkperiph + +config DT_HAS_MICROCHIP_PIC32CZ_CA_MCLKPERIPH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CZ_CA_MCLKPERIPH)) + +DT_COMPAT_MICROCHIP_PIC32CZ_CA_RTC := microchip,pic32cz-ca-rtc + +config DT_HAS_MICROCHIP_PIC32CZ_CA_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CZ_CA_RTC)) + +DT_COMPAT_MICROCHIP_PIC32CZ_CA_XOSC := microchip,pic32cz-ca-xosc + +config DT_HAS_MICROCHIP_PIC32CZ_CA_XOSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CZ_CA_XOSC)) + +DT_COMPAT_MICROCHIP_PIC32CZ_CA_XOSC32K := microchip,pic32cz-ca-xosc32k + +config DT_HAS_MICROCHIP_PIC32CZ_CA_XOSC32K_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PIC32CZ_CA_XOSC32K)) + +DT_COMPAT_MICROCHIP_PORT_G1_GPIO := microchip,port-g1-gpio + +config DT_HAS_MICROCHIP_PORT_G1_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PORT_G1_GPIO)) + +DT_COMPAT_MICROCHIP_PORT_G1_PINCTRL := microchip,port-g1-pinctrl + +config DT_HAS_MICROCHIP_PORT_G1_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_PORT_G1_PINCTRL)) + +DT_COMPAT_MICROCHIP_RSTC_G1_RESET := microchip,rstc-g1-reset + +config DT_HAS_MICROCHIP_RSTC_G1_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_RSTC_G1_RESET)) + +DT_COMPAT_MICROCHIP_RTC_G1 := microchip,rtc-g1 + +config DT_HAS_MICROCHIP_RTC_G1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_RTC_G1)) + +DT_COMPAT_MICROCHIP_RTC_G1_COUNTER := microchip,rtc-g1-counter + +config DT_HAS_MICROCHIP_RTC_G1_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_RTC_G1_COUNTER)) + +DT_COMPAT_MICROCHIP_RTC_G2 := microchip,rtc-g2 + +config DT_HAS_MICROCHIP_RTC_G2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_RTC_G2)) + +DT_COMPAT_MICROCHIP_SAM_D5X_E5X_CLOCK := microchip,sam-d5x-e5x-clock + +config DT_HAS_MICROCHIP_SAM_D5X_E5X_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_D5X_E5X_CLOCK)) + +DT_COMPAT_MICROCHIP_SAM_D5X_E5X_DFLL := microchip,sam-d5x-e5x-dfll + +config DT_HAS_MICROCHIP_SAM_D5X_E5X_DFLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_D5X_E5X_DFLL)) + +DT_COMPAT_MICROCHIP_SAM_D5X_E5X_FDPLL := microchip,sam-d5x-e5x-fdpll + +config DT_HAS_MICROCHIP_SAM_D5X_E5X_FDPLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_D5X_E5X_FDPLL)) + +DT_COMPAT_MICROCHIP_SAM_D5X_E5X_GCLKGEN := microchip,sam-d5x-e5x-gclkgen + +config DT_HAS_MICROCHIP_SAM_D5X_E5X_GCLKGEN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_D5X_E5X_GCLKGEN)) + +DT_COMPAT_MICROCHIP_SAM_D5X_E5X_GCLKPERIPH := microchip,sam-d5x-e5x-gclkperiph + +config DT_HAS_MICROCHIP_SAM_D5X_E5X_GCLKPERIPH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_D5X_E5X_GCLKPERIPH)) + +DT_COMPAT_MICROCHIP_SAM_D5X_E5X_MCLKCPU := microchip,sam-d5x-e5x-mclkcpu + +config DT_HAS_MICROCHIP_SAM_D5X_E5X_MCLKCPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_D5X_E5X_MCLKCPU)) + +DT_COMPAT_MICROCHIP_SAM_D5X_E5X_MCLKPERIPH := microchip,sam-d5x-e5x-mclkperiph + +config DT_HAS_MICROCHIP_SAM_D5X_E5X_MCLKPERIPH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_D5X_E5X_MCLKPERIPH)) + +DT_COMPAT_MICROCHIP_SAM_D5X_E5X_RTC := microchip,sam-d5x-e5x-rtc + +config DT_HAS_MICROCHIP_SAM_D5X_E5X_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_D5X_E5X_RTC)) + +DT_COMPAT_MICROCHIP_SAM_D5X_E5X_XOSC := microchip,sam-d5x-e5x-xosc + +config DT_HAS_MICROCHIP_SAM_D5X_E5X_XOSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_D5X_E5X_XOSC)) + +DT_COMPAT_MICROCHIP_SAM_D5X_E5X_XOSC32K := microchip,sam-d5x-e5x-xosc32k + +config DT_HAS_MICROCHIP_SAM_D5X_E5X_XOSC32K_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_D5X_E5X_XOSC32K)) + +DT_COMPAT_MICROCHIP_SAM_ETHERNET_CONTROLLER := microchip,sam-ethernet-controller + +config DT_HAS_MICROCHIP_SAM_ETHERNET_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_ETHERNET_CONTROLLER)) + +DT_COMPAT_MICROCHIP_SAM_FLEXCOM := microchip,sam-flexcom + +config DT_HAS_MICROCHIP_SAM_FLEXCOM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_FLEXCOM)) + +DT_COMPAT_MICROCHIP_SAM_PIO4 := microchip,sam-pio4 + +config DT_HAS_MICROCHIP_SAM_PIO4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_PIO4)) + +DT_COMPAT_MICROCHIP_SAM_PIT64B := microchip,sam-pit64b + +config DT_HAS_MICROCHIP_SAM_PIT64B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_PIT64B)) + +DT_COMPAT_MICROCHIP_SAM_PIT64B_COUNTER := microchip,sam-pit64b-counter + +config DT_HAS_MICROCHIP_SAM_PIT64B_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_PIT64B_COUNTER)) + +DT_COMPAT_MICROCHIP_SAM_PMC := microchip,sam-pmc + +config DT_HAS_MICROCHIP_SAM_PMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAM_PMC)) + +DT_COMPAT_MICROCHIP_SAMA7G5_PINCTRL := microchip,sama7g5-pinctrl + +config DT_HAS_MICROCHIP_SAMA7G5_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAMA7G5_PINCTRL)) + +DT_COMPAT_MICROCHIP_SAMA7G5_SCKC := microchip,sama7g5-sckc + +config DT_HAS_MICROCHIP_SAMA7G5_SCKC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAMA7G5_SCKC)) + +DT_COMPAT_MICROCHIP_SAMA7G5_SDMMC := microchip,sama7g5-sdmmc + +config DT_HAS_MICROCHIP_SAMA7G5_SDMMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SAMA7G5_SDMMC)) + +DT_COMPAT_MICROCHIP_SERCOM_G1 := microchip,sercom-g1 + +config DT_HAS_MICROCHIP_SERCOM_G1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SERCOM_G1)) + +DT_COMPAT_MICROCHIP_SERCOM_G1_I2C := microchip,sercom-g1-i2c + +config DT_HAS_MICROCHIP_SERCOM_G1_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SERCOM_G1_I2C)) + +DT_COMPAT_MICROCHIP_SERCOM_G1_SPI := microchip,sercom-g1-spi + +config DT_HAS_MICROCHIP_SERCOM_G1_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SERCOM_G1_SPI)) + +DT_COMPAT_MICROCHIP_SERCOM_G1_UART := microchip,sercom-g1-uart + +config DT_HAS_MICROCHIP_SERCOM_G1_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SERCOM_G1_UART)) + +DT_COMPAT_MICROCHIP_SHA_G1_CRYPTO := microchip,sha-g1-crypto + +config DT_HAS_MICROCHIP_SHA_G1_CRYPTO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_SHA_G1_CRYPTO)) + +DT_COMPAT_MICROCHIP_T1S_PHY := microchip,t1s-phy + +config DT_HAS_MICROCHIP_T1S_PHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_T1S_PHY)) + +DT_COMPAT_MICROCHIP_TC_G1 := microchip,tc-g1 + +config DT_HAS_MICROCHIP_TC_G1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_TC_G1)) + +DT_COMPAT_MICROCHIP_TC_G1_COUNTER := microchip,tc-g1-counter + +config DT_HAS_MICROCHIP_TC_G1_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_TC_G1_COUNTER)) + +DT_COMPAT_MICROCHIP_TC_G1_PWM := microchip,tc-g1-pwm + +config DT_HAS_MICROCHIP_TC_G1_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_TC_G1_PWM)) + +DT_COMPAT_MICROCHIP_TC_G2_COUNTER := microchip,tc-g2-counter + +config DT_HAS_MICROCHIP_TC_G2_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_TC_G2_COUNTER)) + +DT_COMPAT_MICROCHIP_TCC_G1 := microchip,tcc-g1 + +config DT_HAS_MICROCHIP_TCC_G1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_TCC_G1)) + +DT_COMPAT_MICROCHIP_TCC_G1_COUNTER := microchip,tcc-g1-counter + +config DT_HAS_MICROCHIP_TCC_G1_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_TCC_G1_COUNTER)) + +DT_COMPAT_MICROCHIP_TCC_G1_PWM := microchip,tcc-g1-pwm + +config DT_HAS_MICROCHIP_TCC_G1_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_TCC_G1_PWM)) + +DT_COMPAT_MICROCHIP_TCN75A := microchip,tcn75a + +config DT_HAS_MICROCHIP_TCN75A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_TCN75A)) + +DT_COMPAT_MICROCHIP_TRNG_G1_ENTROPY := microchip,trng-g1-entropy + +config DT_HAS_MICROCHIP_TRNG_G1_ENTROPY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_TRNG_G1_ENTROPY)) + +DT_COMPAT_MICROCHIP_VSC8541 := microchip,vsc8541 + +config DT_HAS_MICROCHIP_VSC8541_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_VSC8541)) + +DT_COMPAT_MICROCHIP_WDT_G1 := microchip,wdt-g1 + +config DT_HAS_MICROCHIP_WDT_G1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_WDT_G1)) + +DT_COMPAT_MICROCHIP_XEC_ADC := microchip,xec-adc + +config DT_HAS_MICROCHIP_XEC_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ADC)) + +DT_COMPAT_MICROCHIP_XEC_BASIC_TIMER := microchip,xec-basic-timer + +config DT_HAS_MICROCHIP_XEC_BASIC_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_BASIC_TIMER)) + +DT_COMPAT_MICROCHIP_XEC_BBLED := microchip,xec-bbled + +config DT_HAS_MICROCHIP_XEC_BBLED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_BBLED)) + +DT_COMPAT_MICROCHIP_XEC_BBRAM := microchip,xec-bbram + +config DT_HAS_MICROCHIP_XEC_BBRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_BBRAM)) + +DT_COMPAT_MICROCHIP_XEC_DMAC := microchip,xec-dmac + +config DT_HAS_MICROCHIP_XEC_DMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_DMAC)) + +DT_COMPAT_MICROCHIP_XEC_ECIA := microchip,xec-ecia + +config DT_HAS_MICROCHIP_XEC_ECIA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ECIA)) + +DT_COMPAT_MICROCHIP_XEC_ECIA_GIRQ := microchip,xec-ecia-girq + +config DT_HAS_MICROCHIP_XEC_ECIA_GIRQ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ECIA_GIRQ)) + +DT_COMPAT_MICROCHIP_XEC_ECS := microchip,xec-ecs + +config DT_HAS_MICROCHIP_XEC_ECS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ECS)) + +DT_COMPAT_MICROCHIP_XEC_EEPROM := microchip,xec-eeprom + +config DT_HAS_MICROCHIP_XEC_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_EEPROM)) + +DT_COMPAT_MICROCHIP_XEC_ESPI := microchip,xec-espi + +config DT_HAS_MICROCHIP_XEC_ESPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ESPI)) + +DT_COMPAT_MICROCHIP_XEC_ESPI_HOST_DEV := microchip,xec-espi-host-dev + +config DT_HAS_MICROCHIP_XEC_ESPI_HOST_DEV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ESPI_HOST_DEV)) + +DT_COMPAT_MICROCHIP_XEC_ESPI_SAF := microchip,xec-espi-saf + +config DT_HAS_MICROCHIP_XEC_ESPI_SAF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ESPI_SAF)) + +DT_COMPAT_MICROCHIP_XEC_ESPI_SAF_V2 := microchip,xec-espi-saf-v2 + +config DT_HAS_MICROCHIP_XEC_ESPI_SAF_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ESPI_SAF_V2)) + +DT_COMPAT_MICROCHIP_XEC_ESPI_V2 := microchip,xec-espi-v2 + +config DT_HAS_MICROCHIP_XEC_ESPI_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ESPI_V2)) + +DT_COMPAT_MICROCHIP_XEC_ESPI_VW_ROUTING := microchip,xec-espi-vw-routing + +config DT_HAS_MICROCHIP_XEC_ESPI_VW_ROUTING_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_ESPI_VW_ROUTING)) + +DT_COMPAT_MICROCHIP_XEC_GPIO := microchip,xec-gpio + +config DT_HAS_MICROCHIP_XEC_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_GPIO)) + +DT_COMPAT_MICROCHIP_XEC_GPIO_V2 := microchip,xec-gpio-v2 + +config DT_HAS_MICROCHIP_XEC_GPIO_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_GPIO_V2)) + +DT_COMPAT_MICROCHIP_XEC_I2C := microchip,xec-i2c + +config DT_HAS_MICROCHIP_XEC_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_I2C)) + +DT_COMPAT_MICROCHIP_XEC_I2C_V2 := microchip,xec-i2c-v2 + +config DT_HAS_MICROCHIP_XEC_I2C_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_I2C_V2)) + +DT_COMPAT_MICROCHIP_XEC_KBD := microchip,xec-kbd + +config DT_HAS_MICROCHIP_XEC_KBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_KBD)) + +DT_COMPAT_MICROCHIP_XEC_PCR := microchip,xec-pcr + +config DT_HAS_MICROCHIP_XEC_PCR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_PCR)) + +DT_COMPAT_MICROCHIP_XEC_PECI := microchip,xec-peci + +config DT_HAS_MICROCHIP_XEC_PECI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_PECI)) + +DT_COMPAT_MICROCHIP_XEC_PINCTRL := microchip,xec-pinctrl + +config DT_HAS_MICROCHIP_XEC_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_PINCTRL)) + +DT_COMPAT_MICROCHIP_XEC_PS2 := microchip,xec-ps2 + +config DT_HAS_MICROCHIP_XEC_PS2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_PS2)) + +DT_COMPAT_MICROCHIP_XEC_PWM := microchip,xec-pwm + +config DT_HAS_MICROCHIP_XEC_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_PWM)) + +DT_COMPAT_MICROCHIP_XEC_PWMBBLED := microchip,xec-pwmbbled + +config DT_HAS_MICROCHIP_XEC_PWMBBLED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_PWMBBLED)) + +DT_COMPAT_MICROCHIP_XEC_QMSPI := microchip,xec-qmspi + +config DT_HAS_MICROCHIP_XEC_QMSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_QMSPI)) + +DT_COMPAT_MICROCHIP_XEC_QMSPI_LDMA := microchip,xec-qmspi-ldma + +config DT_HAS_MICROCHIP_XEC_QMSPI_LDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_QMSPI_LDMA)) + +DT_COMPAT_MICROCHIP_XEC_RTOS_TIMER := microchip,xec-rtos-timer + +config DT_HAS_MICROCHIP_XEC_RTOS_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_RTOS_TIMER)) + +DT_COMPAT_MICROCHIP_XEC_SYMCR := microchip,xec-symcr + +config DT_HAS_MICROCHIP_XEC_SYMCR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_SYMCR)) + +DT_COMPAT_MICROCHIP_XEC_TACH := microchip,xec-tach + +config DT_HAS_MICROCHIP_XEC_TACH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_TACH)) + +DT_COMPAT_MICROCHIP_XEC_TIMER := microchip,xec-timer + +config DT_HAS_MICROCHIP_XEC_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_TIMER)) + +DT_COMPAT_MICROCHIP_XEC_UART := microchip,xec-uart + +config DT_HAS_MICROCHIP_XEC_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_UART)) + +DT_COMPAT_MICROCHIP_XEC_WATCHDOG := microchip,xec-watchdog + +config DT_HAS_MICROCHIP_XEC_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XEC_WATCHDOG)) + +DT_COMPAT_MICROCHIP_XPRO_HEADER := microchip,xpro-header + +config DT_HAS_MICROCHIP_XPRO_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCHIP_XPRO_HEADER)) + +DT_COMPAT_MICROCRYSTAL_RV_8263_C8 := microcrystal,rv-8263-c8 + +config DT_HAS_MICROCRYSTAL_RV_8263_C8_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCRYSTAL_RV_8263_C8)) + +DT_COMPAT_MICROCRYSTAL_RV3028 := microcrystal,rv3028 + +config DT_HAS_MICROCRYSTAL_RV3028_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCRYSTAL_RV3028)) + +DT_COMPAT_MICROCRYSTAL_RV3032 := microcrystal,rv3032 + +config DT_HAS_MICROCRYSTAL_RV3032_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCRYSTAL_RV3032)) + +DT_COMPAT_MICROCRYSTAL_RV3032_COUNTER := microcrystal,rv3032-counter + +config DT_HAS_MICROCRYSTAL_RV3032_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCRYSTAL_RV3032_COUNTER)) + +DT_COMPAT_MICROCRYSTAL_RV3032_MFD := microcrystal,rv3032-mfd + +config DT_HAS_MICROCRYSTAL_RV3032_MFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCRYSTAL_RV3032_MFD)) + +DT_COMPAT_MICROCRYSTAL_RV3032_TEMP := microcrystal,rv3032-temp + +config DT_HAS_MICROCRYSTAL_RV3032_TEMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCRYSTAL_RV3032_TEMP)) + +DT_COMPAT_MICROCRYSTAL_RV8803 := microcrystal,rv8803 + +config DT_HAS_MICROCRYSTAL_RV8803_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICROCRYSTAL_RV8803)) + +DT_COMPAT_MICRON_MT25QU02G := micron,mt25qu02g + +config DT_HAS_MICRON_MT25QU02G_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MICRON_MT25QU02G)) + +DT_COMPAT_MIKRO_BUS := mikro-bus + +config DT_HAS_MIKRO_BUS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MIKRO_BUS)) + +DT_COMPAT_MMIO_SRAM := mmio-sram + +config DT_HAS_MMIO_SRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MMIO_SRAM)) + +DT_COMPAT_MOTORCOMM_YT8521 := motorcomm,yt8521 + +config DT_HAS_MOTORCOMM_YT8521_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MOTORCOMM_YT8521)) + +DT_COMPAT_MOTORCOMM_YT8531 := motorcomm,yt8531 + +config DT_HAS_MOTORCOMM_YT8531_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MOTORCOMM_YT8531)) + +DT_COMPAT_MOTOROLA_MC146818 := motorola,mc146818 + +config DT_HAS_MOTOROLA_MC146818_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MOTOROLA_MC146818)) + +DT_COMPAT_MOTOROLA_MC146818_BBRAM := motorola,mc146818-bbram + +config DT_HAS_MOTOROLA_MC146818_BBRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MOTOROLA_MC146818_BBRAM)) + +DT_COMPAT_MOTOROLA_MC146818_MFD := motorola,mc146818-mfd + +config DT_HAS_MOTOROLA_MC146818_MFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MOTOROLA_MC146818_MFD)) + +DT_COMPAT_MPS_MPM54304 := mps,mpm54304 + +config DT_HAS_MPS_MPM54304_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MPS_MPM54304)) + +DT_COMPAT_MSPI_APS_Z8 := mspi-aps-z8 + +config DT_HAS_MSPI_APS_Z8_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MSPI_APS_Z8)) + +DT_COMPAT_MSPI_APS6404L := mspi-aps6404l + +config DT_HAS_MSPI_APS6404L_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MSPI_APS6404L)) + +DT_COMPAT_MSPI_ATXP032 := mspi-atxp032 + +config DT_HAS_MSPI_ATXP032_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MSPI_ATXP032)) + +DT_COMPAT_MSPI_IS25XX0XX := mspi-is25xX0xx + +config DT_HAS_MSPI_IS25XX0XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MSPI_IS25XX0XX)) + +DT_COMPAT_MTI_CPU_INTC := mti,cpu-intc + +config DT_HAS_MTI_CPU_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MTI_CPU_INTC)) + +DT_COMPAT_MURATA_NCP15WB473 := murata,ncp15wb473 + +config DT_HAS_MURATA_NCP15WB473_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MURATA_NCP15WB473)) + +DT_COMPAT_MURATA_NCP15XH103 := murata,ncp15xh103 + +config DT_HAS_MURATA_NCP15XH103_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MURATA_NCP15XH103)) + +DT_COMPAT_MXICY_MX25U := mxicy,mx25u + +config DT_HAS_MXICY_MX25U_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_MXICY_MX25U)) + +DT_COMPAT_NATIONAL_LM95234 := national,lm95234 + +config DT_HAS_NATIONAL_LM95234_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NATIONAL_LM95234)) + +DT_COMPAT_NEORV32_CPU := neorv32,cpu + +config DT_HAS_NEORV32_CPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NEORV32_CPU)) + +DT_COMPAT_NEORV32_GPIO := neorv32,gpio + +config DT_HAS_NEORV32_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NEORV32_GPIO)) + +DT_COMPAT_NEORV32_GPTMR := neorv32,gptmr + +config DT_HAS_NEORV32_GPTMR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NEORV32_GPTMR)) + +DT_COMPAT_NEORV32_PWM := neorv32,pwm + +config DT_HAS_NEORV32_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NEORV32_PWM)) + +DT_COMPAT_NEORV32_TRNG := neorv32,trng + +config DT_HAS_NEORV32_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NEORV32_TRNG)) + +DT_COMPAT_NEORV32_UART := neorv32,uart + +config DT_HAS_NEORV32_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NEORV32_UART)) + +DT_COMPAT_NETSOL_S3AXX04 := netsol,s3axx04 + +config DT_HAS_NETSOL_S3AXX04_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NETSOL_S3AXX04)) + +DT_COMPAT_NINTENDO_NUNCHUK := nintendo,nunchuk + +config DT_HAS_NINTENDO_NUNCHUK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NINTENDO_NUNCHUK)) + +DT_COMPAT_NORDIC_AXON := nordic,axon + +config DT_HAS_NORDIC_AXON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_AXON)) + +DT_COMPAT_NORDIC_CORESIGHT_NRF := nordic,coresight-nrf + +config DT_HAS_NORDIC_CORESIGHT_NRF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_CORESIGHT_NRF)) + +DT_COMPAT_NORDIC_EXPANSION_BOARD_HEADER := nordic,expansion-board-header + +config DT_HAS_NORDIC_EXPANSION_BOARD_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_EXPANSION_BOARD_HEADER)) + +DT_COMPAT_NORDIC_IRONSIDE_CALL := nordic,ironside-call + +config DT_HAS_NORDIC_IRONSIDE_CALL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_IRONSIDE_CALL)) + +DT_COMPAT_NORDIC_MBOX_NRF_IPC := nordic,mbox-nrf-ipc + +config DT_HAS_NORDIC_MBOX_NRF_IPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_MBOX_NRF_IPC)) + +DT_COMPAT_NORDIC_MRAM := nordic,mram + +config DT_HAS_NORDIC_MRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_MRAM)) + +DT_COMPAT_NORDIC_NPM10XX := nordic,npm10xx + +config DT_HAS_NORDIC_NPM10XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM10XX)) + +DT_COMPAT_NORDIC_NPM10XX_ADC := nordic,npm10xx-adc + +config DT_HAS_NORDIC_NPM10XX_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM10XX_ADC)) + +DT_COMPAT_NORDIC_NPM10XX_CHARGER := nordic,npm10xx-charger + +config DT_HAS_NORDIC_NPM10XX_CHARGER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM10XX_CHARGER)) + +DT_COMPAT_NORDIC_NPM10XX_REGULATOR := nordic,npm10xx-regulator + +config DT_HAS_NORDIC_NPM10XX_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM10XX_REGULATOR)) + +DT_COMPAT_NORDIC_NPM1100 := nordic,npm1100 + +config DT_HAS_NORDIC_NPM1100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1100)) + +DT_COMPAT_NORDIC_NPM1300 := nordic,npm1300 + +config DT_HAS_NORDIC_NPM1300_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1300)) + +DT_COMPAT_NORDIC_NPM1300_CHARGER := nordic,npm1300-charger + +config DT_HAS_NORDIC_NPM1300_CHARGER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1300_CHARGER)) + +DT_COMPAT_NORDIC_NPM1300_GPIO := nordic,npm1300-gpio + +config DT_HAS_NORDIC_NPM1300_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1300_GPIO)) + +DT_COMPAT_NORDIC_NPM1300_LED := nordic,npm1300-led + +config DT_HAS_NORDIC_NPM1300_LED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1300_LED)) + +DT_COMPAT_NORDIC_NPM1300_REGULATOR := nordic,npm1300-regulator + +config DT_HAS_NORDIC_NPM1300_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1300_REGULATOR)) + +DT_COMPAT_NORDIC_NPM1300_WDT := nordic,npm1300-wdt + +config DT_HAS_NORDIC_NPM1300_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1300_WDT)) + +DT_COMPAT_NORDIC_NPM1304 := nordic,npm1304 + +config DT_HAS_NORDIC_NPM1304_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1304)) + +DT_COMPAT_NORDIC_NPM1304_CHARGER := nordic,npm1304-charger + +config DT_HAS_NORDIC_NPM1304_CHARGER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1304_CHARGER)) + +DT_COMPAT_NORDIC_NPM1304_GPIO := nordic,npm1304-gpio + +config DT_HAS_NORDIC_NPM1304_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1304_GPIO)) + +DT_COMPAT_NORDIC_NPM1304_LED := nordic,npm1304-led + +config DT_HAS_NORDIC_NPM1304_LED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1304_LED)) + +DT_COMPAT_NORDIC_NPM1304_REGULATOR := nordic,npm1304-regulator + +config DT_HAS_NORDIC_NPM1304_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1304_REGULATOR)) + +DT_COMPAT_NORDIC_NPM1304_WDT := nordic,npm1304-wdt + +config DT_HAS_NORDIC_NPM1304_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM1304_WDT)) + +DT_COMPAT_NORDIC_NPM2100 := nordic,npm2100 + +config DT_HAS_NORDIC_NPM2100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM2100)) + +DT_COMPAT_NORDIC_NPM2100_GPIO := nordic,npm2100-gpio + +config DT_HAS_NORDIC_NPM2100_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM2100_GPIO)) + +DT_COMPAT_NORDIC_NPM2100_REGULATOR := nordic,npm2100-regulator + +config DT_HAS_NORDIC_NPM2100_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM2100_REGULATOR)) + +DT_COMPAT_NORDIC_NPM2100_VBAT := nordic,npm2100-vbat + +config DT_HAS_NORDIC_NPM2100_VBAT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM2100_VBAT)) + +DT_COMPAT_NORDIC_NPM2100_WDT := nordic,npm2100-wdt + +config DT_HAS_NORDIC_NPM2100_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM2100_WDT)) + +DT_COMPAT_NORDIC_NPM6001 := nordic,npm6001 + +config DT_HAS_NORDIC_NPM6001_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM6001)) + +DT_COMPAT_NORDIC_NPM6001_GPIO := nordic,npm6001-gpio + +config DT_HAS_NORDIC_NPM6001_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM6001_GPIO)) + +DT_COMPAT_NORDIC_NPM6001_REGULATOR := nordic,npm6001-regulator + +config DT_HAS_NORDIC_NPM6001_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM6001_REGULATOR)) + +DT_COMPAT_NORDIC_NPM6001_WDT := nordic,npm6001-wdt + +config DT_HAS_NORDIC_NPM6001_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NPM6001_WDT)) + +DT_COMPAT_NORDIC_NRF_ACL := nordic,nrf-acl + +config DT_HAS_NORDIC_NRF_ACL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_ACL)) + +DT_COMPAT_NORDIC_NRF_ADC := nordic,nrf-adc + +config DT_HAS_NORDIC_NRF_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_ADC)) + +DT_COMPAT_NORDIC_NRF_AUXPLL := nordic,nrf-auxpll + +config DT_HAS_NORDIC_NRF_AUXPLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_AUXPLL)) + +DT_COMPAT_NORDIC_NRF_BELLBOARD_RX := nordic,nrf-bellboard-rx + +config DT_HAS_NORDIC_NRF_BELLBOARD_RX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_BELLBOARD_RX)) + +DT_COMPAT_NORDIC_NRF_BELLBOARD_TX := nordic,nrf-bellboard-tx + +config DT_HAS_NORDIC_NRF_BELLBOARD_TX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_BELLBOARD_TX)) + +DT_COMPAT_NORDIC_NRF_BICR := nordic,nrf-bicr + +config DT_HAS_NORDIC_NRF_BICR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_BICR)) + +DT_COMPAT_NORDIC_NRF_BPROT := nordic,nrf-bprot + +config DT_HAS_NORDIC_NRF_BPROT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_BPROT)) + +DT_COMPAT_NORDIC_NRF_CAN := nordic,nrf-can + +config DT_HAS_NORDIC_NRF_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_CAN)) + +DT_COMPAT_NORDIC_NRF_CCM := nordic,nrf-ccm + +config DT_HAS_NORDIC_NRF_CCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_CCM)) + +DT_COMPAT_NORDIC_NRF_CLIC := nordic,nrf-clic + +config DT_HAS_NORDIC_NRF_CLIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_CLIC)) + +DT_COMPAT_NORDIC_NRF_CLOCK := nordic,nrf-clock + +config DT_HAS_NORDIC_NRF_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_CLOCK)) + +DT_COMPAT_NORDIC_NRF_COMP := nordic,nrf-comp + +config DT_HAS_NORDIC_NRF_COMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_COMP)) + +DT_COMPAT_NORDIC_NRF_CRACEN_CTRDRBG := nordic,nrf-cracen-ctrdrbg + +config DT_HAS_NORDIC_NRF_CRACEN_CTRDRBG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_CRACEN_CTRDRBG)) + +DT_COMPAT_NORDIC_NRF_CTRLAPPERI := nordic,nrf-ctrlapperi + +config DT_HAS_NORDIC_NRF_CTRLAPPERI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_CTRLAPPERI)) + +DT_COMPAT_NORDIC_NRF_DCNF := nordic,nrf-dcnf + +config DT_HAS_NORDIC_NRF_DCNF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_DCNF)) + +DT_COMPAT_NORDIC_NRF_DPPIC := nordic,nrf-dppic + +config DT_HAS_NORDIC_NRF_DPPIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_DPPIC)) + +DT_COMPAT_NORDIC_NRF_DPPIC_GLOBAL := nordic,nrf-dppic-global + +config DT_HAS_NORDIC_NRF_DPPIC_GLOBAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_DPPIC_GLOBAL)) + +DT_COMPAT_NORDIC_NRF_DPPIC_LOCAL := nordic,nrf-dppic-local + +config DT_HAS_NORDIC_NRF_DPPIC_LOCAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_DPPIC_LOCAL)) + +DT_COMPAT_NORDIC_NRF_ECB := nordic,nrf-ecb + +config DT_HAS_NORDIC_NRF_ECB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_ECB)) + +DT_COMPAT_NORDIC_NRF_EGU := nordic,nrf-egu + +config DT_HAS_NORDIC_NRF_EGU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_EGU)) + +DT_COMPAT_NORDIC_NRF_EXMIF := nordic,nrf-exmif + +config DT_HAS_NORDIC_NRF_EXMIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_EXMIF)) + +DT_COMPAT_NORDIC_NRF_FICR := nordic,nrf-ficr + +config DT_HAS_NORDIC_NRF_FICR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_FICR)) + +DT_COMPAT_NORDIC_NRF_FLL16M := nordic,nrf-fll16m + +config DT_HAS_NORDIC_NRF_FLL16M_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_FLL16M)) + +DT_COMPAT_NORDIC_NRF_GPIO := nordic,nrf-gpio + +config DT_HAS_NORDIC_NRF_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_GPIO)) + +DT_COMPAT_NORDIC_NRF_GPIO_FORWARDER := nordic,nrf-gpio-forwarder + +config DT_HAS_NORDIC_NRF_GPIO_FORWARDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_GPIO_FORWARDER)) + +DT_COMPAT_NORDIC_NRF_GPIOTE := nordic,nrf-gpiote + +config DT_HAS_NORDIC_NRF_GPIOTE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_GPIOTE)) + +DT_COMPAT_NORDIC_NRF_GPREGRET := nordic,nrf-gpregret + +config DT_HAS_NORDIC_NRF_GPREGRET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_GPREGRET)) + +DT_COMPAT_NORDIC_NRF_GRTC := nordic,nrf-grtc + +config DT_HAS_NORDIC_NRF_GRTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_GRTC)) + +DT_COMPAT_NORDIC_NRF_HSFLL_GLOBAL := nordic,nrf-hsfll-global + +config DT_HAS_NORDIC_NRF_HSFLL_GLOBAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_HSFLL_GLOBAL)) + +DT_COMPAT_NORDIC_NRF_HSFLL_LOCAL := nordic,nrf-hsfll-local + +config DT_HAS_NORDIC_NRF_HSFLL_LOCAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_HSFLL_LOCAL)) + +DT_COMPAT_NORDIC_NRF_I2S := nordic,nrf-i2s + +config DT_HAS_NORDIC_NRF_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_I2S)) + +DT_COMPAT_NORDIC_NRF_IEEE802154 := nordic,nrf-ieee802154 + +config DT_HAS_NORDIC_NRF_IEEE802154_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_IEEE802154)) + +DT_COMPAT_NORDIC_NRF_IPC := nordic,nrf-ipc + +config DT_HAS_NORDIC_NRF_IPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_IPC)) + +DT_COMPAT_NORDIC_NRF_IPCT_GLOBAL := nordic,nrf-ipct-global + +config DT_HAS_NORDIC_NRF_IPCT_GLOBAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_IPCT_GLOBAL)) + +DT_COMPAT_NORDIC_NRF_IPCT_LOCAL := nordic,nrf-ipct-local + +config DT_HAS_NORDIC_NRF_IPCT_LOCAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_IPCT_LOCAL)) + +DT_COMPAT_NORDIC_NRF_IRON_HSFLL_LOCAL := nordic,nrf-iron-hsfll-local + +config DT_HAS_NORDIC_NRF_IRON_HSFLL_LOCAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_IRON_HSFLL_LOCAL)) + +DT_COMPAT_NORDIC_NRF_KMU := nordic,nrf-kmu + +config DT_HAS_NORDIC_NRF_KMU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_KMU)) + +DT_COMPAT_NORDIC_NRF_LED_MATRIX := nordic,nrf-led-matrix + +config DT_HAS_NORDIC_NRF_LED_MATRIX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_LED_MATRIX)) + +DT_COMPAT_NORDIC_NRF_LFCLK := nordic,nrf-lfclk + +config DT_HAS_NORDIC_NRF_LFCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_LFCLK)) + +DT_COMPAT_NORDIC_NRF_LPCOMP := nordic,nrf-lpcomp + +config DT_HAS_NORDIC_NRF_LPCOMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_LPCOMP)) + +DT_COMPAT_NORDIC_NRF_MPC := nordic,nrf-mpc + +config DT_HAS_NORDIC_NRF_MPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_MPC)) + +DT_COMPAT_NORDIC_NRF_MPU := nordic,nrf-mpu + +config DT_HAS_NORDIC_NRF_MPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_MPU)) + +DT_COMPAT_NORDIC_NRF_MRAMC := nordic,nrf-mramc + +config DT_HAS_NORDIC_NRF_MRAMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_MRAMC)) + +DT_COMPAT_NORDIC_NRF_MUTEX := nordic,nrf-mutex + +config DT_HAS_NORDIC_NRF_MUTEX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_MUTEX)) + +DT_COMPAT_NORDIC_NRF_MWU := nordic,nrf-mwu + +config DT_HAS_NORDIC_NRF_MWU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_MWU)) + +DT_COMPAT_NORDIC_NRF_NFCT := nordic,nrf-nfct + +config DT_HAS_NORDIC_NRF_NFCT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_NFCT)) + +DT_COMPAT_NORDIC_NRF_NFCT_V2 := nordic,nrf-nfct-v2 + +config DT_HAS_NORDIC_NRF_NFCT_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_NFCT_V2)) + +DT_COMPAT_NORDIC_NRF_PDM := nordic,nrf-pdm + +config DT_HAS_NORDIC_NRF_PDM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_PDM)) + +DT_COMPAT_NORDIC_NRF_PINCTRL := nordic,nrf-pinctrl + +config DT_HAS_NORDIC_NRF_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_PINCTRL)) + +DT_COMPAT_NORDIC_NRF_POWER := nordic,nrf-power + +config DT_HAS_NORDIC_NRF_POWER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_POWER)) + +DT_COMPAT_NORDIC_NRF_PPI := nordic,nrf-ppi + +config DT_HAS_NORDIC_NRF_PPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_PPI)) + +DT_COMPAT_NORDIC_NRF_PPIB := nordic,nrf-ppib + +config DT_HAS_NORDIC_NRF_PPIB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_PPIB)) + +DT_COMPAT_NORDIC_NRF_PWM := nordic,nrf-pwm + +config DT_HAS_NORDIC_NRF_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_PWM)) + +DT_COMPAT_NORDIC_NRF_PWR_ANTSWC := nordic,nrf-pwr-antswc + +config DT_HAS_NORDIC_NRF_PWR_ANTSWC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_PWR_ANTSWC)) + +DT_COMPAT_NORDIC_NRF_QDEC := nordic,nrf-qdec + +config DT_HAS_NORDIC_NRF_QDEC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_QDEC)) + +DT_COMPAT_NORDIC_NRF_QSPI := nordic,nrf-qspi + +config DT_HAS_NORDIC_NRF_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_QSPI)) + +DT_COMPAT_NORDIC_NRF_QSPI_V2 := nordic,nrf-qspi-v2 + +config DT_HAS_NORDIC_NRF_QSPI_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_QSPI_V2)) + +DT_COMPAT_NORDIC_NRF_RADIO := nordic,nrf-radio + +config DT_HAS_NORDIC_NRF_RADIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_RADIO)) + +DT_COMPAT_NORDIC_NRF_RESET := nordic,nrf-reset + +config DT_HAS_NORDIC_NRF_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_RESET)) + +DT_COMPAT_NORDIC_NRF_RESETINFO := nordic,nrf-resetinfo + +config DT_HAS_NORDIC_NRF_RESETINFO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_RESETINFO)) + +DT_COMPAT_NORDIC_NRF_RNG := nordic,nrf-rng + +config DT_HAS_NORDIC_NRF_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_RNG)) + +DT_COMPAT_NORDIC_NRF_RTC := nordic,nrf-rtc + +config DT_HAS_NORDIC_NRF_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_RTC)) + +DT_COMPAT_NORDIC_NRF_SAADC := nordic,nrf-saadc + +config DT_HAS_NORDIC_NRF_SAADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SAADC)) + +DT_COMPAT_NORDIC_NRF_SPI := nordic,nrf-spi + +config DT_HAS_NORDIC_NRF_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SPI)) + +DT_COMPAT_NORDIC_NRF_SPIM := nordic,nrf-spim + +config DT_HAS_NORDIC_NRF_SPIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SPIM)) + +DT_COMPAT_NORDIC_NRF_SPIS := nordic,nrf-spis + +config DT_HAS_NORDIC_NRF_SPIS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SPIS)) + +DT_COMPAT_NORDIC_NRF_SPU := nordic,nrf-spu + +config DT_HAS_NORDIC_NRF_SPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SPU)) + +DT_COMPAT_NORDIC_NRF_SW_PWM := nordic,nrf-sw-pwm + +config DT_HAS_NORDIC_NRF_SW_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SW_PWM)) + +DT_COMPAT_NORDIC_NRF_SWI := nordic,nrf-swi + +config DT_HAS_NORDIC_NRF_SWI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_SWI)) + +DT_COMPAT_NORDIC_NRF_TAMPC := nordic,nrf-tampc + +config DT_HAS_NORDIC_NRF_TAMPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TAMPC)) + +DT_COMPAT_NORDIC_NRF_TBM := nordic,nrf-tbm + +config DT_HAS_NORDIC_NRF_TBM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TBM)) + +DT_COMPAT_NORDIC_NRF_TDM := nordic,nrf-tdm + +config DT_HAS_NORDIC_NRF_TDM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TDM)) + +DT_COMPAT_NORDIC_NRF_TEMP := nordic,nrf-temp + +config DT_HAS_NORDIC_NRF_TEMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TEMP)) + +DT_COMPAT_NORDIC_NRF_TEMP_NRFS := nordic,nrf-temp-nrfs + +config DT_HAS_NORDIC_NRF_TEMP_NRFS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TEMP_NRFS)) + +DT_COMPAT_NORDIC_NRF_TIMER := nordic,nrf-timer + +config DT_HAS_NORDIC_NRF_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TIMER)) + +DT_COMPAT_NORDIC_NRF_TWI := nordic,nrf-twi + +config DT_HAS_NORDIC_NRF_TWI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TWI)) + +DT_COMPAT_NORDIC_NRF_TWIM := nordic,nrf-twim + +config DT_HAS_NORDIC_NRF_TWIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TWIM)) + +DT_COMPAT_NORDIC_NRF_TWIS := nordic,nrf-twis + +config DT_HAS_NORDIC_NRF_TWIS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_TWIS)) + +DT_COMPAT_NORDIC_NRF_UART := nordic,nrf-uart + +config DT_HAS_NORDIC_NRF_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_UART)) + +DT_COMPAT_NORDIC_NRF_UARTE := nordic,nrf-uarte + +config DT_HAS_NORDIC_NRF_UARTE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_UARTE)) + +DT_COMPAT_NORDIC_NRF_UICR := nordic,nrf-uicr + +config DT_HAS_NORDIC_NRF_UICR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_UICR)) + +DT_COMPAT_NORDIC_NRF_UICR_V2 := nordic,nrf-uicr-v2 + +config DT_HAS_NORDIC_NRF_UICR_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_UICR_V2)) + +DT_COMPAT_NORDIC_NRF_USBD := nordic,nrf-usbd + +config DT_HAS_NORDIC_NRF_USBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_USBD)) + +DT_COMPAT_NORDIC_NRF_USBHS_WRAPPER := nordic,nrf-usbhs-wrapper + +config DT_HAS_NORDIC_NRF_USBHS_WRAPPER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_USBHS_WRAPPER)) + +DT_COMPAT_NORDIC_NRF_USBREG := nordic,nrf-usbreg + +config DT_HAS_NORDIC_NRF_USBREG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_USBREG)) + +DT_COMPAT_NORDIC_NRF_VEVIF_EVENT_RX := nordic,nrf-vevif-event-rx + +config DT_HAS_NORDIC_NRF_VEVIF_EVENT_RX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_VEVIF_EVENT_RX)) + +DT_COMPAT_NORDIC_NRF_VEVIF_EVENT_TX := nordic,nrf-vevif-event-tx + +config DT_HAS_NORDIC_NRF_VEVIF_EVENT_TX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_VEVIF_EVENT_TX)) + +DT_COMPAT_NORDIC_NRF_VEVIF_TASK_RX := nordic,nrf-vevif-task-rx + +config DT_HAS_NORDIC_NRF_VEVIF_TASK_RX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_VEVIF_TASK_RX)) + +DT_COMPAT_NORDIC_NRF_VEVIF_TASK_TX := nordic,nrf-vevif-task-tx + +config DT_HAS_NORDIC_NRF_VEVIF_TASK_TX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_VEVIF_TASK_TX)) + +DT_COMPAT_NORDIC_NRF_VMC := nordic,nrf-vmc + +config DT_HAS_NORDIC_NRF_VMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_VMC)) + +DT_COMPAT_NORDIC_NRF_VPR_COPROCESSOR := nordic,nrf-vpr-coprocessor + +config DT_HAS_NORDIC_NRF_VPR_COPROCESSOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_VPR_COPROCESSOR)) + +DT_COMPAT_NORDIC_NRF_WDT := nordic,nrf-wdt + +config DT_HAS_NORDIC_NRF_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF_WDT)) + +DT_COMPAT_NORDIC_NRF21540_FEM := nordic,nrf21540-fem + +config DT_HAS_NORDIC_NRF21540_FEM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF21540_FEM)) + +DT_COMPAT_NORDIC_NRF21540_FEM_SPI := nordic,nrf21540-fem-spi + +config DT_HAS_NORDIC_NRF21540_FEM_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF21540_FEM_SPI)) + +DT_COMPAT_NORDIC_NRF51_FLASH_CONTROLLER := nordic,nrf51-flash-controller + +config DT_HAS_NORDIC_NRF51_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF51_FLASH_CONTROLLER)) + +DT_COMPAT_NORDIC_NRF51_HFXO := nordic,nrf51-hfxo + +config DT_HAS_NORDIC_NRF51_HFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF51_HFXO)) + +DT_COMPAT_NORDIC_NRF52_FLASH_CONTROLLER := nordic,nrf52-flash-controller + +config DT_HAS_NORDIC_NRF52_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF52_FLASH_CONTROLLER)) + +DT_COMPAT_NORDIC_NRF52_HFXO := nordic,nrf52-hfxo + +config DT_HAS_NORDIC_NRF52_HFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF52_HFXO)) + +DT_COMPAT_NORDIC_NRF52X_REGULATOR_HV := nordic,nrf52x-regulator-hv + +config DT_HAS_NORDIC_NRF52X_REGULATOR_HV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF52X_REGULATOR_HV)) + +DT_COMPAT_NORDIC_NRF53_FLASH_CONTROLLER := nordic,nrf53-flash-controller + +config DT_HAS_NORDIC_NRF53_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF53_FLASH_CONTROLLER)) + +DT_COMPAT_NORDIC_NRF53_HFXO := nordic,nrf53-hfxo + +config DT_HAS_NORDIC_NRF53_HFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF53_HFXO)) + +DT_COMPAT_NORDIC_NRF53_LFXO := nordic,nrf53-lfxo + +config DT_HAS_NORDIC_NRF53_LFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF53_LFXO)) + +DT_COMPAT_NORDIC_NRF53_OSCILLATORS := nordic,nrf53-oscillators + +config DT_HAS_NORDIC_NRF53_OSCILLATORS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF53_OSCILLATORS)) + +DT_COMPAT_NORDIC_NRF53X_REGULATOR_HV := nordic,nrf53x-regulator-hv + +config DT_HAS_NORDIC_NRF53X_REGULATOR_HV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF53X_REGULATOR_HV)) + +DT_COMPAT_NORDIC_NRF53X_REGULATORS := nordic,nrf53x-regulators + +config DT_HAS_NORDIC_NRF53X_REGULATORS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF53X_REGULATORS)) + +DT_COMPAT_NORDIC_NRF54H_HFXO := nordic,nrf54h-hfxo + +config DT_HAS_NORDIC_NRF54H_HFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF54H_HFXO)) + +DT_COMPAT_NORDIC_NRF54H_LFXO := nordic,nrf54h-lfxo + +config DT_HAS_NORDIC_NRF54H_LFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF54H_LFXO)) + +DT_COMPAT_NORDIC_NRF54L_HFXO := nordic,nrf54l-hfxo + +config DT_HAS_NORDIC_NRF54L_HFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF54L_HFXO)) + +DT_COMPAT_NORDIC_NRF54L_LFXO := nordic,nrf54l-lfxo + +config DT_HAS_NORDIC_NRF54L_LFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF54L_LFXO)) + +DT_COMPAT_NORDIC_NRF54L_REGULATORS := nordic,nrf54l-regulators + +config DT_HAS_NORDIC_NRF54L_REGULATORS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF54L_REGULATORS)) + +DT_COMPAT_NORDIC_NRF5X_REGULATOR := nordic,nrf5x-regulator + +config DT_HAS_NORDIC_NRF5X_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF5X_REGULATOR)) + +DT_COMPAT_NORDIC_NRF7000_COEX := nordic,nrf7000-coex + +config DT_HAS_NORDIC_NRF7000_COEX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7000_COEX)) + +DT_COMPAT_NORDIC_NRF7000_QSPI := nordic,nrf7000-qspi + +config DT_HAS_NORDIC_NRF7000_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7000_QSPI)) + +DT_COMPAT_NORDIC_NRF7000_SPI := nordic,nrf7000-spi + +config DT_HAS_NORDIC_NRF7000_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7000_SPI)) + +DT_COMPAT_NORDIC_NRF7001_COEX := nordic,nrf7001-coex + +config DT_HAS_NORDIC_NRF7001_COEX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7001_COEX)) + +DT_COMPAT_NORDIC_NRF7001_QSPI := nordic,nrf7001-qspi + +config DT_HAS_NORDIC_NRF7001_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7001_QSPI)) + +DT_COMPAT_NORDIC_NRF7001_SPI := nordic,nrf7001-spi + +config DT_HAS_NORDIC_NRF7001_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7001_SPI)) + +DT_COMPAT_NORDIC_NRF7002_COEX := nordic,nrf7002-coex + +config DT_HAS_NORDIC_NRF7002_COEX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7002_COEX)) + +DT_COMPAT_NORDIC_NRF7002_QSPI := nordic,nrf7002-qspi + +config DT_HAS_NORDIC_NRF7002_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7002_QSPI)) + +DT_COMPAT_NORDIC_NRF7002_SPI := nordic,nrf7002-spi + +config DT_HAS_NORDIC_NRF7002_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7002_SPI)) + +DT_COMPAT_NORDIC_NRF71_HFXO := nordic,nrf71-hfxo + +config DT_HAS_NORDIC_NRF71_HFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF71_HFXO)) + +DT_COMPAT_NORDIC_NRF71_LFXO := nordic,nrf71-lfxo + +config DT_HAS_NORDIC_NRF71_LFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF71_LFXO)) + +DT_COMPAT_NORDIC_NRF7120_WIFI := nordic,nrf7120-wifi + +config DT_HAS_NORDIC_NRF7120_WIFI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF7120_WIFI)) + +DT_COMPAT_NORDIC_NRF91_FLASH_CONTROLLER := nordic,nrf91-flash-controller + +config DT_HAS_NORDIC_NRF91_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF91_FLASH_CONTROLLER)) + +DT_COMPAT_NORDIC_NRF91_SLM := nordic,nrf91-slm + +config DT_HAS_NORDIC_NRF91_SLM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF91_SLM)) + +DT_COMPAT_NORDIC_NRF91X_REGULATORS := nordic,nrf91x-regulators + +config DT_HAS_NORDIC_NRF91X_REGULATORS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRF91X_REGULATORS)) + +DT_COMPAT_NORDIC_NRFS_AUDIOPLL := nordic,nrfs-audiopll + +config DT_HAS_NORDIC_NRFS_AUDIOPLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRFS_AUDIOPLL)) + +DT_COMPAT_NORDIC_NRFS_GDPWR := nordic,nrfs-gdpwr + +config DT_HAS_NORDIC_NRFS_GDPWR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRFS_GDPWR)) + +DT_COMPAT_NORDIC_NRFS_SWEXT := nordic,nrfs-swext + +config DT_HAS_NORDIC_NRFS_SWEXT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_NRFS_SWEXT)) + +DT_COMPAT_NORDIC_OWNED_MEMORY := nordic,owned-memory + +config DT_HAS_NORDIC_OWNED_MEMORY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_OWNED_MEMORY)) + +DT_COMPAT_NORDIC_OWNED_PARTITIONS := nordic,owned-partitions + +config DT_HAS_NORDIC_OWNED_PARTITIONS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_OWNED_PARTITIONS)) + +DT_COMPAT_NORDIC_QSPI_NOR := nordic,qspi-nor + +config DT_HAS_NORDIC_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_QSPI_NOR)) + +DT_COMPAT_NORDIC_RRAM_CONTROLLER := nordic,rram-controller + +config DT_HAS_NORDIC_RRAM_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_RRAM_CONTROLLER)) + +DT_COMPAT_NORDIC_VPR := nordic,vpr + +config DT_HAS_NORDIC_VPR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_VPR)) + +DT_COMPAT_NORDIC_VREGUSB_REGULATOR := nordic,vregusb-regulator + +config DT_HAS_NORDIC_VREGUSB_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_VREGUSB_REGULATOR)) + +DT_COMPAT_NORDIC_WLAN := nordic,wlan + +config DT_HAS_NORDIC_WLAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_WLAN)) + +DT_COMPAT_NORDIC_THINGY53_EDGE_CONNECTOR := nordic-thingy53-edge-connector + +config DT_HAS_NORDIC_THINGY53_EDGE_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORDIC_THINGY53_EDGE_CONNECTOR)) + +DT_COMPAT_NORITAKE_ITRON := noritake,itron + +config DT_HAS_NORITAKE_ITRON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NORITAKE_ITRON)) + +DT_COMPAT_NS16550 := ns16550 + +config DT_HAS_NS16550_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NS16550)) + +DT_COMPAT_NTC_THERMISTOR_GENERIC := ntc-thermistor-generic + +config DT_HAS_NTC_THERMISTOR_GENERIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NTC_THERMISTOR_GENERIC)) + +DT_COMPAT_NUCLEI_BUMBLEBEE := nuclei,bumblebee + +config DT_HAS_NUCLEI_BUMBLEBEE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUCLEI_BUMBLEBEE)) + +DT_COMPAT_NUCLEI_ECLIC := nuclei,eclic + +config DT_HAS_NUCLEI_ECLIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUCLEI_ECLIC)) + +DT_COMPAT_NUCLEI_SYSTIMER := nuclei,systimer + +config DT_HAS_NUCLEI_SYSTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUCLEI_SYSTIMER)) + +DT_COMPAT_NUVOTON_ADC_CMP := nuvoton,adc-cmp + +config DT_HAS_NUVOTON_ADC_CMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_ADC_CMP)) + +DT_COMPAT_NUVOTON_NCT38XX := nuvoton,nct38xx + +config DT_HAS_NUVOTON_NCT38XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NCT38XX)) + +DT_COMPAT_NUVOTON_NCT38XX_GPIO := nuvoton,nct38xx-gpio + +config DT_HAS_NUVOTON_NCT38XX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NCT38XX_GPIO)) + +DT_COMPAT_NUVOTON_NCT38XX_GPIO_ALERT := nuvoton,nct38xx-gpio-alert + +config DT_HAS_NUVOTON_NCT38XX_GPIO_ALERT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NCT38XX_GPIO_ALERT)) + +DT_COMPAT_NUVOTON_NCT38XX_GPIO_PORT := nuvoton,nct38xx-gpio-port + +config DT_HAS_NUVOTON_NCT38XX_GPIO_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NCT38XX_GPIO_PORT)) + +DT_COMPAT_NUVOTON_NPCK_LCT := nuvoton,npck-lct + +config DT_HAS_NUVOTON_NPCK_LCT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCK_LCT)) + +DT_COMPAT_NUVOTON_NPCM_PCC := nuvoton,npcm-pcc + +config DT_HAS_NUVOTON_NPCM_PCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCM_PCC)) + +DT_COMPAT_NUVOTON_NPCX_ADC := nuvoton,npcx-adc + +config DT_HAS_NUVOTON_NPCX_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_ADC)) + +DT_COMPAT_NUVOTON_NPCX_ADC_V2T := nuvoton,npcx-adc-v2t + +config DT_HAS_NUVOTON_NPCX_ADC_V2T_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_ADC_V2T)) + +DT_COMPAT_NUVOTON_NPCX_BBRAM := nuvoton,npcx-bbram + +config DT_HAS_NUVOTON_NPCX_BBRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_BBRAM)) + +DT_COMPAT_NUVOTON_NPCX_BOOTER_VARIANT := nuvoton,npcx-booter-variant + +config DT_HAS_NUVOTON_NPCX_BOOTER_VARIANT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_BOOTER_VARIANT)) + +DT_COMPAT_NUVOTON_NPCX_DRBG := nuvoton,npcx-drbg + +config DT_HAS_NUVOTON_NPCX_DRBG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_DRBG)) + +DT_COMPAT_NUVOTON_NPCX_ESPI := nuvoton,npcx-espi + +config DT_HAS_NUVOTON_NPCX_ESPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_ESPI)) + +DT_COMPAT_NUVOTON_NPCX_ESPI_TAF := nuvoton,npcx-espi-taf + +config DT_HAS_NUVOTON_NPCX_ESPI_TAF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_ESPI_TAF)) + +DT_COMPAT_NUVOTON_NPCX_ESPI_VW_CONF := nuvoton,npcx-espi-vw-conf + +config DT_HAS_NUVOTON_NPCX_ESPI_VW_CONF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_ESPI_VW_CONF)) + +DT_COMPAT_NUVOTON_NPCX_FIU_NOR := nuvoton,npcx-fiu-nor + +config DT_HAS_NUVOTON_NPCX_FIU_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_FIU_NOR)) + +DT_COMPAT_NUVOTON_NPCX_FIU_QSPI := nuvoton,npcx-fiu-qspi + +config DT_HAS_NUVOTON_NPCX_FIU_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_FIU_QSPI)) + +DT_COMPAT_NUVOTON_NPCX_GDMA := nuvoton,npcx-gdma + +config DT_HAS_NUVOTON_NPCX_GDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_GDMA)) + +DT_COMPAT_NUVOTON_NPCX_GPIO := nuvoton,npcx-gpio + +config DT_HAS_NUVOTON_NPCX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_GPIO)) + +DT_COMPAT_NUVOTON_NPCX_HOST_SUB := nuvoton,npcx-host-sub + +config DT_HAS_NUVOTON_NPCX_HOST_SUB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_HOST_SUB)) + +DT_COMPAT_NUVOTON_NPCX_HOST_UART := nuvoton,npcx-host-uart + +config DT_HAS_NUVOTON_NPCX_HOST_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_HOST_UART)) + +DT_COMPAT_NUVOTON_NPCX_I2C_CTRL := nuvoton,npcx-i2c-ctrl + +config DT_HAS_NUVOTON_NPCX_I2C_CTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_I2C_CTRL)) + +DT_COMPAT_NUVOTON_NPCX_I2C_PORT := nuvoton,npcx-i2c-port + +config DT_HAS_NUVOTON_NPCX_I2C_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_I2C_PORT)) + +DT_COMPAT_NUVOTON_NPCX_I3C := nuvoton,npcx-i3c + +config DT_HAS_NUVOTON_NPCX_I3C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_I3C)) + +DT_COMPAT_NUVOTON_NPCX_ITIM_TIMER := nuvoton,npcx-itim-timer + +config DT_HAS_NUVOTON_NPCX_ITIM_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_ITIM_TIMER)) + +DT_COMPAT_NUVOTON_NPCX_KBD := nuvoton,npcx-kbd + +config DT_HAS_NUVOTON_NPCX_KBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_KBD)) + +DT_COMPAT_NUVOTON_NPCX_LCT_BASE := nuvoton,npcx-lct-base + +config DT_HAS_NUVOTON_NPCX_LCT_BASE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_LCT_BASE)) + +DT_COMPAT_NUVOTON_NPCX_LCT_V1 := nuvoton,npcx-lct-v1 + +config DT_HAS_NUVOTON_NPCX_LCT_V1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_LCT_V1)) + +DT_COMPAT_NUVOTON_NPCX_LCT_V2 := nuvoton,npcx-lct-v2 + +config DT_HAS_NUVOTON_NPCX_LCT_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_LCT_V2)) + +DT_COMPAT_NUVOTON_NPCX_LEAKAGE_IO := nuvoton,npcx-leakage-io + +config DT_HAS_NUVOTON_NPCX_LEAKAGE_IO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_LEAKAGE_IO)) + +DT_COMPAT_NUVOTON_NPCX_LVOLCTRL_CONF := nuvoton,npcx-lvolctrl-conf + +config DT_HAS_NUVOTON_NPCX_LVOLCTRL_CONF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_LVOLCTRL_CONF)) + +DT_COMPAT_NUVOTON_NPCX_MIWU := nuvoton,npcx-miwu + +config DT_HAS_NUVOTON_NPCX_MIWU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_MIWU)) + +DT_COMPAT_NUVOTON_NPCX_MIWU_INT_MAP := nuvoton,npcx-miwu-int-map + +config DT_HAS_NUVOTON_NPCX_MIWU_INT_MAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_MIWU_INT_MAP)) + +DT_COMPAT_NUVOTON_NPCX_MIWU_WUI_MAP := nuvoton,npcx-miwu-wui-map + +config DT_HAS_NUVOTON_NPCX_MIWU_WUI_MAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_MIWU_WUI_MAP)) + +DT_COMPAT_NUVOTON_NPCX_PCC := nuvoton,npcx-pcc + +config DT_HAS_NUVOTON_NPCX_PCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PCC)) + +DT_COMPAT_NUVOTON_NPCX_PECI := nuvoton,npcx-peci + +config DT_HAS_NUVOTON_NPCX_PECI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PECI)) + +DT_COMPAT_NUVOTON_NPCX_PINCTRL := nuvoton,npcx-pinctrl + +config DT_HAS_NUVOTON_NPCX_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PINCTRL)) + +DT_COMPAT_NUVOTON_NPCX_PINCTRL_CONF := nuvoton,npcx-pinctrl-conf + +config DT_HAS_NUVOTON_NPCX_PINCTRL_CONF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PINCTRL_CONF)) + +DT_COMPAT_NUVOTON_NPCX_PINCTRL_DEF := nuvoton,npcx-pinctrl-def + +config DT_HAS_NUVOTON_NPCX_PINCTRL_DEF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PINCTRL_DEF)) + +DT_COMPAT_NUVOTON_NPCX_PINCTRL_NPCKN := nuvoton,npcx-pinctrl-npckn + +config DT_HAS_NUVOTON_NPCX_PINCTRL_NPCKN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PINCTRL_NPCKN)) + +DT_COMPAT_NUVOTON_NPCX_POWER_PSL := nuvoton,npcx-power-psl + +config DT_HAS_NUVOTON_NPCX_POWER_PSL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_POWER_PSL)) + +DT_COMPAT_NUVOTON_NPCX_PS2_CHANNEL := nuvoton,npcx-ps2-channel + +config DT_HAS_NUVOTON_NPCX_PS2_CHANNEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PS2_CHANNEL)) + +DT_COMPAT_NUVOTON_NPCX_PS2_CTRL := nuvoton,npcx-ps2-ctrl + +config DT_HAS_NUVOTON_NPCX_PS2_CTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PS2_CTRL)) + +DT_COMPAT_NUVOTON_NPCX_PWM := nuvoton,npcx-pwm + +config DT_HAS_NUVOTON_NPCX_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_PWM)) + +DT_COMPAT_NUVOTON_NPCX_RST := nuvoton,npcx-rst + +config DT_HAS_NUVOTON_NPCX_RST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_RST)) + +DT_COMPAT_NUVOTON_NPCX_SCFG := nuvoton,npcx-scfg + +config DT_HAS_NUVOTON_NPCX_SCFG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_SCFG)) + +DT_COMPAT_NUVOTON_NPCX_SHA := nuvoton,npcx-sha + +config DT_HAS_NUVOTON_NPCX_SHA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_SHA)) + +DT_COMPAT_NUVOTON_NPCX_SHI := nuvoton,npcx-shi + +config DT_HAS_NUVOTON_NPCX_SHI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_SHI)) + +DT_COMPAT_NUVOTON_NPCX_SHI_ENHANCED := nuvoton,npcx-shi-enhanced + +config DT_HAS_NUVOTON_NPCX_SHI_ENHANCED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_SHI_ENHANCED)) + +DT_COMPAT_NUVOTON_NPCX_SOC_ID := nuvoton,npcx-soc-id + +config DT_HAS_NUVOTON_NPCX_SOC_ID_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_SOC_ID)) + +DT_COMPAT_NUVOTON_NPCX_SPIP := nuvoton,npcx-spip + +config DT_HAS_NUVOTON_NPCX_SPIP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_SPIP)) + +DT_COMPAT_NUVOTON_NPCX_TACH := nuvoton,npcx-tach + +config DT_HAS_NUVOTON_NPCX_TACH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_TACH)) + +DT_COMPAT_NUVOTON_NPCX_UART := nuvoton,npcx-uart + +config DT_HAS_NUVOTON_NPCX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_UART)) + +DT_COMPAT_NUVOTON_NPCX_UART_NPCKN := nuvoton,npcx-uart-npckn + +config DT_HAS_NUVOTON_NPCX_UART_NPCKN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_UART_NPCKN)) + +DT_COMPAT_NUVOTON_NPCX_WATCHDOG := nuvoton,npcx-watchdog + +config DT_HAS_NUVOTON_NPCX_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NPCX_WATCHDOG)) + +DT_COMPAT_NUVOTON_NUMAKER_ADC := nuvoton,numaker-adc + +config DT_HAS_NUVOTON_NUMAKER_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_ADC)) + +DT_COMPAT_NUVOTON_NUMAKER_CANFD := nuvoton,numaker-canfd + +config DT_HAS_NUVOTON_NUMAKER_CANFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_CANFD)) + +DT_COMPAT_NUVOTON_NUMAKER_ETHERNET := nuvoton,numaker-ethernet + +config DT_HAS_NUVOTON_NUMAKER_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_ETHERNET)) + +DT_COMPAT_NUVOTON_NUMAKER_FMC := nuvoton,numaker-fmc + +config DT_HAS_NUVOTON_NUMAKER_FMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_FMC)) + +DT_COMPAT_NUVOTON_NUMAKER_GPIO := nuvoton,numaker-gpio + +config DT_HAS_NUVOTON_NUMAKER_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_GPIO)) + +DT_COMPAT_NUVOTON_NUMAKER_HSUSBD := nuvoton,numaker-hsusbd + +config DT_HAS_NUVOTON_NUMAKER_HSUSBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_HSUSBD)) + +DT_COMPAT_NUVOTON_NUMAKER_I2C := nuvoton,numaker-i2c + +config DT_HAS_NUVOTON_NUMAKER_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_I2C)) + +DT_COMPAT_NUVOTON_NUMAKER_NPU := nuvoton,numaker-npu + +config DT_HAS_NUVOTON_NUMAKER_NPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_NPU)) + +DT_COMPAT_NUVOTON_NUMAKER_PCC := nuvoton,numaker-pcc + +config DT_HAS_NUVOTON_NUMAKER_PCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_PCC)) + +DT_COMPAT_NUVOTON_NUMAKER_PINCTRL := nuvoton,numaker-pinctrl + +config DT_HAS_NUVOTON_NUMAKER_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_PINCTRL)) + +DT_COMPAT_NUVOTON_NUMAKER_PPC := nuvoton,numaker-ppc + +config DT_HAS_NUVOTON_NUMAKER_PPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_PPC)) + +DT_COMPAT_NUVOTON_NUMAKER_PWM := nuvoton,numaker-pwm + +config DT_HAS_NUVOTON_NUMAKER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_PWM)) + +DT_COMPAT_NUVOTON_NUMAKER_RMC := nuvoton,numaker-rmc + +config DT_HAS_NUVOTON_NUMAKER_RMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_RMC)) + +DT_COMPAT_NUVOTON_NUMAKER_RST := nuvoton,numaker-rst + +config DT_HAS_NUVOTON_NUMAKER_RST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_RST)) + +DT_COMPAT_NUVOTON_NUMAKER_RTC := nuvoton,numaker-rtc + +config DT_HAS_NUVOTON_NUMAKER_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_RTC)) + +DT_COMPAT_NUVOTON_NUMAKER_SCC := nuvoton,numaker-scc + +config DT_HAS_NUVOTON_NUMAKER_SCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_SCC)) + +DT_COMPAT_NUVOTON_NUMAKER_SPI := nuvoton,numaker-spi + +config DT_HAS_NUVOTON_NUMAKER_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_SPI)) + +DT_COMPAT_NUVOTON_NUMAKER_TCPC := nuvoton,numaker-tcpc + +config DT_HAS_NUVOTON_NUMAKER_TCPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_TCPC)) + +DT_COMPAT_NUVOTON_NUMAKER_UART := nuvoton,numaker-uart + +config DT_HAS_NUVOTON_NUMAKER_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_UART)) + +DT_COMPAT_NUVOTON_NUMAKER_USBD := nuvoton,numaker-usbd + +config DT_HAS_NUVOTON_NUMAKER_USBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_USBD)) + +DT_COMPAT_NUVOTON_NUMAKER_VBUS := nuvoton,numaker-vbus + +config DT_HAS_NUVOTON_NUMAKER_VBUS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_VBUS)) + +DT_COMPAT_NUVOTON_NUMAKER_WWDT := nuvoton,numaker-wwdt + +config DT_HAS_NUVOTON_NUMAKER_WWDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMAKER_WWDT)) + +DT_COMPAT_NUVOTON_NUMICRO_GPIO := nuvoton,numicro-gpio + +config DT_HAS_NUVOTON_NUMICRO_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMICRO_GPIO)) + +DT_COMPAT_NUVOTON_NUMICRO_PINCTRL := nuvoton,numicro-pinctrl + +config DT_HAS_NUVOTON_NUMICRO_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMICRO_PINCTRL)) + +DT_COMPAT_NUVOTON_NUMICRO_UART := nuvoton,numicro-uart + +config DT_HAS_NUVOTON_NUMICRO_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NUVOTON_NUMICRO_UART)) + +DT_COMPAT_NVME_CONTROLLER := nvme-controller + +config DT_HAS_NVME_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NVME_CONTROLLER)) + +DT_COMPAT_NXP_4CH_DMA := nxp,4ch-dma + +config DT_HAS_NXP_4CH_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_4CH_DMA)) + +DT_COMPAT_NXP_ACOMP := nxp,acomp + +config DT_HAS_NXP_ACOMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ACOMP)) + +DT_COMPAT_NXP_ADC12 := nxp,adc12 + +config DT_HAS_NXP_ADC12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ADC12)) + +DT_COMPAT_NXP_AON_WAKEUP_PIN := nxp,aon-wakeup-pin + +config DT_HAS_NXP_AON_WAKEUP_PIN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_AON_WAKEUP_PIN)) + +DT_COMPAT_NXP_BT_HCI_UART := nxp,bt-hci-uart + +config DT_HAS_NXP_BT_HCI_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_BT_HCI_UART)) + +DT_COMPAT_NXP_C40_FLASH := nxp,c40-flash + +config DT_HAS_NXP_C40_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_C40_FLASH)) + +DT_COMPAT_NXP_C40_FLASH_CONTROLLER := nxp,c40-flash-controller + +config DT_HAS_NXP_C40_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_C40_FLASH_CONTROLLER)) + +DT_COMPAT_NXP_CAM_44PINS_CONNECTOR := nxp,cam-44pins-connector + +config DT_HAS_NXP_CAM_44PINS_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_CAM_44PINS_CONNECTOR)) + +DT_COMPAT_NXP_CMC := nxp,cmc + +config DT_HAS_NXP_CMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_CMC)) + +DT_COMPAT_NXP_CMP := nxp,cmp + +config DT_HAS_NXP_CMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_CMP)) + +DT_COMPAT_NXP_COP := nxp,cop + +config DT_HAS_NXP_COP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_COP)) + +DT_COMPAT_NXP_CRC := nxp,crc + +config DT_HAS_NXP_CRC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_CRC)) + +DT_COMPAT_NXP_CTIMER_PWM := nxp,ctimer-pwm + +config DT_HAS_NXP_CTIMER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_CTIMER_PWM)) + +DT_COMPAT_NXP_DAC12 := nxp,dac12 + +config DT_HAS_NXP_DAC12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_DAC12)) + +DT_COMPAT_NXP_DAI_ESAI := nxp,dai-esai + +config DT_HAS_NXP_DAI_ESAI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_DAI_ESAI)) + +DT_COMPAT_NXP_DAI_MICFIL := nxp,dai-micfil + +config DT_HAS_NXP_DAI_MICFIL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_DAI_MICFIL)) + +DT_COMPAT_NXP_DAI_SAI := nxp,dai-sai + +config DT_HAS_NXP_DAI_SAI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_DAI_SAI)) + +DT_COMPAT_NXP_DCNANO_LCDIF := nxp,dcnano-lcdif + +config DT_HAS_NXP_DCNANO_LCDIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_DCNANO_LCDIF)) + +DT_COMPAT_NXP_DMIC := nxp,dmic + +config DT_HAS_NXP_DMIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_DMIC)) + +DT_COMPAT_NXP_DSPI := nxp,dspi + +config DT_HAS_NXP_DSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_DSPI)) + +DT_COMPAT_NXP_EDMA := nxp,edma + +config DT_HAS_NXP_EDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_EDMA)) + +DT_COMPAT_NXP_EHCI := nxp,ehci + +config DT_HAS_NXP_EHCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_EHCI)) + +DT_COMPAT_NXP_EIM := nxp,eim + +config DT_HAS_NXP_EIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_EIM)) + +DT_COMPAT_NXP_ELE_TRNG := nxp,ele-trng + +config DT_HAS_NXP_ELE_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ELE_TRNG)) + +DT_COMPAT_NXP_ELS := nxp,els + +config DT_HAS_NXP_ELS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ELS)) + +DT_COMPAT_NXP_ELS_TRNG := nxp,els-trng + +config DT_HAS_NXP_ELS_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ELS_TRNG)) + +DT_COMPAT_NXP_ENET := nxp,enet + +config DT_HAS_NXP_ENET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET)) + +DT_COMPAT_NXP_ENET_MAC := nxp,enet-mac + +config DT_HAS_NXP_ENET_MAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET_MAC)) + +DT_COMPAT_NXP_ENET_MDIO := nxp,enet-mdio + +config DT_HAS_NXP_ENET_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET_MDIO)) + +DT_COMPAT_NXP_ENET_PTP_CLOCK := nxp,enet-ptp-clock + +config DT_HAS_NXP_ENET_PTP_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET_PTP_CLOCK)) + +DT_COMPAT_NXP_ENET_QOS := nxp,enet-qos + +config DT_HAS_NXP_ENET_QOS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET_QOS)) + +DT_COMPAT_NXP_ENET_QOS_MAC := nxp,enet-qos-mac + +config DT_HAS_NXP_ENET_QOS_MAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET_QOS_MAC)) + +DT_COMPAT_NXP_ENET_QOS_MDIO := nxp,enet-qos-mdio + +config DT_HAS_NXP_ENET_QOS_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET_QOS_MDIO)) + +DT_COMPAT_NXP_ENET1G := nxp,enet1g + +config DT_HAS_NXP_ENET1G_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ENET1G)) + +DT_COMPAT_NXP_ERM := nxp,erm + +config DT_HAS_NXP_ERM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_ERM)) + +DT_COMPAT_NXP_EWM := nxp,ewm + +config DT_HAS_NXP_EWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_EWM)) + +DT_COMPAT_NXP_FIRC := nxp,firc + +config DT_HAS_NXP_FIRC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FIRC)) + +DT_COMPAT_NXP_FLEXCAN := nxp,flexcan + +config DT_HAS_NXP_FLEXCAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FLEXCAN)) + +DT_COMPAT_NXP_FLEXCAN_FD := nxp,flexcan-fd + +config DT_HAS_NXP_FLEXCAN_FD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FLEXCAN_FD)) + +DT_COMPAT_NXP_FLEXIO := nxp,flexio + +config DT_HAS_NXP_FLEXIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FLEXIO)) + +DT_COMPAT_NXP_FLEXIO_PWM := nxp,flexio-pwm + +config DT_HAS_NXP_FLEXIO_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FLEXIO_PWM)) + +DT_COMPAT_NXP_FLEXIO_SPI := nxp,flexio-spi + +config DT_HAS_NXP_FLEXIO_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FLEXIO_SPI)) + +DT_COMPAT_NXP_FLEXPWM := nxp,flexpwm + +config DT_HAS_NXP_FLEXPWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FLEXPWM)) + +DT_COMPAT_NXP_FLEXRAM := nxp,flexram + +config DT_HAS_NXP_FLEXRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FLEXRAM)) + +DT_COMPAT_NXP_FS26_WDOG := nxp,fs26-wdog + +config DT_HAS_NXP_FS26_WDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FS26_WDOG)) + +DT_COMPAT_NXP_FTM := nxp,ftm + +config DT_HAS_NXP_FTM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FTM)) + +DT_COMPAT_NXP_FTM_PWM := nxp,ftm-pwm + +config DT_HAS_NXP_FTM_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FTM_PWM)) + +DT_COMPAT_NXP_FXAS21002 := nxp,fxas21002 + +config DT_HAS_NXP_FXAS21002_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FXAS21002)) + +DT_COMPAT_NXP_FXLS8974 := nxp,fxls8974 + +config DT_HAS_NXP_FXLS8974_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FXLS8974)) + +DT_COMPAT_NXP_FXOS8700 := nxp,fxos8700 + +config DT_HAS_NXP_FXOS8700_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FXOS8700)) + +DT_COMPAT_NXP_FXOSC := nxp,fxosc + +config DT_HAS_NXP_FXOSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_FXOSC)) + +DT_COMPAT_NXP_GAU_ADC := nxp,gau-adc + +config DT_HAS_NXP_GAU_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_GAU_ADC)) + +DT_COMPAT_NXP_GAU_DAC := nxp,gau-dac + +config DT_HAS_NXP_GAU_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_GAU_DAC)) + +DT_COMPAT_NXP_GINT := nxp,gint + +config DT_HAS_NXP_GINT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_GINT)) + +DT_COMPAT_NXP_GPIO_CLUSTER := nxp,gpio-cluster + +config DT_HAS_NXP_GPIO_CLUSTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_GPIO_CLUSTER)) + +DT_COMPAT_NXP_GPT_HW_TIMER := nxp,gpt-hw-timer + +config DT_HAS_NXP_GPT_HW_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_GPT_HW_TIMER)) + +DT_COMPAT_NXP_HCI_BLE := nxp,hci-ble + +config DT_HAS_NXP_HCI_BLE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_HCI_BLE)) + +DT_COMPAT_NXP_HDLC_RCP_IF := nxp,hdlc-rcp-if + +config DT_HAS_NXP_HDLC_RCP_IF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_HDLC_RCP_IF)) + +DT_COMPAT_NXP_HPDAC := nxp,hpdac + +config DT_HAS_NXP_HPDAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_HPDAC)) + +DT_COMPAT_NXP_HSCMP := nxp,hscmp + +config DT_HAS_NXP_HSCMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_HSCMP)) + +DT_COMPAT_NXP_I2C_TSC_FPC := nxp,i2c-tsc-fpc + +config DT_HAS_NXP_I2C_TSC_FPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_I2C_TSC_FPC)) + +DT_COMPAT_NXP_IAP_FMC11 := nxp,iap-fmc11 + +config DT_HAS_NXP_IAP_FMC11_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IAP_FMC11)) + +DT_COMPAT_NXP_IAP_FMC54 := nxp,iap-fmc54 + +config DT_HAS_NXP_IAP_FMC54_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IAP_FMC54)) + +DT_COMPAT_NXP_IAP_FMC55 := nxp,iap-fmc55 + +config DT_HAS_NXP_IAP_FMC55_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IAP_FMC55)) + +DT_COMPAT_NXP_IAP_FMC553 := nxp,iap-fmc553 + +config DT_HAS_NXP_IAP_FMC553_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IAP_FMC553)) + +DT_COMPAT_NXP_II2C := nxp,ii2c + +config DT_HAS_NXP_II2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_II2C)) + +DT_COMPAT_NXP_IMX_ANATOP := nxp,imx-anatop + +config DT_HAS_NXP_IMX_ANATOP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_ANATOP)) + +DT_COMPAT_NXP_IMX_BLKCTRL_NS_AON := nxp,imx-blkctrl-ns-aon + +config DT_HAS_NXP_IMX_BLKCTRL_NS_AON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_BLKCTRL_NS_AON)) + +DT_COMPAT_NXP_IMX_BLKCTRL_WAKEUP := nxp,imx-blkctrl-wakeup + +config DT_HAS_NXP_IMX_BLKCTRL_WAKEUP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_BLKCTRL_WAKEUP)) + +DT_COMPAT_NXP_IMX_CAAM := nxp,imx-caam + +config DT_HAS_NXP_IMX_CAAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_CAAM)) + +DT_COMPAT_NXP_IMX_CCM := nxp,imx-ccm + +config DT_HAS_NXP_IMX_CCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_CCM)) + +DT_COMPAT_NXP_IMX_CCM_FNPLL := nxp,imx-ccm-fnpll + +config DT_HAS_NXP_IMX_CCM_FNPLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_CCM_FNPLL)) + +DT_COMPAT_NXP_IMX_CCM_REV2 := nxp,imx-ccm-rev2 + +config DT_HAS_NXP_IMX_CCM_REV2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_CCM_REV2)) + +DT_COMPAT_NXP_IMX_CSI := nxp,imx-csi + +config DT_HAS_NXP_IMX_CSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_CSI)) + +DT_COMPAT_NXP_IMX_DTCM := nxp,imx-dtcm + +config DT_HAS_NXP_IMX_DTCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_DTCM)) + +DT_COMPAT_NXP_IMX_ECSPI := nxp,imx-ecspi + +config DT_HAS_NXP_IMX_ECSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_ECSPI)) + +DT_COMPAT_NXP_IMX_ELCDIF := nxp,imx-elcdif + +config DT_HAS_NXP_IMX_ELCDIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_ELCDIF)) + +DT_COMPAT_NXP_IMX_EPIT := nxp,imx-epit + +config DT_HAS_NXP_IMX_EPIT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_EPIT)) + +DT_COMPAT_NXP_IMX_FLEXSPI := nxp,imx-flexspi + +config DT_HAS_NXP_IMX_FLEXSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI)) + +DT_COMPAT_NXP_IMX_FLEXSPI_APS6404L := nxp,imx-flexspi-aps6404l + +config DT_HAS_NXP_IMX_FLEXSPI_APS6404L_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_APS6404L)) + +DT_COMPAT_NXP_IMX_FLEXSPI_APS6408L := nxp,imx-flexspi-aps6408l + +config DT_HAS_NXP_IMX_FLEXSPI_APS6408L_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_APS6408L)) + +DT_COMPAT_NXP_IMX_FLEXSPI_HYPERFLASH := nxp,imx-flexspi-hyperflash + +config DT_HAS_NXP_IMX_FLEXSPI_HYPERFLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_HYPERFLASH)) + +DT_COMPAT_NXP_IMX_FLEXSPI_IS66WVQ8M4 := nxp,imx-flexspi-is66wvq8m4 + +config DT_HAS_NXP_IMX_FLEXSPI_IS66WVQ8M4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_IS66WVQ8M4)) + +DT_COMPAT_NXP_IMX_FLEXSPI_IS66WVS8M8 := nxp,imx-flexspi-is66wvs8m8 + +config DT_HAS_NXP_IMX_FLEXSPI_IS66WVS8M8_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_IS66WVS8M8)) + +DT_COMPAT_NXP_IMX_FLEXSPI_MX25UM51345G := nxp,imx-flexspi-mx25um51345g + +config DT_HAS_NXP_IMX_FLEXSPI_MX25UM51345G_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_MX25UM51345G)) + +DT_COMPAT_NXP_IMX_FLEXSPI_NOR := nxp,imx-flexspi-nor + +config DT_HAS_NXP_IMX_FLEXSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_NOR)) + +DT_COMPAT_NXP_IMX_FLEXSPI_S27KS0641 := nxp,imx-flexspi-s27ks0641 + +config DT_HAS_NXP_IMX_FLEXSPI_S27KS0641_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_S27KS0641)) + +DT_COMPAT_NXP_IMX_FLEXSPI_W956A8MBYA := nxp,imx-flexspi-w956a8mbya + +config DT_HAS_NXP_IMX_FLEXSPI_W956A8MBYA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_FLEXSPI_W956A8MBYA)) + +DT_COMPAT_NXP_IMX_GPIO := nxp,imx-gpio + +config DT_HAS_NXP_IMX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_GPIO)) + +DT_COMPAT_NXP_IMX_GPR := nxp,imx-gpr + +config DT_HAS_NXP_IMX_GPR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_GPR)) + +DT_COMPAT_NXP_IMX_GPT := nxp,imx-gpt + +config DT_HAS_NXP_IMX_GPT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_GPT)) + +DT_COMPAT_NXP_IMX_IOMUXC := nxp,imx-iomuxc + +config DT_HAS_NXP_IMX_IOMUXC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_IOMUXC)) + +DT_COMPAT_NXP_IMX_IOMUXC_SCU := nxp,imx-iomuxc-scu + +config DT_HAS_NXP_IMX_IOMUXC_SCU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_IOMUXC_SCU)) + +DT_COMPAT_NXP_IMX_ITCM := nxp,imx-itcm + +config DT_HAS_NXP_IMX_ITCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_ITCM)) + +DT_COMPAT_NXP_IMX_IUART := nxp,imx-iuart + +config DT_HAS_NXP_IMX_IUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_IUART)) + +DT_COMPAT_NXP_IMX_LCDIFV2 := nxp,imx-lcdifv2 + +config DT_HAS_NXP_IMX_LCDIFV2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_LCDIFV2)) + +DT_COMPAT_NXP_IMX_LCDIFV3 := nxp,imx-lcdifv3 + +config DT_HAS_NXP_IMX_LCDIFV3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_LCDIFV3)) + +DT_COMPAT_NXP_IMX_MIPI_DSI := nxp,imx-mipi-dsi + +config DT_HAS_NXP_IMX_MIPI_DSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_MIPI_DSI)) + +DT_COMPAT_NXP_IMX_MU := nxp,imx-mu + +config DT_HAS_NXP_IMX_MU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_MU)) + +DT_COMPAT_NXP_IMX_NETC := nxp,imx-netc + +config DT_HAS_NXP_IMX_NETC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_NETC)) + +DT_COMPAT_NXP_IMX_NETC_BLK_CTRL := nxp,imx-netc-blk-ctrl + +config DT_HAS_NXP_IMX_NETC_BLK_CTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_NETC_BLK_CTRL)) + +DT_COMPAT_NXP_IMX_NETC_EMDIO := nxp,imx-netc-emdio + +config DT_HAS_NXP_IMX_NETC_EMDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_NETC_EMDIO)) + +DT_COMPAT_NXP_IMX_NETC_PSI := nxp,imx-netc-psi + +config DT_HAS_NXP_IMX_NETC_PSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_NETC_PSI)) + +DT_COMPAT_NXP_IMX_PWM := nxp,imx-pwm + +config DT_HAS_NXP_IMX_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_PWM)) + +DT_COMPAT_NXP_IMX_QTMR := nxp,imx-qtmr + +config DT_HAS_NXP_IMX_QTMR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_QTMR)) + +DT_COMPAT_NXP_IMX_RGPIO := nxp,imx-rgpio + +config DT_HAS_NXP_IMX_RGPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_RGPIO)) + +DT_COMPAT_NXP_IMX_SEMC := nxp,imx-semc + +config DT_HAS_NXP_IMX_SEMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_SEMC)) + +DT_COMPAT_NXP_IMX_SNVS_RTC := nxp,imx-snvs-rtc + +config DT_HAS_NXP_IMX_SNVS_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_SNVS_RTC)) + +DT_COMPAT_NXP_IMX_SRC_REV2 := nxp,imx-src-rev2 + +config DT_HAS_NXP_IMX_SRC_REV2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_SRC_REV2)) + +DT_COMPAT_NXP_IMX_TMR := nxp,imx-tmr + +config DT_HAS_NXP_IMX_TMR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_TMR)) + +DT_COMPAT_NXP_IMX_UART := nxp,imx-uart + +config DT_HAS_NXP_IMX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_UART)) + +DT_COMPAT_NXP_IMX_USDHC := nxp,imx-usdhc + +config DT_HAS_NXP_IMX_USDHC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_USDHC)) + +DT_COMPAT_NXP_IMX_WDOG := nxp,imx-wdog + +config DT_HAS_NXP_IMX_WDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX_WDOG)) + +DT_COMPAT_NXP_IMX7D_PINCTRL := nxp,imx7d-pinctrl + +config DT_HAS_NXP_IMX7D_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX7D_PINCTRL)) + +DT_COMPAT_NXP_IMX8_PINCTRL := nxp,imx8-pinctrl + +config DT_HAS_NXP_IMX8_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX8_PINCTRL)) + +DT_COMPAT_NXP_IMX8M_PINCTRL := nxp,imx8m-pinctrl + +config DT_HAS_NXP_IMX8M_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX8M_PINCTRL)) + +DT_COMPAT_NXP_IMX8MP_PINCTRL := nxp,imx8mp-pinctrl + +config DT_HAS_NXP_IMX8MP_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX8MP_PINCTRL)) + +DT_COMPAT_NXP_IMX8ULP_PINCTRL := nxp,imx8ulp-pinctrl + +config DT_HAS_NXP_IMX8ULP_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX8ULP_PINCTRL)) + +DT_COMPAT_NXP_IMX93_MEDIAMIX := nxp,imx93-mediamix + +config DT_HAS_NXP_IMX93_MEDIAMIX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX93_MEDIAMIX)) + +DT_COMPAT_NXP_IMX93_PINCTRL := nxp,imx93-pinctrl + +config DT_HAS_NXP_IMX93_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IMX93_PINCTRL)) + +DT_COMPAT_NXP_IRQSTEER_INTC := nxp,irqsteer-intc + +config DT_HAS_NXP_IRQSTEER_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IRQSTEER_INTC)) + +DT_COMPAT_NXP_IRQSTEER_MASTER := nxp,irqsteer-master + +config DT_HAS_NXP_IRQSTEER_MASTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IRQSTEER_MASTER)) + +DT_COMPAT_NXP_IRTC := nxp,irtc + +config DT_HAS_NXP_IRTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_IRTC)) + +DT_COMPAT_NXP_KINETIS_ACMP := nxp,kinetis-acmp + +config DT_HAS_NXP_KINETIS_ACMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_ACMP)) + +DT_COMPAT_NXP_KINETIS_ADC16 := nxp,kinetis-adc16 + +config DT_HAS_NXP_KINETIS_ADC16_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_ADC16)) + +DT_COMPAT_NXP_KINETIS_DAC := nxp,kinetis-dac + +config DT_HAS_NXP_KINETIS_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_DAC)) + +DT_COMPAT_NXP_KINETIS_DAC32 := nxp,kinetis-dac32 + +config DT_HAS_NXP_KINETIS_DAC32_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_DAC32)) + +DT_COMPAT_NXP_KINETIS_ETHERNET := nxp,kinetis-ethernet + +config DT_HAS_NXP_KINETIS_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_ETHERNET)) + +DT_COMPAT_NXP_KINETIS_FTFA := nxp,kinetis-ftfa + +config DT_HAS_NXP_KINETIS_FTFA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_FTFA)) + +DT_COMPAT_NXP_KINETIS_FTFC := nxp,kinetis-ftfc + +config DT_HAS_NXP_KINETIS_FTFC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_FTFC)) + +DT_COMPAT_NXP_KINETIS_FTFE := nxp,kinetis-ftfe + +config DT_HAS_NXP_KINETIS_FTFE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_FTFE)) + +DT_COMPAT_NXP_KINETIS_FTFL := nxp,kinetis-ftfl + +config DT_HAS_NXP_KINETIS_FTFL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_FTFL)) + +DT_COMPAT_NXP_KINETIS_GPIO := nxp,kinetis-gpio + +config DT_HAS_NXP_KINETIS_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_GPIO)) + +DT_COMPAT_NXP_KINETIS_I2C := nxp,kinetis-i2c + +config DT_HAS_NXP_KINETIS_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_I2C)) + +DT_COMPAT_NXP_KINETIS_KE1XF_SIM := nxp,kinetis-ke1xf-sim + +config DT_HAS_NXP_KINETIS_KE1XF_SIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_KE1XF_SIM)) + +DT_COMPAT_NXP_KINETIS_LPSCI := nxp,kinetis-lpsci + +config DT_HAS_NXP_KINETIS_LPSCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_LPSCI)) + +DT_COMPAT_NXP_KINETIS_MCG := nxp,kinetis-mcg + +config DT_HAS_NXP_KINETIS_MCG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_MCG)) + +DT_COMPAT_NXP_KINETIS_PCC := nxp,kinetis-pcc + +config DT_HAS_NXP_KINETIS_PCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_PCC)) + +DT_COMPAT_NXP_KINETIS_PTP := nxp,kinetis-ptp + +config DT_HAS_NXP_KINETIS_PTP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_PTP)) + +DT_COMPAT_NXP_KINETIS_PWT := nxp,kinetis-pwt + +config DT_HAS_NXP_KINETIS_PWT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_PWT)) + +DT_COMPAT_NXP_KINETIS_RNGA := nxp,kinetis-rnga + +config DT_HAS_NXP_KINETIS_RNGA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_RNGA)) + +DT_COMPAT_NXP_KINETIS_SCG := nxp,kinetis-scg + +config DT_HAS_NXP_KINETIS_SCG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_SCG)) + +DT_COMPAT_NXP_KINETIS_SIM := nxp,kinetis-sim + +config DT_HAS_NXP_KINETIS_SIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_SIM)) + +DT_COMPAT_NXP_KINETIS_TEMPERATURE := nxp,kinetis-temperature + +config DT_HAS_NXP_KINETIS_TEMPERATURE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_TEMPERATURE)) + +DT_COMPAT_NXP_KINETIS_TPM := nxp,kinetis-tpm + +config DT_HAS_NXP_KINETIS_TPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_TPM)) + +DT_COMPAT_NXP_KINETIS_TRNG := nxp,kinetis-trng + +config DT_HAS_NXP_KINETIS_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_TRNG)) + +DT_COMPAT_NXP_KINETIS_UART := nxp,kinetis-uart + +config DT_HAS_NXP_KINETIS_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_UART)) + +DT_COMPAT_NXP_KINETIS_USBD := nxp,kinetis-usbd + +config DT_HAS_NXP_KINETIS_USBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_USBD)) + +DT_COMPAT_NXP_KINETIS_WDOG := nxp,kinetis-wdog + +config DT_HAS_NXP_KINETIS_WDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KINETIS_WDOG)) + +DT_COMPAT_NXP_KW41Z_IEEE802154 := nxp,kw41z-ieee802154 + +config DT_HAS_NXP_KW41Z_IEEE802154_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_KW41Z_IEEE802154)) + +DT_COMPAT_NXP_LCD_8080 := nxp,lcd-8080 + +config DT_HAS_NXP_LCD_8080_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LCD_8080)) + +DT_COMPAT_NXP_LCD_PMOD := nxp,lcd-pmod + +config DT_HAS_NXP_LCD_PMOD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LCD_PMOD)) + +DT_COMPAT_NXP_LCDIC := nxp,lcdic + +config DT_HAS_NXP_LCDIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LCDIC)) + +DT_COMPAT_NXP_LLWU := nxp,llwu + +config DT_HAS_NXP_LLWU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LLWU)) + +DT_COMPAT_NXP_LP_FLEXCOMM := nxp,lp-flexcomm + +config DT_HAS_NXP_LP_FLEXCOMM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LP_FLEXCOMM)) + +DT_COMPAT_NXP_LPADC_TEMP40 := nxp,lpadc-temp40 + +config DT_HAS_NXP_LPADC_TEMP40_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPADC_TEMP40)) + +DT_COMPAT_NXP_LPC_CRC := nxp,lpc-crc + +config DT_HAS_NXP_LPC_CRC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_CRC)) + +DT_COMPAT_NXP_LPC_CTIMER := nxp,lpc-ctimer + +config DT_HAS_NXP_LPC_CTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_CTIMER)) + +DT_COMPAT_NXP_LPC_DMA := nxp,lpc-dma + +config DT_HAS_NXP_LPC_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_DMA)) + +DT_COMPAT_NXP_LPC_FLEXCOMM := nxp,lpc-flexcomm + +config DT_HAS_NXP_LPC_FLEXCOMM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_FLEXCOMM)) + +DT_COMPAT_NXP_LPC_GPIO := nxp,lpc-gpio + +config DT_HAS_NXP_LPC_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_GPIO)) + +DT_COMPAT_NXP_LPC_GPIO_PORT := nxp,lpc-gpio-port + +config DT_HAS_NXP_LPC_GPIO_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_GPIO_PORT)) + +DT_COMPAT_NXP_LPC_I2C := nxp,lpc-i2c + +config DT_HAS_NXP_LPC_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_I2C)) + +DT_COMPAT_NXP_LPC_I2S := nxp,lpc-i2s + +config DT_HAS_NXP_LPC_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_I2S)) + +DT_COMPAT_NXP_LPC_IOCON := nxp,lpc-iocon + +config DT_HAS_NXP_LPC_IOCON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_IOCON)) + +DT_COMPAT_NXP_LPC_IOCON_PINCTRL := nxp,lpc-iocon-pinctrl + +config DT_HAS_NXP_LPC_IOCON_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_IOCON_PINCTRL)) + +DT_COMPAT_NXP_LPC_IOCON_PIO := nxp,lpc-iocon-pio + +config DT_HAS_NXP_LPC_IOCON_PIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_IOCON_PIO)) + +DT_COMPAT_NXP_LPC_LPADC := nxp,lpc-lpadc + +config DT_HAS_NXP_LPC_LPADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_LPADC)) + +DT_COMPAT_NXP_LPC_MAILBOX := nxp,lpc-mailbox + +config DT_HAS_NXP_LPC_MAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_MAILBOX)) + +DT_COMPAT_NXP_LPC_MCAN := nxp,lpc-mcan + +config DT_HAS_NXP_LPC_MCAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_MCAN)) + +DT_COMPAT_NXP_LPC_RNG := nxp,lpc-rng + +config DT_HAS_NXP_LPC_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_RNG)) + +DT_COMPAT_NXP_LPC_RTC := nxp,lpc-rtc + +config DT_HAS_NXP_LPC_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_RTC)) + +DT_COMPAT_NXP_LPC_RTC_HIGHRES := nxp,lpc-rtc-highres + +config DT_HAS_NXP_LPC_RTC_HIGHRES_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_RTC_HIGHRES)) + +DT_COMPAT_NXP_LPC_SDIF := nxp,lpc-sdif + +config DT_HAS_NXP_LPC_SDIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_SDIF)) + +DT_COMPAT_NXP_LPC_SPI := nxp,lpc-spi + +config DT_HAS_NXP_LPC_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_SPI)) + +DT_COMPAT_NXP_LPC_SYSCON := nxp,lpc-syscon + +config DT_HAS_NXP_LPC_SYSCON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_SYSCON)) + +DT_COMPAT_NXP_LPC_SYSCON_RESET := nxp,lpc-syscon-reset + +config DT_HAS_NXP_LPC_SYSCON_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_SYSCON_RESET)) + +DT_COMPAT_NXP_LPC_UID := nxp,lpc-uid + +config DT_HAS_NXP_LPC_UID_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_UID)) + +DT_COMPAT_NXP_LPC_USART := nxp,lpc-usart + +config DT_HAS_NXP_LPC_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_USART)) + +DT_COMPAT_NXP_LPC_WWDT := nxp,lpc-wwdt + +config DT_HAS_NXP_LPC_WWDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC_WWDT)) + +DT_COMPAT_NXP_LPC11U6X_EEPROM := nxp,lpc11u6x-eeprom + +config DT_HAS_NXP_LPC11U6X_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC11U6X_EEPROM)) + +DT_COMPAT_NXP_LPC11U6X_GPIO := nxp,lpc11u6x-gpio + +config DT_HAS_NXP_LPC11U6X_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC11U6X_GPIO)) + +DT_COMPAT_NXP_LPC11U6X_I2C := nxp,lpc11u6x-i2c + +config DT_HAS_NXP_LPC11U6X_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC11U6X_I2C)) + +DT_COMPAT_NXP_LPC11U6X_PINCTRL := nxp,lpc11u6x-pinctrl + +config DT_HAS_NXP_LPC11U6X_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC11U6X_PINCTRL)) + +DT_COMPAT_NXP_LPC11U6X_SYSCON := nxp,lpc11u6x-syscon + +config DT_HAS_NXP_LPC11U6X_SYSCON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC11U6X_SYSCON)) + +DT_COMPAT_NXP_LPC11U6X_UART := nxp,lpc11u6x-uart + +config DT_HAS_NXP_LPC11U6X_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPC11U6X_UART)) + +DT_COMPAT_NXP_LPCIP3511 := nxp,lpcip3511 + +config DT_HAS_NXP_LPCIP3511_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPCIP3511)) + +DT_COMPAT_NXP_LPCMP := nxp,lpcmp + +config DT_HAS_NXP_LPCMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPCMP)) + +DT_COMPAT_NXP_LPDAC := nxp,lpdac + +config DT_HAS_NXP_LPDAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPDAC)) + +DT_COMPAT_NXP_LPI2C := nxp,lpi2c + +config DT_HAS_NXP_LPI2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPI2C)) + +DT_COMPAT_NXP_LPIT := nxp,lpit + +config DT_HAS_NXP_LPIT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPIT)) + +DT_COMPAT_NXP_LPIT_CHANNEL := nxp,lpit-channel + +config DT_HAS_NXP_LPIT_CHANNEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPIT_CHANNEL)) + +DT_COMPAT_NXP_LPSPI := nxp,lpspi + +config DT_HAS_NXP_LPSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPSPI)) + +DT_COMPAT_NXP_LPTMR := nxp,lptmr + +config DT_HAS_NXP_LPTMR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPTMR)) + +DT_COMPAT_NXP_LPUART := nxp,lpuart + +config DT_HAS_NXP_LPUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_LPUART)) + +DT_COMPAT_NXP_MBOX_IMX_MU := nxp,mbox-imx-mu + +config DT_HAS_NXP_MBOX_IMX_MU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MBOX_IMX_MU)) + +DT_COMPAT_NXP_MBOX_MAILBOX := nxp,mbox-mailbox + +config DT_HAS_NXP_MBOX_MAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MBOX_MAILBOX)) + +DT_COMPAT_NXP_MC_CGM := nxp,mc-cgm + +config DT_HAS_NXP_MC_CGM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MC_CGM)) + +DT_COMPAT_NXP_MCI_IO_MUX := nxp,mci-io-mux + +config DT_HAS_NXP_MCI_IO_MUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCI_IO_MUX)) + +DT_COMPAT_NXP_MCR20A := nxp,mcr20a + +config DT_HAS_NXP_MCR20A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCR20A)) + +DT_COMPAT_NXP_MCUX_12B1MSPS_SAR := nxp,mcux-12b1msps-sar + +config DT_HAS_NXP_MCUX_12B1MSPS_SAR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_12B1MSPS_SAR)) + +DT_COMPAT_NXP_MCUX_DCP := nxp,mcux-dcp + +config DT_HAS_NXP_MCUX_DCP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_DCP)) + +DT_COMPAT_NXP_MCUX_EDMA := nxp,mcux-edma + +config DT_HAS_NXP_MCUX_EDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_EDMA)) + +DT_COMPAT_NXP_MCUX_I2S := nxp,mcux-i2s + +config DT_HAS_NXP_MCUX_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_I2S)) + +DT_COMPAT_NXP_MCUX_I3C := nxp,mcux-i3c + +config DT_HAS_NXP_MCUX_I3C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_I3C)) + +DT_COMPAT_NXP_MCUX_KPP := nxp,mcux-kpp + +config DT_HAS_NXP_MCUX_KPP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_KPP)) + +DT_COMPAT_NXP_MCUX_QDC := nxp,mcux-qdc + +config DT_HAS_NXP_MCUX_QDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_QDC)) + +DT_COMPAT_NXP_MCUX_QDEC := nxp,mcux-qdec + +config DT_HAS_NXP_MCUX_QDEC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_QDEC)) + +DT_COMPAT_NXP_MCUX_RT_PINCTRL := nxp,mcux-rt-pinctrl + +config DT_HAS_NXP_MCUX_RT_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_RT_PINCTRL)) + +DT_COMPAT_NXP_MCUX_RT11XX_PINCTRL := nxp,mcux-rt11xx-pinctrl + +config DT_HAS_NXP_MCUX_RT11XX_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_RT11XX_PINCTRL)) + +DT_COMPAT_NXP_MCUX_XBAR := nxp,mcux-xbar + +config DT_HAS_NXP_MCUX_XBAR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCUX_XBAR)) + +DT_COMPAT_NXP_MCXC_OSC := nxp,mcxc-osc + +config DT_HAS_NXP_MCXC_OSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCXC_OSC)) + +DT_COMPAT_NXP_MCXE31X_SIUL2_PINCTRL := nxp,mcxe31x-siul2-pinctrl + +config DT_HAS_NXP_MCXE31X_SIUL2_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCXE31X_SIUL2_PINCTRL)) + +DT_COMPAT_NXP_MCXN_PSTATE := nxp,mcxn-pstate + +config DT_HAS_NXP_MCXN_PSTATE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCXN_PSTATE)) + +DT_COMPAT_NXP_MCXW_IEEE802154 := nxp,mcxw-ieee802154 + +config DT_HAS_NXP_MCXW_IEEE802154_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MCXW_IEEE802154)) + +DT_COMPAT_NXP_MICFIL := nxp,micfil + +config DT_HAS_NXP_MICFIL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MICFIL)) + +DT_COMPAT_NXP_MIPI_CSI2RX := nxp,mipi-csi2rx + +config DT_HAS_NXP_MIPI_CSI2RX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MIPI_CSI2RX)) + +DT_COMPAT_NXP_MIPI_DBI_DCNANO_LCDIF := nxp,mipi-dbi-dcnano-lcdif + +config DT_HAS_NXP_MIPI_DBI_DCNANO_LCDIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MIPI_DBI_DCNANO_LCDIF)) + +DT_COMPAT_NXP_MIPI_DBI_FLEXIO_LCDIF := nxp,mipi-dbi-flexio-lcdif + +config DT_HAS_NXP_MIPI_DBI_FLEXIO_LCDIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MIPI_DBI_FLEXIO_LCDIF)) + +DT_COMPAT_NXP_MIPI_DSI_2L := nxp,mipi-dsi-2l + +config DT_HAS_NXP_MIPI_DSI_2L_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MIPI_DSI_2L)) + +DT_COMPAT_NXP_MIPI_DSI_DWC := nxp,mipi-dsi-dwc + +config DT_HAS_NXP_MIPI_DSI_DWC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MIPI_DSI_DWC)) + +DT_COMPAT_NXP_MRCC_RESET := nxp,mrcc-reset + +config DT_HAS_NXP_MRCC_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MRCC_RESET)) + +DT_COMPAT_NXP_MRT := nxp,mrt + +config DT_HAS_NXP_MRT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MRT)) + +DT_COMPAT_NXP_MRT_CHANNEL := nxp,mrt-channel + +config DT_HAS_NXP_MRT_CHANNEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MRT_CHANNEL)) + +DT_COMPAT_NXP_MSF1 := nxp,msf1 + +config DT_HAS_NXP_MSF1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_MSF1)) + +DT_COMPAT_NXP_NBU := nxp,nbu + +config DT_HAS_NXP_NBU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_NBU)) + +DT_COMPAT_NXP_NETC_PTP_CLOCK := nxp,netc-ptp-clock + +config DT_HAS_NXP_NETC_PTP_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_NETC_PTP_CLOCK)) + +DT_COMPAT_NXP_NETC_SWITCH := nxp,netc-switch + +config DT_HAS_NXP_NETC_SWITCH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_NETC_SWITCH)) + +DT_COMPAT_NXP_NX20P3483 := nxp,nx20p3483 + +config DT_HAS_NXP_NX20P3483_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_NX20P3483)) + +DT_COMPAT_NXP_OCOTP := nxp,ocotp + +config DT_HAS_NXP_OCOTP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_OCOTP)) + +DT_COMPAT_NXP_OPAMP := nxp,opamp + +config DT_HAS_NXP_OPAMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_OPAMP)) + +DT_COMPAT_NXP_OPAMP_FAST := nxp,opamp-fast + +config DT_HAS_NXP_OPAMP_FAST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_OPAMP_FAST)) + +DT_COMPAT_NXP_OS_TIMER := nxp,os-timer + +config DT_HAS_NXP_OS_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_OS_TIMER)) + +DT_COMPAT_NXP_P3T1755 := nxp,p3t1755 + +config DT_HAS_NXP_P3T1755_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_P3T1755)) + +DT_COMPAT_NXP_PARALLEL_LCD_CONNECTOR := nxp,parallel-lcd-connector + +config DT_HAS_NXP_PARALLEL_LCD_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PARALLEL_LCD_CONNECTOR)) + +DT_COMPAT_NXP_PCA6408 := nxp,pca6408 + +config DT_HAS_NXP_PCA6408_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA6408)) + +DT_COMPAT_NXP_PCA6416 := nxp,pca6416 + +config DT_HAS_NXP_PCA6416_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA6416)) + +DT_COMPAT_NXP_PCA9420 := nxp,pca9420 + +config DT_HAS_NXP_PCA9420_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9420)) + +DT_COMPAT_NXP_PCA9422 := nxp,pca9422 + +config DT_HAS_NXP_PCA9422_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9422)) + +DT_COMPAT_NXP_PCA9422_CHARGER := nxp,pca9422-charger + +config DT_HAS_NXP_PCA9422_CHARGER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9422_CHARGER)) + +DT_COMPAT_NXP_PCA9422_REGULATOR := nxp,pca9422-regulator + +config DT_HAS_NXP_PCA9422_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9422_REGULATOR)) + +DT_COMPAT_NXP_PCA9533 := nxp,pca9533 + +config DT_HAS_NXP_PCA9533_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9533)) + +DT_COMPAT_NXP_PCA9538 := nxp,pca9538 + +config DT_HAS_NXP_PCA9538_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9538)) + +DT_COMPAT_NXP_PCA9539 := nxp,pca9539 + +config DT_HAS_NXP_PCA9539_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9539)) + +DT_COMPAT_NXP_PCA9554 := nxp,pca9554 + +config DT_HAS_NXP_PCA9554_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9554)) + +DT_COMPAT_NXP_PCA9555 := nxp,pca9555 + +config DT_HAS_NXP_PCA9555_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9555)) + +DT_COMPAT_NXP_PCA95XX := nxp,pca95xx + +config DT_HAS_NXP_PCA95XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA95XX)) + +DT_COMPAT_NXP_PCA9633 := nxp,pca9633 + +config DT_HAS_NXP_PCA9633_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9633)) + +DT_COMPAT_NXP_PCA9685_PWM := nxp,pca9685-pwm + +config DT_HAS_NXP_PCA9685_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCA9685_PWM)) + +DT_COMPAT_NXP_PCAL6408 := nxp,pcal6408 + +config DT_HAS_NXP_PCAL6408_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCAL6408)) + +DT_COMPAT_NXP_PCAL6408A := nxp,pcal6408a + +config DT_HAS_NXP_PCAL6408A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCAL6408A)) + +DT_COMPAT_NXP_PCAL6416 := nxp,pcal6416 + +config DT_HAS_NXP_PCAL6416_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCAL6416)) + +DT_COMPAT_NXP_PCAL6416A := nxp,pcal6416a + +config DT_HAS_NXP_PCAL6416A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCAL6416A)) + +DT_COMPAT_NXP_PCAL6524 := nxp,pcal6524 + +config DT_HAS_NXP_PCAL6524_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCAL6524)) + +DT_COMPAT_NXP_PCAL6534 := nxp,pcal6534 + +config DT_HAS_NXP_PCAL6534_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCAL6534)) + +DT_COMPAT_NXP_PCAL9538 := nxp,pcal9538 + +config DT_HAS_NXP_PCAL9538_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCAL9538)) + +DT_COMPAT_NXP_PCAL9539 := nxp,pcal9539 + +config DT_HAS_NXP_PCAL9539_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCAL9539)) + +DT_COMPAT_NXP_PCAL9722 := nxp,pcal9722 + +config DT_HAS_NXP_PCAL9722_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCAL9722)) + +DT_COMPAT_NXP_PCF2123 := nxp,pcf2123 + +config DT_HAS_NXP_PCF2123_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCF2123)) + +DT_COMPAT_NXP_PCF85063A := nxp,pcf85063a + +config DT_HAS_NXP_PCF85063A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCF85063A)) + +DT_COMPAT_NXP_PCF8523 := nxp,pcf8523 + +config DT_HAS_NXP_PCF8523_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCF8523)) + +DT_COMPAT_NXP_PCF8563 := nxp,pcf8563 + +config DT_HAS_NXP_PCF8563_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCF8563)) + +DT_COMPAT_NXP_PCF857X := nxp,pcf857x + +config DT_HAS_NXP_PCF857X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PCF857X)) + +DT_COMPAT_NXP_PDCFG_POWER := nxp,pdcfg-power + +config DT_HAS_NXP_PDCFG_POWER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PDCFG_POWER)) + +DT_COMPAT_NXP_PF1550 := nxp,pf1550 + +config DT_HAS_NXP_PF1550_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PF1550)) + +DT_COMPAT_NXP_PF1550_CHARGER := nxp,pf1550-charger + +config DT_HAS_NXP_PF1550_CHARGER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PF1550_CHARGER)) + +DT_COMPAT_NXP_PF1550_REGULATOR := nxp,pf1550-regulator + +config DT_HAS_NXP_PF1550_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PF1550_REGULATOR)) + +DT_COMPAT_NXP_PINT := nxp,pint + +config DT_HAS_NXP_PINT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PINT)) + +DT_COMPAT_NXP_PIT := nxp,pit + +config DT_HAS_NXP_PIT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PIT)) + +DT_COMPAT_NXP_PIT_CHANNEL := nxp,pit-channel + +config DT_HAS_NXP_PIT_CHANNEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PIT_CHANNEL)) + +DT_COMPAT_NXP_PLLDIG := nxp,plldig + +config DT_HAS_NXP_PLLDIG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PLLDIG)) + +DT_COMPAT_NXP_PMC_TMPSNS := nxp,pmc-tmpsns + +config DT_HAS_NXP_PMC_TMPSNS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PMC_TMPSNS)) + +DT_COMPAT_NXP_PORT_PINCTRL := nxp,port-pinctrl + +config DT_HAS_NXP_PORT_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PORT_PINCTRL)) + +DT_COMPAT_NXP_PORT_PINMUX := nxp,port-pinmux + +config DT_HAS_NXP_PORT_PINMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PORT_PINMUX)) + +DT_COMPAT_NXP_PXP := nxp,pxp + +config DT_HAS_NXP_PXP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_PXP)) + +DT_COMPAT_NXP_QDEC_S32 := nxp,qdec-s32 + +config DT_HAS_NXP_QDEC_S32_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_QDEC_S32)) + +DT_COMPAT_NXP_QTMR_PWM := nxp,qtmr-pwm + +config DT_HAS_NXP_QTMR_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_QTMR_PWM)) + +DT_COMPAT_NXP_RCM_HWINFO := nxp,rcm-hwinfo + +config DT_HAS_NXP_RCM_HWINFO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RCM_HWINFO)) + +DT_COMPAT_NXP_RDC := nxp,rdc + +config DT_HAS_NXP_RDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RDC)) + +DT_COMPAT_NXP_RSTCTL := nxp,rstctl + +config DT_HAS_NXP_RSTCTL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RSTCTL)) + +DT_COMPAT_NXP_RSTCTL_HWINFO := nxp,rstctl-hwinfo + +config DT_HAS_NXP_RSTCTL_HWINFO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RSTCTL_HWINFO)) + +DT_COMPAT_NXP_RT_IOCON_PINCTRL := nxp,rt-iocon-pinctrl + +config DT_HAS_NXP_RT_IOCON_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RT_IOCON_PINCTRL)) + +DT_COMPAT_NXP_RT600_DSP_CTRL := nxp,rt600-dsp-ctrl + +config DT_HAS_NXP_RT600_DSP_CTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RT600_DSP_CTRL)) + +DT_COMPAT_NXP_RT700_DSP_CTRL_HIFI4 := nxp,rt700-dsp-ctrl-hifi4 + +config DT_HAS_NXP_RT700_DSP_CTRL_HIFI4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RT700_DSP_CTRL_HIFI4)) + +DT_COMPAT_NXP_RTC := nxp,rtc + +config DT_HAS_NXP_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RTC)) + +DT_COMPAT_NXP_RTC_JDP := nxp,rtc-jdp + +config DT_HAS_NXP_RTC_JDP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RTC_JDP)) + +DT_COMPAT_NXP_RTWDOG := nxp,rtwdog + +config DT_HAS_NXP_RTWDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RTWDOG)) + +DT_COMPAT_NXP_RTXXX_DSP_CTRL := nxp,rtxxx-dsp-ctrl + +config DT_HAS_NXP_RTXXX_DSP_CTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RTXXX_DSP_CTRL)) + +DT_COMPAT_NXP_RW_PMU := nxp,rw-pmu + +config DT_HAS_NXP_RW_PMU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RW_PMU)) + +DT_COMPAT_NXP_RW_SOC_CTRL := nxp,rw-soc-ctrl + +config DT_HAS_NXP_RW_SOC_CTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_RW_SOC_CTRL)) + +DT_COMPAT_NXP_S32_ADC_SAR := nxp,s32-adc-sar + +config DT_HAS_NXP_S32_ADC_SAR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_ADC_SAR)) + +DT_COMPAT_NXP_S32_CANXL := nxp,s32-canxl + +config DT_HAS_NXP_S32_CANXL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_CANXL)) + +DT_COMPAT_NXP_S32_CLOCK := nxp,s32-clock + +config DT_HAS_NXP_S32_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_CLOCK)) + +DT_COMPAT_NXP_S32_CRYPTO_HSE_MU := nxp,s32-crypto-hse-mu + +config DT_HAS_NXP_S32_CRYPTO_HSE_MU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_CRYPTO_HSE_MU)) + +DT_COMPAT_NXP_S32_EMIOS := nxp,s32-emios + +config DT_HAS_NXP_S32_EMIOS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_EMIOS)) + +DT_COMPAT_NXP_S32_EMIOS_PWM := nxp,s32-emios-pwm + +config DT_HAS_NXP_S32_EMIOS_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_EMIOS_PWM)) + +DT_COMPAT_NXP_S32_GMAC := nxp,s32-gmac + +config DT_HAS_NXP_S32_GMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_GMAC)) + +DT_COMPAT_NXP_S32_GMAC_MDIO := nxp,s32-gmac-mdio + +config DT_HAS_NXP_S32_GMAC_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_GMAC_MDIO)) + +DT_COMPAT_NXP_S32_LCU := nxp,s32-lcu + +config DT_HAS_NXP_S32_LCU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_LCU)) + +DT_COMPAT_NXP_S32_LINFLEXD := nxp,s32-linflexd + +config DT_HAS_NXP_S32_LINFLEXD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_LINFLEXD)) + +DT_COMPAT_NXP_S32_MC_ME := nxp,s32-mc-me + +config DT_HAS_NXP_S32_MC_ME_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_MC_ME)) + +DT_COMPAT_NXP_S32_MC_RGM := nxp,s32-mc-rgm + +config DT_HAS_NXP_S32_MC_RGM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_MC_RGM)) + +DT_COMPAT_NXP_S32_MRU := nxp,s32-mru + +config DT_HAS_NXP_S32_MRU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_MRU)) + +DT_COMPAT_NXP_S32_NETC_EMDIO := nxp,s32-netc-emdio + +config DT_HAS_NXP_S32_NETC_EMDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_NETC_EMDIO)) + +DT_COMPAT_NXP_S32_NETC_PSI := nxp,s32-netc-psi + +config DT_HAS_NXP_S32_NETC_PSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_NETC_PSI)) + +DT_COMPAT_NXP_S32_NETC_VSI := nxp,s32-netc-vsi + +config DT_HAS_NXP_S32_NETC_VSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_NETC_VSI)) + +DT_COMPAT_NXP_S32_PSI5 := nxp,s32-psi5 + +config DT_HAS_NXP_S32_PSI5_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_PSI5)) + +DT_COMPAT_NXP_S32_QSPI := nxp,s32-qspi + +config DT_HAS_NXP_S32_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_QSPI)) + +DT_COMPAT_NXP_S32_QSPI_DEVICE := nxp,s32-qspi-device + +config DT_HAS_NXP_S32_QSPI_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_QSPI_DEVICE)) + +DT_COMPAT_NXP_S32_QSPI_HYPERFLASH := nxp,s32-qspi-hyperflash + +config DT_HAS_NXP_S32_QSPI_HYPERFLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_QSPI_HYPERFLASH)) + +DT_COMPAT_NXP_S32_QSPI_NOR := nxp,s32-qspi-nor + +config DT_HAS_NXP_S32_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_QSPI_NOR)) + +DT_COMPAT_NXP_S32_QSPI_SFP_FRAD := nxp,s32-qspi-sfp-frad + +config DT_HAS_NXP_S32_QSPI_SFP_FRAD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_QSPI_SFP_FRAD)) + +DT_COMPAT_NXP_S32_QSPI_SFP_MDAD := nxp,s32-qspi-sfp-mdad + +config DT_HAS_NXP_S32_QSPI_SFP_MDAD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_QSPI_SFP_MDAD)) + +DT_COMPAT_NXP_S32_SENT := nxp,s32-sent + +config DT_HAS_NXP_S32_SENT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_SENT)) + +DT_COMPAT_NXP_S32_SPI := nxp,s32-spi + +config DT_HAS_NXP_S32_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_SPI)) + +DT_COMPAT_NXP_S32_SWT := nxp,s32-swt + +config DT_HAS_NXP_S32_SWT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_SWT)) + +DT_COMPAT_NXP_S32_SYS_TIMER := nxp,s32-sys-timer + +config DT_HAS_NXP_S32_SYS_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_SYS_TIMER)) + +DT_COMPAT_NXP_S32_TRGMUX := nxp,s32-trgmux + +config DT_HAS_NXP_S32_TRGMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_TRGMUX)) + +DT_COMPAT_NXP_S32_WKPU := nxp,s32-wkpu + +config DT_HAS_NXP_S32_WKPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_WKPU)) + +DT_COMPAT_NXP_S32_XSPI := nxp,s32-xspi + +config DT_HAS_NXP_S32_XSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_XSPI)) + +DT_COMPAT_NXP_S32_XSPI_DEVICE := nxp,s32-xspi-device + +config DT_HAS_NXP_S32_XSPI_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_XSPI_DEVICE)) + +DT_COMPAT_NXP_S32_XSPI_HYPERRAM := nxp,s32-xspi-hyperram + +config DT_HAS_NXP_S32_XSPI_HYPERRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_XSPI_HYPERRAM)) + +DT_COMPAT_NXP_S32_XSPI_SFP_FRAD := nxp,s32-xspi-sfp-frad + +config DT_HAS_NXP_S32_XSPI_SFP_FRAD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_XSPI_SFP_FRAD)) + +DT_COMPAT_NXP_S32_XSPI_SFP_MDAD := nxp,s32-xspi-sfp-mdad + +config DT_HAS_NXP_S32_XSPI_SFP_MDAD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32_XSPI_SFP_MDAD)) + +DT_COMPAT_NXP_S32K3_PMC := nxp,s32k3-pmc + +config DT_HAS_NXP_S32K3_PMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32K3_PMC)) + +DT_COMPAT_NXP_S32K3_SIUL2_PINCTRL := nxp,s32k3-siul2-pinctrl + +config DT_HAS_NXP_S32K3_SIUL2_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32K3_SIUL2_PINCTRL)) + +DT_COMPAT_NXP_S32K5_PINCTRL := nxp,s32k5-pinctrl + +config DT_HAS_NXP_S32K5_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32K5_PINCTRL)) + +DT_COMPAT_NXP_S32ZE_SIUL2_PINCTRL := nxp,s32ze-siul2-pinctrl + +config DT_HAS_NXP_S32ZE_SIUL2_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_S32ZE_SIUL2_PINCTRL)) + +DT_COMPAT_NXP_SAR_ADC := nxp,sar-adc + +config DT_HAS_NXP_SAR_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SAR_ADC)) + +DT_COMPAT_NXP_SC18IM704 := nxp,sc18im704 + +config DT_HAS_NXP_SC18IM704_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SC18IM704)) + +DT_COMPAT_NXP_SC18IM704_GPIO := nxp,sc18im704-gpio + +config DT_HAS_NXP_SC18IM704_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SC18IM704_GPIO)) + +DT_COMPAT_NXP_SC18IM704_I2C := nxp,sc18im704-i2c + +config DT_HAS_NXP_SC18IM704_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SC18IM704_I2C)) + +DT_COMPAT_NXP_SC18IS606 := nxp,sc18is606 + +config DT_HAS_NXP_SC18IS606_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SC18IS606)) + +DT_COMPAT_NXP_SC18IS606_GPIO := nxp,sc18is606-gpio + +config DT_HAS_NXP_SC18IS606_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SC18IS606_GPIO)) + +DT_COMPAT_NXP_SC18IS606_SPI := nxp,sc18is606-spi + +config DT_HAS_NXP_SC18IS606_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SC18IS606_SPI)) + +DT_COMPAT_NXP_SCG_K4 := nxp,scg-k4 + +config DT_HAS_NXP_SCG_K4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SCG_K4)) + +DT_COMPAT_NXP_SCMI_CPU := nxp,scmi-cpu + +config DT_HAS_NXP_SCMI_CPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SCMI_CPU)) + +DT_COMPAT_NXP_SCTIMER_PWM := nxp,sctimer-pwm + +config DT_HAS_NXP_SCTIMER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SCTIMER_PWM)) + +DT_COMPAT_NXP_SCU_PD := nxp,scu-pd + +config DT_HAS_NXP_SCU_PD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SCU_PD)) + +DT_COMPAT_NXP_SDMA := nxp,sdma + +config DT_HAS_NXP_SDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SDMA)) + +DT_COMPAT_NXP_SEMA42 := nxp,sema42 + +config DT_HAS_NXP_SEMA42_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SEMA42)) + +DT_COMPAT_NXP_SIM_UUID := nxp,sim-uuid + +config DT_HAS_NXP_SIM_UUID_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SIM_UUID)) + +DT_COMPAT_NXP_SIUL2_EIRQ := nxp,siul2-eirq + +config DT_HAS_NXP_SIUL2_EIRQ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SIUL2_EIRQ)) + +DT_COMPAT_NXP_SIUL2_GPIO := nxp,siul2-gpio + +config DT_HAS_NXP_SIUL2_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SIUL2_GPIO)) + +DT_COMPAT_NXP_SMARTDMA := nxp,smartdma + +config DT_HAS_NXP_SMARTDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SMARTDMA)) + +DT_COMPAT_NXP_SOF_HOST_DMA := nxp,sof-host-dma + +config DT_HAS_NXP_SOF_HOST_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SOF_HOST_DMA)) + +DT_COMPAT_NXP_SPC := nxp,spc + +config DT_HAS_NXP_SPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SPC)) + +DT_COMPAT_NXP_STM := nxp,stm + +config DT_HAS_NXP_STM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_STM)) + +DT_COMPAT_NXP_SYSMPU := nxp,sysmpu + +config DT_HAS_NXP_SYSMPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_SYSMPU)) + +DT_COMPAT_NXP_T1S_PHY := nxp,t1s-phy + +config DT_HAS_NXP_T1S_PHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_T1S_PHY)) + +DT_COMPAT_NXP_TEMPMON := nxp,tempmon + +config DT_HAS_NXP_TEMPMON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_TEMPMON)) + +DT_COMPAT_NXP_TEMPSENSE := nxp,tempsense + +config DT_HAS_NXP_TEMPSENSE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_TEMPSENSE)) + +DT_COMPAT_NXP_TJA1103 := nxp,tja1103 + +config DT_HAS_NXP_TJA1103_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_TJA1103)) + +DT_COMPAT_NXP_TJA11XX := nxp,tja11xx + +config DT_HAS_NXP_TJA11XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_TJA11XX)) + +DT_COMPAT_NXP_TMPSNS := nxp,tmpsns + +config DT_HAS_NXP_TMPSNS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_TMPSNS)) + +DT_COMPAT_NXP_TPM_QDEC := nxp,tpm-qdec + +config DT_HAS_NXP_TPM_QDEC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_TPM_QDEC)) + +DT_COMPAT_NXP_TPM_TIMER := nxp,tpm-timer + +config DT_HAS_NXP_TPM_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_TPM_TIMER)) + +DT_COMPAT_NXP_TSI_INPUT := nxp,tsi-input + +config DT_HAS_NXP_TSI_INPUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_TSI_INPUT)) + +DT_COMPAT_NXP_UHC_EHCI := nxp,uhc-ehci + +config DT_HAS_NXP_UHC_EHCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_UHC_EHCI)) + +DT_COMPAT_NXP_UHC_IP3516HS := nxp,uhc-ip3516hs + +config DT_HAS_NXP_UHC_IP3516HS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_UHC_IP3516HS)) + +DT_COMPAT_NXP_UHC_KHCI := nxp,uhc-khci + +config DT_HAS_NXP_UHC_KHCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_UHC_KHCI)) + +DT_COMPAT_NXP_UHC_OHCI := nxp,uhc-ohci + +config DT_HAS_NXP_UHC_OHCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_UHC_OHCI)) + +DT_COMPAT_NXP_USBPHY := nxp,usbphy + +config DT_HAS_NXP_USBPHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_USBPHY)) + +DT_COMPAT_NXP_VBAT := nxp,vbat + +config DT_HAS_NXP_VBAT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_VBAT)) + +DT_COMPAT_NXP_VF610_ADC := nxp,vf610-adc + +config DT_HAS_NXP_VF610_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_VF610_ADC)) + +DT_COMPAT_NXP_VIDEO_SMARTDMA := nxp,video-smartdma + +config DT_HAS_NXP_VIDEO_SMARTDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_VIDEO_SMARTDMA)) + +DT_COMPAT_NXP_VREF := nxp,vref + +config DT_HAS_NXP_VREF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_VREF)) + +DT_COMPAT_NXP_VREFV1 := nxp,vrefv1 + +config DT_HAS_NXP_VREFV1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_VREFV1)) + +DT_COMPAT_NXP_WDOG32 := nxp,wdog32 + +config DT_HAS_NXP_WDOG32_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_WDOG32)) + +DT_COMPAT_NXP_WIFI := nxp,wifi + +config DT_HAS_NXP_WIFI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_WIFI)) + +DT_COMPAT_NXP_WUU := nxp,wuu + +config DT_HAS_NXP_WUU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_WUU)) + +DT_COMPAT_NXP_XSPI := nxp,xspi + +config DT_HAS_NXP_XSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_XSPI)) + +DT_COMPAT_NXP_XSPI_NOR := nxp,xspi-nor + +config DT_HAS_NXP_XSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_XSPI_NOR)) + +DT_COMPAT_NXP_XSPI_PSRAM := nxp,xspi-psram + +config DT_HAS_NXP_XSPI_PSRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_NXP_XSPI_PSRAM)) + +DT_COMPAT_OMRON_2SMPB_02E := omron,2smpb-02e + +config DT_HAS_OMRON_2SMPB_02E_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OMRON_2SMPB_02E)) + +DT_COMPAT_OMRON_D6F_P0001 := omron,d6f-p0001 + +config DT_HAS_OMRON_D6F_P0001_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OMRON_D6F_P0001)) + +DT_COMPAT_OMRON_D6F_P0010 := omron,d6f-p0010 + +config DT_HAS_OMRON_D6F_P0010_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OMRON_D6F_P0010)) + +DT_COMPAT_ONNN_FUSB307_TCPC := onnn,fusb307-tcpc + +config DT_HAS_ONNN_FUSB307_TCPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ONNN_FUSB307_TCPC)) + +DT_COMPAT_ONNN_LC709203F := onnn,lc709203f + +config DT_HAS_ONNN_LC709203F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ONNN_LC709203F)) + +DT_COMPAT_ONNN_NCP5623 := onnn,ncp5623 + +config DT_HAS_ONNN_NCP5623_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ONNN_NCP5623)) + +DT_COMPAT_ONNN_NCT75 := onnn,nct75 + +config DT_HAS_ONNN_NCT75_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ONNN_NCT75)) + +DT_COMPAT_OPENCORES_OR1K_PIC_LEVEL := opencores,or1k-pic-level + +config DT_HAS_OPENCORES_OR1K_PIC_LEVEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENCORES_OR1K_PIC_LEVEL)) + +DT_COMPAT_OPENCORES_SPI_SIMPLE := opencores,spi-simple + +config DT_HAS_OPENCORES_SPI_SIMPLE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENCORES_SPI_SIMPLE)) + +DT_COMPAT_OPENHWGROUP_CVA6 := openhwgroup,cva6 + +config DT_HAS_OPENHWGROUP_CVA6_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENHWGROUP_CVA6)) + +DT_COMPAT_OPENISA_RI5CY := openisa,ri5cy + +config DT_HAS_OPENISA_RI5CY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RI5CY)) + +DT_COMPAT_OPENISA_RV32M1_EVENT_UNIT := openisa,rv32m1-event-unit + +config DT_HAS_OPENISA_RV32M1_EVENT_UNIT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_EVENT_UNIT)) + +DT_COMPAT_OPENISA_RV32M1_FTFE := openisa,rv32m1-ftfe + +config DT_HAS_OPENISA_RV32M1_FTFE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_FTFE)) + +DT_COMPAT_OPENISA_RV32M1_GENFSK := openisa,rv32m1-genfsk + +config DT_HAS_OPENISA_RV32M1_GENFSK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_GENFSK)) + +DT_COMPAT_OPENISA_RV32M1_GPIO := openisa,rv32m1-gpio + +config DT_HAS_OPENISA_RV32M1_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_GPIO)) + +DT_COMPAT_OPENISA_RV32M1_INTMUX := openisa,rv32m1-intmux + +config DT_HAS_OPENISA_RV32M1_INTMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_INTMUX)) + +DT_COMPAT_OPENISA_RV32M1_INTMUX_CH := openisa,rv32m1-intmux-ch + +config DT_HAS_OPENISA_RV32M1_INTMUX_CH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_INTMUX_CH)) + +DT_COMPAT_OPENISA_RV32M1_LPI2C := openisa,rv32m1-lpi2c + +config DT_HAS_OPENISA_RV32M1_LPI2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_LPI2C)) + +DT_COMPAT_OPENISA_RV32M1_LPSPI := openisa,rv32m1-lpspi + +config DT_HAS_OPENISA_RV32M1_LPSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_LPSPI)) + +DT_COMPAT_OPENISA_RV32M1_LPTMR := openisa,rv32m1-lptmr + +config DT_HAS_OPENISA_RV32M1_LPTMR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_LPTMR)) + +DT_COMPAT_OPENISA_RV32M1_LPUART := openisa,rv32m1-lpuart + +config DT_HAS_OPENISA_RV32M1_LPUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_LPUART)) + +DT_COMPAT_OPENISA_RV32M1_PCC := openisa,rv32m1-pcc + +config DT_HAS_OPENISA_RV32M1_PCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_PCC)) + +DT_COMPAT_OPENISA_RV32M1_PINCTRL := openisa,rv32m1-pinctrl + +config DT_HAS_OPENISA_RV32M1_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_PINCTRL)) + +DT_COMPAT_OPENISA_RV32M1_PINMUX := openisa,rv32m1-pinmux + +config DT_HAS_OPENISA_RV32M1_PINMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_PINMUX)) + +DT_COMPAT_OPENISA_RV32M1_TPM := openisa,rv32m1-tpm + +config DT_HAS_OPENISA_RV32M1_TPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_TPM)) + +DT_COMPAT_OPENISA_RV32M1_TRNG := openisa,rv32m1-trng + +config DT_HAS_OPENISA_RV32M1_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_RV32M1_TRNG)) + +DT_COMPAT_OPENISA_ZERO_RI5CY := openisa,zero-ri5cy + +config DT_HAS_OPENISA_ZERO_RI5CY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENISA_ZERO_RI5CY)) + +DT_COMPAT_OPENTHREAD_CONFIG := openthread,config + +config DT_HAS_OPENTHREAD_CONFIG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OPENTHREAD_CONFIG)) + +DT_COMPAT_ORISETECH_OTM8009A := orisetech,otm8009a + +config DT_HAS_ORISETECH_OTM8009A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ORISETECH_OTM8009A)) + +DT_COMPAT_OVTI_OV2640 := ovti,ov2640 + +config DT_HAS_OVTI_OV2640_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OVTI_OV2640)) + +DT_COMPAT_OVTI_OV5640 := ovti,ov5640 + +config DT_HAS_OVTI_OV5640_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OVTI_OV5640)) + +DT_COMPAT_OVTI_OV5642 := ovti,ov5642 + +config DT_HAS_OVTI_OV5642_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OVTI_OV5642)) + +DT_COMPAT_OVTI_OV7670 := ovti,ov7670 + +config DT_HAS_OVTI_OV7670_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OVTI_OV7670)) + +DT_COMPAT_OVTI_OV7675 := ovti,ov7675 + +config DT_HAS_OVTI_OV7675_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OVTI_OV7675)) + +DT_COMPAT_OVTI_OV7725 := ovti,ov7725 + +config DT_HAS_OVTI_OV7725_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OVTI_OV7725)) + +DT_COMPAT_OVTI_OV9655 := ovti,ov9655 + +config DT_HAS_OVTI_OV9655_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_OVTI_OV9655)) + +DT_COMPAT_PANASONIC_AMG88XX := panasonic,amg88xx + +config DT_HAS_PANASONIC_AMG88XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PANASONIC_AMG88XX)) + +DT_COMPAT_PANASONIC_REDUCED_ARDUINO_HEADER := panasonic,reduced-arduino-header + +config DT_HAS_PANASONIC_REDUCED_ARDUINO_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PANASONIC_REDUCED_ARDUINO_HEADER)) + +DT_COMPAT_PARADE_PS8XXX := parade,ps8xxx + +config DT_HAS_PARADE_PS8XXX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PARADE_PS8XXX)) + +DT_COMPAT_PARADE_TMA525B := parade,tma525b + +config DT_HAS_PARADE_TMA525B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PARADE_TMA525B)) + +DT_COMPAT_PARTICLE_GEN3_HEADER := particle-gen3-header + +config DT_HAS_PARTICLE_GEN3_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PARTICLE_GEN3_HEADER)) + +DT_COMPAT_PCI_HOST_ECAM_GENERIC := pci-host-ecam-generic + +config DT_HAS_PCI_HOST_ECAM_GENERIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PCI_HOST_ECAM_GENERIC)) + +DT_COMPAT_PCIE_CONTROLLER := pcie-controller + +config DT_HAS_PCIE_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PCIE_CONTROLLER)) + +DT_COMPAT_PEACEFAIR_PZEM004T := peacefair,pzem004t + +config DT_HAS_PEACEFAIR_PZEM004T_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PEACEFAIR_PZEM004T)) + +DT_COMPAT_PHOSENSE_XBR818 := phosense,xbr818 + +config DT_HAS_PHOSENSE_XBR818_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PHOSENSE_XBR818)) + +DT_COMPAT_PIXART_PAA3905 := pixart,paa3905 + +config DT_HAS_PIXART_PAA3905_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PIXART_PAA3905)) + +DT_COMPAT_PIXART_PAJ7620 := pixart,paj7620 + +config DT_HAS_PIXART_PAJ7620_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PIXART_PAJ7620)) + +DT_COMPAT_PIXART_PAT912X := pixart,pat912x + +config DT_HAS_PIXART_PAT912X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PIXART_PAT912X)) + +DT_COMPAT_PIXART_PAT9136 := pixart,pat9136 + +config DT_HAS_PIXART_PAT9136_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PIXART_PAT9136)) + +DT_COMPAT_PIXART_PAW32XX := pixart,paw32xx + +config DT_HAS_PIXART_PAW32XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PIXART_PAW32XX)) + +DT_COMPAT_PIXART_PMW3610 := pixart,pmw3610 + +config DT_HAS_PIXART_PMW3610_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PIXART_PMW3610)) + +DT_COMPAT_PLANTOWER_PMS7003 := plantower,pms7003 + +config DT_HAS_PLANTOWER_PMS7003_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PLANTOWER_PMS7003)) + +DT_COMPAT_PNI_RM3100 := pni,rm3100 + +config DT_HAS_PNI_RM3100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PNI_RM3100)) + +DT_COMPAT_POWER_DOMAIN := power-domain + +config DT_HAS_POWER_DOMAIN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_POWER_DOMAIN)) + +DT_COMPAT_POWER_DOMAIN_GPIO := power-domain-gpio + +config DT_HAS_POWER_DOMAIN_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_POWER_DOMAIN_GPIO)) + +DT_COMPAT_POWER_DOMAIN_GPIO_MONITOR := power-domain-gpio-monitor + +config DT_HAS_POWER_DOMAIN_GPIO_MONITOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_POWER_DOMAIN_GPIO_MONITOR)) + +DT_COMPAT_POWER_DOMAIN_SOC_STATE_CHANGE := power-domain-soc-state-change + +config DT_HAS_POWER_DOMAIN_SOC_STATE_CHANGE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_POWER_DOMAIN_SOC_STATE_CHANGE)) + +DT_COMPAT_PTC_PT6314 := ptc,pt6314 + +config DT_HAS_PTC_PT6314_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PTC_PT6314)) + +DT_COMPAT_PWM_CLOCK := pwm-clock + +config DT_HAS_PWM_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PWM_CLOCK)) + +DT_COMPAT_PWM_LEDS := pwm-leds + +config DT_HAS_PWM_LEDS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_PWM_LEDS)) + +DT_COMPAT_QCA_AR8031 := qca,ar8031 + +config DT_HAS_QCA_AR8031_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QCA_AR8031)) + +DT_COMPAT_QEMU_FW_CFG_IOPORT := qemu,fw-cfg-ioport + +config DT_HAS_QEMU_FW_CFG_IOPORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QEMU_FW_CFG_IOPORT)) + +DT_COMPAT_QEMU_FW_CFG_MMIO := qemu,fw-cfg-mmio + +config DT_HAS_QEMU_FW_CFG_MMIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QEMU_FW_CFG_MMIO)) + +DT_COMPAT_QEMU_IVSHMEM := qemu,ivshmem + +config DT_HAS_QEMU_IVSHMEM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QEMU_IVSHMEM)) + +DT_COMPAT_QEMU_RAMFB := qemu,ramfb + +config DT_HAS_QEMU_RAMFB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QEMU_RAMFB)) + +DT_COMPAT_QEMU_RISCV_VIRT := qemu,riscv-virt + +config DT_HAS_QEMU_RISCV_VIRT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QEMU_RISCV_VIRT)) + +DT_COMPAT_QST_QMI8658A := qst,qmi8658a + +config DT_HAS_QST_QMI8658A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QST_QMI8658A)) + +DT_COMPAT_QUECTEL_BG95 := quectel,bg95 + +config DT_HAS_QUECTEL_BG95_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUECTEL_BG95)) + +DT_COMPAT_QUECTEL_BG96 := quectel,bg96 + +config DT_HAS_QUECTEL_BG96_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUECTEL_BG96)) + +DT_COMPAT_QUECTEL_BG9X := quectel,bg9x + +config DT_HAS_QUECTEL_BG9X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUECTEL_BG9X)) + +DT_COMPAT_QUECTEL_EG25_G := quectel,eg25-g + +config DT_HAS_QUECTEL_EG25_G_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUECTEL_EG25_G)) + +DT_COMPAT_QUECTEL_EG800Q := quectel,eg800q + +config DT_HAS_QUECTEL_EG800Q_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUECTEL_EG800Q)) + +DT_COMPAT_QUECTEL_LC26G := quectel,lc26g + +config DT_HAS_QUECTEL_LC26G_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUECTEL_LC26G)) + +DT_COMPAT_QUECTEL_LC76G := quectel,lc76g + +config DT_HAS_QUECTEL_LC76G_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUECTEL_LC76G)) + +DT_COMPAT_QUECTEL_LC86G := quectel,lc86g + +config DT_HAS_QUECTEL_LC86G_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUECTEL_LC86G)) + +DT_COMPAT_QUICKLOGIC_EOS_S3_GPIO := quicklogic,eos-s3-gpio + +config DT_HAS_QUICKLOGIC_EOS_S3_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUICKLOGIC_EOS_S3_GPIO)) + +DT_COMPAT_QUICKLOGIC_EOS_S3_PINCTRL := quicklogic,eos-s3-pinctrl + +config DT_HAS_QUICKLOGIC_EOS_S3_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUICKLOGIC_EOS_S3_PINCTRL)) + +DT_COMPAT_QUICKLOGIC_USBSERIALPORT_S3B := quicklogic,usbserialport-s3b + +config DT_HAS_QUICKLOGIC_USBSERIALPORT_S3B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_QUICKLOGIC_USBSERIALPORT_S3B)) + +DT_COMPAT_RADIO_FEM_TWO_CTRL_PINS := radio-fem-two-ctrl-pins + +config DT_HAS_RADIO_FEM_TWO_CTRL_PINS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RADIO_FEM_TWO_CTRL_PINS)) + +DT_COMPAT_RADIO_GPIO_COEX := radio-gpio-coex + +config DT_HAS_RADIO_GPIO_COEX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RADIO_GPIO_COEX)) + +DT_COMPAT_RASPBERRYPI_CORE_SUPPLY_REGULATOR := raspberrypi,core-supply-regulator + +config DT_HAS_RASPBERRYPI_CORE_SUPPLY_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_CORE_SUPPLY_REGULATOR)) + +DT_COMPAT_RASPBERRYPI_CSI_CONNECTOR := raspberrypi,csi-connector + +config DT_HAS_RASPBERRYPI_CSI_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_CSI_CONNECTOR)) + +DT_COMPAT_RASPBERRYPI_PICO_ADC := raspberrypi,pico-adc + +config DT_HAS_RASPBERRYPI_PICO_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_ADC)) + +DT_COMPAT_RASPBERRYPI_PICO_CLOCK := raspberrypi,pico-clock + +config DT_HAS_RASPBERRYPI_PICO_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_CLOCK)) + +DT_COMPAT_RASPBERRYPI_PICO_CLOCK_CONTROLLER := raspberrypi,pico-clock-controller + +config DT_HAS_RASPBERRYPI_PICO_CLOCK_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_CLOCK_CONTROLLER)) + +DT_COMPAT_RASPBERRYPI_PICO_DMA := raspberrypi,pico-dma + +config DT_HAS_RASPBERRYPI_PICO_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_DMA)) + +DT_COMPAT_RASPBERRYPI_PICO_FLASH_CONTROLLER := raspberrypi,pico-flash-controller + +config DT_HAS_RASPBERRYPI_PICO_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_FLASH_CONTROLLER)) + +DT_COMPAT_RASPBERRYPI_PICO_GPIO := raspberrypi,pico-gpio + +config DT_HAS_RASPBERRYPI_PICO_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_GPIO)) + +DT_COMPAT_RASPBERRYPI_PICO_GPIO_PORT := raspberrypi,pico-gpio-port + +config DT_HAS_RASPBERRYPI_PICO_GPIO_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_GPIO_PORT)) + +DT_COMPAT_RASPBERRYPI_PICO_HEADER := raspberrypi,pico-header + +config DT_HAS_RASPBERRYPI_PICO_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_HEADER)) + +DT_COMPAT_RASPBERRYPI_PICO_I2C := raspberrypi,pico-i2c + +config DT_HAS_RASPBERRYPI_PICO_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_I2C)) + +DT_COMPAT_RASPBERRYPI_PICO_MBOX := raspberrypi,pico-mbox + +config DT_HAS_RASPBERRYPI_PICO_MBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_MBOX)) + +DT_COMPAT_RASPBERRYPI_PICO_MIPI_DBI_PIO := raspberrypi,pico-mipi-dbi-pio + +config DT_HAS_RASPBERRYPI_PICO_MIPI_DBI_PIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_MIPI_DBI_PIO)) + +DT_COMPAT_RASPBERRYPI_PICO_PINCTRL := raspberrypi,pico-pinctrl + +config DT_HAS_RASPBERRYPI_PICO_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_PINCTRL)) + +DT_COMPAT_RASPBERRYPI_PICO_PIO := raspberrypi,pico-pio + +config DT_HAS_RASPBERRYPI_PICO_PIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_PIO)) + +DT_COMPAT_RASPBERRYPI_PICO_PIO_DEVICE := raspberrypi,pico-pio-device + +config DT_HAS_RASPBERRYPI_PICO_PIO_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_PIO_DEVICE)) + +DT_COMPAT_RASPBERRYPI_PICO_PIT := raspberrypi,pico-pit + +config DT_HAS_RASPBERRYPI_PICO_PIT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_PIT)) + +DT_COMPAT_RASPBERRYPI_PICO_PIT_CHANNEL := raspberrypi,pico-pit-channel + +config DT_HAS_RASPBERRYPI_PICO_PIT_CHANNEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_PIT_CHANNEL)) + +DT_COMPAT_RASPBERRYPI_PICO_PLL := raspberrypi,pico-pll + +config DT_HAS_RASPBERRYPI_PICO_PLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_PLL)) + +DT_COMPAT_RASPBERRYPI_PICO_PWM := raspberrypi,pico-pwm + +config DT_HAS_RASPBERRYPI_PICO_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_PWM)) + +DT_COMPAT_RASPBERRYPI_PICO_RESET := raspberrypi,pico-reset + +config DT_HAS_RASPBERRYPI_PICO_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_RESET)) + +DT_COMPAT_RASPBERRYPI_PICO_RNG := raspberrypi,pico-rng + +config DT_HAS_RASPBERRYPI_PICO_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_RNG)) + +DT_COMPAT_RASPBERRYPI_PICO_ROSC := raspberrypi,pico-rosc + +config DT_HAS_RASPBERRYPI_PICO_ROSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_ROSC)) + +DT_COMPAT_RASPBERRYPI_PICO_RTC := raspberrypi,pico-rtc + +config DT_HAS_RASPBERRYPI_PICO_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_RTC)) + +DT_COMPAT_RASPBERRYPI_PICO_SHA256 := raspberrypi,pico-sha256 + +config DT_HAS_RASPBERRYPI_PICO_SHA256_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_SHA256)) + +DT_COMPAT_RASPBERRYPI_PICO_SIO := raspberrypi,pico-sio + +config DT_HAS_RASPBERRYPI_PICO_SIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_SIO)) + +DT_COMPAT_RASPBERRYPI_PICO_SPI := raspberrypi,pico-spi + +config DT_HAS_RASPBERRYPI_PICO_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_SPI)) + +DT_COMPAT_RASPBERRYPI_PICO_SPI_PIO := raspberrypi,pico-spi-pio + +config DT_HAS_RASPBERRYPI_PICO_SPI_PIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_SPI_PIO)) + +DT_COMPAT_RASPBERRYPI_PICO_TEMP := raspberrypi,pico-temp + +config DT_HAS_RASPBERRYPI_PICO_TEMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_TEMP)) + +DT_COMPAT_RASPBERRYPI_PICO_TIMER := raspberrypi,pico-timer + +config DT_HAS_RASPBERRYPI_PICO_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_TIMER)) + +DT_COMPAT_RASPBERRYPI_PICO_UART := raspberrypi,pico-uart + +config DT_HAS_RASPBERRYPI_PICO_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_UART)) + +DT_COMPAT_RASPBERRYPI_PICO_UART_PIO := raspberrypi,pico-uart-pio + +config DT_HAS_RASPBERRYPI_PICO_UART_PIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_UART_PIO)) + +DT_COMPAT_RASPBERRYPI_PICO_USBD := raspberrypi,pico-usbd + +config DT_HAS_RASPBERRYPI_PICO_USBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_USBD)) + +DT_COMPAT_RASPBERRYPI_PICO_WATCHDOG := raspberrypi,pico-watchdog + +config DT_HAS_RASPBERRYPI_PICO_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_WATCHDOG)) + +DT_COMPAT_RASPBERRYPI_PICO_XOSC := raspberrypi,pico-xosc + +config DT_HAS_RASPBERRYPI_PICO_XOSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_PICO_XOSC)) + +DT_COMPAT_RASPBERRYPI_RP1_GPIO := raspberrypi,rp1-gpio + +config DT_HAS_RASPBERRYPI_RP1_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_RP1_GPIO)) + +DT_COMPAT_RASPBERRYPI_40PINS_HEADER := raspberrypi-40pins-header + +config DT_HAS_RASPBERRYPI_40PINS_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RASPBERRYPI_40PINS_HEADER)) + +DT_COMPAT_RAYDIUM_RM67162 := raydium,rm67162 + +config DT_HAS_RAYDIUM_RM67162_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RAYDIUM_RM67162)) + +DT_COMPAT_RAYDIUM_RM68200 := raydium,rm68200 + +config DT_HAS_RAYDIUM_RM68200_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RAYDIUM_RM68200)) + +DT_COMPAT_REALTEK_AMEBA_GPIO := realtek,ameba-gpio + +config DT_HAS_REALTEK_AMEBA_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_AMEBA_GPIO)) + +DT_COMPAT_REALTEK_AMEBA_LOGUART := realtek,ameba-loguart + +config DT_HAS_REALTEK_AMEBA_LOGUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_AMEBA_LOGUART)) + +DT_COMPAT_REALTEK_AMEBA_PINCTRL := realtek,ameba-pinctrl + +config DT_HAS_REALTEK_AMEBA_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_AMEBA_PINCTRL)) + +DT_COMPAT_REALTEK_AMEBA_RCC := realtek,ameba-rcc + +config DT_HAS_REALTEK_AMEBA_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_AMEBA_RCC)) + +DT_COMPAT_REALTEK_BEE_BASIC_TIMER := realtek,bee-basic-timer + +config DT_HAS_REALTEK_BEE_BASIC_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_BEE_BASIC_TIMER)) + +DT_COMPAT_REALTEK_BEE_BT_HCI := realtek,bee-bt-hci + +config DT_HAS_REALTEK_BEE_BT_HCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_BEE_BT_HCI)) + +DT_COMPAT_REALTEK_BEE_CCTL := realtek,bee-cctl + +config DT_HAS_REALTEK_BEE_CCTL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_BEE_CCTL)) + +DT_COMPAT_REALTEK_BEE_COUNTER_TIMER := realtek,bee-counter-timer + +config DT_HAS_REALTEK_BEE_COUNTER_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_BEE_COUNTER_TIMER)) + +DT_COMPAT_REALTEK_BEE_ENHANCED_TIMER := realtek,bee-enhanced-timer + +config DT_HAS_REALTEK_BEE_ENHANCED_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_BEE_ENHANCED_TIMER)) + +DT_COMPAT_REALTEK_BEE_GPIO := realtek,bee-gpio + +config DT_HAS_REALTEK_BEE_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_BEE_GPIO)) + +DT_COMPAT_REALTEK_BEE_KEYSCAN := realtek,bee-keyscan + +config DT_HAS_REALTEK_BEE_KEYSCAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_BEE_KEYSCAN)) + +DT_COMPAT_REALTEK_BEE_PINCTRL := realtek,bee-pinctrl + +config DT_HAS_REALTEK_BEE_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_BEE_PINCTRL)) + +DT_COMPAT_REALTEK_BEE_TIMER := realtek,bee-timer + +config DT_HAS_REALTEK_BEE_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_BEE_TIMER)) + +DT_COMPAT_REALTEK_BEE_UART := realtek,bee-uart + +config DT_HAS_REALTEK_BEE_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_BEE_UART)) + +DT_COMPAT_REALTEK_RTL8211F := realtek,rtl8211f + +config DT_HAS_REALTEK_RTL8211F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTL8211F)) + +DT_COMPAT_REALTEK_RTS5817_CLOCK := realtek,rts5817-clock + +config DT_HAS_REALTEK_RTS5817_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5817_CLOCK)) + +DT_COMPAT_REALTEK_RTS5817_PINCTRL := realtek,rts5817-pinctrl + +config DT_HAS_REALTEK_RTS5817_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5817_PINCTRL)) + +DT_COMPAT_REALTEK_RTS5817_RESET := realtek,rts5817-reset + +config DT_HAS_REALTEK_RTS5817_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5817_RESET)) + +DT_COMPAT_REALTEK_RTS5817_WATCHDOG := realtek,rts5817-watchdog + +config DT_HAS_REALTEK_RTS5817_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5817_WATCHDOG)) + +DT_COMPAT_REALTEK_RTS5912_ADC := realtek,rts5912-adc + +config DT_HAS_REALTEK_RTS5912_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_ADC)) + +DT_COMPAT_REALTEK_RTS5912_BBRAM := realtek,rts5912-bbram + +config DT_HAS_REALTEK_RTS5912_BBRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_BBRAM)) + +DT_COMPAT_REALTEK_RTS5912_ESPI := realtek,rts5912-espi + +config DT_HAS_REALTEK_RTS5912_ESPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_ESPI)) + +DT_COMPAT_REALTEK_RTS5912_FLASH_CONTROLLER := realtek,rts5912-flash-controller + +config DT_HAS_REALTEK_RTS5912_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_FLASH_CONTROLLER)) + +DT_COMPAT_REALTEK_RTS5912_GPIO := realtek,rts5912-gpio + +config DT_HAS_REALTEK_RTS5912_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_GPIO)) + +DT_COMPAT_REALTEK_RTS5912_I2C := realtek,rts5912-i2c + +config DT_HAS_REALTEK_RTS5912_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_I2C)) + +DT_COMPAT_REALTEK_RTS5912_KBD := realtek,rts5912-kbd + +config DT_HAS_REALTEK_RTS5912_KBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_KBD)) + +DT_COMPAT_REALTEK_RTS5912_PINCTRL := realtek,rts5912-pinctrl + +config DT_HAS_REALTEK_RTS5912_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_PINCTRL)) + +DT_COMPAT_REALTEK_RTS5912_PWM := realtek,rts5912-pwm + +config DT_HAS_REALTEK_RTS5912_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_PWM)) + +DT_COMPAT_REALTEK_RTS5912_RTC := realtek,rts5912-rtc + +config DT_HAS_REALTEK_RTS5912_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_RTC)) + +DT_COMPAT_REALTEK_RTS5912_RTMR := realtek,rts5912-rtmr + +config DT_HAS_REALTEK_RTS5912_RTMR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_RTMR)) + +DT_COMPAT_REALTEK_RTS5912_SCCON := realtek,rts5912-sccon + +config DT_HAS_REALTEK_RTS5912_SCCON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_SCCON)) + +DT_COMPAT_REALTEK_RTS5912_SHA := realtek,rts5912-sha + +config DT_HAS_REALTEK_RTS5912_SHA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_SHA)) + +DT_COMPAT_REALTEK_RTS5912_SLWTIMER := realtek,rts5912-slwtimer + +config DT_HAS_REALTEK_RTS5912_SLWTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_SLWTIMER)) + +DT_COMPAT_REALTEK_RTS5912_SPI := realtek,rts5912-spi + +config DT_HAS_REALTEK_RTS5912_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_SPI)) + +DT_COMPAT_REALTEK_RTS5912_TACH := realtek,rts5912-tach + +config DT_HAS_REALTEK_RTS5912_TACH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_TACH)) + +DT_COMPAT_REALTEK_RTS5912_TIMER := realtek,rts5912-timer + +config DT_HAS_REALTEK_RTS5912_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_TIMER)) + +DT_COMPAT_REALTEK_RTS5912_UART := realtek,rts5912-uart + +config DT_HAS_REALTEK_RTS5912_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_UART)) + +DT_COMPAT_REALTEK_RTS5912_ULPM := realtek,rts5912-ulpm + +config DT_HAS_REALTEK_RTS5912_ULPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_ULPM)) + +DT_COMPAT_REALTEK_RTS5912_WATCHDOG := realtek,rts5912-watchdog + +config DT_HAS_REALTEK_RTS5912_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REALTEK_RTS5912_WATCHDOG)) + +DT_COMPAT_REGULATOR_FIXED := regulator-fixed + +config DT_HAS_REGULATOR_FIXED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REGULATOR_FIXED)) + +DT_COMPAT_REGULATOR_GPIO := regulator-gpio + +config DT_HAS_REGULATOR_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REGULATOR_GPIO)) + +DT_COMPAT_RENESAS_BT_HCI_DA1453X := renesas,bt-hci-da1453x + +config DT_HAS_RENESAS_BT_HCI_DA1453X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_BT_HCI_DA1453X)) + +DT_COMPAT_RENESAS_BT_HCI_DA1469X := renesas,bt-hci-da1469x + +config DT_HAS_RENESAS_BT_HCI_DA1469X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_BT_HCI_DA1469X)) + +DT_COMPAT_RENESAS_HS300X := renesas,hs300x + +config DT_HAS_RENESAS_HS300X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_HS300X)) + +DT_COMPAT_RENESAS_HS400X := renesas,hs400x + +config DT_HAS_RENESAS_HS400X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_HS400X)) + +DT_COMPAT_RENESAS_OFS_MEMORY := renesas,ofs-memory + +config DT_HAS_RENESAS_OFS_MEMORY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_OFS_MEMORY)) + +DT_COMPAT_RENESAS_PWM_RCAR := renesas,pwm-rcar + +config DT_HAS_RENESAS_PWM_RCAR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_PWM_RCAR)) + +DT_COMPAT_RENESAS_R8A7795_CPG_MSSR := renesas,r8a7795-cpg-mssr + +config DT_HAS_RENESAS_R8A7795_CPG_MSSR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_R8A7795_CPG_MSSR)) + +DT_COMPAT_RENESAS_R8A779F0_CPG_MSSR := renesas,r8a779f0-cpg-mssr + +config DT_HAS_RENESAS_R8A779F0_CPG_MSSR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_R8A779F0_CPG_MSSR)) + +DT_COMPAT_RENESAS_R8A779G0_CPG_MSSR := renesas,r8a779g0-cpg-mssr + +config DT_HAS_RENESAS_R8A779G0_CPG_MSSR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_R8A779G0_CPG_MSSR)) + +DT_COMPAT_RENESAS_RA_ACMPHS := renesas,ra-acmphs + +config DT_HAS_RENESAS_RA_ACMPHS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_ACMPHS)) + +DT_COMPAT_RENESAS_RA_ACMPHS_GLOBAL := renesas,ra-acmphs-global + +config DT_HAS_RENESAS_RA_ACMPHS_GLOBAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_ACMPHS_GLOBAL)) + +DT_COMPAT_RENESAS_RA_ADC12 := renesas,ra-adc12 + +config DT_HAS_RENESAS_RA_ADC12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_ADC12)) + +DT_COMPAT_RENESAS_RA_ADC16 := renesas,ra-adc16 + +config DT_HAS_RENESAS_RA_ADC16_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_ADC16)) + +DT_COMPAT_RENESAS_RA_AGT := renesas,ra-agt + +config DT_HAS_RENESAS_RA_AGT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_AGT)) + +DT_COMPAT_RENESAS_RA_AGT_COUNTER := renesas,ra-agt-counter + +config DT_HAS_RENESAS_RA_AGT_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_AGT_COUNTER)) + +DT_COMPAT_RENESAS_RA_BATTERY_BACKUP := renesas,ra-battery-backup + +config DT_HAS_RENESAS_RA_BATTERY_BACKUP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_BATTERY_BACKUP)) + +DT_COMPAT_RENESAS_RA_CANFD := renesas,ra-canfd + +config DT_HAS_RENESAS_RA_CANFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CANFD)) + +DT_COMPAT_RENESAS_RA_CANFD_GLOBAL := renesas,ra-canfd-global + +config DT_HAS_RENESAS_RA_CANFD_GLOBAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CANFD_GLOBAL)) + +DT_COMPAT_RENESAS_RA_CEU := renesas,ra-ceu + +config DT_HAS_RENESAS_RA_CEU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CEU)) + +DT_COMPAT_RENESAS_RA_CGC_BUSCLK := renesas,ra-cgc-busclk + +config DT_HAS_RENESAS_RA_CGC_BUSCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_BUSCLK)) + +DT_COMPAT_RENESAS_RA_CGC_EXTERNAL_CLOCK := renesas,ra-cgc-external-clock + +config DT_HAS_RENESAS_RA_CGC_EXTERNAL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_EXTERNAL_CLOCK)) + +DT_COMPAT_RENESAS_RA_CGC_PCLK := renesas,ra-cgc-pclk + +config DT_HAS_RENESAS_RA_CGC_PCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_PCLK)) + +DT_COMPAT_RENESAS_RA_CGC_PCLK_BLOCK := renesas,ra-cgc-pclk-block + +config DT_HAS_RENESAS_RA_CGC_PCLK_BLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_PCLK_BLOCK)) + +DT_COMPAT_RENESAS_RA_CGC_PLL := renesas,ra-cgc-pll + +config DT_HAS_RENESAS_RA_CGC_PLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_PLL)) + +DT_COMPAT_RENESAS_RA_CGC_PLL_OUT := renesas,ra-cgc-pll-out + +config DT_HAS_RENESAS_RA_CGC_PLL_OUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_PLL_OUT)) + +DT_COMPAT_RENESAS_RA_CGC_SUBCLK := renesas,ra-cgc-subclk + +config DT_HAS_RENESAS_RA_CGC_SUBCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_SUBCLK)) + +DT_COMPAT_RENESAS_RA_CGC_UTASEL := renesas,ra-cgc-utasel + +config DT_HAS_RENESAS_RA_CGC_UTASEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CGC_UTASEL)) + +DT_COMPAT_RENESAS_RA_CRC := renesas,ra-crc + +config DT_HAS_RENESAS_RA_CRC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CRC)) + +DT_COMPAT_RENESAS_RA_CTSU := renesas,ra-ctsu + +config DT_HAS_RENESAS_RA_CTSU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CTSU)) + +DT_COMPAT_RENESAS_RA_CTSU_BUTTON := renesas,ra-ctsu-button + +config DT_HAS_RENESAS_RA_CTSU_BUTTON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CTSU_BUTTON)) + +DT_COMPAT_RENESAS_RA_CTSU_SLIDER := renesas,ra-ctsu-slider + +config DT_HAS_RENESAS_RA_CTSU_SLIDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CTSU_SLIDER)) + +DT_COMPAT_RENESAS_RA_CTSU_WHEEL := renesas,ra-ctsu-wheel + +config DT_HAS_RENESAS_RA_CTSU_WHEEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_CTSU_WHEEL)) + +DT_COMPAT_RENESAS_RA_DAC := renesas,ra-dac + +config DT_HAS_RENESAS_RA_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_DAC)) + +DT_COMPAT_RENESAS_RA_DAC_GLOBAL := renesas,ra-dac-global + +config DT_HAS_RENESAS_RA_DAC_GLOBAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_DAC_GLOBAL)) + +DT_COMPAT_RENESAS_RA_DMA := renesas,ra-dma + +config DT_HAS_RENESAS_RA_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_DMA)) + +DT_COMPAT_RENESAS_RA_DRW := renesas,ra-drw + +config DT_HAS_RENESAS_RA_DRW_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_DRW)) + +DT_COMPAT_RENESAS_RA_ELC := renesas,ra-elc + +config DT_HAS_RENESAS_RA_ELC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_ELC)) + +DT_COMPAT_RENESAS_RA_ESWM := renesas,ra-eswm + +config DT_HAS_RENESAS_RA_ESWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_ESWM)) + +DT_COMPAT_RENESAS_RA_ETHERNET := renesas,ra-ethernet + +config DT_HAS_RENESAS_RA_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_ETHERNET)) + +DT_COMPAT_RENESAS_RA_ETHERNET_RMAC := renesas,ra-ethernet-rmac + +config DT_HAS_RENESAS_RA_ETHERNET_RMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_ETHERNET_RMAC)) + +DT_COMPAT_RENESAS_RA_EXTERNAL_INTERRUPT := renesas,ra-external-interrupt + +config DT_HAS_RENESAS_RA_EXTERNAL_INTERRUPT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_EXTERNAL_INTERRUPT)) + +DT_COMPAT_RENESAS_RA_FLASH_HP_CONTROLLER := renesas,ra-flash-hp-controller + +config DT_HAS_RENESAS_RA_FLASH_HP_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_FLASH_HP_CONTROLLER)) + +DT_COMPAT_RENESAS_RA_FLASH_LP_CONTROLLER := renesas,ra-flash-lp-controller + +config DT_HAS_RENESAS_RA_FLASH_LP_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_FLASH_LP_CONTROLLER)) + +DT_COMPAT_RENESAS_RA_GLCDC := renesas,ra-glcdc + +config DT_HAS_RENESAS_RA_GLCDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_GLCDC)) + +DT_COMPAT_RENESAS_RA_GPIO_IOPORT := renesas,ra-gpio-ioport + +config DT_HAS_RENESAS_RA_GPIO_IOPORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_GPIO_IOPORT)) + +DT_COMPAT_RENESAS_RA_GPIO_MIPI_HEADER := renesas,ra-gpio-mipi-header + +config DT_HAS_RENESAS_RA_GPIO_MIPI_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_GPIO_MIPI_HEADER)) + +DT_COMPAT_RENESAS_RA_I2C_SCI := renesas,ra-i2c-sci + +config DT_HAS_RENESAS_RA_I2C_SCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_I2C_SCI)) + +DT_COMPAT_RENESAS_RA_I2C_SCI_B := renesas,ra-i2c-sci-b + +config DT_HAS_RENESAS_RA_I2C_SCI_B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_I2C_SCI_B)) + +DT_COMPAT_RENESAS_RA_I2S_SSIE := renesas,ra-i2s-ssie + +config DT_HAS_RENESAS_RA_I2S_SSIE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_I2S_SSIE)) + +DT_COMPAT_RENESAS_RA_I3C := renesas,ra-i3c + +config DT_HAS_RENESAS_RA_I3C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_I3C)) + +DT_COMPAT_RENESAS_RA_IIC := renesas,ra-iic + +config DT_HAS_RENESAS_RA_IIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_IIC)) + +DT_COMPAT_RENESAS_RA_IPC_MBOX := renesas,ra-ipc-mbox + +config DT_HAS_RENESAS_RA_IPC_MBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_IPC_MBOX)) + +DT_COMPAT_RENESAS_RA_LVD := renesas,ra-lvd + +config DT_HAS_RENESAS_RA_LVD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_LVD)) + +DT_COMPAT_RENESAS_RA_MDIO := renesas,ra-mdio + +config DT_HAS_RENESAS_RA_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_MDIO)) + +DT_COMPAT_RENESAS_RA_MDIO_RMAC := renesas,ra-mdio-rmac + +config DT_HAS_RENESAS_RA_MDIO_RMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_MDIO_RMAC)) + +DT_COMPAT_RENESAS_RA_MIPI_DSI := renesas,ra-mipi-dsi + +config DT_HAS_RENESAS_RA_MIPI_DSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_MIPI_DSI)) + +DT_COMPAT_RENESAS_RA_MRAM_CONTROLLER := renesas,ra-mram-controller + +config DT_HAS_RENESAS_RA_MRAM_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_MRAM_CONTROLLER)) + +DT_COMPAT_RENESAS_RA_NPU := renesas,ra-npu + +config DT_HAS_RENESAS_RA_NPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_NPU)) + +DT_COMPAT_RENESAS_RA_NV_CODE_FLASH := renesas,ra-nv-code-flash + +config DT_HAS_RENESAS_RA_NV_CODE_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_NV_CODE_FLASH)) + +DT_COMPAT_RENESAS_RA_NV_DATA_FLASH := renesas,ra-nv-data-flash + +config DT_HAS_RENESAS_RA_NV_DATA_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_NV_DATA_FLASH)) + +DT_COMPAT_RENESAS_RA_NV_MRAM := renesas,ra-nv-mram + +config DT_HAS_RENESAS_RA_NV_MRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_NV_MRAM)) + +DT_COMPAT_RENESAS_RA_OSPI_B := renesas,ra-ospi-b + +config DT_HAS_RENESAS_RA_OSPI_B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_OSPI_B)) + +DT_COMPAT_RENESAS_RA_OSPI_B_NOR := renesas,ra-ospi-b-nor + +config DT_HAS_RENESAS_RA_OSPI_B_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_OSPI_B_NOR)) + +DT_COMPAT_RENESAS_RA_PARALLEL_GRAPHICS_HEADER := renesas,ra-parallel-graphics-header + +config DT_HAS_RENESAS_RA_PARALLEL_GRAPHICS_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_PARALLEL_GRAPHICS_HEADER)) + +DT_COMPAT_RENESAS_RA_PINCTRL_PFS := renesas,ra-pinctrl-pfs + +config DT_HAS_RENESAS_RA_PINCTRL_PFS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_PINCTRL_PFS)) + +DT_COMPAT_RENESAS_RA_PWM := renesas,ra-pwm + +config DT_HAS_RENESAS_RA_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_PWM)) + +DT_COMPAT_RENESAS_RA_QSPI := renesas,ra-qspi + +config DT_HAS_RENESAS_RA_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_QSPI)) + +DT_COMPAT_RENESAS_RA_QSPI_NOR := renesas,ra-qspi-nor + +config DT_HAS_RENESAS_RA_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_QSPI_NOR)) + +DT_COMPAT_RENESAS_RA_RSIP_E50D_TRNG := renesas,ra-rsip-e50d-trng + +config DT_HAS_RENESAS_RA_RSIP_E50D_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_RSIP_E50D_TRNG)) + +DT_COMPAT_RENESAS_RA_RSIP_E51A_TRNG := renesas,ra-rsip-e51a-trng + +config DT_HAS_RENESAS_RA_RSIP_E51A_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_RSIP_E51A_TRNG)) + +DT_COMPAT_RENESAS_RA_RTC := renesas,ra-rtc + +config DT_HAS_RENESAS_RA_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_RTC)) + +DT_COMPAT_RENESAS_RA_SAU := renesas,ra-sau + +config DT_HAS_RENESAS_RA_SAU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SAU)) + +DT_COMPAT_RENESAS_RA_SAU_CHANNEL := renesas,ra-sau-channel + +config DT_HAS_RENESAS_RA_SAU_CHANNEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SAU_CHANNEL)) + +DT_COMPAT_RENESAS_RA_SCE5_RNG := renesas,ra-sce5-rng + +config DT_HAS_RENESAS_RA_SCE5_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SCE5_RNG)) + +DT_COMPAT_RENESAS_RA_SCE7_RNG := renesas,ra-sce7-rng + +config DT_HAS_RENESAS_RA_SCE7_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SCE7_RNG)) + +DT_COMPAT_RENESAS_RA_SCE9_RNG := renesas,ra-sce9-rng + +config DT_HAS_RENESAS_RA_SCE9_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SCE9_RNG)) + +DT_COMPAT_RENESAS_RA_SCI := renesas,ra-sci + +config DT_HAS_RENESAS_RA_SCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SCI)) + +DT_COMPAT_RENESAS_RA_SCI_UART := renesas,ra-sci-uart + +config DT_HAS_RENESAS_RA_SCI_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SCI_UART)) + +DT_COMPAT_RENESAS_RA_SDHC := renesas,ra-sdhc + +config DT_HAS_RENESAS_RA_SDHC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SDHC)) + +DT_COMPAT_RENESAS_RA_SDRAM := renesas,ra-sdram + +config DT_HAS_RENESAS_RA_SDRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SDRAM)) + +DT_COMPAT_RENESAS_RA_SPI := renesas,ra-spi + +config DT_HAS_RENESAS_RA_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SPI)) + +DT_COMPAT_RENESAS_RA_SPI_SCI := renesas,ra-spi-sci + +config DT_HAS_RENESAS_RA_SPI_SCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SPI_SCI)) + +DT_COMPAT_RENESAS_RA_SPI_SCI_B := renesas,ra-spi-sci-b + +config DT_HAS_RENESAS_RA_SPI_SCI_B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_SPI_SCI_B)) + +DT_COMPAT_RENESAS_RA_TRNG := renesas,ra-trng + +config DT_HAS_RENESAS_RA_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_TRNG)) + +DT_COMPAT_RENESAS_RA_UART_SAU := renesas,ra-uart-sau + +config DT_HAS_RENESAS_RA_UART_SAU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_UART_SAU)) + +DT_COMPAT_RENESAS_RA_UDC := renesas,ra-udc + +config DT_HAS_RENESAS_RA_UDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_UDC)) + +DT_COMPAT_RENESAS_RA_ULPT := renesas,ra-ulpt + +config DT_HAS_RENESAS_RA_ULPT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_ULPT)) + +DT_COMPAT_RENESAS_RA_ULPT_TIMER := renesas,ra-ulpt-timer + +config DT_HAS_RENESAS_RA_ULPT_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_ULPT_TIMER)) + +DT_COMPAT_RENESAS_RA_USBFS := renesas,ra-usbfs + +config DT_HAS_RENESAS_RA_USBFS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_USBFS)) + +DT_COMPAT_RENESAS_RA_USBHS := renesas,ra-usbhs + +config DT_HAS_RENESAS_RA_USBHS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_USBHS)) + +DT_COMPAT_RENESAS_RA_USBPHYC := renesas,ra-usbphyc + +config DT_HAS_RENESAS_RA_USBPHYC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_USBPHYC)) + +DT_COMPAT_RENESAS_RA_WDT := renesas,ra-wdt + +config DT_HAS_RENESAS_RA_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA_WDT)) + +DT_COMPAT_RENESAS_RA0_PINCTRL_PFS := renesas,ra0-pinctrl-pfs + +config DT_HAS_RENESAS_RA0_PINCTRL_PFS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA0_PINCTRL_PFS)) + +DT_COMPAT_RENESAS_RA8_SPI_B := renesas,ra8-spi-b + +config DT_HAS_RENESAS_RA8_SPI_B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA8_SPI_B)) + +DT_COMPAT_RENESAS_RA8_UART_SCI_B := renesas,ra8-uart-sci-b + +config DT_HAS_RENESAS_RA8_UART_SCI_B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RA8_UART_SCI_B)) + +DT_COMPAT_RENESAS_RCAR_CAN := renesas,rcar-can + +config DT_HAS_RENESAS_RCAR_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_CAN)) + +DT_COMPAT_RENESAS_RCAR_CMT := renesas,rcar-cmt + +config DT_HAS_RENESAS_RCAR_CMT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_CMT)) + +DT_COMPAT_RENESAS_RCAR_GPIO := renesas,rcar-gpio + +config DT_HAS_RENESAS_RCAR_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_GPIO)) + +DT_COMPAT_RENESAS_RCAR_HSCIF := renesas,rcar-hscif + +config DT_HAS_RENESAS_RCAR_HSCIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_HSCIF)) + +DT_COMPAT_RENESAS_RCAR_I2C := renesas,rcar-i2c + +config DT_HAS_RENESAS_RCAR_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_I2C)) + +DT_COMPAT_RENESAS_RCAR_MMC := renesas,rcar-mmc + +config DT_HAS_RENESAS_RCAR_MMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_MMC)) + +DT_COMPAT_RENESAS_RCAR_PFC := renesas,rcar-pfc + +config DT_HAS_RENESAS_RCAR_PFC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_PFC)) + +DT_COMPAT_RENESAS_RCAR_SCIF := renesas,rcar-scif + +config DT_HAS_RENESAS_RCAR_SCIF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RCAR_SCIF)) + +DT_COMPAT_RENESAS_RX := renesas,rx + +config DT_HAS_RENESAS_RX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX)) + +DT_COMPAT_RENESAS_RX_ADC := renesas,rx-adc + +config DT_HAS_RENESAS_RX_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_ADC)) + +DT_COMPAT_RENESAS_RX_CGC_PCLK := renesas,rx-cgc-pclk + +config DT_HAS_RENESAS_RX_CGC_PCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_CGC_PCLK)) + +DT_COMPAT_RENESAS_RX_CGC_PCLK_BLOCK := renesas,rx-cgc-pclk-block + +config DT_HAS_RENESAS_RX_CGC_PCLK_BLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_CGC_PCLK_BLOCK)) + +DT_COMPAT_RENESAS_RX_CGC_PLL := renesas,rx-cgc-pll + +config DT_HAS_RENESAS_RX_CGC_PLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_CGC_PLL)) + +DT_COMPAT_RENESAS_RX_CGC_ROOT_CLOCK := renesas,rx-cgc-root-clock + +config DT_HAS_RENESAS_RX_CGC_ROOT_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_CGC_ROOT_CLOCK)) + +DT_COMPAT_RENESAS_RX_CTSU := renesas,rx-ctsu + +config DT_HAS_RENESAS_RX_CTSU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_CTSU)) + +DT_COMPAT_RENESAS_RX_CTSU_BUTTON := renesas,rx-ctsu-button + +config DT_HAS_RENESAS_RX_CTSU_BUTTON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_CTSU_BUTTON)) + +DT_COMPAT_RENESAS_RX_CTSU_SLIDER := renesas,rx-ctsu-slider + +config DT_HAS_RENESAS_RX_CTSU_SLIDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_CTSU_SLIDER)) + +DT_COMPAT_RENESAS_RX_CTSU_WHEEL := renesas,rx-ctsu-wheel + +config DT_HAS_RENESAS_RX_CTSU_WHEEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_CTSU_WHEEL)) + +DT_COMPAT_RENESAS_RX_DTC := renesas,rx-dtc + +config DT_HAS_RENESAS_RX_DTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_DTC)) + +DT_COMPAT_RENESAS_RX_EXTERNAL_INTERRUPT := renesas,rx-external-interrupt + +config DT_HAS_RENESAS_RX_EXTERNAL_INTERRUPT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_EXTERNAL_INTERRUPT)) + +DT_COMPAT_RENESAS_RX_FLASH := renesas,rx-flash + +config DT_HAS_RENESAS_RX_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_FLASH)) + +DT_COMPAT_RENESAS_RX_GPIO := renesas,rx-gpio + +config DT_HAS_RENESAS_RX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_GPIO)) + +DT_COMPAT_RENESAS_RX_GRP_INTC := renesas,rx-grp-intc + +config DT_HAS_RENESAS_RX_GRP_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_GRP_INTC)) + +DT_COMPAT_RENESAS_RX_I2C := renesas,rx-i2c + +config DT_HAS_RENESAS_RX_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_I2C)) + +DT_COMPAT_RENESAS_RX_ICU := renesas,rx-icu + +config DT_HAS_RENESAS_RX_ICU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_ICU)) + +DT_COMPAT_RENESAS_RX_IWDT := renesas,rx-iwdt + +config DT_HAS_RENESAS_RX_IWDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_IWDT)) + +DT_COMPAT_RENESAS_RX_LVD := renesas,rx-lvd + +config DT_HAS_RENESAS_RX_LVD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_LVD)) + +DT_COMPAT_RENESAS_RX_MTU := renesas,rx-mtu + +config DT_HAS_RENESAS_RX_MTU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_MTU)) + +DT_COMPAT_RENESAS_RX_MTU_PWM := renesas,rx-mtu-pwm + +config DT_HAS_RENESAS_RX_MTU_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_MTU_PWM)) + +DT_COMPAT_RENESAS_RX_NV_FLASH := renesas,rx-nv-flash + +config DT_HAS_RENESAS_RX_NV_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_NV_FLASH)) + +DT_COMPAT_RENESAS_RX_PINCTRL := renesas,rx-pinctrl + +config DT_HAS_RENESAS_RX_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_PINCTRL)) + +DT_COMPAT_RENESAS_RX_PINMUX := renesas,rx-pinmux + +config DT_HAS_RENESAS_RX_PINMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_PINMUX)) + +DT_COMPAT_RENESAS_RX_RSPI := renesas,rx-rspi + +config DT_HAS_RENESAS_RX_RSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_RSPI)) + +DT_COMPAT_RENESAS_RX_SCI := renesas,rx-sci + +config DT_HAS_RENESAS_RX_SCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_SCI)) + +DT_COMPAT_RENESAS_RX_SWINT := renesas,rx-swint + +config DT_HAS_RENESAS_RX_SWINT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_SWINT)) + +DT_COMPAT_RENESAS_RX_TIMER_CMT := renesas,rx-timer-cmt + +config DT_HAS_RENESAS_RX_TIMER_CMT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_TIMER_CMT)) + +DT_COMPAT_RENESAS_RX_TIMER_CMT_START_CONTROL := renesas,rx-timer-cmt-start-control + +config DT_HAS_RENESAS_RX_TIMER_CMT_START_CONTROL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_TIMER_CMT_START_CONTROL)) + +DT_COMPAT_RENESAS_RX_UART_SCI := renesas,rx-uart-sci + +config DT_HAS_RENESAS_RX_UART_SCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_UART_SCI)) + +DT_COMPAT_RENESAS_RX_UART_SCI_QEMU := renesas,rx-uart-sci-qemu + +config DT_HAS_RENESAS_RX_UART_SCI_QEMU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RX_UART_SCI_QEMU)) + +DT_COMPAT_RENESAS_RXV1 := renesas,rxv1 + +config DT_HAS_RENESAS_RXV1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RXV1)) + +DT_COMPAT_RENESAS_RXV2 := renesas,rxv2 + +config DT_HAS_RENESAS_RXV2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RXV2)) + +DT_COMPAT_RENESAS_RXV3 := renesas,rxv3 + +config DT_HAS_RENESAS_RXV3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RXV3)) + +DT_COMPAT_RENESAS_RZ_ADC := renesas,rz-adc + +config DT_HAS_RENESAS_RZ_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_ADC)) + +DT_COMPAT_RENESAS_RZ_ADC_C := renesas,rz-adc-c + +config DT_HAS_RENESAS_RZ_ADC_C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_ADC_C)) + +DT_COMPAT_RENESAS_RZ_ADC_E := renesas,rz-adc-e + +config DT_HAS_RENESAS_RZ_ADC_E_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_ADC_E)) + +DT_COMPAT_RENESAS_RZ_CANFD := renesas,rz-canfd + +config DT_HAS_RENESAS_RZ_CANFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_CANFD)) + +DT_COMPAT_RENESAS_RZ_CANFD_GLOBAL := renesas,rz-canfd-global + +config DT_HAS_RENESAS_RZ_CANFD_GLOBAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_CANFD_GLOBAL)) + +DT_COMPAT_RENESAS_RZ_CGC := renesas,rz-cgc + +config DT_HAS_RENESAS_RZ_CGC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_CGC)) + +DT_COMPAT_RENESAS_RZ_CGC_PLL := renesas,rz-cgc-pll + +config DT_HAS_RENESAS_RZ_CGC_PLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_CGC_PLL)) + +DT_COMPAT_RENESAS_RZ_CGC_SUBCLK := renesas,rz-cgc-subclk + +config DT_HAS_RENESAS_RZ_CGC_SUBCLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_CGC_SUBCLK)) + +DT_COMPAT_RENESAS_RZ_CGC_SYS_CLOCK := renesas,rz-cgc-sys-clock + +config DT_HAS_RENESAS_RZ_CGC_SYS_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_CGC_SYS_CLOCK)) + +DT_COMPAT_RENESAS_RZ_CMTW := renesas,rz-cmtw + +config DT_HAS_RENESAS_RZ_CMTW_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_CMTW)) + +DT_COMPAT_RENESAS_RZ_CMTW_COUNTER := renesas,rz-cmtw-counter + +config DT_HAS_RENESAS_RZ_CMTW_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_CMTW_COUNTER)) + +DT_COMPAT_RENESAS_RZ_CPG := renesas,rz-cpg + +config DT_HAS_RENESAS_RZ_CPG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_CPG)) + +DT_COMPAT_RENESAS_RZ_CPG_CLOCK := renesas,rz-cpg-clock + +config DT_HAS_RENESAS_RZ_CPG_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_CPG_CLOCK)) + +DT_COMPAT_RENESAS_RZ_CPG_PLL := renesas,rz-cpg-pll + +config DT_HAS_RENESAS_RZ_CPG_PLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_CPG_PLL)) + +DT_COMPAT_RENESAS_RZ_DMAC := renesas,rz-dmac + +config DT_HAS_RENESAS_RZ_DMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_DMAC)) + +DT_COMPAT_RENESAS_RZ_DMAC_B := renesas,rz-dmac-b + +config DT_HAS_RENESAS_RZ_DMAC_B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_DMAC_B)) + +DT_COMPAT_RENESAS_RZ_EXT_IRQ := renesas,rz-ext-irq + +config DT_HAS_RENESAS_RZ_EXT_IRQ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_EXT_IRQ)) + +DT_COMPAT_RENESAS_RZ_GPIO := renesas,rz-gpio + +config DT_HAS_RENESAS_RZ_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_GPIO)) + +DT_COMPAT_RENESAS_RZ_GPIO_COMMON := renesas,rz-gpio-common + +config DT_HAS_RENESAS_RZ_GPIO_COMMON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_GPIO_COMMON)) + +DT_COMPAT_RENESAS_RZ_GPIO_COMMON_V2 := renesas,rz-gpio-common-v2 + +config DT_HAS_RENESAS_RZ_GPIO_COMMON_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_GPIO_COMMON_V2)) + +DT_COMPAT_RENESAS_RZ_GPIO_COMMON_V3 := renesas,rz-gpio-common-v3 + +config DT_HAS_RENESAS_RZ_GPIO_COMMON_V3_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_GPIO_COMMON_V3)) + +DT_COMPAT_RENESAS_RZ_GPIO_INT := renesas,rz-gpio-int + +config DT_HAS_RENESAS_RZ_GPIO_INT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_GPIO_INT)) + +DT_COMPAT_RENESAS_RZ_GPT := renesas,rz-gpt + +config DT_HAS_RENESAS_RZ_GPT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_GPT)) + +DT_COMPAT_RENESAS_RZ_GPT_PWM := renesas,rz-gpt-pwm + +config DT_HAS_RENESAS_RZ_GPT_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_GPT_PWM)) + +DT_COMPAT_RENESAS_RZ_GTM := renesas,rz-gtm + +config DT_HAS_RENESAS_RZ_GTM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_GTM)) + +DT_COMPAT_RENESAS_RZ_GTM_COUNTER := renesas,rz-gtm-counter + +config DT_HAS_RENESAS_RZ_GTM_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_GTM_COUNTER)) + +DT_COMPAT_RENESAS_RZ_GTM_OS_TIMER := renesas,rz-gtm-os-timer + +config DT_HAS_RENESAS_RZ_GTM_OS_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_GTM_OS_TIMER)) + +DT_COMPAT_RENESAS_RZ_ICU := renesas,rz-icu + +config DT_HAS_RENESAS_RZ_ICU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_ICU)) + +DT_COMPAT_RENESAS_RZ_ICU_V2 := renesas,rz-icu-v2 + +config DT_HAS_RENESAS_RZ_ICU_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_ICU_V2)) + +DT_COMPAT_RENESAS_RZ_IIC := renesas,rz-iic + +config DT_HAS_RENESAS_RZ_IIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_IIC)) + +DT_COMPAT_RENESAS_RZ_INTC := renesas,rz-intc + +config DT_HAS_RENESAS_RZ_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_INTC)) + +DT_COMPAT_RENESAS_RZ_INTC_V2 := renesas,rz-intc-v2 + +config DT_HAS_RENESAS_RZ_INTC_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_INTC_V2)) + +DT_COMPAT_RENESAS_RZ_MHU_MBOX := renesas,rz-mhu-mbox + +config DT_HAS_RENESAS_RZ_MHU_MBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_MHU_MBOX)) + +DT_COMPAT_RENESAS_RZ_MTU := renesas,rz-mtu + +config DT_HAS_RENESAS_RZ_MTU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_MTU)) + +DT_COMPAT_RENESAS_RZ_MTU_PWM := renesas,rz-mtu-pwm + +config DT_HAS_RENESAS_RZ_MTU_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_MTU_PWM)) + +DT_COMPAT_RENESAS_RZ_QSPI_SPIBSC := renesas,rz-qspi-spibsc + +config DT_HAS_RENESAS_RZ_QSPI_SPIBSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_QSPI_SPIBSC)) + +DT_COMPAT_RENESAS_RZ_QSPI_XSPI := renesas,rz-qspi-xspi + +config DT_HAS_RENESAS_RZ_QSPI_XSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_QSPI_XSPI)) + +DT_COMPAT_RENESAS_RZ_RIIC := renesas,rz-riic + +config DT_HAS_RENESAS_RZ_RIIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_RIIC)) + +DT_COMPAT_RENESAS_RZ_RSPI := renesas,rz-rspi + +config DT_HAS_RENESAS_RZ_RSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_RSPI)) + +DT_COMPAT_RENESAS_RZ_SCI := renesas,rz-sci + +config DT_HAS_RENESAS_RZ_SCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_SCI)) + +DT_COMPAT_RENESAS_RZ_SCI_B := renesas,rz-sci-b + +config DT_HAS_RENESAS_RZ_SCI_B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_SCI_B)) + +DT_COMPAT_RENESAS_RZ_SCI_B_UART := renesas,rz-sci-b-uart + +config DT_HAS_RENESAS_RZ_SCI_B_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_SCI_B_UART)) + +DT_COMPAT_RENESAS_RZ_SCI_UART := renesas,rz-sci-uart + +config DT_HAS_RENESAS_RZ_SCI_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_SCI_UART)) + +DT_COMPAT_RENESAS_RZ_SCIF_UART := renesas,rz-scif-uart + +config DT_HAS_RENESAS_RZ_SCIF_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_SCIF_UART)) + +DT_COMPAT_RENESAS_RZ_SPI := renesas,rz-spi + +config DT_HAS_RENESAS_RZ_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_SPI)) + +DT_COMPAT_RENESAS_RZ_SPIBSC := renesas,rz-spibsc + +config DT_HAS_RENESAS_RZ_SPIBSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_SPIBSC)) + +DT_COMPAT_RENESAS_RZ_TINT := renesas,rz-tint + +config DT_HAS_RENESAS_RZ_TINT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_TINT)) + +DT_COMPAT_RENESAS_RZ_WDT := renesas,rz-wdt + +config DT_HAS_RENESAS_RZ_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_WDT)) + +DT_COMPAT_RENESAS_RZ_XSPI := renesas,rz-xspi + +config DT_HAS_RENESAS_RZ_XSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZ_XSPI)) + +DT_COMPAT_RENESAS_RZA_PINCTRL := renesas,rza-pinctrl + +config DT_HAS_RENESAS_RZA_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZA_PINCTRL)) + +DT_COMPAT_RENESAS_RZA2M_ADC := renesas,rza2m-adc + +config DT_HAS_RENESAS_RZA2M_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZA2M_ADC)) + +DT_COMPAT_RENESAS_RZA2M_CPG := renesas,rza2m-cpg + +config DT_HAS_RENESAS_RZA2M_CPG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZA2M_CPG)) + +DT_COMPAT_RENESAS_RZA2M_GPIO := renesas,rza2m-gpio + +config DT_HAS_RENESAS_RZA2M_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZA2M_GPIO)) + +DT_COMPAT_RENESAS_RZA2M_GPIO_INT := renesas,rza2m-gpio-int + +config DT_HAS_RENESAS_RZA2M_GPIO_INT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZA2M_GPIO_INT)) + +DT_COMPAT_RENESAS_RZA2M_GPT := renesas,rza2m-gpt + +config DT_HAS_RENESAS_RZA2M_GPT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZA2M_GPT)) + +DT_COMPAT_RENESAS_RZA2M_GPT_PWM := renesas,rza2m-gpt-pwm + +config DT_HAS_RENESAS_RZA2M_GPT_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZA2M_GPT_PWM)) + +DT_COMPAT_RENESAS_RZA2M_OSTM := renesas,rza2m-ostm + +config DT_HAS_RENESAS_RZA2M_OSTM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZA2M_OSTM)) + +DT_COMPAT_RENESAS_RZA2M_OSTM_COUNTER := renesas,rza2m-ostm-counter + +config DT_HAS_RENESAS_RZA2M_OSTM_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZA2M_OSTM_COUNTER)) + +DT_COMPAT_RENESAS_RZA2M_OSTM_TIMER := renesas,rza2m-ostm-timer + +config DT_HAS_RENESAS_RZA2M_OSTM_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZA2M_OSTM_TIMER)) + +DT_COMPAT_RENESAS_RZA2M_PINCTRL := renesas,rza2m-pinctrl + +config DT_HAS_RENESAS_RZA2M_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZA2M_PINCTRL)) + +DT_COMPAT_RENESAS_RZA2M_QSPI_SPIBSC := renesas,rza2m-qspi-spibsc + +config DT_HAS_RENESAS_RZA2M_QSPI_SPIBSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZA2M_QSPI_SPIBSC)) + +DT_COMPAT_RENESAS_RZA2M_RIIC := renesas,rza2m-riic + +config DT_HAS_RENESAS_RZA2M_RIIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZA2M_RIIC)) + +DT_COMPAT_RENESAS_RZA2M_SCIF_UART := renesas,rza2m-scif-uart + +config DT_HAS_RENESAS_RZA2M_SCIF_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZA2M_SCIF_UART)) + +DT_COMPAT_RENESAS_RZG_PINCTRL := renesas,rzg-pinctrl + +config DT_HAS_RENESAS_RZG_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZG_PINCTRL)) + +DT_COMPAT_RENESAS_RZN_PINCTRL := renesas,rzn-pinctrl + +config DT_HAS_RENESAS_RZN_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZN_PINCTRL)) + +DT_COMPAT_RENESAS_RZT_PINCTRL := renesas,rzt-pinctrl + +config DT_HAS_RENESAS_RZT_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZT_PINCTRL)) + +DT_COMPAT_RENESAS_RZT2M_GPIO := renesas,rzt2m-gpio + +config DT_HAS_RENESAS_RZT2M_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZT2M_GPIO)) + +DT_COMPAT_RENESAS_RZT2M_GPIO_COMMON := renesas,rzt2m-gpio-common + +config DT_HAS_RENESAS_RZT2M_GPIO_COMMON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZT2M_GPIO_COMMON)) + +DT_COMPAT_RENESAS_RZT2M_PINCTRL := renesas,rzt2m-pinctrl + +config DT_HAS_RENESAS_RZT2M_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZT2M_PINCTRL)) + +DT_COMPAT_RENESAS_RZT2M_UART := renesas,rzt2m-uart + +config DT_HAS_RENESAS_RZT2M_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZT2M_UART)) + +DT_COMPAT_RENESAS_RZV_PINCTRL := renesas,rzv-pinctrl + +config DT_HAS_RENESAS_RZV_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_RZV_PINCTRL)) + +DT_COMPAT_RENESAS_SLG47105 := renesas,slg47105 + +config DT_HAS_RENESAS_SLG47105_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SLG47105)) + +DT_COMPAT_RENESAS_SLG47115 := renesas,slg47115 + +config DT_HAS_RENESAS_SLG47115_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SLG47115)) + +DT_COMPAT_RENESAS_SLG471X5 := renesas,slg471x5 + +config DT_HAS_RENESAS_SLG471X5_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SLG471X5)) + +DT_COMPAT_RENESAS_SMARTBOND_ADC := renesas,smartbond-adc + +config DT_HAS_RENESAS_SMARTBOND_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_ADC)) + +DT_COMPAT_RENESAS_SMARTBOND_CRYPTO := renesas,smartbond-crypto + +config DT_HAS_RENESAS_SMARTBOND_CRYPTO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_CRYPTO)) + +DT_COMPAT_RENESAS_SMARTBOND_DISPLAY := renesas,smartbond-display + +config DT_HAS_RENESAS_SMARTBOND_DISPLAY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_DISPLAY)) + +DT_COMPAT_RENESAS_SMARTBOND_DMA := renesas,smartbond-dma + +config DT_HAS_RENESAS_SMARTBOND_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_DMA)) + +DT_COMPAT_RENESAS_SMARTBOND_FLASH_CONTROLLER := renesas,smartbond-flash-controller + +config DT_HAS_RENESAS_SMARTBOND_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_FLASH_CONTROLLER)) + +DT_COMPAT_RENESAS_SMARTBOND_GPIO := renesas,smartbond-gpio + +config DT_HAS_RENESAS_SMARTBOND_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_GPIO)) + +DT_COMPAT_RENESAS_SMARTBOND_I2C := renesas,smartbond-i2c + +config DT_HAS_RENESAS_SMARTBOND_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_I2C)) + +DT_COMPAT_RENESAS_SMARTBOND_LP_CLK := renesas,smartbond-lp-clk + +config DT_HAS_RENESAS_SMARTBOND_LP_CLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_LP_CLK)) + +DT_COMPAT_RENESAS_SMARTBOND_LP_OSC := renesas,smartbond-lp-osc + +config DT_HAS_RENESAS_SMARTBOND_LP_OSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_LP_OSC)) + +DT_COMPAT_RENESAS_SMARTBOND_MIPI_DBI := renesas,smartbond-mipi-dbi + +config DT_HAS_RENESAS_SMARTBOND_MIPI_DBI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_MIPI_DBI)) + +DT_COMPAT_RENESAS_SMARTBOND_NOR_PSRAM := renesas,smartbond-nor-psram + +config DT_HAS_RENESAS_SMARTBOND_NOR_PSRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_NOR_PSRAM)) + +DT_COMPAT_RENESAS_SMARTBOND_PINCTRL := renesas,smartbond-pinctrl + +config DT_HAS_RENESAS_SMARTBOND_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_PINCTRL)) + +DT_COMPAT_RENESAS_SMARTBOND_REGULATOR := renesas,smartbond-regulator + +config DT_HAS_RENESAS_SMARTBOND_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_REGULATOR)) + +DT_COMPAT_RENESAS_SMARTBOND_RTC := renesas,smartbond-rtc + +config DT_HAS_RENESAS_SMARTBOND_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_RTC)) + +DT_COMPAT_RENESAS_SMARTBOND_SDADC := renesas,smartbond-sdadc + +config DT_HAS_RENESAS_SMARTBOND_SDADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_SDADC)) + +DT_COMPAT_RENESAS_SMARTBOND_SPI := renesas,smartbond-spi + +config DT_HAS_RENESAS_SMARTBOND_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_SPI)) + +DT_COMPAT_RENESAS_SMARTBOND_SYS_CLK := renesas,smartbond-sys-clk + +config DT_HAS_RENESAS_SMARTBOND_SYS_CLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_SYS_CLK)) + +DT_COMPAT_RENESAS_SMARTBOND_TIMER := renesas,smartbond-timer + +config DT_HAS_RENESAS_SMARTBOND_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_TIMER)) + +DT_COMPAT_RENESAS_SMARTBOND_TRNG := renesas,smartbond-trng + +config DT_HAS_RENESAS_SMARTBOND_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_TRNG)) + +DT_COMPAT_RENESAS_SMARTBOND_UART := renesas,smartbond-uart + +config DT_HAS_RENESAS_SMARTBOND_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_UART)) + +DT_COMPAT_RENESAS_SMARTBOND_USBD := renesas,smartbond-usbd + +config DT_HAS_RENESAS_SMARTBOND_USBD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_USBD)) + +DT_COMPAT_RENESAS_SMARTBOND_WATCHDOG := renesas,smartbond-watchdog + +config DT_HAS_RENESAS_SMARTBOND_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RENESAS_SMARTBOND_WATCHDOG)) + +DT_COMPAT_RESET_MMIO := reset-mmio + +config DT_HAS_RESET_MMIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RESET_MMIO)) + +DT_COMPAT_REYAX_RYLRXXX := reyax,rylrxxx + +config DT_HAS_REYAX_RYLRXXX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_REYAX_RYLRXXX)) + +DT_COMPAT_RICHTEK_RT1715 := richtek,rt1715 + +config DT_HAS_RICHTEK_RT1715_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RICHTEK_RT1715)) + +DT_COMPAT_RICHTEK_RT1718S := richtek,rt1718s + +config DT_HAS_RICHTEK_RT1718S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RICHTEK_RT1718S)) + +DT_COMPAT_RICHTEK_RT1718S_GPIO_PORT := richtek,rt1718s-gpio-port + +config DT_HAS_RICHTEK_RT1718S_GPIO_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RICHTEK_RT1718S_GPIO_PORT)) + +DT_COMPAT_RISCV := riscv + +config DT_HAS_RISCV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RISCV)) + +DT_COMPAT_RISCV_APLIC := riscv,aplic + +config DT_HAS_RISCV_APLIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RISCV_APLIC)) + +DT_COMPAT_RISCV_CLIC := riscv,clic + +config DT_HAS_RISCV_CLIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RISCV_CLIC)) + +DT_COMPAT_RISCV_CPU_INTC := riscv,cpu-intc + +config DT_HAS_RISCV_CPU_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RISCV_CPU_INTC)) + +DT_COMPAT_RISCV_IMSIC := riscv,imsic + +config DT_HAS_RISCV_IMSIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RISCV_IMSIC)) + +DT_COMPAT_RISCV_MACHINE_TIMER := riscv,machine-timer + +config DT_HAS_RISCV_MACHINE_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RISCV_MACHINE_TIMER)) + +DT_COMPAT_ROCKTECH_RK043FN02H_CT := rocktech,rk043fn02h-ct + +config DT_HAS_ROCKTECH_RK043FN02H_CT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ROCKTECH_RK043FN02H_CT)) + +DT_COMPAT_ROHM_BD8LB600FS := rohm,bd8lb600fs + +config DT_HAS_ROHM_BD8LB600FS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ROHM_BD8LB600FS)) + +DT_COMPAT_ROHM_BD8LB600FS_DIAGNOSTICS := rohm,bd8lb600fs-diagnostics + +config DT_HAS_ROHM_BD8LB600FS_DIAGNOSTICS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ROHM_BD8LB600FS_DIAGNOSTICS)) + +DT_COMPAT_ROHM_BD8LB600FS_GPIO := rohm,bd8lb600fs-gpio + +config DT_HAS_ROHM_BD8LB600FS_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ROHM_BD8LB600FS_GPIO)) + +DT_COMPAT_ROHM_BH1730 := rohm,bh1730 + +config DT_HAS_ROHM_BH1730_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ROHM_BH1730)) + +DT_COMPAT_ROHM_BH1750 := rohm,bh1750 + +config DT_HAS_ROHM_BH1750_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ROHM_BH1750)) + +DT_COMPAT_ROHM_BH1790 := rohm,bh1790 + +config DT_HAS_ROHM_BH1790_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ROHM_BH1790)) + +DT_COMPAT_RPMSG_UART := rpmsg-uart + +config DT_HAS_RPMSG_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_RPMSG_UART)) + +DT_COMPAT_SAMPLE_CONTROLLER := sample_controller + +config DT_HAS_SAMPLE_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SAMPLE_CONTROLLER)) + +DT_COMPAT_SBS_DEFAULT_SBS_GAUGE := sbs,default-sbs-gauge + +config DT_HAS_SBS_DEFAULT_SBS_GAUGE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SBS_DEFAULT_SBS_GAUGE)) + +DT_COMPAT_SBS_SBS_CHARGER := sbs,sbs-charger + +config DT_HAS_SBS_SBS_CHARGER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SBS_SBS_CHARGER)) + +DT_COMPAT_SBS_SBS_GAUGE := sbs,sbs-gauge + +config DT_HAS_SBS_SBS_GAUGE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SBS_SBS_GAUGE)) + +DT_COMPAT_SBS_SBS_GAUGE_NEW_API := sbs,sbs-gauge-new-api + +config DT_HAS_SBS_SBS_GAUGE_NEW_API_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SBS_SBS_GAUGE_NEW_API)) + +DT_COMPAT_SCIOSENSE_ENS160 := sciosense,ens160 + +config DT_HAS_SCIOSENSE_ENS160_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SCIOSENSE_ENS160)) + +DT_COMPAT_SCT_SCT2024 := sct,sct2024 + +config DT_HAS_SCT_SCT2024_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SCT_SCT2024)) + +DT_COMPAT_SEEED_GROVE_LCD_RGB := seeed,grove-lcd-rgb + +config DT_HAS_SEEED_GROVE_LCD_RGB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEEED_GROVE_LCD_RGB)) + +DT_COMPAT_SEEED_GROVE_LIGHT := seeed,grove-light + +config DT_HAS_SEEED_GROVE_LIGHT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEEED_GROVE_LIGHT)) + +DT_COMPAT_SEEED_GROVE_TEMPERATURE := seeed,grove-temperature + +config DT_HAS_SEEED_GROVE_TEMPERATURE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEEED_GROVE_TEMPERATURE)) + +DT_COMPAT_SEEED_HM330X := seeed,hm330x + +config DT_HAS_SEEED_HM330X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEEED_HM330X)) + +DT_COMPAT_SEEED_XIAO_EXPAND := seeed,xiao-expand + +config DT_HAS_SEEED_XIAO_EXPAND_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEEED_XIAO_EXPAND)) + +DT_COMPAT_SEEED_XIAO_GPIO := seeed,xiao-gpio + +config DT_HAS_SEEED_XIAO_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEEED_XIAO_GPIO)) + +DT_COMPAT_SEGGER_RTT_UART := segger,rtt-uart + +config DT_HAS_SEGGER_RTT_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEGGER_RTT_UART)) + +DT_COMPAT_SEMTECH_LLCC68 := semtech,llcc68 + +config DT_HAS_SEMTECH_LLCC68_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEMTECH_LLCC68)) + +DT_COMPAT_SEMTECH_LR11XX := semtech,lr11xx + +config DT_HAS_SEMTECH_LR11XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEMTECH_LR11XX)) + +DT_COMPAT_SEMTECH_SX1261 := semtech,sx1261 + +config DT_HAS_SEMTECH_SX1261_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEMTECH_SX1261)) + +DT_COMPAT_SEMTECH_SX1262 := semtech,sx1262 + +config DT_HAS_SEMTECH_SX1262_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEMTECH_SX1262)) + +DT_COMPAT_SEMTECH_SX1268 := semtech,sx1268 + +config DT_HAS_SEMTECH_SX1268_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEMTECH_SX1268)) + +DT_COMPAT_SEMTECH_SX1272 := semtech,sx1272 + +config DT_HAS_SEMTECH_SX1272_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEMTECH_SX1272)) + +DT_COMPAT_SEMTECH_SX1276 := semtech,sx1276 + +config DT_HAS_SEMTECH_SX1276_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEMTECH_SX1276)) + +DT_COMPAT_SEMTECH_SX1278 := semtech,sx1278 + +config DT_HAS_SEMTECH_SX1278_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEMTECH_SX1278)) + +DT_COMPAT_SEMTECH_SX1509B := semtech,sx1509b + +config DT_HAS_SEMTECH_SX1509B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEMTECH_SX1509B)) + +DT_COMPAT_SEMTECH_SX9500 := semtech,sx9500 + +config DT_HAS_SEMTECH_SX9500_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SEMTECH_SX9500)) + +DT_COMPAT_SENSIRION_SCD40 := sensirion,scd40 + +config DT_HAS_SENSIRION_SCD40_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_SCD40)) + +DT_COMPAT_SENSIRION_SCD41 := sensirion,scd41 + +config DT_HAS_SENSIRION_SCD41_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_SCD41)) + +DT_COMPAT_SENSIRION_SGP40 := sensirion,sgp40 + +config DT_HAS_SENSIRION_SGP40_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_SGP40)) + +DT_COMPAT_SENSIRION_SHT21 := sensirion,sht21 + +config DT_HAS_SENSIRION_SHT21_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_SHT21)) + +DT_COMPAT_SENSIRION_SHT3XD := sensirion,sht3xd + +config DT_HAS_SENSIRION_SHT3XD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_SHT3XD)) + +DT_COMPAT_SENSIRION_SHT4X := sensirion,sht4x + +config DT_HAS_SENSIRION_SHT4X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_SHT4X)) + +DT_COMPAT_SENSIRION_SHTCX := sensirion,shtcx + +config DT_HAS_SENSIRION_SHTCX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_SHTCX)) + +DT_COMPAT_SENSIRION_STCC4 := sensirion,stcc4 + +config DT_HAS_SENSIRION_STCC4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_STCC4)) + +DT_COMPAT_SENSIRION_STS4X := sensirion,sts4x + +config DT_HAS_SENSIRION_STS4X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSIRION_STS4X)) + +DT_COMPAT_SENSRY_SY1XX := sensry,sy1xx + +config DT_HAS_SENSRY_SY1XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX)) + +DT_COMPAT_SENSRY_SY1XX_EVENT_UNIT := sensry,sy1xx-event-unit + +config DT_HAS_SENSRY_SY1XX_EVENT_UNIT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_EVENT_UNIT)) + +DT_COMPAT_SENSRY_SY1XX_GPIO := sensry,sy1xx-gpio + +config DT_HAS_SENSRY_SY1XX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_GPIO)) + +DT_COMPAT_SENSRY_SY1XX_I2C := sensry,sy1xx-i2c + +config DT_HAS_SENSRY_SY1XX_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_I2C)) + +DT_COMPAT_SENSRY_SY1XX_MAC := sensry,sy1xx-mac + +config DT_HAS_SENSRY_SY1XX_MAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_MAC)) + +DT_COMPAT_SENSRY_SY1XX_MDIO := sensry,sy1xx-mdio + +config DT_HAS_SENSRY_SY1XX_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_MDIO)) + +DT_COMPAT_SENSRY_SY1XX_PINCTRL := sensry,sy1xx-pinctrl + +config DT_HAS_SENSRY_SY1XX_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_PINCTRL)) + +DT_COMPAT_SENSRY_SY1XX_SPI := sensry,sy1xx-spi + +config DT_HAS_SENSRY_SY1XX_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_SPI)) + +DT_COMPAT_SENSRY_SY1XX_SYS_TIMER := sensry,sy1xx-sys-timer + +config DT_HAS_SENSRY_SY1XX_SYS_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_SYS_TIMER)) + +DT_COMPAT_SENSRY_SY1XX_TRNG := sensry,sy1xx-trng + +config DT_HAS_SENSRY_SY1XX_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_TRNG)) + +DT_COMPAT_SENSRY_SY1XX_UART := sensry,sy1xx-uart + +config DT_HAS_SENSRY_SY1XX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SENSRY_SY1XX_UART)) + +DT_COMPAT_SHARED_IRQ := shared-irq + +config DT_HAS_SHARED_IRQ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SHARED_IRQ)) + +DT_COMPAT_SHARP_LS0XX := sharp,ls0xx + +config DT_HAS_SHARP_LS0XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SHARP_LS0XX)) + +DT_COMPAT_SIEMENS_IVSHMEM_ETH := siemens,ivshmem-eth + +config DT_HAS_SIEMENS_IVSHMEM_ETH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIEMENS_IVSHMEM_ETH)) + +DT_COMPAT_SIFIVE_CLIC_DRAFT := sifive,clic-draft + +config DT_HAS_SIFIVE_CLIC_DRAFT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_CLIC_DRAFT)) + +DT_COMPAT_SIFIVE_CLINT0 := sifive,clint0 + +config DT_HAS_SIFIVE_CLINT0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_CLINT0)) + +DT_COMPAT_SIFIVE_DTIM0 := sifive,dtim0 + +config DT_HAS_SIFIVE_DTIM0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_DTIM0)) + +DT_COMPAT_SIFIVE_E24 := sifive,e24 + +config DT_HAS_SIFIVE_E24_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_E24)) + +DT_COMPAT_SIFIVE_E31 := sifive,e31 + +config DT_HAS_SIFIVE_E31_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_E31)) + +DT_COMPAT_SIFIVE_E51 := sifive,e51 + +config DT_HAS_SIFIVE_E51_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_E51)) + +DT_COMPAT_SIFIVE_FU740_C000_DDR := sifive,fu740-c000-ddr + +config DT_HAS_SIFIVE_FU740_C000_DDR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_FU740_C000_DDR)) + +DT_COMPAT_SIFIVE_GPIO0 := sifive,gpio0 + +config DT_HAS_SIFIVE_GPIO0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_GPIO0)) + +DT_COMPAT_SIFIVE_I2C0 := sifive,i2c0 + +config DT_HAS_SIFIVE_I2C0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_I2C0)) + +DT_COMPAT_SIFIVE_PINCTRL := sifive,pinctrl + +config DT_HAS_SIFIVE_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_PINCTRL)) + +DT_COMPAT_SIFIVE_PLIC_1_0_0 := sifive,plic-1.0.0 + +config DT_HAS_SIFIVE_PLIC_1_0_0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_PLIC_1_0_0)) + +DT_COMPAT_SIFIVE_PWM0 := sifive,pwm0 + +config DT_HAS_SIFIVE_PWM0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_PWM0)) + +DT_COMPAT_SIFIVE_S7 := sifive,s7 + +config DT_HAS_SIFIVE_S7_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_S7)) + +DT_COMPAT_SIFIVE_SPI0 := sifive,spi0 + +config DT_HAS_SIFIVE_SPI0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_SPI0)) + +DT_COMPAT_SIFIVE_U54 := sifive,u54 + +config DT_HAS_SIFIVE_U54_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_U54)) + +DT_COMPAT_SIFIVE_UART0 := sifive,uart0 + +config DT_HAS_SIFIVE_UART0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_UART0)) + +DT_COMPAT_SIFIVE_WDT := sifive,wdt + +config DT_HAS_SIFIVE_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFIVE_WDT)) + +DT_COMPAT_SIFLI_SF32LB_AON := sifli,sf32lb-aon + +config DT_HAS_SIFLI_SF32LB_AON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_AON)) + +DT_COMPAT_SIFLI_SF32LB_ATIM := sifli,sf32lb-atim + +config DT_HAS_SIFLI_SF32LB_ATIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_ATIM)) + +DT_COMPAT_SIFLI_SF32LB_ATIM_PWM := sifli,sf32lb-atim-pwm + +config DT_HAS_SIFLI_SF32LB_ATIM_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_ATIM_PWM)) + +DT_COMPAT_SIFLI_SF32LB_AUDCODEC := sifli,sf32lb-audcodec + +config DT_HAS_SIFLI_SF32LB_AUDCODEC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_AUDCODEC)) + +DT_COMPAT_SIFLI_SF32LB_CFG := sifli,sf32lb-cfg + +config DT_HAS_SIFLI_SF32LB_CFG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_CFG)) + +DT_COMPAT_SIFLI_SF32LB_CRC := sifli,sf32lb-crc + +config DT_HAS_SIFLI_SF32LB_CRC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_CRC)) + +DT_COMPAT_SIFLI_SF32LB_CRYPTO := sifli,sf32lb-crypto + +config DT_HAS_SIFLI_SF32LB_CRYPTO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_CRYPTO)) + +DT_COMPAT_SIFLI_SF32LB_DLL := sifli,sf32lb-dll + +config DT_HAS_SIFLI_SF32LB_DLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_DLL)) + +DT_COMPAT_SIFLI_SF32LB_DMAC := sifli,sf32lb-dmac + +config DT_HAS_SIFLI_SF32LB_DMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_DMAC)) + +DT_COMPAT_SIFLI_SF32LB_EFUSE := sifli,sf32lb-efuse + +config DT_HAS_SIFLI_SF32LB_EFUSE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_EFUSE)) + +DT_COMPAT_SIFLI_SF32LB_GPADC := sifli,sf32lb-gpadc + +config DT_HAS_SIFLI_SF32LB_GPADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_GPADC)) + +DT_COMPAT_SIFLI_SF32LB_GPIO := sifli,sf32lb-gpio + +config DT_HAS_SIFLI_SF32LB_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_GPIO)) + +DT_COMPAT_SIFLI_SF32LB_GPIO_PARENT := sifli,sf32lb-gpio-parent + +config DT_HAS_SIFLI_SF32LB_GPIO_PARENT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_GPIO_PARENT)) + +DT_COMPAT_SIFLI_SF32LB_GPT_PWM := sifli,sf32lb-gpt-pwm + +config DT_HAS_SIFLI_SF32LB_GPT_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_GPT_PWM)) + +DT_COMPAT_SIFLI_SF32LB_GPTIM := sifli,sf32lb-gptim + +config DT_HAS_SIFLI_SF32LB_GPTIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_GPTIM)) + +DT_COMPAT_SIFLI_SF32LB_HXT48 := sifli,sf32lb-hxt48 + +config DT_HAS_SIFLI_SF32LB_HXT48_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_HXT48)) + +DT_COMPAT_SIFLI_SF32LB_I2C := sifli,sf32lb-i2c + +config DT_HAS_SIFLI_SF32LB_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_I2C)) + +DT_COMPAT_SIFLI_SF32LB_LCDC := sifli,sf32lb-lcdc + +config DT_HAS_SIFLI_SF32LB_LCDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_LCDC)) + +DT_COMPAT_SIFLI_SF32LB_LCDC_MIPI_DBI := sifli,sf32lb-lcdc-mipi-dbi + +config DT_HAS_SIFLI_SF32LB_LCDC_MIPI_DBI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_LCDC_MIPI_DBI)) + +DT_COMPAT_SIFLI_SF32LB_MAILBOX := sifli,sf32lb-mailbox + +config DT_HAS_SIFLI_SF32LB_MAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_MAILBOX)) + +DT_COMPAT_SIFLI_SF32LB_MPI_QSPI_NOR := sifli,sf32lb-mpi-qspi-nor + +config DT_HAS_SIFLI_SF32LB_MPI_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_MPI_QSPI_NOR)) + +DT_COMPAT_SIFLI_SF32LB_PMUC := sifli,sf32lb-pmuc + +config DT_HAS_SIFLI_SF32LB_PMUC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_PMUC)) + +DT_COMPAT_SIFLI_SF32LB_RCC := sifli,sf32lb-rcc + +config DT_HAS_SIFLI_SF32LB_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_RCC)) + +DT_COMPAT_SIFLI_SF32LB_RCC_CLK := sifli,sf32lb-rcc-clk + +config DT_HAS_SIFLI_SF32LB_RCC_CLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_RCC_CLK)) + +DT_COMPAT_SIFLI_SF32LB_RCC_RCTL := sifli,sf32lb-rcc-rctl + +config DT_HAS_SIFLI_SF32LB_RCC_RCTL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_RCC_RCTL)) + +DT_COMPAT_SIFLI_SF32LB_RTC := sifli,sf32lb-rtc + +config DT_HAS_SIFLI_SF32LB_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_RTC)) + +DT_COMPAT_SIFLI_SF32LB_RTC_BACKUP := sifli,sf32lb-rtc-backup + +config DT_HAS_SIFLI_SF32LB_RTC_BACKUP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_RTC_BACKUP)) + +DT_COMPAT_SIFLI_SF32LB_SPI := sifli,sf32lb-spi + +config DT_HAS_SIFLI_SF32LB_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_SPI)) + +DT_COMPAT_SIFLI_SF32LB_TRNG := sifli,sf32lb-trng + +config DT_HAS_SIFLI_SF32LB_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_TRNG)) + +DT_COMPAT_SIFLI_SF32LB_TSEN := sifli,sf32lb-tsen + +config DT_HAS_SIFLI_SF32LB_TSEN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_TSEN)) + +DT_COMPAT_SIFLI_SF32LB_USART := sifli,sf32lb-usart + +config DT_HAS_SIFLI_SF32LB_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_USART)) + +DT_COMPAT_SIFLI_SF32LB_WDT := sifli,sf32lb-wdt + +config DT_HAS_SIFLI_SF32LB_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB_WDT)) + +DT_COMPAT_SIFLI_SF32LB52X_PINMUX := sifli,sf32lb52x-pinmux + +config DT_HAS_SIFLI_SF32LB52X_PINMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIFLI_SF32LB52X_PINMUX)) + +DT_COMPAT_SILABS_ACMP := silabs,acmp + +config DT_HAS_SILABS_ACMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_ACMP)) + +DT_COMPAT_SILABS_BT_HCI_EFR32 := silabs,bt-hci-efr32 + +config DT_HAS_SILABS_BT_HCI_EFR32_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_BT_HCI_EFR32)) + +DT_COMPAT_SILABS_BURAM := silabs,buram + +config DT_HAS_SILABS_BURAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_BURAM)) + +DT_COMPAT_SILABS_BURTC_COUNTER := silabs,burtc-counter + +config DT_HAS_SILABS_BURTC_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_BURTC_COUNTER)) + +DT_COMPAT_SILABS_DBUS_PINCTRL := silabs,dbus-pinctrl + +config DT_HAS_SILABS_DBUS_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_DBUS_PINCTRL)) + +DT_COMPAT_SILABS_EUSART_SPI := silabs,eusart-spi + +config DT_HAS_SILABS_EUSART_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_EUSART_SPI)) + +DT_COMPAT_SILABS_EUSART_UART := silabs,eusart-uart + +config DT_HAS_SILABS_EUSART_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_EUSART_UART)) + +DT_COMPAT_SILABS_EXP_HEADER := silabs,exp-header + +config DT_HAS_SILABS_EXP_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_EXP_HEADER)) + +DT_COMPAT_SILABS_GECKO_ADC := silabs,gecko-adc + +config DT_HAS_SILABS_GECKO_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_ADC)) + +DT_COMPAT_SILABS_GECKO_BURTC := silabs,gecko-burtc + +config DT_HAS_SILABS_GECKO_BURTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_BURTC)) + +DT_COMPAT_SILABS_GECKO_ETHERNET := silabs,gecko-ethernet + +config DT_HAS_SILABS_GECKO_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_ETHERNET)) + +DT_COMPAT_SILABS_GECKO_FLASH_CONTROLLER := silabs,gecko-flash-controller + +config DT_HAS_SILABS_GECKO_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_FLASH_CONTROLLER)) + +DT_COMPAT_SILABS_GECKO_GPIO := silabs,gecko-gpio + +config DT_HAS_SILABS_GECKO_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_GPIO)) + +DT_COMPAT_SILABS_GECKO_GPIO_PORT := silabs,gecko-gpio-port + +config DT_HAS_SILABS_GECKO_GPIO_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_GPIO_PORT)) + +DT_COMPAT_SILABS_GECKO_I2C := silabs,gecko-i2c + +config DT_HAS_SILABS_GECKO_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_I2C)) + +DT_COMPAT_SILABS_GECKO_LEUART := silabs,gecko-leuart + +config DT_HAS_SILABS_GECKO_LEUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_LEUART)) + +DT_COMPAT_SILABS_GECKO_PINCTRL := silabs,gecko-pinctrl + +config DT_HAS_SILABS_GECKO_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_PINCTRL)) + +DT_COMPAT_SILABS_GECKO_PWM := silabs,gecko-pwm + +config DT_HAS_SILABS_GECKO_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_PWM)) + +DT_COMPAT_SILABS_GECKO_RTCC := silabs,gecko-rtcc + +config DT_HAS_SILABS_GECKO_RTCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_RTCC)) + +DT_COMPAT_SILABS_GECKO_SEMAILBOX := silabs,gecko-semailbox + +config DT_HAS_SILABS_GECKO_SEMAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_SEMAILBOX)) + +DT_COMPAT_SILABS_GECKO_STIMER := silabs,gecko-stimer + +config DT_HAS_SILABS_GECKO_STIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_STIMER)) + +DT_COMPAT_SILABS_GECKO_TIMER := silabs,gecko-timer + +config DT_HAS_SILABS_GECKO_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_TIMER)) + +DT_COMPAT_SILABS_GECKO_TRNG := silabs,gecko-trng + +config DT_HAS_SILABS_GECKO_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_TRNG)) + +DT_COMPAT_SILABS_GECKO_UART := silabs,gecko-uart + +config DT_HAS_SILABS_GECKO_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_UART)) + +DT_COMPAT_SILABS_GECKO_USART := silabs,gecko-usart + +config DT_HAS_SILABS_GECKO_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_USART)) + +DT_COMPAT_SILABS_GECKO_WDOG := silabs,gecko-wdog + +config DT_HAS_SILABS_GECKO_WDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GECKO_WDOG)) + +DT_COMPAT_SILABS_GPCRC := silabs,gpcrc + +config DT_HAS_SILABS_GPCRC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GPCRC)) + +DT_COMPAT_SILABS_GPDMA := silabs,gpdma + +config DT_HAS_SILABS_GPDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GPDMA)) + +DT_COMPAT_SILABS_GPIO := silabs,gpio + +config DT_HAS_SILABS_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GPIO)) + +DT_COMPAT_SILABS_GPIO_PORT := silabs,gpio-port + +config DT_HAS_SILABS_GPIO_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GPIO_PORT)) + +DT_COMPAT_SILABS_GSPI := silabs,gspi + +config DT_HAS_SILABS_GSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_GSPI)) + +DT_COMPAT_SILABS_HFXO := silabs,hfxo + +config DT_HAS_SILABS_HFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_HFXO)) + +DT_COMPAT_SILABS_I2C := silabs,i2c + +config DT_HAS_SILABS_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_I2C)) + +DT_COMPAT_SILABS_IADC := silabs,iadc + +config DT_HAS_SILABS_IADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_IADC)) + +DT_COMPAT_SILABS_LDMA := silabs,ldma + +config DT_HAS_SILABS_LDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_LDMA)) + +DT_COMPAT_SILABS_LETIMER_PWM := silabs,letimer-pwm + +config DT_HAS_SILABS_LETIMER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_LETIMER_PWM)) + +DT_COMPAT_SILABS_PROTIMER := silabs,protimer + +config DT_HAS_SILABS_PROTIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_PROTIMER)) + +DT_COMPAT_SILABS_PTI := silabs,pti + +config DT_HAS_SILABS_PTI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_PTI)) + +DT_COMPAT_SILABS_RTCC := silabs,rtcc + +config DT_HAS_SILABS_RTCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_RTCC)) + +DT_COMPAT_SILABS_SERIES_CLOCK := silabs,series-clock + +config DT_HAS_SILABS_SERIES_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES_CLOCK)) + +DT_COMPAT_SILABS_SERIES2_DCDC := silabs,series2-dcdc + +config DT_HAS_SILABS_SERIES2_DCDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_DCDC)) + +DT_COMPAT_SILABS_SERIES2_FLASH_CONTROLLER := silabs,series2-flash-controller + +config DT_HAS_SILABS_SERIES2_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_FLASH_CONTROLLER)) + +DT_COMPAT_SILABS_SERIES2_HFRCODPLL := silabs,series2-hfrcodpll + +config DT_HAS_SILABS_SERIES2_HFRCODPLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_HFRCODPLL)) + +DT_COMPAT_SILABS_SERIES2_HFRCOEM23 := silabs,series2-hfrcoem23 + +config DT_HAS_SILABS_SERIES2_HFRCOEM23_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_HFRCOEM23)) + +DT_COMPAT_SILABS_SERIES2_LETIMER := silabs,series2-letimer + +config DT_HAS_SILABS_SERIES2_LETIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_LETIMER)) + +DT_COMPAT_SILABS_SERIES2_LFRCO := silabs,series2-lfrco + +config DT_HAS_SILABS_SERIES2_LFRCO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_LFRCO)) + +DT_COMPAT_SILABS_SERIES2_LFXO := silabs,series2-lfxo + +config DT_HAS_SILABS_SERIES2_LFXO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_LFXO)) + +DT_COMPAT_SILABS_SERIES2_RADIO := silabs,series2-radio + +config DT_HAS_SILABS_SERIES2_RADIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_RADIO)) + +DT_COMPAT_SILABS_SERIES2_TIMER := silabs,series2-timer + +config DT_HAS_SILABS_SERIES2_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SERIES2_TIMER)) + +DT_COMPAT_SILABS_SI32_AES := silabs,si32-aes + +config DT_HAS_SILABS_SI32_AES_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_AES)) + +DT_COMPAT_SILABS_SI32_AHB := silabs,si32-ahb + +config DT_HAS_SILABS_SI32_AHB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_AHB)) + +DT_COMPAT_SILABS_SI32_APB := silabs,si32-apb + +config DT_HAS_SILABS_SI32_APB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_APB)) + +DT_COMPAT_SILABS_SI32_DMA := silabs,si32-dma + +config DT_HAS_SILABS_SI32_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_DMA)) + +DT_COMPAT_SILABS_SI32_FLASH_CONTROLLER := silabs,si32-flash-controller + +config DT_HAS_SILABS_SI32_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_FLASH_CONTROLLER)) + +DT_COMPAT_SILABS_SI32_GPIO := silabs,si32-gpio + +config DT_HAS_SILABS_SI32_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_GPIO)) + +DT_COMPAT_SILABS_SI32_PINCTRL := silabs,si32-pinctrl + +config DT_HAS_SILABS_SI32_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_PINCTRL)) + +DT_COMPAT_SILABS_SI32_PLL := silabs,si32-pll + +config DT_HAS_SILABS_SI32_PLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_PLL)) + +DT_COMPAT_SILABS_SI32_USART := silabs,si32-usart + +config DT_HAS_SILABS_SI32_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI32_USART)) + +DT_COMPAT_SILABS_SI7006 := silabs,si7006 + +config DT_HAS_SILABS_SI7006_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI7006)) + +DT_COMPAT_SILABS_SI7055 := silabs,si7055 + +config DT_HAS_SILABS_SI7055_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI7055)) + +DT_COMPAT_SILABS_SI7060 := silabs,si7060 + +config DT_HAS_SILABS_SI7060_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI7060)) + +DT_COMPAT_SILABS_SI7210 := silabs,si7210 + +config DT_HAS_SILABS_SI7210_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SI7210)) + +DT_COMPAT_SILABS_SIWX91X_ADC := silabs,siwx91x-adc + +config DT_HAS_SILABS_SIWX91X_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_ADC)) + +DT_COMPAT_SILABS_SIWX91X_BT_HCI := silabs,siwx91x-bt-hci + +config DT_HAS_SILABS_SIWX91X_BT_HCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_BT_HCI)) + +DT_COMPAT_SILABS_SIWX91X_CLOCK := silabs,siwx91x-clock + +config DT_HAS_SILABS_SIWX91X_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_CLOCK)) + +DT_COMPAT_SILABS_SIWX91X_DMA := silabs,siwx91x-dma + +config DT_HAS_SILABS_SIWX91X_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_DMA)) + +DT_COMPAT_SILABS_SIWX91X_FLASH_CONTROLLER := silabs,siwx91x-flash-controller + +config DT_HAS_SILABS_SIWX91X_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_FLASH_CONTROLLER)) + +DT_COMPAT_SILABS_SIWX91X_GPIO := silabs,siwx91x-gpio + +config DT_HAS_SILABS_SIWX91X_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_GPIO)) + +DT_COMPAT_SILABS_SIWX91X_GPIO_PORT := silabs,siwx91x-gpio-port + +config DT_HAS_SILABS_SIWX91X_GPIO_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_GPIO_PORT)) + +DT_COMPAT_SILABS_SIWX91X_GPIO_UULP := silabs,siwx91x-gpio-uulp + +config DT_HAS_SILABS_SIWX91X_GPIO_UULP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_GPIO_UULP)) + +DT_COMPAT_SILABS_SIWX91X_I2S := silabs,siwx91x-i2s + +config DT_HAS_SILABS_SIWX91X_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_I2S)) + +DT_COMPAT_SILABS_SIWX91X_NWP := silabs,siwx91x-nwp + +config DT_HAS_SILABS_SIWX91X_NWP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_NWP)) + +DT_COMPAT_SILABS_SIWX91X_PINCTRL := silabs,siwx91x-pinctrl + +config DT_HAS_SILABS_SIWX91X_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_PINCTRL)) + +DT_COMPAT_SILABS_SIWX91X_POWER_DOMAIN := silabs,siwx91x-power-domain + +config DT_HAS_SILABS_SIWX91X_POWER_DOMAIN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_POWER_DOMAIN)) + +DT_COMPAT_SILABS_SIWX91X_PWM := silabs,siwx91x-pwm + +config DT_HAS_SILABS_SIWX91X_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_PWM)) + +DT_COMPAT_SILABS_SIWX91X_QSPI_MEMORY := silabs,siwx91x-qspi-memory + +config DT_HAS_SILABS_SIWX91X_QSPI_MEMORY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_QSPI_MEMORY)) + +DT_COMPAT_SILABS_SIWX91X_RNG := silabs,siwx91x-rng + +config DT_HAS_SILABS_SIWX91X_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_RNG)) + +DT_COMPAT_SILABS_SIWX91X_RTC := silabs,siwx91x-rtc + +config DT_HAS_SILABS_SIWX91X_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_RTC)) + +DT_COMPAT_SILABS_SIWX91X_WDT := silabs,siwx91x-wdt + +config DT_HAS_SILABS_SIWX91X_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_WDT)) + +DT_COMPAT_SILABS_SIWX91X_WIFI := silabs,siwx91x-wifi + +config DT_HAS_SILABS_SIWX91X_WIFI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SIWX91X_WIFI)) + +DT_COMPAT_SILABS_SYSRTC := silabs,sysrtc + +config DT_HAS_SILABS_SYSRTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_SYSRTC)) + +DT_COMPAT_SILABS_TIMER_COUNTER := silabs,timer-counter + +config DT_HAS_SILABS_TIMER_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_TIMER_COUNTER)) + +DT_COMPAT_SILABS_TIMER_PWM := silabs,timer-pwm + +config DT_HAS_SILABS_TIMER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_TIMER_PWM)) + +DT_COMPAT_SILABS_USART_SPI := silabs,usart-spi + +config DT_HAS_SILABS_USART_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_USART_SPI)) + +DT_COMPAT_SILABS_USART_UART := silabs,usart-uart + +config DT_HAS_SILABS_USART_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_USART_UART)) + +DT_COMPAT_SILABS_VDAC := silabs,vdac + +config DT_HAS_SILABS_VDAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILABS_VDAC)) + +DT_COMPAT_SILERGY_SY24561 := silergy,sy24561 + +config DT_HAS_SILERGY_SY24561_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SILERGY_SY24561)) + +DT_COMPAT_SIMCOM_A76XX := simcom,a76xx + +config DT_HAS_SIMCOM_A76XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIMCOM_A76XX)) + +DT_COMPAT_SIMCOM_SIM7080 := simcom,sim7080 + +config DT_HAS_SIMCOM_SIM7080_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SIMCOM_SIM7080)) + +DT_COMPAT_SINOWEALTH_SH1106 := sinowealth,sh1106 + +config DT_HAS_SINOWEALTH_SH1106_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SINOWEALTH_SH1106)) + +DT_COMPAT_SINOWEALTH_SH1122 := sinowealth,sh1122 + +config DT_HAS_SINOWEALTH_SH1122_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SINOWEALTH_SH1122)) + +DT_COMPAT_SITRONIX_CF1133 := sitronix,cf1133 + +config DT_HAS_SITRONIX_CF1133_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_CF1133)) + +DT_COMPAT_SITRONIX_ST7305 := sitronix,st7305 + +config DT_HAS_SITRONIX_ST7305_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_ST7305)) + +DT_COMPAT_SITRONIX_ST7306 := sitronix,st7306 + +config DT_HAS_SITRONIX_ST7306_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_ST7306)) + +DT_COMPAT_SITRONIX_ST75256 := sitronix,st75256 + +config DT_HAS_SITRONIX_ST75256_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_ST75256)) + +DT_COMPAT_SITRONIX_ST7567 := sitronix,st7567 + +config DT_HAS_SITRONIX_ST7567_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_ST7567)) + +DT_COMPAT_SITRONIX_ST7586S := sitronix,st7586s + +config DT_HAS_SITRONIX_ST7586S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_ST7586S)) + +DT_COMPAT_SITRONIX_ST7701 := sitronix,st7701 + +config DT_HAS_SITRONIX_ST7701_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_ST7701)) + +DT_COMPAT_SITRONIX_ST7735R := sitronix,st7735r + +config DT_HAS_SITRONIX_ST7735R_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_ST7735R)) + +DT_COMPAT_SITRONIX_ST7789V := sitronix,st7789v + +config DT_HAS_SITRONIX_ST7789V_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_ST7789V)) + +DT_COMPAT_SITRONIX_ST7796S := sitronix,st7796s + +config DT_HAS_SITRONIX_ST7796S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SITRONIX_ST7796S)) + +DT_COMPAT_SKYWORKS_SKY13317 := skyworks,sky13317 + +config DT_HAS_SKYWORKS_SKY13317_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SKYWORKS_SKY13317)) + +DT_COMPAT_SKYWORKS_SKY13348 := skyworks,sky13348 + +config DT_HAS_SKYWORKS_SKY13348_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SKYWORKS_SKY13348)) + +DT_COMPAT_SKYWORKS_SKY13351 := skyworks,sky13351 + +config DT_HAS_SKYWORKS_SKY13351_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SKYWORKS_SKY13351)) + +DT_COMPAT_SMSC_LAN91C111 := smsc,lan91c111 + +config DT_HAS_SMSC_LAN91C111_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SMSC_LAN91C111)) + +DT_COMPAT_SMSC_LAN91C111_MDIO := smsc,lan91c111-mdio + +config DT_HAS_SMSC_LAN91C111_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SMSC_LAN91C111_MDIO)) + +DT_COMPAT_SMSC_LAN9220 := smsc,lan9220 + +config DT_HAS_SMSC_LAN9220_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SMSC_LAN9220)) + +DT_COMPAT_SNPS_ARC_IOT_SYSCONF := snps,arc-iot-sysconf + +config DT_HAS_SNPS_ARC_IOT_SYSCONF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_ARC_IOT_SYSCONF)) + +DT_COMPAT_SNPS_ARC_TIMER := snps,arc-timer + +config DT_HAS_SNPS_ARC_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_ARC_TIMER)) + +DT_COMPAT_SNPS_ARCEM := snps,arcem + +config DT_HAS_SNPS_ARCEM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_ARCEM)) + +DT_COMPAT_SNPS_ARCHS_ICI := snps,archs-ici + +config DT_HAS_SNPS_ARCHS_ICI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_ARCHS_ICI)) + +DT_COMPAT_SNPS_ARCHS_IDU_INTC := snps,archs-idu-intc + +config DT_HAS_SNPS_ARCHS_IDU_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_ARCHS_IDU_INTC)) + +DT_COMPAT_SNPS_ARCV2_INTC := snps,arcv2-intc + +config DT_HAS_SNPS_ARCV2_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_ARCV2_INTC)) + +DT_COMPAT_SNPS_AV5RHX := snps,av5rhx + +config DT_HAS_SNPS_AV5RHX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_AV5RHX)) + +DT_COMPAT_SNPS_AV5RMX := snps,av5rmx + +config DT_HAS_SNPS_AV5RMX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_AV5RMX)) + +DT_COMPAT_SNPS_CREG_GPIO := snps,creg-gpio + +config DT_HAS_SNPS_CREG_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_CREG_GPIO)) + +DT_COMPAT_SNPS_DESIGNWARE_DMA := snps,designware-dma + +config DT_HAS_SNPS_DESIGNWARE_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_DMA)) + +DT_COMPAT_SNPS_DESIGNWARE_DMA_AXI := snps,designware-dma-axi + +config DT_HAS_SNPS_DESIGNWARE_DMA_AXI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_DMA_AXI)) + +DT_COMPAT_SNPS_DESIGNWARE_ETHERNET := snps,designware-ethernet + +config DT_HAS_SNPS_DESIGNWARE_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_ETHERNET)) + +DT_COMPAT_SNPS_DESIGNWARE_GPIO := snps,designware-gpio + +config DT_HAS_SNPS_DESIGNWARE_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_GPIO)) + +DT_COMPAT_SNPS_DESIGNWARE_I2C := snps,designware-i2c + +config DT_HAS_SNPS_DESIGNWARE_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_I2C)) + +DT_COMPAT_SNPS_DESIGNWARE_I3C := snps,designware-i3c + +config DT_HAS_SNPS_DESIGNWARE_I3C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_I3C)) + +DT_COMPAT_SNPS_DESIGNWARE_INTC := snps,designware-intc + +config DT_HAS_SNPS_DESIGNWARE_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_INTC)) + +DT_COMPAT_SNPS_DESIGNWARE_SPI := snps,designware-spi + +config DT_HAS_SNPS_DESIGNWARE_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_SPI)) + +DT_COMPAT_SNPS_DESIGNWARE_SSI := snps,designware-ssi + +config DT_HAS_SNPS_DESIGNWARE_SSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_SSI)) + +DT_COMPAT_SNPS_DESIGNWARE_USB := snps,designware-usb + +config DT_HAS_SNPS_DESIGNWARE_USB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_USB)) + +DT_COMPAT_SNPS_DESIGNWARE_WATCHDOG := snps,designware-watchdog + +config DT_HAS_SNPS_DESIGNWARE_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DESIGNWARE_WATCHDOG)) + +DT_COMPAT_SNPS_DW_TIMERS := snps,dw-timers + +config DT_HAS_SNPS_DW_TIMERS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DW_TIMERS)) + +DT_COMPAT_SNPS_DWC2 := snps,dwc2 + +config DT_HAS_SNPS_DWC2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DWC2)) + +DT_COMPAT_SNPS_DWCXGMAC := snps,dwcxgmac + +config DT_HAS_SNPS_DWCXGMAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DWCXGMAC)) + +DT_COMPAT_SNPS_DWCXGMAC_MDIO := snps,dwcxgmac-mdio + +config DT_HAS_SNPS_DWCXGMAC_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_DWCXGMAC_MDIO)) + +DT_COMPAT_SNPS_EMSDP_PINCTRL := snps,emsdp-pinctrl + +config DT_HAS_SNPS_EMSDP_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_EMSDP_PINCTRL)) + +DT_COMPAT_SNPS_ETHERNET_CYCLONEV := snps,ethernet-cyclonev + +config DT_HAS_SNPS_ETHERNET_CYCLONEV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_ETHERNET_CYCLONEV)) + +DT_COMPAT_SNPS_HOSTLINK_UART := snps,hostlink-uart + +config DT_HAS_SNPS_HOSTLINK_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_HOSTLINK_UART)) + +DT_COMPAT_SNPS_NSIM_UART := snps,nsim-uart + +config DT_HAS_SNPS_NSIM_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SNPS_NSIM_UART)) + +DT_COMPAT_SOC_NV_FLASH := soc-nv-flash + +config DT_HAS_SOC_NV_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOC_NV_FLASH)) + +DT_COMPAT_SOLDEREDELECTRONICS_EASYC_CONNECTOR := solderedelectronics,easyc-connector + +config DT_HAS_SOLDEREDELECTRONICS_EASYC_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLDEREDELECTRONICS_EASYC_CONNECTOR)) + +DT_COMPAT_SOLOMON_SSD1306 := solomon,ssd1306 + +config DT_HAS_SOLOMON_SSD1306_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1306)) + +DT_COMPAT_SOLOMON_SSD1309 := solomon,ssd1309 + +config DT_HAS_SOLOMON_SSD1309_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1309)) + +DT_COMPAT_SOLOMON_SSD1320 := solomon,ssd1320 + +config DT_HAS_SOLOMON_SSD1320_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1320)) + +DT_COMPAT_SOLOMON_SSD1322 := solomon,ssd1322 + +config DT_HAS_SOLOMON_SSD1322_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1322)) + +DT_COMPAT_SOLOMON_SSD1325 := solomon,ssd1325 + +config DT_HAS_SOLOMON_SSD1325_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1325)) + +DT_COMPAT_SOLOMON_SSD1327 := solomon,ssd1327 + +config DT_HAS_SOLOMON_SSD1327_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1327)) + +DT_COMPAT_SOLOMON_SSD1331 := solomon,ssd1331 + +config DT_HAS_SOLOMON_SSD1331_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1331)) + +DT_COMPAT_SOLOMON_SSD1351 := solomon,ssd1351 + +config DT_HAS_SOLOMON_SSD1351_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1351)) + +DT_COMPAT_SOLOMON_SSD1357 := solomon,ssd1357 + +config DT_HAS_SOLOMON_SSD1357_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1357)) + +DT_COMPAT_SOLOMON_SSD1363 := solomon,ssd1363 + +config DT_HAS_SOLOMON_SSD1363_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1363)) + +DT_COMPAT_SOLOMON_SSD1608 := solomon,ssd1608 + +config DT_HAS_SOLOMON_SSD1608_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1608)) + +DT_COMPAT_SOLOMON_SSD1673 := solomon,ssd1673 + +config DT_HAS_SOLOMON_SSD1673_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1673)) + +DT_COMPAT_SOLOMON_SSD1675A := solomon,ssd1675a + +config DT_HAS_SOLOMON_SSD1675A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1675A)) + +DT_COMPAT_SOLOMON_SSD1680 := solomon,ssd1680 + +config DT_HAS_SOLOMON_SSD1680_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1680)) + +DT_COMPAT_SOLOMON_SSD1681 := solomon,ssd1681 + +config DT_HAS_SOLOMON_SSD1681_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SOLOMON_SSD1681)) + +DT_COMPAT_SONY_IMX219 := sony,imx219 + +config DT_HAS_SONY_IMX219_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SONY_IMX219)) + +DT_COMPAT_SONY_IMX335 := sony,imx335 + +config DT_HAS_SONY_IMX335_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SONY_IMX335)) + +DT_COMPAT_SPARKFUN_MICROMOD_GPIO := sparkfun,micromod-gpio + +config DT_HAS_SPARKFUN_MICROMOD_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SPARKFUN_MICROMOD_GPIO)) + +DT_COMPAT_SPARKFUN_PRO_MICRO_GPIO := sparkfun,pro-micro-gpio + +config DT_HAS_SPARKFUN_PRO_MICRO_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SPARKFUN_PRO_MICRO_GPIO)) + +DT_COMPAT_SPARKFUN_SERLCD := sparkfun,serlcd + +config DT_HAS_SPARKFUN_SERLCD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SPARKFUN_SERLCD)) + +DT_COMPAT_SPI_HDLC_RCP_IF := spi,hdlc-rcp-if + +config DT_HAS_SPI_HDLC_RCP_IF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SPI_HDLC_RCP_IF)) + +DT_COMPAT_SPINALHDL_VEXRISCV := spinalhdl,vexriscv + +config DT_HAS_SPINALHDL_VEXRISCV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SPINALHDL_VEXRISCV)) + +DT_COMPAT_SQN_GM02S := sqn,gm02s + +config DT_HAS_SQN_GM02S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SQN_GM02S)) + +DT_COMPAT_SQN_HWSPINLOCK := sqn,hwspinlock + +config DT_HAS_SQN_HWSPINLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SQN_HWSPINLOCK)) + +DT_COMPAT_ST_DCMI_CAMERA_FPU_330ZH := st,dcmi-camera-fpu-330zh + +config DT_HAS_ST_DCMI_CAMERA_FPU_330ZH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_DCMI_CAMERA_FPU_330ZH)) + +DT_COMPAT_ST_DSI_LCD_QSH_030 := st,dsi-lcd-qsh-030 + +config DT_HAS_ST_DSI_LCD_QSH_030_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_DSI_LCD_QSH_030)) + +DT_COMPAT_ST_HCI_SPI_V1 := st,hci-spi-v1 + +config DT_HAS_ST_HCI_SPI_V1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_HCI_SPI_V1)) + +DT_COMPAT_ST_HCI_SPI_V2 := st,hci-spi-v2 + +config DT_HAS_ST_HCI_SPI_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_HCI_SPI_V2)) + +DT_COMPAT_ST_HCI_STM32WB0 := st,hci-stm32wb0 + +config DT_HAS_ST_HCI_STM32WB0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_HCI_STM32WB0)) + +DT_COMPAT_ST_HCI_STM32WBA := st,hci-stm32wba + +config DT_HAS_ST_HCI_STM32WBA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_HCI_STM32WBA)) + +DT_COMPAT_ST_HTS221 := st,hts221 + +config DT_HAS_ST_HTS221_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_HTS221)) + +DT_COMPAT_ST_I3G4250D := st,i3g4250d + +config DT_HAS_ST_I3G4250D_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_I3G4250D)) + +DT_COMPAT_ST_IIS2DH := st,iis2dh + +config DT_HAS_ST_IIS2DH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_IIS2DH)) + +DT_COMPAT_ST_IIS2DLPC := st,iis2dlpc + +config DT_HAS_ST_IIS2DLPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_IIS2DLPC)) + +DT_COMPAT_ST_IIS2ICLX := st,iis2iclx + +config DT_HAS_ST_IIS2ICLX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_IIS2ICLX)) + +DT_COMPAT_ST_IIS2MDC := st,iis2mdc + +config DT_HAS_ST_IIS2MDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_IIS2MDC)) + +DT_COMPAT_ST_IIS328DQ := st,iis328dq + +config DT_HAS_ST_IIS328DQ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_IIS328DQ)) + +DT_COMPAT_ST_IIS3DHHC := st,iis3dhhc + +config DT_HAS_ST_IIS3DHHC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_IIS3DHHC)) + +DT_COMPAT_ST_IIS3DWB := st,iis3dwb + +config DT_HAS_ST_IIS3DWB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_IIS3DWB)) + +DT_COMPAT_ST_ILPS22QS := st,ilps22qs + +config DT_HAS_ST_ILPS22QS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_ILPS22QS)) + +DT_COMPAT_ST_ISM330DHCX := st,ism330dhcx + +config DT_HAS_ST_ISM330DHCX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_ISM330DHCX)) + +DT_COMPAT_ST_ISM6HG256X := st,ism6hg256x + +config DT_HAS_ST_ISM6HG256X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_ISM6HG256X)) + +DT_COMPAT_ST_LIS2DE12 := st,lis2de12 + +config DT_HAS_ST_LIS2DE12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DE12)) + +DT_COMPAT_ST_LIS2DH := st,lis2dh + +config DT_HAS_ST_LIS2DH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DH)) + +DT_COMPAT_ST_LIS2DH12 := st,lis2dh12 + +config DT_HAS_ST_LIS2DH12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DH12)) + +DT_COMPAT_ST_LIS2DS12 := st,lis2ds12 + +config DT_HAS_ST_LIS2DS12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DS12)) + +DT_COMPAT_ST_LIS2DU12 := st,lis2du12 + +config DT_HAS_ST_LIS2DU12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DU12)) + +DT_COMPAT_ST_LIS2DUX12 := st,lis2dux12 + +config DT_HAS_ST_LIS2DUX12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DUX12)) + +DT_COMPAT_ST_LIS2DUXS12 := st,lis2duxs12 + +config DT_HAS_ST_LIS2DUXS12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DUXS12)) + +DT_COMPAT_ST_LIS2DW12 := st,lis2dw12 + +config DT_HAS_ST_LIS2DW12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2DW12)) + +DT_COMPAT_ST_LIS2MDL := st,lis2mdl + +config DT_HAS_ST_LIS2MDL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS2MDL)) + +DT_COMPAT_ST_LIS3DH := st,lis3dh + +config DT_HAS_ST_LIS3DH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS3DH)) + +DT_COMPAT_ST_LIS3MDL_MAGN := st,lis3mdl-magn + +config DT_HAS_ST_LIS3MDL_MAGN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LIS3MDL_MAGN)) + +DT_COMPAT_ST_LPS22DF := st,lps22df + +config DT_HAS_ST_LPS22DF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LPS22DF)) + +DT_COMPAT_ST_LPS22HB_PRESS := st,lps22hb-press + +config DT_HAS_ST_LPS22HB_PRESS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LPS22HB_PRESS)) + +DT_COMPAT_ST_LPS22HH := st,lps22hh + +config DT_HAS_ST_LPS22HH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LPS22HH)) + +DT_COMPAT_ST_LPS25HB_PRESS := st,lps25hb-press + +config DT_HAS_ST_LPS25HB_PRESS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LPS25HB_PRESS)) + +DT_COMPAT_ST_LPS28DFW := st,lps28dfw + +config DT_HAS_ST_LPS28DFW_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LPS28DFW)) + +DT_COMPAT_ST_LSM303AGR_ACCEL := st,lsm303agr-accel + +config DT_HAS_ST_LSM303AGR_ACCEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM303AGR_ACCEL)) + +DT_COMPAT_ST_LSM303DLHC_ACCEL := st,lsm303dlhc-accel + +config DT_HAS_ST_LSM303DLHC_ACCEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM303DLHC_ACCEL)) + +DT_COMPAT_ST_LSM303DLHC_MAGN := st,lsm303dlhc-magn + +config DT_HAS_ST_LSM303DLHC_MAGN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM303DLHC_MAGN)) + +DT_COMPAT_ST_LSM6DS0 := st,lsm6ds0 + +config DT_HAS_ST_LSM6DS0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM6DS0)) + +DT_COMPAT_ST_LSM6DSL := st,lsm6dsl + +config DT_HAS_ST_LSM6DSL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM6DSL)) + +DT_COMPAT_ST_LSM6DSO := st,lsm6dso + +config DT_HAS_ST_LSM6DSO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM6DSO)) + +DT_COMPAT_ST_LSM6DSO16IS := st,lsm6dso16is + +config DT_HAS_ST_LSM6DSO16IS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM6DSO16IS)) + +DT_COMPAT_ST_LSM6DSO32 := st,lsm6dso32 + +config DT_HAS_ST_LSM6DSO32_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM6DSO32)) + +DT_COMPAT_ST_LSM6DSV16X := st,lsm6dsv16x + +config DT_HAS_ST_LSM6DSV16X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM6DSV16X)) + +DT_COMPAT_ST_LSM6DSV320X := st,lsm6dsv320x + +config DT_HAS_ST_LSM6DSV320X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM6DSV320X)) + +DT_COMPAT_ST_LSM6DSV32X := st,lsm6dsv32x + +config DT_HAS_ST_LSM6DSV32X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM6DSV32X)) + +DT_COMPAT_ST_LSM6DSV80X := st,lsm6dsv80x + +config DT_HAS_ST_LSM6DSV80X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM6DSV80X)) + +DT_COMPAT_ST_LSM9DS0_GYRO := st,lsm9ds0-gyro + +config DT_HAS_ST_LSM9DS0_GYRO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM9DS0_GYRO)) + +DT_COMPAT_ST_LSM9DS0_MFD := st,lsm9ds0-mfd + +config DT_HAS_ST_LSM9DS0_MFD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM9DS0_MFD)) + +DT_COMPAT_ST_LSM9DS1 := st,lsm9ds1 + +config DT_HAS_ST_LSM9DS1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM9DS1)) + +DT_COMPAT_ST_LSM9DS1_MAG := st,lsm9ds1_mag + +config DT_HAS_ST_LSM9DS1_MAG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_LSM9DS1_MAG)) + +DT_COMPAT_ST_MBOX_STM32_HSEM := st,mbox-stm32-hsem + +config DT_HAS_ST_MBOX_STM32_HSEM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_MBOX_STM32_HSEM)) + +DT_COMPAT_ST_MFXSTM32L152 := st,mfxstm32l152 + +config DT_HAS_ST_MFXSTM32L152_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_MFXSTM32L152)) + +DT_COMPAT_ST_MIPID02 := st,mipid02 + +config DT_HAS_ST_MIPID02_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_MIPID02)) + +DT_COMPAT_ST_MPXXDTYY := st,mpxxdtyy + +config DT_HAS_ST_MPXXDTYY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_MPXXDTYY)) + +DT_COMPAT_ST_ST87MXX := st,st87mxx + +config DT_HAS_ST_ST87MXX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_ST87MXX)) + +DT_COMPAT_ST_STM32_ADC := st,stm32-adc + +config DT_HAS_ST_STM32_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_ADC)) + +DT_COMPAT_ST_STM32_AES := st,stm32-aes + +config DT_HAS_ST_STM32_AES_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_AES)) + +DT_COMPAT_ST_STM32_BACKUP_SRAM := st,stm32-backup-sram + +config DT_HAS_ST_STM32_BACKUP_SRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_BACKUP_SRAM)) + +DT_COMPAT_ST_STM32_BBRAM := st,stm32-bbram + +config DT_HAS_ST_STM32_BBRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_BBRAM)) + +DT_COMPAT_ST_STM32_BDMA := st,stm32-bdma + +config DT_HAS_ST_STM32_BDMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_BDMA)) + +DT_COMPAT_ST_STM32_BSEC := st,stm32-bsec + +config DT_HAS_ST_STM32_BSEC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_BSEC)) + +DT_COMPAT_ST_STM32_BXCAN := st,stm32-bxcan + +config DT_HAS_ST_STM32_BXCAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_BXCAN)) + +DT_COMPAT_ST_STM32_CCM := st,stm32-ccm + +config DT_HAS_ST_STM32_CCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_CCM)) + +DT_COMPAT_ST_STM32_CLOCK_MCO := st,stm32-clock-mco + +config DT_HAS_ST_STM32_CLOCK_MCO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_CLOCK_MCO)) + +DT_COMPAT_ST_STM32_CLOCK_MUX := st,stm32-clock-mux + +config DT_HAS_ST_STM32_CLOCK_MUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_CLOCK_MUX)) + +DT_COMPAT_ST_STM32_COMP := st,stm32-comp + +config DT_HAS_ST_STM32_COMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_COMP)) + +DT_COMPAT_ST_STM32_COUNTER := st,stm32-counter + +config DT_HAS_ST_STM32_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_COUNTER)) + +DT_COMPAT_ST_STM32_CRC := st,stm32-crc + +config DT_HAS_ST_STM32_CRC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_CRC)) + +DT_COMPAT_ST_STM32_CRYP := st,stm32-cryp + +config DT_HAS_ST_STM32_CRYP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_CRYP)) + +DT_COMPAT_ST_STM32_DAC := st,stm32-dac + +config DT_HAS_ST_STM32_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DAC)) + +DT_COMPAT_ST_STM32_DCMI := st,stm32-dcmi + +config DT_HAS_ST_STM32_DCMI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DCMI)) + +DT_COMPAT_ST_STM32_DCMIPP := st,stm32-dcmipp + +config DT_HAS_ST_STM32_DCMIPP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DCMIPP)) + +DT_COMPAT_ST_STM32_DIGI_TEMP := st,stm32-digi-temp + +config DT_HAS_ST_STM32_DIGI_TEMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DIGI_TEMP)) + +DT_COMPAT_ST_STM32_DMA := st,stm32-dma + +config DT_HAS_ST_STM32_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DMA)) + +DT_COMPAT_ST_STM32_DMA_V1 := st,stm32-dma-v1 + +config DT_HAS_ST_STM32_DMA_V1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DMA_V1)) + +DT_COMPAT_ST_STM32_DMA_V2 := st,stm32-dma-v2 + +config DT_HAS_ST_STM32_DMA_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DMA_V2)) + +DT_COMPAT_ST_STM32_DMA_V2BIS := st,stm32-dma-v2bis + +config DT_HAS_ST_STM32_DMA_V2BIS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DMA_V2BIS)) + +DT_COMPAT_ST_STM32_DMAMUX := st,stm32-dmamux + +config DT_HAS_ST_STM32_DMAMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DMAMUX)) + +DT_COMPAT_ST_STM32_DUALREG_PWR := st,stm32-dualreg-pwr + +config DT_HAS_ST_STM32_DUALREG_PWR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_DUALREG_PWR)) + +DT_COMPAT_ST_STM32_EEPROM := st,stm32-eeprom + +config DT_HAS_ST_STM32_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_EEPROM)) + +DT_COMPAT_ST_STM32_ETHERNET := st,stm32-ethernet + +config DT_HAS_ST_STM32_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_ETHERNET)) + +DT_COMPAT_ST_STM32_ETHERNET_CONTROLLER := st,stm32-ethernet-controller + +config DT_HAS_ST_STM32_ETHERNET_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_ETHERNET_CONTROLLER)) + +DT_COMPAT_ST_STM32_EXTI := st,stm32-exti + +config DT_HAS_ST_STM32_EXTI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_EXTI)) + +DT_COMPAT_ST_STM32_FDCAN := st,stm32-fdcan + +config DT_HAS_ST_STM32_FDCAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_FDCAN)) + +DT_COMPAT_ST_STM32_FLASH_CONTROLLER := st,stm32-flash-controller + +config DT_HAS_ST_STM32_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32_FMC := st,stm32-fmc + +config DT_HAS_ST_STM32_FMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_FMC)) + +DT_COMPAT_ST_STM32_FMC_MIPI_DBI := st,stm32-fmc-mipi-dbi + +config DT_HAS_ST_STM32_FMC_MIPI_DBI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_FMC_MIPI_DBI)) + +DT_COMPAT_ST_STM32_FMC_NOR_PSRAM := st,stm32-fmc-nor-psram + +config DT_HAS_ST_STM32_FMC_NOR_PSRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_FMC_NOR_PSRAM)) + +DT_COMPAT_ST_STM32_FMC_SDRAM := st,stm32-fmc-sdram + +config DT_HAS_ST_STM32_FMC_SDRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_FMC_SDRAM)) + +DT_COMPAT_ST_STM32_GPIO := st,stm32-gpio + +config DT_HAS_ST_STM32_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_GPIO)) + +DT_COMPAT_ST_STM32_HASH := st,stm32-hash + +config DT_HAS_ST_STM32_HASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_HASH)) + +DT_COMPAT_ST_STM32_HSE_CLOCK := st,stm32-hse-clock + +config DT_HAS_ST_STM32_HSE_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_HSE_CLOCK)) + +DT_COMPAT_ST_STM32_HSEM_MAILBOX := st,stm32-hsem-mailbox + +config DT_HAS_ST_STM32_HSEM_MAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_HSEM_MAILBOX)) + +DT_COMPAT_ST_STM32_HSI48_CLOCK := st,stm32-hsi48-clock + +config DT_HAS_ST_STM32_HSI48_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_HSI48_CLOCK)) + +DT_COMPAT_ST_STM32_I2C_V1 := st,stm32-i2c-v1 + +config DT_HAS_ST_STM32_I2C_V1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_I2C_V1)) + +DT_COMPAT_ST_STM32_I2C_V2 := st,stm32-i2c-v2 + +config DT_HAS_ST_STM32_I2C_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_I2C_V2)) + +DT_COMPAT_ST_STM32_I2S := st,stm32-i2s + +config DT_HAS_ST_STM32_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_I2S)) + +DT_COMPAT_ST_STM32_I3C := st,stm32-i3c + +config DT_HAS_ST_STM32_I3C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_I3C)) + +DT_COMPAT_ST_STM32_IOCELL := st,stm32-iocell + +config DT_HAS_ST_STM32_IOCELL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_IOCELL)) + +DT_COMPAT_ST_STM32_IPCC_MAILBOX := st,stm32-ipcc-mailbox + +config DT_HAS_ST_STM32_IPCC_MAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_IPCC_MAILBOX)) + +DT_COMPAT_ST_STM32_JPEG := st,stm32-jpeg + +config DT_HAS_ST_STM32_JPEG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_JPEG)) + +DT_COMPAT_ST_STM32_LPTIM := st,stm32-lptim + +config DT_HAS_ST_STM32_LPTIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_LPTIM)) + +DT_COMPAT_ST_STM32_LPUART := st,stm32-lpuart + +config DT_HAS_ST_STM32_LPUART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_LPUART)) + +DT_COMPAT_ST_STM32_LSE_CLOCK := st,stm32-lse-clock + +config DT_HAS_ST_STM32_LSE_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_LSE_CLOCK)) + +DT_COMPAT_ST_STM32_LTDC := st,stm32-ltdc + +config DT_HAS_ST_STM32_LTDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_LTDC)) + +DT_COMPAT_ST_STM32_MDIO := st,stm32-mdio + +config DT_HAS_ST_STM32_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_MDIO)) + +DT_COMPAT_ST_STM32_MIPI_DSI := st,stm32-mipi-dsi + +config DT_HAS_ST_STM32_MIPI_DSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_MIPI_DSI)) + +DT_COMPAT_ST_STM32_MSI_CLOCK := st,stm32-msi-clock + +config DT_HAS_ST_STM32_MSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_MSI_CLOCK)) + +DT_COMPAT_ST_STM32_NPU := st,stm32-npu + +config DT_HAS_ST_STM32_NPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_NPU)) + +DT_COMPAT_ST_STM32_NPU_CACHE := st,stm32-npu-cache + +config DT_HAS_ST_STM32_NPU_CACHE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_NPU_CACHE)) + +DT_COMPAT_ST_STM32_NV_FLASH := st,stm32-nv-flash + +config DT_HAS_ST_STM32_NV_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_NV_FLASH)) + +DT_COMPAT_ST_STM32_NVM_OTP := st,stm32-nvm-otp + +config DT_HAS_ST_STM32_NVM_OTP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_NVM_OTP)) + +DT_COMPAT_ST_STM32_OPAMP := st,stm32-opamp + +config DT_HAS_ST_STM32_OPAMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_OPAMP)) + +DT_COMPAT_ST_STM32_OSPI := st,stm32-ospi + +config DT_HAS_ST_STM32_OSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_OSPI)) + +DT_COMPAT_ST_STM32_OSPI_CONTROLLER := st,stm32-ospi-controller + +config DT_HAS_ST_STM32_OSPI_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_OSPI_CONTROLLER)) + +DT_COMPAT_ST_STM32_OSPI_NOR := st,stm32-ospi-nor + +config DT_HAS_ST_STM32_OSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_OSPI_NOR)) + +DT_COMPAT_ST_STM32_OSPI_PSRAM := st,stm32-ospi-psram + +config DT_HAS_ST_STM32_OSPI_PSRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_OSPI_PSRAM)) + +DT_COMPAT_ST_STM32_OTGFS := st,stm32-otgfs + +config DT_HAS_ST_STM32_OTGFS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_OTGFS)) + +DT_COMPAT_ST_STM32_OTGHS := st,stm32-otghs + +config DT_HAS_ST_STM32_OTGHS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_OTGHS)) + +DT_COMPAT_ST_STM32_PINCTRL := st,stm32-pinctrl + +config DT_HAS_ST_STM32_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_PINCTRL)) + +DT_COMPAT_ST_STM32_PWM := st,stm32-pwm + +config DT_HAS_ST_STM32_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_PWM)) + +DT_COMPAT_ST_STM32_PWR := st,stm32-pwr + +config DT_HAS_ST_STM32_PWR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_PWR)) + +DT_COMPAT_ST_STM32_QDEC := st,stm32-qdec + +config DT_HAS_ST_STM32_QDEC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_QDEC)) + +DT_COMPAT_ST_STM32_QSPI := st,stm32-qspi + +config DT_HAS_ST_STM32_QSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_QSPI)) + +DT_COMPAT_ST_STM32_QSPI_CONTROLLER := st,stm32-qspi-controller + +config DT_HAS_ST_STM32_QSPI_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_QSPI_CONTROLLER)) + +DT_COMPAT_ST_STM32_QSPI_NOR := st,stm32-qspi-nor + +config DT_HAS_ST_STM32_QSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_QSPI_NOR)) + +DT_COMPAT_ST_STM32_RCC := st,stm32-rcc + +config DT_HAS_ST_STM32_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_RCC)) + +DT_COMPAT_ST_STM32_RCC_RCTL := st,stm32-rcc-rctl + +config DT_HAS_ST_STM32_RCC_RCTL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_RCC_RCTL)) + +DT_COMPAT_ST_STM32_RNG := st,stm32-rng + +config DT_HAS_ST_STM32_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_RNG)) + +DT_COMPAT_ST_STM32_RNG_NOIRQ := st,stm32-rng-noirq + +config DT_HAS_ST_STM32_RNG_NOIRQ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_RNG_NOIRQ)) + +DT_COMPAT_ST_STM32_RTC := st,stm32-rtc + +config DT_HAS_ST_STM32_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_RTC)) + +DT_COMPAT_ST_STM32_SAI := st,stm32-sai + +config DT_HAS_ST_STM32_SAI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_SAI)) + +DT_COMPAT_ST_STM32_SDIO := st,stm32-sdio + +config DT_HAS_ST_STM32_SDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_SDIO)) + +DT_COMPAT_ST_STM32_SDMMC := st,stm32-sdmmc + +config DT_HAS_ST_STM32_SDMMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_SDMMC)) + +DT_COMPAT_ST_STM32_SMBUS := st,stm32-smbus + +config DT_HAS_ST_STM32_SMBUS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_SMBUS)) + +DT_COMPAT_ST_STM32_SPI := st,stm32-spi + +config DT_HAS_ST_STM32_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_SPI)) + +DT_COMPAT_ST_STM32_SPI_FIFO := st,stm32-spi-fifo + +config DT_HAS_ST_STM32_SPI_FIFO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_SPI_FIFO)) + +DT_COMPAT_ST_STM32_SPI_HOST_CMD := st,stm32-spi-host-cmd + +config DT_HAS_ST_STM32_SPI_HOST_CMD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_SPI_HOST_CMD)) + +DT_COMPAT_ST_STM32_SPI_SUBGHZ := st,stm32-spi-subghz + +config DT_HAS_ST_STM32_SPI_SUBGHZ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_SPI_SUBGHZ)) + +DT_COMPAT_ST_STM32_TEMP := st,stm32-temp + +config DT_HAS_ST_STM32_TEMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_TEMP)) + +DT_COMPAT_ST_STM32_TEMP_CAL := st,stm32-temp-cal + +config DT_HAS_ST_STM32_TEMP_CAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_TEMP_CAL)) + +DT_COMPAT_ST_STM32_TIMERS := st,stm32-timers + +config DT_HAS_ST_STM32_TIMERS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_TIMERS)) + +DT_COMPAT_ST_STM32_TSC := st,stm32-tsc + +config DT_HAS_ST_STM32_TSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_TSC)) + +DT_COMPAT_ST_STM32_UART := st,stm32-uart + +config DT_HAS_ST_STM32_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_UART)) + +DT_COMPAT_ST_STM32_UCPD := st,stm32-ucpd + +config DT_HAS_ST_STM32_UCPD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_UCPD)) + +DT_COMPAT_ST_STM32_USART := st,stm32-usart + +config DT_HAS_ST_STM32_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_USART)) + +DT_COMPAT_ST_STM32_USB := st,stm32-usb + +config DT_HAS_ST_STM32_USB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_USB)) + +DT_COMPAT_ST_STM32_USBPHYC := st,stm32-usbphyc + +config DT_HAS_ST_STM32_USBPHYC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_USBPHYC)) + +DT_COMPAT_ST_STM32_VBAT := st,stm32-vbat + +config DT_HAS_ST_STM32_VBAT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_VBAT)) + +DT_COMPAT_ST_STM32_VENC := st,stm32-venc + +config DT_HAS_ST_STM32_VENC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_VENC)) + +DT_COMPAT_ST_STM32_VREF := st,stm32-vref + +config DT_HAS_ST_STM32_VREF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_VREF)) + +DT_COMPAT_ST_STM32_VREFBUF := st,stm32-vrefbuf + +config DT_HAS_ST_STM32_VREFBUF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_VREFBUF)) + +DT_COMPAT_ST_STM32_WATCHDOG := st,stm32-watchdog + +config DT_HAS_ST_STM32_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_WATCHDOG)) + +DT_COMPAT_ST_STM32_WINDOW_WATCHDOG := st,stm32-window-watchdog + +config DT_HAS_ST_STM32_WINDOW_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_WINDOW_WATCHDOG)) + +DT_COMPAT_ST_STM32_XSPI := st,stm32-xspi + +config DT_HAS_ST_STM32_XSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_XSPI)) + +DT_COMPAT_ST_STM32_XSPI_CONTROLLER := st,stm32-xspi-controller + +config DT_HAS_ST_STM32_XSPI_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_XSPI_CONTROLLER)) + +DT_COMPAT_ST_STM32_XSPI_NOR := st,stm32-xspi-nor + +config DT_HAS_ST_STM32_XSPI_NOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_XSPI_NOR)) + +DT_COMPAT_ST_STM32_XSPI_PSRAM := st,stm32-xspi-psram + +config DT_HAS_ST_STM32_XSPI_PSRAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_XSPI_PSRAM)) + +DT_COMPAT_ST_STM32_XSPIM := st,stm32-xspim + +config DT_HAS_ST_STM32_XSPIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_XSPIM)) + +DT_COMPAT_ST_STM32C0_HSI_CLOCK := st,stm32c0-hsi-clock + +config DT_HAS_ST_STM32C0_HSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32C0_HSI_CLOCK)) + +DT_COMPAT_ST_STM32C0_TEMP_CAL := st,stm32c0-temp-cal + +config DT_HAS_ST_STM32C0_TEMP_CAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32C0_TEMP_CAL)) + +DT_COMPAT_ST_STM32C5_FLASH_CONTROLLER := st,stm32c5-flash-controller + +config DT_HAS_ST_STM32C5_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32C5_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32C5_RCC := st,stm32c5-rcc + +config DT_HAS_ST_STM32C5_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32C5_RCC)) + +DT_COMPAT_ST_STM32C5_XSIK_CLOCK := st,stm32c5-xsik-clock + +config DT_HAS_ST_STM32C5_XSIK_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32C5_XSIK_CLOCK)) + +DT_COMPAT_ST_STM32F0_PLL_CLOCK := st,stm32f0-pll-clock + +config DT_HAS_ST_STM32F0_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F0_PLL_CLOCK)) + +DT_COMPAT_ST_STM32F0_RCC := st,stm32f0-rcc + +config DT_HAS_ST_STM32F0_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F0_RCC)) + +DT_COMPAT_ST_STM32F1_ADC := st,stm32f1-adc + +config DT_HAS_ST_STM32F1_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F1_ADC)) + +DT_COMPAT_ST_STM32F1_CLOCK_MCO := st,stm32f1-clock-mco + +config DT_HAS_ST_STM32F1_CLOCK_MCO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F1_CLOCK_MCO)) + +DT_COMPAT_ST_STM32F1_FLASH_CONTROLLER := st,stm32f1-flash-controller + +config DT_HAS_ST_STM32F1_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F1_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32F1_PINCTRL := st,stm32f1-pinctrl + +config DT_HAS_ST_STM32F1_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F1_PINCTRL)) + +DT_COMPAT_ST_STM32F1_PLL_CLOCK := st,stm32f1-pll-clock + +config DT_HAS_ST_STM32F1_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F1_PLL_CLOCK)) + +DT_COMPAT_ST_STM32F100_PLL_CLOCK := st,stm32f100-pll-clock + +config DT_HAS_ST_STM32F100_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F100_PLL_CLOCK)) + +DT_COMPAT_ST_STM32F105_PLL_CLOCK := st,stm32f105-pll-clock + +config DT_HAS_ST_STM32F105_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F105_PLL_CLOCK)) + +DT_COMPAT_ST_STM32F105_PLL2_CLOCK := st,stm32f105-pll2-clock + +config DT_HAS_ST_STM32F105_PLL2_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F105_PLL2_CLOCK)) + +DT_COMPAT_ST_STM32F2_FLASH_CONTROLLER := st,stm32f2-flash-controller + +config DT_HAS_ST_STM32F2_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F2_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32F4_ADC := st,stm32f4-adc + +config DT_HAS_ST_STM32F4_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F4_ADC)) + +DT_COMPAT_ST_STM32F4_FLASH_CONTROLLER := st,stm32f4-flash-controller + +config DT_HAS_ST_STM32F4_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F4_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32F4_FSOTG := st,stm32f4-fsotg + +config DT_HAS_ST_STM32F4_FSOTG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F4_FSOTG)) + +DT_COMPAT_ST_STM32F4_NV_FLASH := st,stm32f4-nv-flash + +config DT_HAS_ST_STM32F4_NV_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F4_NV_FLASH)) + +DT_COMPAT_ST_STM32F4_RCC := st,stm32f4-rcc + +config DT_HAS_ST_STM32F4_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F4_RCC)) + +DT_COMPAT_ST_STM32F7_FLASH_CONTROLLER := st,stm32f7-flash-controller + +config DT_HAS_ST_STM32F7_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32F7_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32FX_PLL_CLOCK := st,stm32fx-pll-clock + +config DT_HAS_ST_STM32FX_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32FX_PLL_CLOCK)) + +DT_COMPAT_ST_STM32G0_EXTI := st,stm32g0-exti + +config DT_HAS_ST_STM32G0_EXTI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32G0_EXTI)) + +DT_COMPAT_ST_STM32G0_FLASH_CONTROLLER := st,stm32g0-flash-controller + +config DT_HAS_ST_STM32G0_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32G0_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32G0_HSI_CLOCK := st,stm32g0-hsi-clock + +config DT_HAS_ST_STM32G0_HSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32G0_HSI_CLOCK)) + +DT_COMPAT_ST_STM32G0_PLL_CLOCK := st,stm32g0-pll-clock + +config DT_HAS_ST_STM32G0_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32G0_PLL_CLOCK)) + +DT_COMPAT_ST_STM32G4_COMP := st,stm32g4-comp + +config DT_HAS_ST_STM32G4_COMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32G4_COMP)) + +DT_COMPAT_ST_STM32G4_FLASH_CONTROLLER := st,stm32g4-flash-controller + +config DT_HAS_ST_STM32G4_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32G4_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32G4_OPAMP := st,stm32g4-opamp + +config DT_HAS_ST_STM32G4_OPAMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32G4_OPAMP)) + +DT_COMPAT_ST_STM32G4_PLL_CLOCK := st,stm32g4-pll-clock + +config DT_HAS_ST_STM32G4_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32G4_PLL_CLOCK)) + +DT_COMPAT_ST_STM32H5_ETHERNET := st,stm32h5-ethernet + +config DT_HAS_ST_STM32H5_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H5_ETHERNET)) + +DT_COMPAT_ST_STM32H5_IOCELL := st,stm32h5-iocell + +config DT_HAS_ST_STM32H5_IOCELL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H5_IOCELL)) + +DT_COMPAT_ST_STM32H5_PINCTRL := st,stm32h5-pinctrl + +config DT_HAS_ST_STM32H5_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H5_PINCTRL)) + +DT_COMPAT_ST_STM32H5_RCC := st,stm32h5-rcc + +config DT_HAS_ST_STM32H5_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H5_RCC)) + +DT_COMPAT_ST_STM32H7_COMP := st,stm32h7-comp + +config DT_HAS_ST_STM32H7_COMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_COMP)) + +DT_COMPAT_ST_STM32H7_ETHERNET := st,stm32h7-ethernet + +config DT_HAS_ST_STM32H7_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_ETHERNET)) + +DT_COMPAT_ST_STM32H7_FDCAN := st,stm32h7-fdcan + +config DT_HAS_ST_STM32H7_FDCAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_FDCAN)) + +DT_COMPAT_ST_STM32H7_FLASH_CONTROLLER := st,stm32h7-flash-controller + +config DT_HAS_ST_STM32H7_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32H7_FMC := st,stm32h7-fmc + +config DT_HAS_ST_STM32H7_FMC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_FMC)) + +DT_COMPAT_ST_STM32H7_HSI_CLOCK := st,stm32h7-hsi-clock + +config DT_HAS_ST_STM32H7_HSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_HSI_CLOCK)) + +DT_COMPAT_ST_STM32H7_I2S := st,stm32h7-i2s + +config DT_HAS_ST_STM32H7_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_I2S)) + +DT_COMPAT_ST_STM32H7_PLL_CLOCK := st,stm32h7-pll-clock + +config DT_HAS_ST_STM32H7_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_PLL_CLOCK)) + +DT_COMPAT_ST_STM32H7_PWR := st,stm32h7-pwr + +config DT_HAS_ST_STM32H7_PWR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_PWR)) + +DT_COMPAT_ST_STM32H7_RCC := st,stm32h7-rcc + +config DT_HAS_ST_STM32H7_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_RCC)) + +DT_COMPAT_ST_STM32H7_SPI := st,stm32h7-spi + +config DT_HAS_ST_STM32H7_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7_SPI)) + +DT_COMPAT_ST_STM32H7RS_EXTI := st,stm32h7rs-exti + +config DT_HAS_ST_STM32H7RS_EXTI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7RS_EXTI)) + +DT_COMPAT_ST_STM32H7RS_PLL_CLOCK := st,stm32h7rs-pll-clock + +config DT_HAS_ST_STM32H7RS_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7RS_PLL_CLOCK)) + +DT_COMPAT_ST_STM32H7RS_PWR := st,stm32h7rs-pwr + +config DT_HAS_ST_STM32H7RS_PWR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7RS_PWR)) + +DT_COMPAT_ST_STM32H7RS_RCC := st,stm32h7rs-rcc + +config DT_HAS_ST_STM32H7RS_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32H7RS_RCC)) + +DT_COMPAT_ST_STM32L0_HSI_CLOCK := st,stm32l0-hsi-clock + +config DT_HAS_ST_STM32L0_HSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L0_HSI_CLOCK)) + +DT_COMPAT_ST_STM32L0_MSI_CLOCK := st,stm32l0-msi-clock + +config DT_HAS_ST_STM32L0_MSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L0_MSI_CLOCK)) + +DT_COMPAT_ST_STM32L0_NV_FLASH := st,stm32l0-nv-flash + +config DT_HAS_ST_STM32L0_NV_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L0_NV_FLASH)) + +DT_COMPAT_ST_STM32L0_PLL_CLOCK := st,stm32l0-pll-clock + +config DT_HAS_ST_STM32L0_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L0_PLL_CLOCK)) + +DT_COMPAT_ST_STM32L4_AES := st,stm32l4-aes + +config DT_HAS_ST_STM32L4_AES_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L4_AES)) + +DT_COMPAT_ST_STM32L4_FLASH_CONTROLLER := st,stm32l4-flash-controller + +config DT_HAS_ST_STM32L4_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L4_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32L4_PLL_CLOCK := st,stm32l4-pll-clock + +config DT_HAS_ST_STM32L4_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L4_PLL_CLOCK)) + +DT_COMPAT_ST_STM32L5_FLASH_CONTROLLER := st,stm32l5-flash-controller + +config DT_HAS_ST_STM32L5_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32L5_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32MP1_RCC := st,stm32mp1-rcc + +config DT_HAS_ST_STM32MP1_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32MP1_RCC)) + +DT_COMPAT_ST_STM32MP13_CPU_CLOCK_MUX := st,stm32mp13-cpu-clock-mux + +config DT_HAS_ST_STM32MP13_CPU_CLOCK_MUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32MP13_CPU_CLOCK_MUX)) + +DT_COMPAT_ST_STM32MP13_ETHERNET := st,stm32mp13-ethernet + +config DT_HAS_ST_STM32MP13_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32MP13_ETHERNET)) + +DT_COMPAT_ST_STM32MP13_PLL_CLOCK := st,stm32mp13-pll-clock + +config DT_HAS_ST_STM32MP13_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32MP13_PLL_CLOCK)) + +DT_COMPAT_ST_STM32MP2_GPIO := st,stm32mp2-gpio + +config DT_HAS_ST_STM32MP2_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32MP2_GPIO)) + +DT_COMPAT_ST_STM32MP2_RCC := st,stm32mp2-rcc + +config DT_HAS_ST_STM32MP2_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32MP2_RCC)) + +DT_COMPAT_ST_STM32N6_ADC := st,stm32n6-adc + +config DT_HAS_ST_STM32N6_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32N6_ADC)) + +DT_COMPAT_ST_STM32N6_CPU_CLOCK_MUX := st,stm32n6-cpu-clock-mux + +config DT_HAS_ST_STM32N6_CPU_CLOCK_MUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32N6_CPU_CLOCK_MUX)) + +DT_COMPAT_ST_STM32N6_ETHERNET := st,stm32n6-ethernet + +config DT_HAS_ST_STM32N6_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32N6_ETHERNET)) + +DT_COMPAT_ST_STM32N6_HSE_CLOCK := st,stm32n6-hse-clock + +config DT_HAS_ST_STM32N6_HSE_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32N6_HSE_CLOCK)) + +DT_COMPAT_ST_STM32N6_IC_CLOCK_MUX := st,stm32n6-ic-clock-mux + +config DT_HAS_ST_STM32N6_IC_CLOCK_MUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32N6_IC_CLOCK_MUX)) + +DT_COMPAT_ST_STM32N6_OTGHS := st,stm32n6-otghs + +config DT_HAS_ST_STM32N6_OTGHS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32N6_OTGHS)) + +DT_COMPAT_ST_STM32N6_PINCTRL := st,stm32n6-pinctrl + +config DT_HAS_ST_STM32N6_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32N6_PINCTRL)) + +DT_COMPAT_ST_STM32N6_PLL_CLOCK := st,stm32n6-pll-clock + +config DT_HAS_ST_STM32N6_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32N6_PLL_CLOCK)) + +DT_COMPAT_ST_STM32N6_RAMCFG := st,stm32n6-ramcfg + +config DT_HAS_ST_STM32N6_RAMCFG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32N6_RAMCFG)) + +DT_COMPAT_ST_STM32N6_RCC := st,stm32n6-rcc + +config DT_HAS_ST_STM32N6_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32N6_RCC)) + +DT_COMPAT_ST_STM32U0_PLL_CLOCK := st,stm32u0-pll-clock + +config DT_HAS_ST_STM32U0_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U0_PLL_CLOCK)) + +DT_COMPAT_ST_STM32U3_FLASH_CONTROLLER := st,stm32u3-flash-controller + +config DT_HAS_ST_STM32U3_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U3_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32U3_MSI_CLOCK := st,stm32u3-msi-clock + +config DT_HAS_ST_STM32U3_MSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U3_MSI_CLOCK)) + +DT_COMPAT_ST_STM32U5_DMA := st,stm32u5-dma + +config DT_HAS_ST_STM32U5_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U5_DMA)) + +DT_COMPAT_ST_STM32U5_MIPI_DSI := st,stm32u5-mipi-dsi + +config DT_HAS_ST_STM32U5_MIPI_DSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U5_MIPI_DSI)) + +DT_COMPAT_ST_STM32U5_MSI_CLOCK := st,stm32u5-msi-clock + +config DT_HAS_ST_STM32U5_MSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U5_MSI_CLOCK)) + +DT_COMPAT_ST_STM32U5_OTGHS_PHY := st,stm32u5-otghs-phy + +config DT_HAS_ST_STM32U5_OTGHS_PHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U5_OTGHS_PHY)) + +DT_COMPAT_ST_STM32U5_PLL_CLOCK := st,stm32u5-pll-clock + +config DT_HAS_ST_STM32U5_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U5_PLL_CLOCK)) + +DT_COMPAT_ST_STM32U5_PWR := st,stm32u5-pwr + +config DT_HAS_ST_STM32U5_PWR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U5_PWR)) + +DT_COMPAT_ST_STM32U5_RCC := st,stm32u5-rcc + +config DT_HAS_ST_STM32U5_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32U5_RCC)) + +DT_COMPAT_ST_STM32WB_FLASH_CONTROLLER := st,stm32wb-flash-controller + +config DT_HAS_ST_STM32WB_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32WB_PLL_CLOCK := st,stm32wb-pll-clock + +config DT_HAS_ST_STM32WB_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB_PLL_CLOCK)) + +DT_COMPAT_ST_STM32WB_RCC := st,stm32wb-rcc + +config DT_HAS_ST_STM32WB_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB_RCC)) + +DT_COMPAT_ST_STM32WB_RF := st,stm32wb-rf + +config DT_HAS_ST_STM32WB_RF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB_RF)) + +DT_COMPAT_ST_STM32WB0_ADC := st,stm32wb0-adc + +config DT_HAS_ST_STM32WB0_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB0_ADC)) + +DT_COMPAT_ST_STM32WB0_FLASH_CONTROLLER := st,stm32wb0-flash-controller + +config DT_HAS_ST_STM32WB0_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB0_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32WB0_GPIO_INTC := st,stm32wb0-gpio-intc + +config DT_HAS_ST_STM32WB0_GPIO_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB0_GPIO_INTC)) + +DT_COMPAT_ST_STM32WB0_LSI_CLOCK := st,stm32wb0-lsi-clock + +config DT_HAS_ST_STM32WB0_LSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB0_LSI_CLOCK)) + +DT_COMPAT_ST_STM32WB0_PWR := st,stm32wb0-pwr + +config DT_HAS_ST_STM32WB0_PWR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB0_PWR)) + +DT_COMPAT_ST_STM32WB0_RADIO_TIMER := st,stm32wb0-radio-timer + +config DT_HAS_ST_STM32WB0_RADIO_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB0_RADIO_TIMER)) + +DT_COMPAT_ST_STM32WB0_RCC := st,stm32wb0-rcc + +config DT_HAS_ST_STM32WB0_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WB0_RCC)) + +DT_COMPAT_ST_STM32WBA_FLASH_CONTROLLER := st,stm32wba-flash-controller + +config DT_HAS_ST_STM32WBA_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WBA_FLASH_CONTROLLER)) + +DT_COMPAT_ST_STM32WBA_HSE_CLOCK := st,stm32wba-hse-clock + +config DT_HAS_ST_STM32WBA_HSE_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WBA_HSE_CLOCK)) + +DT_COMPAT_ST_STM32WBA_IEEE802154 := st,stm32wba-ieee802154 + +config DT_HAS_ST_STM32WBA_IEEE802154_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WBA_IEEE802154)) + +DT_COMPAT_ST_STM32WBA_PLL_CLOCK := st,stm32wba-pll-clock + +config DT_HAS_ST_STM32WBA_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WBA_PLL_CLOCK)) + +DT_COMPAT_ST_STM32WBA_PWR := st,stm32wba-pwr + +config DT_HAS_ST_STM32WBA_PWR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WBA_PWR)) + +DT_COMPAT_ST_STM32WBA_RCC := st,stm32wba-rcc + +config DT_HAS_ST_STM32WBA_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WBA_RCC)) + +DT_COMPAT_ST_STM32WL_HSE_CLOCK := st,stm32wl-hse-clock + +config DT_HAS_ST_STM32WL_HSE_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WL_HSE_CLOCK)) + +DT_COMPAT_ST_STM32WL_RCC := st,stm32wl-rcc + +config DT_HAS_ST_STM32WL_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WL_RCC)) + +DT_COMPAT_ST_STM32WL_SUBGHZ_RADIO := st,stm32wl-subghz-radio + +config DT_HAS_ST_STM32WL_SUBGHZ_RADIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STM32WL_SUBGHZ_RADIO)) + +DT_COMPAT_ST_STMPE1600 := st,stmpe1600 + +config DT_HAS_ST_STMPE1600_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STMPE1600)) + +DT_COMPAT_ST_STMPE811 := st,stmpe811 + +config DT_HAS_ST_STMPE811_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STMPE811)) + +DT_COMPAT_ST_STTS22H := st,stts22h + +config DT_HAS_ST_STTS22H_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STTS22H)) + +DT_COMPAT_ST_STTS751 := st,stts751 + +config DT_HAS_ST_STTS751_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_STTS751)) + +DT_COMPAT_ST_VL53L0X := st,vl53l0x + +config DT_HAS_ST_VL53L0X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_VL53L0X)) + +DT_COMPAT_ST_VL53L1X := st,vl53l1x + +config DT_HAS_ST_VL53L1X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_VL53L1X)) + +DT_COMPAT_ST_MORPHO_HEADER := st-morpho-header + +config DT_HAS_ST_MORPHO_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ST_MORPHO_HEADER)) + +DT_COMPAT_STEMMA_QT_CONNECTOR := stemma-qt-connector + +config DT_HAS_STEMMA_QT_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_STEMMA_QT_CONNECTOR)) + +DT_COMPAT_SWERV_PIC := swerv,pic + +config DT_HAS_SWERV_PIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SWERV_PIC)) + +DT_COMPAT_SWIR_HL7800 := swir,hl7800 + +config DT_HAS_SWIR_HL7800_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SWIR_HL7800)) + +DT_COMPAT_SWIR_HL7812 := swir,hl7812 + +config DT_HAS_SWIR_HL7812_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SWIR_HL7812)) + +DT_COMPAT_SWIR_HL7812_GNSS := swir,hl7812-gnss + +config DT_HAS_SWIR_HL7812_GNSS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SWIR_HL7812_GNSS)) + +DT_COMPAT_SWIR_HL7812_OFFLOAD := swir,hl7812-offload + +config DT_HAS_SWIR_HL7812_OFFLOAD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SWIR_HL7812_OFFLOAD)) + +DT_COMPAT_SWIR_HL78XX := swir,hl78xx + +config DT_HAS_SWIR_HL78XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SWIR_HL78XX)) + +DT_COMPAT_SWIR_HL78XX_GNSS := swir,hl78xx-gnss + +config DT_HAS_SWIR_HL78XX_GNSS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SWIR_HL78XX_GNSS)) + +DT_COMPAT_SWIR_HL78XX_OFFLOAD := swir,hl78xx-offload + +config DT_HAS_SWIR_HL78XX_OFFLOAD_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SWIR_HL78XX_OFFLOAD)) + +DT_COMPAT_SWJ_CONNECTOR := swj-connector + +config DT_HAS_SWJ_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SWJ_CONNECTOR)) + +DT_COMPAT_SYNA_SR100_CLOCK := syna,sr100-clock + +config DT_HAS_SYNA_SR100_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SYNA_SR100_CLOCK)) + +DT_COMPAT_SYNA_SR100_PINCTRL := syna,sr100-pinctrl + +config DT_HAS_SYNA_SR100_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SYNA_SR100_PINCTRL)) + +DT_COMPAT_SYNA_SR100_RESET := syna,sr100-reset + +config DT_HAS_SYNA_SR100_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SYNA_SR100_RESET)) + +DT_COMPAT_SYSCON := syscon + +config DT_HAS_SYSCON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_SYSCON)) + +DT_COMPAT_TDK_NTCG163JF103FT1 := tdk,ntcg163jf103ft1 + +config DT_HAS_TDK_NTCG163JF103FT1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TDK_NTCG163JF103FT1)) + +DT_COMPAT_TELINK_B91 := telink,b91 + +config DT_HAS_TELINK_B91_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91)) + +DT_COMPAT_TELINK_B91_ADC := telink,b91-adc + +config DT_HAS_TELINK_B91_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_ADC)) + +DT_COMPAT_TELINK_B91_FLASH_CONTROLLER := telink,b91-flash-controller + +config DT_HAS_TELINK_B91_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_FLASH_CONTROLLER)) + +DT_COMPAT_TELINK_B91_GPIO := telink,b91-gpio + +config DT_HAS_TELINK_B91_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_GPIO)) + +DT_COMPAT_TELINK_B91_I2C := telink,b91-i2c + +config DT_HAS_TELINK_B91_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_I2C)) + +DT_COMPAT_TELINK_B91_PINCTRL := telink,b91-pinctrl + +config DT_HAS_TELINK_B91_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_PINCTRL)) + +DT_COMPAT_TELINK_B91_POWER := telink,b91-power + +config DT_HAS_TELINK_B91_POWER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_POWER)) + +DT_COMPAT_TELINK_B91_PWM := telink,b91-pwm + +config DT_HAS_TELINK_B91_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_PWM)) + +DT_COMPAT_TELINK_B91_SPI := telink,b91-spi + +config DT_HAS_TELINK_B91_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_SPI)) + +DT_COMPAT_TELINK_B91_TRNG := telink,b91-trng + +config DT_HAS_TELINK_B91_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_TRNG)) + +DT_COMPAT_TELINK_B91_UART := telink,b91-uart + +config DT_HAS_TELINK_B91_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_UART)) + +DT_COMPAT_TELINK_B91_ZB := telink,b91-zb + +config DT_HAS_TELINK_B91_ZB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELINK_B91_ZB)) + +DT_COMPAT_TELIT_ME310G1 := telit,me310g1 + +config DT_HAS_TELIT_ME310G1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELIT_ME310G1)) + +DT_COMPAT_TELIT_ME910G1 := telit,me910g1 + +config DT_HAS_TELIT_ME910G1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TELIT_ME910G1)) + +DT_COMPAT_TEST_GPIO_ENABLE_DISABLE_INTERRUPT := test-gpio-enable-disable-interrupt + +config DT_HAS_TEST_GPIO_ENABLE_DISABLE_INTERRUPT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TEST_GPIO_ENABLE_DISABLE_INTERRUPT)) + +DT_COMPAT_TI_ADS1013 := ti,ads1013 + +config DT_HAS_TI_ADS1013_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1013)) + +DT_COMPAT_TI_ADS1014 := ti,ads1014 + +config DT_HAS_TI_ADS1014_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1014)) + +DT_COMPAT_TI_ADS1015 := ti,ads1015 + +config DT_HAS_TI_ADS1015_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1015)) + +DT_COMPAT_TI_ADS1112 := ti,ads1112 + +config DT_HAS_TI_ADS1112_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1112)) + +DT_COMPAT_TI_ADS1113 := ti,ads1113 + +config DT_HAS_TI_ADS1113_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1113)) + +DT_COMPAT_TI_ADS1114 := ti,ads1114 + +config DT_HAS_TI_ADS1114_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1114)) + +DT_COMPAT_TI_ADS1115 := ti,ads1115 + +config DT_HAS_TI_ADS1115_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1115)) + +DT_COMPAT_TI_ADS1119 := ti,ads1119 + +config DT_HAS_TI_ADS1119_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1119)) + +DT_COMPAT_TI_ADS114S06 := ti,ads114s06 + +config DT_HAS_TI_ADS114S06_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS114S06)) + +DT_COMPAT_TI_ADS114S08 := ti,ads114s08 + +config DT_HAS_TI_ADS114S08_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS114S08)) + +DT_COMPAT_TI_ADS124S06 := ti,ads124s06 + +config DT_HAS_TI_ADS124S06_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS124S06)) + +DT_COMPAT_TI_ADS124S08 := ti,ads124s08 + +config DT_HAS_TI_ADS124S08_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS124S08)) + +DT_COMPAT_TI_ADS131M02 := ti,ads131m02 + +config DT_HAS_TI_ADS131M02_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS131M02)) + +DT_COMPAT_TI_ADS1X4S0X_GPIO := ti,ads1x4s0x-gpio + +config DT_HAS_TI_ADS1X4S0X_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS1X4S0X_GPIO)) + +DT_COMPAT_TI_ADS7052 := ti,ads7052 + +config DT_HAS_TI_ADS7052_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS7052)) + +DT_COMPAT_TI_ADS7950 := ti,ads7950 + +config DT_HAS_TI_ADS7950_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS7950)) + +DT_COMPAT_TI_ADS7951 := ti,ads7951 + +config DT_HAS_TI_ADS7951_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS7951)) + +DT_COMPAT_TI_ADS7952 := ti,ads7952 + +config DT_HAS_TI_ADS7952_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS7952)) + +DT_COMPAT_TI_ADS7953 := ti,ads7953 + +config DT_HAS_TI_ADS7953_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS7953)) + +DT_COMPAT_TI_ADS7954 := ti,ads7954 + +config DT_HAS_TI_ADS7954_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS7954)) + +DT_COMPAT_TI_ADS7955 := ti,ads7955 + +config DT_HAS_TI_ADS7955_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS7955)) + +DT_COMPAT_TI_ADS7956 := ti,ads7956 + +config DT_HAS_TI_ADS7956_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS7956)) + +DT_COMPAT_TI_ADS7957 := ti,ads7957 + +config DT_HAS_TI_ADS7957_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS7957)) + +DT_COMPAT_TI_ADS7958 := ti,ads7958 + +config DT_HAS_TI_ADS7958_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS7958)) + +DT_COMPAT_TI_ADS7959 := ti,ads7959 + +config DT_HAS_TI_ADS7959_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS7959)) + +DT_COMPAT_TI_ADS7960 := ti,ads7960 + +config DT_HAS_TI_ADS7960_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS7960)) + +DT_COMPAT_TI_ADS7961 := ti,ads7961 + +config DT_HAS_TI_ADS7961_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_ADS7961)) + +DT_COMPAT_TI_AM335X_ADC := ti,am335x-adc + +config DT_HAS_TI_AM335X_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_AM335X_ADC)) + +DT_COMPAT_TI_AM654_TIMER := ti,am654-timer + +config DT_HAS_TI_AM654_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_AM654_TIMER)) + +DT_COMPAT_TI_BOOSTERPACK_HEADER := ti,boosterpack-header + +config DT_HAS_TI_BOOSTERPACK_HEADER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BOOSTERPACK_HEADER)) + +DT_COMPAT_TI_BQ24190 := ti,bq24190 + +config DT_HAS_TI_BQ24190_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BQ24190)) + +DT_COMPAT_TI_BQ25180 := ti,bq25180 + +config DT_HAS_TI_BQ25180_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BQ25180)) + +DT_COMPAT_TI_BQ25186 := ti,bq25186 + +config DT_HAS_TI_BQ25186_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BQ25186)) + +DT_COMPAT_TI_BQ25188 := ti,bq25188 + +config DT_HAS_TI_BQ25188_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BQ25188)) + +DT_COMPAT_TI_BQ25713 := ti,bq25713 + +config DT_HAS_TI_BQ25713_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BQ25713)) + +DT_COMPAT_TI_BQ274XX := ti,bq274xx + +config DT_HAS_TI_BQ274XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BQ274XX)) + +DT_COMPAT_TI_BQ27Z746 := ti,bq27z746 + +config DT_HAS_TI_BQ27Z746_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BQ27Z746)) + +DT_COMPAT_TI_BQ32002 := ti,bq32002 + +config DT_HAS_TI_BQ32002_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BQ32002)) + +DT_COMPAT_TI_BQ40Z50 := ti,bq40z50 + +config DT_HAS_TI_BQ40Z50_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_BQ40Z50)) + +DT_COMPAT_TI_CC1200 := ti,cc1200 + +config DT_HAS_TI_CC1200_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC1200)) + +DT_COMPAT_TI_CC13XX_CC26XX_ADC := ti,cc13xx-cc26xx-adc + +config DT_HAS_TI_CC13XX_CC26XX_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_ADC)) + +DT_COMPAT_TI_CC13XX_CC26XX_FLASH_CONTROLLER := ti,cc13xx-cc26xx-flash-controller + +config DT_HAS_TI_CC13XX_CC26XX_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_FLASH_CONTROLLER)) + +DT_COMPAT_TI_CC13XX_CC26XX_GPIO := ti,cc13xx-cc26xx-gpio + +config DT_HAS_TI_CC13XX_CC26XX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_GPIO)) + +DT_COMPAT_TI_CC13XX_CC26XX_I2C := ti,cc13xx-cc26xx-i2c + +config DT_HAS_TI_CC13XX_CC26XX_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_I2C)) + +DT_COMPAT_TI_CC13XX_CC26XX_IEEE802154 := ti,cc13xx-cc26xx-ieee802154 + +config DT_HAS_TI_CC13XX_CC26XX_IEEE802154_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_IEEE802154)) + +DT_COMPAT_TI_CC13XX_CC26XX_IEEE802154_SUBGHZ := ti,cc13xx-cc26xx-ieee802154-subghz + +config DT_HAS_TI_CC13XX_CC26XX_IEEE802154_SUBGHZ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_IEEE802154_SUBGHZ)) + +DT_COMPAT_TI_CC13XX_CC26XX_PINCTRL := ti,cc13xx-cc26xx-pinctrl + +config DT_HAS_TI_CC13XX_CC26XX_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_PINCTRL)) + +DT_COMPAT_TI_CC13XX_CC26XX_RADIO := ti,cc13xx-cc26xx-radio + +config DT_HAS_TI_CC13XX_CC26XX_RADIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_RADIO)) + +DT_COMPAT_TI_CC13XX_CC26XX_RTC_TIMER := ti,cc13xx-cc26xx-rtc-timer + +config DT_HAS_TI_CC13XX_CC26XX_RTC_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_RTC_TIMER)) + +DT_COMPAT_TI_CC13XX_CC26XX_SPI := ti,cc13xx-cc26xx-spi + +config DT_HAS_TI_CC13XX_CC26XX_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_SPI)) + +DT_COMPAT_TI_CC13XX_CC26XX_TIMER := ti,cc13xx-cc26xx-timer + +config DT_HAS_TI_CC13XX_CC26XX_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_TIMER)) + +DT_COMPAT_TI_CC13XX_CC26XX_TIMER_PWM := ti,cc13xx-cc26xx-timer-pwm + +config DT_HAS_TI_CC13XX_CC26XX_TIMER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_TIMER_PWM)) + +DT_COMPAT_TI_CC13XX_CC26XX_TRNG := ti,cc13xx-cc26xx-trng + +config DT_HAS_TI_CC13XX_CC26XX_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_TRNG)) + +DT_COMPAT_TI_CC13XX_CC26XX_UART := ti,cc13xx-cc26xx-uart + +config DT_HAS_TI_CC13XX_CC26XX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_UART)) + +DT_COMPAT_TI_CC13XX_CC26XX_WATCHDOG := ti,cc13xx-cc26xx-watchdog + +config DT_HAS_TI_CC13XX_CC26XX_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC13XX_CC26XX_WATCHDOG)) + +DT_COMPAT_TI_CC23X0_ADC := ti,cc23x0-adc + +config DT_HAS_TI_CC23X0_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_ADC)) + +DT_COMPAT_TI_CC23X0_AES := ti,cc23x0-aes + +config DT_HAS_TI_CC23X0_AES_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_AES)) + +DT_COMPAT_TI_CC23X0_CCFG_FLASH := ti,cc23x0-ccfg-flash + +config DT_HAS_TI_CC23X0_CCFG_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_CCFG_FLASH)) + +DT_COMPAT_TI_CC23X0_DMA := ti,cc23x0-dma + +config DT_HAS_TI_CC23X0_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_DMA)) + +DT_COMPAT_TI_CC23X0_FLASH_CONTROLLER := ti,cc23x0-flash-controller + +config DT_HAS_TI_CC23X0_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_FLASH_CONTROLLER)) + +DT_COMPAT_TI_CC23X0_GPIO := ti,cc23x0-gpio + +config DT_HAS_TI_CC23X0_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_GPIO)) + +DT_COMPAT_TI_CC23X0_I2C := ti,cc23x0-i2c + +config DT_HAS_TI_CC23X0_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_I2C)) + +DT_COMPAT_TI_CC23X0_LF_XOSC := ti,cc23x0-lf-xosc + +config DT_HAS_TI_CC23X0_LF_XOSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_LF_XOSC)) + +DT_COMPAT_TI_CC23X0_LGPT := ti,cc23x0-lgpt + +config DT_HAS_TI_CC23X0_LGPT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_LGPT)) + +DT_COMPAT_TI_CC23X0_LGPT_PWM := ti,cc23x0-lgpt-pwm + +config DT_HAS_TI_CC23X0_LGPT_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_LGPT_PWM)) + +DT_COMPAT_TI_CC23X0_PINCTRL := ti,cc23x0-pinctrl + +config DT_HAS_TI_CC23X0_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_PINCTRL)) + +DT_COMPAT_TI_CC23X0_RTC := ti,cc23x0-rtc + +config DT_HAS_TI_CC23X0_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_RTC)) + +DT_COMPAT_TI_CC23X0_SPI := ti,cc23x0-spi + +config DT_HAS_TI_CC23X0_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_SPI)) + +DT_COMPAT_TI_CC23X0_SYSTIM_TIMER := ti,cc23x0-systim-timer + +config DT_HAS_TI_CC23X0_SYSTIM_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_SYSTIM_TIMER)) + +DT_COMPAT_TI_CC23X0_UART := ti,cc23x0-uart + +config DT_HAS_TI_CC23X0_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_UART)) + +DT_COMPAT_TI_CC23X0_WDT := ti,cc23x0-wdt + +config DT_HAS_TI_CC23X0_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC23X0_WDT)) + +DT_COMPAT_TI_CC2520 := ti,cc2520 + +config DT_HAS_TI_CC2520_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC2520)) + +DT_COMPAT_TI_CC32XX_ADC := ti,cc32xx-adc + +config DT_HAS_TI_CC32XX_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC32XX_ADC)) + +DT_COMPAT_TI_CC32XX_GPIO := ti,cc32xx-gpio + +config DT_HAS_TI_CC32XX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC32XX_GPIO)) + +DT_COMPAT_TI_CC32XX_I2C := ti,cc32xx-i2c + +config DT_HAS_TI_CC32XX_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC32XX_I2C)) + +DT_COMPAT_TI_CC32XX_PINCTRL := ti,cc32xx-pinctrl + +config DT_HAS_TI_CC32XX_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC32XX_PINCTRL)) + +DT_COMPAT_TI_CC32XX_UART := ti,cc32xx-uart + +config DT_HAS_TI_CC32XX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC32XX_UART)) + +DT_COMPAT_TI_CC32XX_WATCHDOG := ti,cc32xx-watchdog + +config DT_HAS_TI_CC32XX_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CC32XX_WATCHDOG)) + +DT_COMPAT_TI_CONTROL_MODULE := ti,control-module + +config DT_HAS_TI_CONTROL_MODULE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_CONTROL_MODULE)) + +DT_COMPAT_TI_DAC161S997 := ti,dac161s997 + +config DT_HAS_TI_DAC161S997_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAC161S997)) + +DT_COMPAT_TI_DAC43608 := ti,dac43608 + +config DT_HAS_TI_DAC43608_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAC43608)) + +DT_COMPAT_TI_DAC5311 := ti,dac5311 + +config DT_HAS_TI_DAC5311_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAC5311)) + +DT_COMPAT_TI_DAC53608 := ti,dac53608 + +config DT_HAS_TI_DAC53608_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAC53608)) + +DT_COMPAT_TI_DAC60508 := ti,dac60508 + +config DT_HAS_TI_DAC60508_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAC60508)) + +DT_COMPAT_TI_DAC6311 := ti,dac6311 + +config DT_HAS_TI_DAC6311_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAC6311)) + +DT_COMPAT_TI_DAC70508 := ti,dac70508 + +config DT_HAS_TI_DAC70508_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAC70508)) + +DT_COMPAT_TI_DAC7311 := ti,dac7311 + +config DT_HAS_TI_DAC7311_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAC7311)) + +DT_COMPAT_TI_DAC80508 := ti,dac80508 + +config DT_HAS_TI_DAC80508_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAC80508)) + +DT_COMPAT_TI_DAC8311 := ti,dac8311 + +config DT_HAS_TI_DAC8311_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAC8311)) + +DT_COMPAT_TI_DAC8411 := ti,dac8411 + +config DT_HAS_TI_DAC8411_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAC8411)) + +DT_COMPAT_TI_DACX0501 := ti,dacx0501 + +config DT_HAS_TI_DACX0501_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DACX0501)) + +DT_COMPAT_TI_DAVINCI_GPIO := ti,davinci-gpio + +config DT_HAS_TI_DAVINCI_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAVINCI_GPIO)) + +DT_COMPAT_TI_DAVINCI_GPIO_NEXUS := ti,davinci-gpio-nexus + +config DT_HAS_TI_DAVINCI_GPIO_NEXUS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DAVINCI_GPIO_NEXUS)) + +DT_COMPAT_TI_DP83825 := ti,dp83825 + +config DT_HAS_TI_DP83825_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DP83825)) + +DT_COMPAT_TI_DP83867 := ti,dp83867 + +config DT_HAS_TI_DP83867_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DP83867)) + +DT_COMPAT_TI_DRV2605 := ti,drv2605 + +config DT_HAS_TI_DRV2605_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DRV2605)) + +DT_COMPAT_TI_DRV84XX := ti,drv84xx + +config DT_HAS_TI_DRV84XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_DRV84XX)) + +DT_COMPAT_TI_FDC2X1X := ti,fdc2x1x + +config DT_HAS_TI_FDC2X1X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_FDC2X1X)) + +DT_COMPAT_TI_HDC := ti,hdc + +config DT_HAS_TI_HDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_HDC)) + +DT_COMPAT_TI_HDC2010 := ti,hdc2010 + +config DT_HAS_TI_HDC2010_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_HDC2010)) + +DT_COMPAT_TI_HDC2021 := ti,hdc2021 + +config DT_HAS_TI_HDC2021_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_HDC2021)) + +DT_COMPAT_TI_HDC2022 := ti,hdc2022 + +config DT_HAS_TI_HDC2022_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_HDC2022)) + +DT_COMPAT_TI_HDC2080 := ti,hdc2080 + +config DT_HAS_TI_HDC2080_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_HDC2080)) + +DT_COMPAT_TI_HDC302X := ti,hdc302x + +config DT_HAS_TI_HDC302X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_HDC302X)) + +DT_COMPAT_TI_INA219 := ti,ina219 + +config DT_HAS_TI_INA219_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA219)) + +DT_COMPAT_TI_INA226 := ti,ina226 + +config DT_HAS_TI_INA226_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA226)) + +DT_COMPAT_TI_INA228 := ti,ina228 + +config DT_HAS_TI_INA228_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA228)) + +DT_COMPAT_TI_INA230 := ti,ina230 + +config DT_HAS_TI_INA230_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA230)) + +DT_COMPAT_TI_INA232 := ti,ina232 + +config DT_HAS_TI_INA232_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA232)) + +DT_COMPAT_TI_INA236 := ti,ina236 + +config DT_HAS_TI_INA236_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA236)) + +DT_COMPAT_TI_INA237 := ti,ina237 + +config DT_HAS_TI_INA237_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA237)) + +DT_COMPAT_TI_INA3221 := ti,ina3221 + +config DT_HAS_TI_INA3221_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA3221)) + +DT_COMPAT_TI_INA7XX := ti,ina7xx + +config DT_HAS_TI_INA7XX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_INA7XX)) + +DT_COMPAT_TI_J7_RTI_WDT := ti,j7-rti-wdt + +config DT_HAS_TI_J7_RTI_WDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_J7_RTI_WDT)) + +DT_COMPAT_TI_K2G_SCI := ti,k2g-sci + +config DT_HAS_TI_K2G_SCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_K2G_SCI)) + +DT_COMPAT_TI_K2G_SCI_CLK := ti,k2g-sci-clk + +config DT_HAS_TI_K2G_SCI_CLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_K2G_SCI_CLK)) + +DT_COMPAT_TI_K3_PINCTRL := ti,k3-pinctrl + +config DT_HAS_TI_K3_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_K3_PINCTRL)) + +DT_COMPAT_TI_LMP90077 := ti,lmp90077 + +config DT_HAS_TI_LMP90077_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90077)) + +DT_COMPAT_TI_LMP90078 := ti,lmp90078 + +config DT_HAS_TI_LMP90078_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90078)) + +DT_COMPAT_TI_LMP90079 := ti,lmp90079 + +config DT_HAS_TI_LMP90079_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90079)) + +DT_COMPAT_TI_LMP90080 := ti,lmp90080 + +config DT_HAS_TI_LMP90080_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90080)) + +DT_COMPAT_TI_LMP90097 := ti,lmp90097 + +config DT_HAS_TI_LMP90097_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90097)) + +DT_COMPAT_TI_LMP90098 := ti,lmp90098 + +config DT_HAS_TI_LMP90098_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90098)) + +DT_COMPAT_TI_LMP90099 := ti,lmp90099 + +config DT_HAS_TI_LMP90099_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90099)) + +DT_COMPAT_TI_LMP90100 := ti,lmp90100 + +config DT_HAS_TI_LMP90100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90100)) + +DT_COMPAT_TI_LMP90XXX_GPIO := ti,lmp90xxx-gpio + +config DT_HAS_TI_LMP90XXX_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LMP90XXX_GPIO)) + +DT_COMPAT_TI_LP3943 := ti,lp3943 + +config DT_HAS_TI_LP3943_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP3943)) + +DT_COMPAT_TI_LP5009 := ti,lp5009 + +config DT_HAS_TI_LP5009_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5009)) + +DT_COMPAT_TI_LP5012 := ti,lp5012 + +config DT_HAS_TI_LP5012_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5012)) + +DT_COMPAT_TI_LP5018 := ti,lp5018 + +config DT_HAS_TI_LP5018_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5018)) + +DT_COMPAT_TI_LP5024 := ti,lp5024 + +config DT_HAS_TI_LP5024_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5024)) + +DT_COMPAT_TI_LP5030 := ti,lp5030 + +config DT_HAS_TI_LP5030_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5030)) + +DT_COMPAT_TI_LP5036 := ti,lp5036 + +config DT_HAS_TI_LP5036_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5036)) + +DT_COMPAT_TI_LP5562 := ti,lp5562 + +config DT_HAS_TI_LP5562_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5562)) + +DT_COMPAT_TI_LP5569 := ti,lp5569 + +config DT_HAS_TI_LP5569_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_LP5569)) + +DT_COMPAT_TI_MSP432P4XX_UART := ti,msp432p4xx-uart + +config DT_HAS_TI_MSP432P4XX_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSP432P4XX_UART)) + +DT_COMPAT_TI_MSPM0_CLK := ti,mspm0-clk + +config DT_HAS_TI_MSPM0_CLK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSPM0_CLK)) + +DT_COMPAT_TI_MSPM0_GPIO := ti,mspm0-gpio + +config DT_HAS_TI_MSPM0_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSPM0_GPIO)) + +DT_COMPAT_TI_MSPM0_OSC := ti,mspm0-osc + +config DT_HAS_TI_MSPM0_OSC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSPM0_OSC)) + +DT_COMPAT_TI_MSPM0_PINCTRL := ti,mspm0-pinctrl + +config DT_HAS_TI_MSPM0_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSPM0_PINCTRL)) + +DT_COMPAT_TI_MSPM0_PLL := ti,mspm0-pll + +config DT_HAS_TI_MSPM0_PLL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSPM0_PLL)) + +DT_COMPAT_TI_MSPM0_RTC := ti,mspm0-rtc + +config DT_HAS_TI_MSPM0_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSPM0_RTC)) + +DT_COMPAT_TI_MSPM0_TIMER := ti,mspm0-timer + +config DT_HAS_TI_MSPM0_TIMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSPM0_TIMER)) + +DT_COMPAT_TI_MSPM0_TIMER_COUNTER := ti,mspm0-timer-counter + +config DT_HAS_TI_MSPM0_TIMER_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSPM0_TIMER_COUNTER)) + +DT_COMPAT_TI_MSPM0_TIMER_PWM := ti,mspm0-timer-pwm + +config DT_HAS_TI_MSPM0_TIMER_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSPM0_TIMER_PWM)) + +DT_COMPAT_TI_MSPM0_TRNG := ti,mspm0-trng + +config DT_HAS_TI_MSPM0_TRNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSPM0_TRNG)) + +DT_COMPAT_TI_MSPM0_UART := ti,mspm0-uart + +config DT_HAS_TI_MSPM0_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_MSPM0_UART)) + +DT_COMPAT_TI_OMAP_I2C := ti,omap-i2c + +config DT_HAS_TI_OMAP_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_OMAP_I2C)) + +DT_COMPAT_TI_OMAP_MAILBOX := ti,omap-mailbox + +config DT_HAS_TI_OMAP_MAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_OMAP_MAILBOX)) + +DT_COMPAT_TI_OMAP_MCSPI := ti,omap-mcspi + +config DT_HAS_TI_OMAP_MCSPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_OMAP_MCSPI)) + +DT_COMPAT_TI_OPT3001 := ti,opt3001 + +config DT_HAS_TI_OPT3001_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_OPT3001)) + +DT_COMPAT_TI_OPT3004 := ti,opt3004 + +config DT_HAS_TI_OPT3004_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_OPT3004)) + +DT_COMPAT_TI_PCM1681 := ti,pcm1681 + +config DT_HAS_TI_PCM1681_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_PCM1681)) + +DT_COMPAT_TI_SCI_PM_DOMAIN := ti,sci-pm-domain + +config DT_HAS_TI_SCI_PM_DOMAIN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_SCI_PM_DOMAIN)) + +DT_COMPAT_TI_SECURE_PROXY := ti,secure-proxy + +config DT_HAS_TI_SECURE_PROXY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_SECURE_PROXY)) + +DT_COMPAT_TI_SN74HC595 := ti,sn74hc595 + +config DT_HAS_TI_SN74HC595_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_SN74HC595)) + +DT_COMPAT_TI_STELLARIS_ETHERNET := ti,stellaris-ethernet + +config DT_HAS_TI_STELLARIS_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_STELLARIS_ETHERNET)) + +DT_COMPAT_TI_STELLARIS_FLASH_CONTROLLER := ti,stellaris-flash-controller + +config DT_HAS_TI_STELLARIS_FLASH_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_STELLARIS_FLASH_CONTROLLER)) + +DT_COMPAT_TI_STELLARIS_GPIO := ti,stellaris-gpio + +config DT_HAS_TI_STELLARIS_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_STELLARIS_GPIO)) + +DT_COMPAT_TI_STELLARIS_UART := ti,stellaris-uart + +config DT_HAS_TI_STELLARIS_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_STELLARIS_UART)) + +DT_COMPAT_TI_TAS6422DAC := ti,tas6422dac + +config DT_HAS_TI_TAS6422DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TAS6422DAC)) + +DT_COMPAT_TI_TCA6424A := ti,tca6424a + +config DT_HAS_TI_TCA6424A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TCA6424A)) + +DT_COMPAT_TI_TCA9538 := ti,tca9538 + +config DT_HAS_TI_TCA9538_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TCA9538)) + +DT_COMPAT_TI_TCA9544A := ti,tca9544a + +config DT_HAS_TI_TCA9544A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TCA9544A)) + +DT_COMPAT_TI_TCA9546A := ti,tca9546a + +config DT_HAS_TI_TCA9546A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TCA9546A)) + +DT_COMPAT_TI_TCA9548A := ti,tca9548a + +config DT_HAS_TI_TCA9548A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TCA9548A)) + +DT_COMPAT_TI_TCAN4X5X := ti,tcan4x5x + +config DT_HAS_TI_TCAN4X5X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TCAN4X5X)) + +DT_COMPAT_TI_TLA2021 := ti,tla2021 + +config DT_HAS_TI_TLA2021_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLA2021)) + +DT_COMPAT_TI_TLA2022 := ti,tla2022 + +config DT_HAS_TI_TLA2022_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLA2022)) + +DT_COMPAT_TI_TLA2024 := ti,tla2024 + +config DT_HAS_TI_TLA2024_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLA2024)) + +DT_COMPAT_TI_TLC59108 := ti,tlc59108 + +config DT_HAS_TI_TLC59108_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLC59108)) + +DT_COMPAT_TI_TLC5971 := ti,tlc5971 + +config DT_HAS_TI_TLC5971_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLC5971)) + +DT_COMPAT_TI_TLC59731 := ti,tlc59731 + +config DT_HAS_TI_TLC59731_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLC59731)) + +DT_COMPAT_TI_TLV320AIC3110 := ti,tlv320aic3110 + +config DT_HAS_TI_TLV320AIC3110_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLV320AIC3110)) + +DT_COMPAT_TI_TLV320DAC := ti,tlv320dac + +config DT_HAS_TI_TLV320DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TLV320DAC)) + +DT_COMPAT_TI_TMAG3001 := ti,tmag3001 + +config DT_HAS_TI_TMAG3001_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMAG3001)) + +DT_COMPAT_TI_TMAG5170 := ti,tmag5170 + +config DT_HAS_TI_TMAG5170_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMAG5170)) + +DT_COMPAT_TI_TMAG5273 := ti,tmag5273 + +config DT_HAS_TI_TMAG5273_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMAG5273)) + +DT_COMPAT_TI_TMP007 := ti,tmp007 + +config DT_HAS_TI_TMP007_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP007)) + +DT_COMPAT_TI_TMP1075 := ti,tmp1075 + +config DT_HAS_TI_TMP1075_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP1075)) + +DT_COMPAT_TI_TMP108 := ti,tmp108 + +config DT_HAS_TI_TMP108_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP108)) + +DT_COMPAT_TI_TMP112 := ti,tmp112 + +config DT_HAS_TI_TMP112_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP112)) + +DT_COMPAT_TI_TMP114 := ti,tmp114 + +config DT_HAS_TI_TMP114_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP114)) + +DT_COMPAT_TI_TMP11X := ti,tmp11x + +config DT_HAS_TI_TMP11X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP11X)) + +DT_COMPAT_TI_TMP11X_EEPROM := ti,tmp11x-eeprom + +config DT_HAS_TI_TMP11X_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP11X_EEPROM)) + +DT_COMPAT_TI_TMP435 := ti,tmp435 + +config DT_HAS_TI_TMP435_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TMP435)) + +DT_COMPAT_TI_TPS382X := ti,tps382x + +config DT_HAS_TI_TPS382X_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TPS382X)) + +DT_COMPAT_TI_TPS55287 := ti,tps55287 + +config DT_HAS_TI_TPS55287_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_TPS55287)) + +DT_COMPAT_TI_VIM := ti,vim + +config DT_HAS_TI_VIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TI_VIM)) + +DT_COMPAT_TITANMEC_TM1637 := titanmec,tm1637 + +config DT_HAS_TITANMEC_TM1637_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TITANMEC_TM1637)) + +DT_COMPAT_TSC_KEYS := tsc-keys + +config DT_HAS_TSC_KEYS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_TSC_KEYS)) + +DT_COMPAT_U_BLOX_F9P := u-blox,f9p + +config DT_HAS_U_BLOX_F9P_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_U_BLOX_F9P)) + +DT_COMPAT_U_BLOX_LARA_R6 := u-blox,lara-r6 + +config DT_HAS_U_BLOX_LARA_R6_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_U_BLOX_LARA_R6)) + +DT_COMPAT_U_BLOX_M8 := u-blox,m8 + +config DT_HAS_U_BLOX_M8_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_U_BLOX_M8)) + +DT_COMPAT_U_BLOX_SARA_R4 := u-blox,sara-r4 + +config DT_HAS_U_BLOX_SARA_R4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_U_BLOX_SARA_R4)) + +DT_COMPAT_U_BLOX_SARA_R5 := u-blox,sara-r5 + +config DT_HAS_U_BLOX_SARA_R5_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_U_BLOX_SARA_R5)) + +DT_COMPAT_UART_HDLC_RCP_IF := uart,hdlc-rcp-if + +config DT_HAS_UART_HDLC_RCP_IF_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_UART_HDLC_RCP_IF)) + +DT_COMPAT_ULTRACHIP_UC8151D := ultrachip,uc8151d + +config DT_HAS_ULTRACHIP_UC8151D_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ULTRACHIP_UC8151D)) + +DT_COMPAT_ULTRACHIP_UC8175 := ultrachip,uc8175 + +config DT_HAS_ULTRACHIP_UC8175_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ULTRACHIP_UC8175)) + +DT_COMPAT_ULTRACHIP_UC8176 := ultrachip,uc8176 + +config DT_HAS_ULTRACHIP_UC8176_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ULTRACHIP_UC8176)) + +DT_COMPAT_ULTRACHIP_UC8179 := ultrachip,uc8179 + +config DT_HAS_ULTRACHIP_UC8179_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ULTRACHIP_UC8179)) + +DT_COMPAT_USB_AUDIO := usb-audio + +config DT_HAS_USB_AUDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_AUDIO)) + +DT_COMPAT_USB_AUDIO_FEATURE_VOLUME := usb-audio-feature-volume + +config DT_HAS_USB_AUDIO_FEATURE_VOLUME_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_AUDIO_FEATURE_VOLUME)) + +DT_COMPAT_USB_AUDIO_HP := usb-audio-hp + +config DT_HAS_USB_AUDIO_HP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_AUDIO_HP)) + +DT_COMPAT_USB_AUDIO_HS := usb-audio-hs + +config DT_HAS_USB_AUDIO_HS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_AUDIO_HS)) + +DT_COMPAT_USB_AUDIO_MIC := usb-audio-mic + +config DT_HAS_USB_AUDIO_MIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_AUDIO_MIC)) + +DT_COMPAT_USB_C_CONNECTOR := usb-c-connector + +config DT_HAS_USB_C_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_C_CONNECTOR)) + +DT_COMPAT_USB_NOP_XCEIV := usb-nop-xceiv + +config DT_HAS_USB_NOP_XCEIV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_NOP_XCEIV)) + +DT_COMPAT_USB_ULPI_PHY := usb-ulpi-phy + +config DT_HAS_USB_ULPI_PHY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_USB_ULPI_PHY)) + +DT_COMPAT_VIRTIO_CONSOLE := virtio,console + +config DT_HAS_VIRTIO_CONSOLE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VIRTIO_CONSOLE)) + +DT_COMPAT_VIRTIO_DEVICE4 := virtio,device4 + +config DT_HAS_VIRTIO_DEVICE4_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VIRTIO_DEVICE4)) + +DT_COMPAT_VIRTIO_MMIO := virtio,mmio + +config DT_HAS_VIRTIO_MMIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VIRTIO_MMIO)) + +DT_COMPAT_VIRTIO_NET := virtio,net + +config DT_HAS_VIRTIO_NET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VIRTIO_NET)) + +DT_COMPAT_VIRTIO_PCI := virtio,pci + +config DT_HAS_VIRTIO_PCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VIRTIO_PCI)) + +DT_COMPAT_VISHAY_VCNL36825T := vishay,vcnl36825t + +config DT_HAS_VISHAY_VCNL36825T_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VISHAY_VCNL36825T)) + +DT_COMPAT_VISHAY_VCNL4040 := vishay,vcnl4040 + +config DT_HAS_VISHAY_VCNL4040_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VISHAY_VCNL4040)) + +DT_COMPAT_VISHAY_VEML6031 := vishay,veml6031 + +config DT_HAS_VISHAY_VEML6031_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VISHAY_VEML6031)) + +DT_COMPAT_VISHAY_VEML6046 := vishay,veml6046 + +config DT_HAS_VISHAY_VEML6046_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VISHAY_VEML6046)) + +DT_COMPAT_VISHAY_VEML7700 := vishay,veml7700 + +config DT_HAS_VISHAY_VEML7700_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VISHAY_VEML7700)) + +DT_COMPAT_VISHAY_VS1838B := vishay,vs1838b + +config DT_HAS_VISHAY_VS1838B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VISHAY_VS1838B)) + +DT_COMPAT_VND_ADC := vnd,adc + +config DT_HAS_VND_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ADC)) + +DT_COMPAT_VND_ADC_TEMP_SENSOR := vnd,adc-temp-sensor + +config DT_HAS_VND_ADC_TEMP_SENSOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ADC_TEMP_SENSOR)) + +DT_COMPAT_VND_ARRAY_HOLDER := vnd,array-holder + +config DT_HAS_VND_ARRAY_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ARRAY_HOLDER)) + +DT_COMPAT_VND_BUSY_SIM := vnd,busy-sim + +config DT_HAS_VND_BUSY_SIM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_BUSY_SIM)) + +DT_COMPAT_VND_CAN_CONTROLLER := vnd,can-controller + +config DT_HAS_VND_CAN_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_CAN_CONTROLLER)) + +DT_COMPAT_VND_CAN_TRANSCEIVER := vnd,can-transceiver + +config DT_HAS_VND_CAN_TRANSCEIVER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_CAN_TRANSCEIVER)) + +DT_COMPAT_VND_CHILD_BINDINGS := vnd,child-bindings + +config DT_HAS_VND_CHILD_BINDINGS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_CHILD_BINDINGS)) + +DT_COMPAT_VND_CLOCK := vnd,clock + +config DT_HAS_VND_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_CLOCK)) + +DT_COMPAT_VND_CPU_INTC := vnd,cpu-intc + +config DT_HAS_VND_CPU_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_CPU_INTC)) + +DT_COMPAT_VND_DAC := vnd,dac + +config DT_HAS_VND_DAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_DAC)) + +DT_COMPAT_VND_DAC_OUTPUTS := vnd,dac-outputs + +config DT_HAS_VND_DAC_OUTPUTS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_DAC_OUTPUTS)) + +DT_COMPAT_VND_DEVICE_WITH_PROPS := vnd,device-with-props + +config DT_HAS_VND_DEVICE_WITH_PROPS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_DEVICE_WITH_PROPS)) + +DT_COMPAT_VND_DISABLED_COMPAT := vnd,disabled-compat + +config DT_HAS_VND_DISABLED_COMPAT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_DISABLED_COMPAT)) + +DT_COMPAT_VND_DMA := vnd,dma + +config DT_HAS_VND_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_DMA)) + +DT_COMPAT_VND_EMUL_TESTER := vnd,emul-tester + +config DT_HAS_VND_EMUL_TESTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_EMUL_TESTER)) + +DT_COMPAT_VND_ENUM_HOLDER := vnd,enum-holder + +config DT_HAS_VND_ENUM_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ENUM_HOLDER)) + +DT_COMPAT_VND_ENUM_HOLDER_INST := vnd,enum-holder-inst + +config DT_HAS_VND_ENUM_HOLDER_INST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ENUM_HOLDER_INST)) + +DT_COMPAT_VND_ENUM_INT_ARRAY_HOLDER := vnd,enum-int-array-holder + +config DT_HAS_VND_ENUM_INT_ARRAY_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ENUM_INT_ARRAY_HOLDER)) + +DT_COMPAT_VND_ENUM_INT_REQUIRED_FALSE_HOLDER := vnd,enum-int-required-false-holder + +config DT_HAS_VND_ENUM_INT_REQUIRED_FALSE_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ENUM_INT_REQUIRED_FALSE_HOLDER)) + +DT_COMPAT_VND_ENUM_REQUIRED_FALSE_HOLDER := vnd,enum-required-false-holder + +config DT_HAS_VND_ENUM_REQUIRED_FALSE_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ENUM_REQUIRED_FALSE_HOLDER)) + +DT_COMPAT_VND_ENUM_REQUIRED_FALSE_HOLDER_INST := vnd,enum-required-false-holder-inst + +config DT_HAS_VND_ENUM_REQUIRED_FALSE_HOLDER_INST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ENUM_REQUIRED_FALSE_HOLDER_INST)) + +DT_COMPAT_VND_ENUM_STRING_ARRAY_HOLDER := vnd,enum-string-array-holder + +config DT_HAS_VND_ENUM_STRING_ARRAY_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ENUM_STRING_ARRAY_HOLDER)) + +DT_COMPAT_VND_ETHERNET := vnd,ethernet + +config DT_HAS_VND_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_ETHERNET)) + +DT_COMPAT_VND_GPIO := vnd,gpio + +config DT_HAS_VND_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_GPIO)) + +DT_COMPAT_VND_GPIO_DEVICE := vnd,gpio-device + +config DT_HAS_VND_GPIO_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_GPIO_DEVICE)) + +DT_COMPAT_VND_GPIO_EXPANDER := vnd,gpio-expander + +config DT_HAS_VND_GPIO_EXPANDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_GPIO_EXPANDER)) + +DT_COMPAT_VND_GPIO_INTC_DEVICE := vnd,gpio-intc-device + +config DT_HAS_VND_GPIO_INTC_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_GPIO_INTC_DEVICE)) + +DT_COMPAT_VND_GPIO_NEXUS := vnd,gpio-nexus + +config DT_HAS_VND_GPIO_NEXUS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_GPIO_NEXUS)) + +DT_COMPAT_VND_GPIO_ONE_CELL := vnd,gpio-one-cell + +config DT_HAS_VND_GPIO_ONE_CELL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_GPIO_ONE_CELL)) + +DT_COMPAT_VND_GREAT_GRANDCHILD_BINDINGS := vnd,great-grandchild-bindings + +config DT_HAS_VND_GREAT_GRANDCHILD_BINDINGS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_GREAT_GRANDCHILD_BINDINGS)) + +DT_COMPAT_VND_HWSPINLOCK := vnd,hwspinlock + +config DT_HAS_VND_HWSPINLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_HWSPINLOCK)) + +DT_COMPAT_VND_HWSPINLOCK_CONSUMER := vnd,hwspinlock-consumer + +config DT_HAS_VND_HWSPINLOCK_CONSUMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_HWSPINLOCK_CONSUMER)) + +DT_COMPAT_VND_HWSPINLOCK_DEVICE := vnd,hwspinlock-device + +config DT_HAS_VND_HWSPINLOCK_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_HWSPINLOCK_DEVICE)) + +DT_COMPAT_VND_I2C := vnd,i2c + +config DT_HAS_VND_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_I2C)) + +DT_COMPAT_VND_I2C_DEVICE := vnd,i2c-device + +config DT_HAS_VND_I2C_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_I2C_DEVICE)) + +DT_COMPAT_VND_I2C_MUX := vnd,i2c-mux + +config DT_HAS_VND_I2C_MUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_I2C_MUX)) + +DT_COMPAT_VND_I2S := vnd,i2s + +config DT_HAS_VND_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_I2S)) + +DT_COMPAT_VND_I3C := vnd,i3c + +config DT_HAS_VND_I3C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_I3C)) + +DT_COMPAT_VND_I3C_DEVICE := vnd,i3c-device + +config DT_HAS_VND_I3C_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_I3C_DEVICE)) + +DT_COMPAT_VND_I3C_I2C_DEVICE := vnd,i3c-i2c-device + +config DT_HAS_VND_I3C_I2C_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_I3C_I2C_DEVICE)) + +DT_COMPAT_VND_IEEE802154 := vnd,ieee802154 + +config DT_HAS_VND_IEEE802154_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_IEEE802154)) + +DT_COMPAT_VND_INPUT_DEVICE := vnd,input-device + +config DT_HAS_VND_INPUT_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_INPUT_DEVICE)) + +DT_COMPAT_VND_INTC := vnd,intc + +config DT_HAS_VND_INTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_INTC)) + +DT_COMPAT_VND_INTERRUPT_HOLDER := vnd,interrupt-holder + +config DT_HAS_VND_INTERRUPT_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_INTERRUPT_HOLDER)) + +DT_COMPAT_VND_INTERRUPT_HOLDER_EXTENDED := vnd,interrupt-holder-extended + +config DT_HAS_VND_INTERRUPT_HOLDER_EXTENDED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_INTERRUPT_HOLDER_EXTENDED)) + +DT_COMPAT_VND_INTR_NEXUS := vnd,intr-nexus + +config DT_HAS_VND_INTR_NEXUS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_INTR_NEXUS)) + +DT_COMPAT_VND_MBOX := vnd,mbox + +config DT_HAS_VND_MBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_MBOX)) + +DT_COMPAT_VND_MBOX_CONSUMER := vnd,mbox-consumer + +config DT_HAS_VND_MBOX_CONSUMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_MBOX_CONSUMER)) + +DT_COMPAT_VND_MBOX_ZERO_CELL := vnd,mbox-zero-cell + +config DT_HAS_VND_MBOX_ZERO_CELL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_MBOX_ZERO_CELL)) + +DT_COMPAT_VND_MEMORY_ATTR := vnd,memory-attr + +config DT_HAS_VND_MEMORY_ATTR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_MEMORY_ATTR)) + +DT_COMPAT_VND_MIPI_DSI := vnd,mipi-dsi + +config DT_HAS_VND_MIPI_DSI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_MIPI_DSI)) + +DT_COMPAT_VND_NON_DEPRECATED_LABEL := vnd,non-deprecated-label + +config DT_HAS_VND_NON_DEPRECATED_LABEL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_NON_DEPRECATED_LABEL)) + +DT_COMPAT_VND_NVMEM_CONSUMER := vnd,nvmem-consumer + +config DT_HAS_VND_NVMEM_CONSUMER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_NVMEM_CONSUMER)) + +DT_COMPAT_VND_PCIE := vnd,pcie + +config DT_HAS_VND_PCIE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_PCIE)) + +DT_COMPAT_VND_PHANDLE_HOLDER := vnd,phandle-holder + +config DT_HAS_VND_PHANDLE_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_PHANDLE_HOLDER)) + +DT_COMPAT_VND_PINCTRL := vnd,pinctrl + +config DT_HAS_VND_PINCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_PINCTRL)) + +DT_COMPAT_VND_PINCTRL_DEVICE := vnd,pinctrl-device + +config DT_HAS_VND_PINCTRL_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_PINCTRL_DEVICE)) + +DT_COMPAT_VND_PINCTRL_TEST := vnd,pinctrl-test + +config DT_HAS_VND_PINCTRL_TEST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_PINCTRL_TEST)) + +DT_COMPAT_VND_PWM := vnd,pwm + +config DT_HAS_VND_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_PWM)) + +DT_COMPAT_VND_REG_HOLDER := vnd,reg-holder + +config DT_HAS_VND_REG_HOLDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_REG_HOLDER)) + +DT_COMPAT_VND_REG_HOLDER_2 := vnd,reg-holder-2 + +config DT_HAS_VND_REG_HOLDER_2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_REG_HOLDER_2)) + +DT_COMPAT_VND_REG_HOLDER_64 := vnd,reg-holder-64 + +config DT_HAS_VND_REG_HOLDER_64_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_REG_HOLDER_64)) + +DT_COMPAT_VND_RESERVED_COMPAT := vnd,reserved-compat + +config DT_HAS_VND_RESERVED_COMPAT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_RESERVED_COMPAT)) + +DT_COMPAT_VND_RESET := vnd,reset + +config DT_HAS_VND_RESET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_RESET)) + +DT_COMPAT_VND_SERIAL := vnd,serial + +config DT_HAS_VND_SERIAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_SERIAL)) + +DT_COMPAT_VND_SPI := vnd,spi + +config DT_HAS_VND_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_SPI)) + +DT_COMPAT_VND_SPI_DEVICE := vnd,spi-device + +config DT_HAS_VND_SPI_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_SPI_DEVICE)) + +DT_COMPAT_VND_SPI_DEVICE_2 := vnd,spi-device-2 + +config DT_HAS_VND_SPI_DEVICE_2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_SPI_DEVICE_2)) + +DT_COMPAT_VND_STRING := vnd,string + +config DT_HAS_VND_STRING_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_STRING)) + +DT_COMPAT_VND_STRING_ARRAY := vnd,string-array + +config DT_HAS_VND_STRING_ARRAY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_STRING_ARRAY)) + +DT_COMPAT_VND_STRING_ARRAY_TOKEN := vnd,string-array-token + +config DT_HAS_VND_STRING_ARRAY_TOKEN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_STRING_ARRAY_TOKEN)) + +DT_COMPAT_VND_STRING_ARRAY_UNQUOTED := vnd,string-array-unquoted + +config DT_HAS_VND_STRING_ARRAY_UNQUOTED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_STRING_ARRAY_UNQUOTED)) + +DT_COMPAT_VND_STRING_TOKEN := vnd,string-token + +config DT_HAS_VND_STRING_TOKEN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_STRING_TOKEN)) + +DT_COMPAT_VND_STRING_UNQUOTED := vnd,string-unquoted + +config DT_HAS_VND_STRING_UNQUOTED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_STRING_UNQUOTED)) + +DT_COMPAT_VND_TEST_FOREACH_REG := vnd,test-foreach-reg + +config DT_HAS_VND_TEST_FOREACH_REG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_TEST_FOREACH_REG)) + +DT_COMPAT_VND_TEST_FOREACH_REG_UNIQUE := vnd,test-foreach-reg-unique + +config DT_HAS_VND_TEST_FOREACH_REG_UNIQUE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_TEST_FOREACH_REG_UNIQUE)) + +DT_COMPAT_VND_VIDEO_MULTI_PORT := vnd,video-multi-port + +config DT_HAS_VND_VIDEO_MULTI_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_VIDEO_MULTI_PORT)) + +DT_COMPAT_VND_VIDEO_SINGLE_PORT := vnd,video-single-port + +config DT_HAS_VND_VIDEO_SINGLE_PORT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_VIDEO_SINGLE_PORT)) + +DT_COMPAT_VND_W1 := vnd,w1 + +config DT_HAS_VND_W1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_W1)) + +DT_COMPAT_VOLTAGE_DIVIDER := voltage-divider + +config DT_HAS_VOLTAGE_DIVIDER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_VOLTAGE_DIVIDER)) + +DT_COMPAT_WAVESHARE_DSI2DPI := waveshare,dsi2dpi + +config DT_HAS_WAVESHARE_DSI2DPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WAVESHARE_DSI2DPI)) + +DT_COMPAT_WCH_00X_AFIO := wch,00x-afio + +config DT_HAS_WCH_00X_AFIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_00X_AFIO)) + +DT_COMPAT_WCH_20X_30X_AFIO := wch,20x_30x-afio + +config DT_HAS_WCH_20X_30X_AFIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_20X_30X_AFIO)) + +DT_COMPAT_WCH_ADC := wch,adc + +config DT_HAS_WCH_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_ADC)) + +DT_COMPAT_WCH_AFIO := wch,afio + +config DT_HAS_WCH_AFIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_AFIO)) + +DT_COMPAT_WCH_CH32V00X_HSE_CLOCK := wch,ch32v00x-hse-clock + +config DT_HAS_WCH_CH32V00X_HSE_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_CH32V00X_HSE_CLOCK)) + +DT_COMPAT_WCH_CH32V00X_HSI_CLOCK := wch,ch32v00x-hsi-clock + +config DT_HAS_WCH_CH32V00X_HSI_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_CH32V00X_HSI_CLOCK)) + +DT_COMPAT_WCH_CH32V00X_PLL_CLOCK := wch,ch32v00x-pll-clock + +config DT_HAS_WCH_CH32V00X_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_CH32V00X_PLL_CLOCK)) + +DT_COMPAT_WCH_CH32V20X_30X_PLL_CLOCK := wch,ch32v20x_30x-pll-clock + +config DT_HAS_WCH_CH32V20X_30X_PLL_CLOCK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_CH32V20X_30X_PLL_CLOCK)) + +DT_COMPAT_WCH_CH9350L := wch,ch9350l + +config DT_HAS_WCH_CH9350L_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_CH9350L)) + +DT_COMPAT_WCH_ETHERNET := wch,ethernet + +config DT_HAS_WCH_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_ETHERNET)) + +DT_COMPAT_WCH_ETHERNET_CONTROLLER := wch,ethernet-controller + +config DT_HAS_WCH_ETHERNET_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_ETHERNET_CONTROLLER)) + +DT_COMPAT_WCH_EXTI := wch,exti + +config DT_HAS_WCH_EXTI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_EXTI)) + +DT_COMPAT_WCH_GPIO := wch,gpio + +config DT_HAS_WCH_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_GPIO)) + +DT_COMPAT_WCH_GPTM := wch,gptm + +config DT_HAS_WCH_GPTM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_GPTM)) + +DT_COMPAT_WCH_GPTM_PWM := wch,gptm-pwm + +config DT_HAS_WCH_GPTM_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_GPTM_PWM)) + +DT_COMPAT_WCH_I2C := wch,i2c + +config DT_HAS_WCH_I2C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_I2C)) + +DT_COMPAT_WCH_IWDG := wch,iwdg + +config DT_HAS_WCH_IWDG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_IWDG)) + +DT_COMPAT_WCH_MDIO := wch,mdio + +config DT_HAS_WCH_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_MDIO)) + +DT_COMPAT_WCH_PFIC := wch,pfic + +config DT_HAS_WCH_PFIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_PFIC)) + +DT_COMPAT_WCH_QINGKE_V2 := wch,qingke-v2 + +config DT_HAS_WCH_QINGKE_V2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_QINGKE_V2)) + +DT_COMPAT_WCH_QINGKE_V4B := wch,qingke-v4b + +config DT_HAS_WCH_QINGKE_V4B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_QINGKE_V4B)) + +DT_COMPAT_WCH_QINGKE_V4C := wch,qingke-v4c + +config DT_HAS_WCH_QINGKE_V4C_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_QINGKE_V4C)) + +DT_COMPAT_WCH_QINGKE_V4F := wch,qingke-v4f + +config DT_HAS_WCH_QINGKE_V4F_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_QINGKE_V4F)) + +DT_COMPAT_WCH_RCC := wch,rcc + +config DT_HAS_WCH_RCC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_RCC)) + +DT_COMPAT_WCH_RNG := wch,rng + +config DT_HAS_WCH_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_RNG)) + +DT_COMPAT_WCH_SPI := wch,spi + +config DT_HAS_WCH_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_SPI)) + +DT_COMPAT_WCH_SYSTICK := wch,systick + +config DT_HAS_WCH_SYSTICK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_SYSTICK)) + +DT_COMPAT_WCH_USART := wch,usart + +config DT_HAS_WCH_USART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_USART)) + +DT_COMPAT_WCH_WCH_DMA := wch,wch-dma + +config DT_HAS_WCH_WCH_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WCH_WCH_DMA)) + +DT_COMPAT_WE_WSEN_HIDS_2525020210002 := we,wsen-hids-2525020210002 + +config DT_HAS_WE_WSEN_HIDS_2525020210002_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WE_WSEN_HIDS_2525020210002)) + +DT_COMPAT_WE_WSEN_ISDS_2536030320001 := we,wsen-isds-2536030320001 + +config DT_HAS_WE_WSEN_ISDS_2536030320001_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WE_WSEN_ISDS_2536030320001)) + +DT_COMPAT_WE_WSEN_ITDS_2533020201601 := we,wsen-itds-2533020201601 + +config DT_HAS_WE_WSEN_ITDS_2533020201601_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WE_WSEN_ITDS_2533020201601)) + +DT_COMPAT_WE_WSEN_PADS_2511020213301 := we,wsen-pads-2511020213301 + +config DT_HAS_WE_WSEN_PADS_2511020213301_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WE_WSEN_PADS_2511020213301)) + +DT_COMPAT_WE_WSEN_PDMS_25131308XXX05 := we,wsen-pdms-25131308XXX05 + +config DT_HAS_WE_WSEN_PDMS_25131308XXX05_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WE_WSEN_PDMS_25131308XXX05)) + +DT_COMPAT_WE_WSEN_PDUS_25131308XXXXX := we,wsen-pdus-25131308XXXXX + +config DT_HAS_WE_WSEN_PDUS_25131308XXXXX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WE_WSEN_PDUS_25131308XXXXX)) + +DT_COMPAT_WE_WSEN_TIDS_2521020222501 := we,wsen-tids-2521020222501 + +config DT_HAS_WE_WSEN_TIDS_2521020222501_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WE_WSEN_TIDS_2521020222501)) + +DT_COMPAT_WEACT_DCMI_CAMERA_CONNECTOR := weact,dcmi-camera-connector + +config DT_HAS_WEACT_DCMI_CAMERA_CONNECTOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WEACT_DCMI_CAMERA_CONNECTOR)) + +DT_COMPAT_WINSEN_MHZ19B := winsen,mhz19b + +config DT_HAS_WINSEN_MHZ19B_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WINSEN_MHZ19B)) + +DT_COMPAT_WIZNET_W5500 := wiznet,w5500 + +config DT_HAS_WIZNET_W5500_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WIZNET_W5500)) + +DT_COMPAT_WIZNET_W6100 := wiznet,w6100 + +config DT_HAS_WIZNET_W6100_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WIZNET_W6100)) + +DT_COMPAT_WNC_M14A2A := wnc,m14a2a + +config DT_HAS_WNC_M14A2A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WNC_M14A2A)) + +DT_COMPAT_WOLFSON_WM8904 := wolfson,wm8904 + +config DT_HAS_WOLFSON_WM8904_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WOLFSON_WM8904)) + +DT_COMPAT_WOLFSON_WM8962 := wolfson,wm8962 + +config DT_HAS_WOLFSON_WM8962_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WOLFSON_WM8962)) + +DT_COMPAT_WORLDSEMI_WS2812_GPIO := worldsemi,ws2812-gpio + +config DT_HAS_WORLDSEMI_WS2812_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WORLDSEMI_WS2812_GPIO)) + +DT_COMPAT_WORLDSEMI_WS2812_I2S := worldsemi,ws2812-i2s + +config DT_HAS_WORLDSEMI_WS2812_I2S_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WORLDSEMI_WS2812_I2S)) + +DT_COMPAT_WORLDSEMI_WS2812_RPI_PICO_PIO := worldsemi,ws2812-rpi_pico-pio + +config DT_HAS_WORLDSEMI_WS2812_RPI_PICO_PIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WORLDSEMI_WS2812_RPI_PICO_PIO)) + +DT_COMPAT_WORLDSEMI_WS2812_SPI := worldsemi,ws2812-spi + +config DT_HAS_WORLDSEMI_WS2812_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WORLDSEMI_WS2812_SPI)) + +DT_COMPAT_WORLDSEMI_WS2812_UART := worldsemi,ws2812-uart + +config DT_HAS_WORLDSEMI_WS2812_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_WORLDSEMI_WS2812_UART)) + +DT_COMPAT_X_POWERS_AXP192 := x-powers,axp192 + +config DT_HAS_X_POWERS_AXP192_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_X_POWERS_AXP192)) + +DT_COMPAT_X_POWERS_AXP192_GPIO := x-powers,axp192-gpio + +config DT_HAS_X_POWERS_AXP192_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_X_POWERS_AXP192_GPIO)) + +DT_COMPAT_X_POWERS_AXP192_LED := x-powers,axp192-led + +config DT_HAS_X_POWERS_AXP192_LED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_X_POWERS_AXP192_LED)) + +DT_COMPAT_X_POWERS_AXP192_REGULATOR := x-powers,axp192-regulator + +config DT_HAS_X_POWERS_AXP192_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_X_POWERS_AXP192_REGULATOR)) + +DT_COMPAT_X_POWERS_AXP2101 := x-powers,axp2101 + +config DT_HAS_X_POWERS_AXP2101_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_X_POWERS_AXP2101)) + +DT_COMPAT_X_POWERS_AXP2101_CHARGER := x-powers,axp2101-charger + +config DT_HAS_X_POWERS_AXP2101_CHARGER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_X_POWERS_AXP2101_CHARGER)) + +DT_COMPAT_X_POWERS_AXP2101_FUEL_GAUGE := x-powers,axp2101-fuel-gauge + +config DT_HAS_X_POWERS_AXP2101_FUEL_GAUGE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_X_POWERS_AXP2101_FUEL_GAUGE)) + +DT_COMPAT_X_POWERS_AXP2101_LED := x-powers,axp2101-led + +config DT_HAS_X_POWERS_AXP2101_LED_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_X_POWERS_AXP2101_LED)) + +DT_COMPAT_X_POWERS_AXP2101_REGULATOR := x-powers,axp2101-regulator + +config DT_HAS_X_POWERS_AXP2101_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_X_POWERS_AXP2101_REGULATOR)) + +DT_COMPAT_XEN_HVC_CONSOLEIO := xen,hvc-consoleio + +config DT_HAS_XEN_HVC_CONSOLEIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XEN_HVC_CONSOLEIO)) + +DT_COMPAT_XEN_HVC_UART := xen,hvc-uart + +config DT_HAS_XEN_HVC_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XEN_HVC_UART)) + +DT_COMPAT_XEN_XEN := xen,xen + +config DT_HAS_XEN_XEN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XEN_XEN)) + +DT_COMPAT_XLNX_AXI_DMA_1_00_A := xlnx,axi-dma-1.00.a + +config DT_HAS_XLNX_AXI_DMA_1_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_AXI_DMA_1_00_A)) + +DT_COMPAT_XLNX_AXI_ETHERNET_1_00_A := xlnx,axi-ethernet-1.00.a + +config DT_HAS_XLNX_AXI_ETHERNET_1_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_AXI_ETHERNET_1_00_A)) + +DT_COMPAT_XLNX_AXI_ETHERNET_1_00_A_MDIO := xlnx,axi-ethernet-1.00.a-mdio + +config DT_HAS_XLNX_AXI_ETHERNET_1_00_A_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_AXI_ETHERNET_1_00_A_MDIO)) + +DT_COMPAT_XLNX_ETH_DMA := xlnx,eth-dma + +config DT_HAS_XLNX_ETH_DMA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_ETH_DMA)) + +DT_COMPAT_XLNX_FPGA := xlnx,fpga + +config DT_HAS_XLNX_FPGA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_FPGA)) + +DT_COMPAT_XLNX_GEM := xlnx,gem + +config DT_HAS_XLNX_GEM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_GEM)) + +DT_COMPAT_XLNX_MBOX_VERSAL_IPI_MAILBOX := xlnx,mbox-versal-ipi-mailbox + +config DT_HAS_XLNX_MBOX_VERSAL_IPI_MAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_MBOX_VERSAL_IPI_MAILBOX)) + +DT_COMPAT_XLNX_PINCTRL_ZYNQ := xlnx,pinctrl-zynq + +config DT_HAS_XLNX_PINCTRL_ZYNQ_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_PINCTRL_ZYNQ)) + +DT_COMPAT_XLNX_PINCTRL_ZYNQMP := xlnx,pinctrl-zynqmp + +config DT_HAS_XLNX_PINCTRL_ZYNQMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_PINCTRL_ZYNQMP)) + +DT_COMPAT_XLNX_PS_GPIO := xlnx,ps-gpio + +config DT_HAS_XLNX_PS_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_PS_GPIO)) + +DT_COMPAT_XLNX_PS_GPIO_BANK := xlnx,ps-gpio-bank + +config DT_HAS_XLNX_PS_GPIO_BANK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_PS_GPIO_BANK)) + +DT_COMPAT_XLNX_TTCPS := xlnx,ttcps + +config DT_HAS_XLNX_TTCPS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_TTCPS)) + +DT_COMPAT_XLNX_VERSAL_8_9A := xlnx,versal-8.9a + +config DT_HAS_XLNX_VERSAL_8_9A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_VERSAL_8_9A)) + +DT_COMPAT_XLNX_VERSAL_WWDT := xlnx,versal-wwdt + +config DT_HAS_XLNX_VERSAL_WWDT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_VERSAL_WWDT)) + +DT_COMPAT_XLNX_XPS_ETHERNETLITE_1_00_A := xlnx,xps-ethernetlite-1.00.a + +config DT_HAS_XLNX_XPS_ETHERNETLITE_1_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_ETHERNETLITE_1_00_A)) + +DT_COMPAT_XLNX_XPS_ETHERNETLITE_1_00_A_MAC := xlnx,xps-ethernetlite-1.00.a-mac + +config DT_HAS_XLNX_XPS_ETHERNETLITE_1_00_A_MAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_ETHERNETLITE_1_00_A_MAC)) + +DT_COMPAT_XLNX_XPS_ETHERNETLITE_1_00_A_MDIO := xlnx,xps-ethernetlite-1.00.a-mdio + +config DT_HAS_XLNX_XPS_ETHERNETLITE_1_00_A_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_ETHERNETLITE_1_00_A_MDIO)) + +DT_COMPAT_XLNX_XPS_ETHERNETLITE_3_00_A := xlnx,xps-ethernetlite-3.00.a + +config DT_HAS_XLNX_XPS_ETHERNETLITE_3_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_ETHERNETLITE_3_00_A)) + +DT_COMPAT_XLNX_XPS_ETHERNETLITE_3_00_A_MAC := xlnx,xps-ethernetlite-3.00.a-mac + +config DT_HAS_XLNX_XPS_ETHERNETLITE_3_00_A_MAC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_ETHERNETLITE_3_00_A_MAC)) + +DT_COMPAT_XLNX_XPS_ETHERNETLITE_3_00_A_MDIO := xlnx,xps-ethernetlite-3.00.a-mdio + +config DT_HAS_XLNX_XPS_ETHERNETLITE_3_00_A_MDIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_ETHERNETLITE_3_00_A_MDIO)) + +DT_COMPAT_XLNX_XPS_GPIO_1_00_A := xlnx,xps-gpio-1.00.a + +config DT_HAS_XLNX_XPS_GPIO_1_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_GPIO_1_00_A)) + +DT_COMPAT_XLNX_XPS_GPIO_1_00_A_GPIO2 := xlnx,xps-gpio-1.00.a-gpio2 + +config DT_HAS_XLNX_XPS_GPIO_1_00_A_GPIO2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_GPIO_1_00_A_GPIO2)) + +DT_COMPAT_XLNX_XPS_IIC_2_00_A := xlnx,xps-iic-2.00.a + +config DT_HAS_XLNX_XPS_IIC_2_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_IIC_2_00_A)) + +DT_COMPAT_XLNX_XPS_IIC_2_1 := xlnx,xps-iic-2.1 + +config DT_HAS_XLNX_XPS_IIC_2_1_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_IIC_2_1)) + +DT_COMPAT_XLNX_XPS_SPI_2_00_A := xlnx,xps-spi-2.00.a + +config DT_HAS_XLNX_XPS_SPI_2_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_SPI_2_00_A)) + +DT_COMPAT_XLNX_XPS_TIMEBASE_WDT_1_00_A := xlnx,xps-timebase-wdt-1.00.a + +config DT_HAS_XLNX_XPS_TIMEBASE_WDT_1_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_TIMEBASE_WDT_1_00_A)) + +DT_COMPAT_XLNX_XPS_TIMER_1_00_A := xlnx,xps-timer-1.00.a + +config DT_HAS_XLNX_XPS_TIMER_1_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_TIMER_1_00_A)) + +DT_COMPAT_XLNX_XPS_TIMER_1_00_A_PWM := xlnx,xps-timer-1.00.a-pwm + +config DT_HAS_XLNX_XPS_TIMER_1_00_A_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_TIMER_1_00_A_PWM)) + +DT_COMPAT_XLNX_XPS_UARTLITE_1_00_A := xlnx,xps-uartlite-1.00.a + +config DT_HAS_XLNX_XPS_UARTLITE_1_00_A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XPS_UARTLITE_1_00_A)) + +DT_COMPAT_XLNX_XUARTPS := xlnx,xuartps + +config DT_HAS_XLNX_XUARTPS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_XUARTPS)) + +DT_COMPAT_XLNX_ZYNQ_OCM := xlnx,zynq-ocm + +config DT_HAS_XLNX_ZYNQ_OCM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_ZYNQ_OCM)) + +DT_COMPAT_XLNX_ZYNQMP_DDRC_2_40A := xlnx,zynqmp-ddrc-2.40a + +config DT_HAS_XLNX_ZYNQMP_DDRC_2_40A_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_ZYNQMP_DDRC_2_40A)) + +DT_COMPAT_XLNX_ZYNQMP_IPI_MAILBOX := xlnx,zynqmp-ipi-mailbox + +config DT_HAS_XLNX_ZYNQMP_IPI_MAILBOX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XLNX_ZYNQMP_IPI_MAILBOX)) + +DT_COMPAT_XPTEK_XPT2046 := xptek,xpt2046 + +config DT_HAS_XPTEK_XPT2046_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XPTEK_XPT2046)) + +DT_COMPAT_XUANTIE_E907 := xuantie,e907 + +config DT_HAS_XUANTIE_E907_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_XUANTIE_E907)) + +DT_COMPAT_ZEPHYR_ADC_EMUL := zephyr,adc-emul + +config DT_HAS_ZEPHYR_ADC_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_ADC_EMUL)) + +DT_COMPAT_ZEPHYR_BBRAM_EMUL := zephyr,bbram-emul + +config DT_HAS_ZEPHYR_BBRAM_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BBRAM_EMUL)) + +DT_COMPAT_ZEPHYR_BIOMETRICS_EMUL := zephyr,biometrics-emul + +config DT_HAS_ZEPHYR_BIOMETRICS_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BIOMETRICS_EMUL)) + +DT_COMPAT_ZEPHYR_BT_HCI_3WIRE_UART := zephyr,bt-hci-3wire-uart + +config DT_HAS_ZEPHYR_BT_HCI_3WIRE_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_3WIRE_UART)) + +DT_COMPAT_ZEPHYR_BT_HCI_ENTROPY := zephyr,bt-hci-entropy + +config DT_HAS_ZEPHYR_BT_HCI_ENTROPY_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_ENTROPY)) + +DT_COMPAT_ZEPHYR_BT_HCI_IPC := zephyr,bt-hci-ipc + +config DT_HAS_ZEPHYR_BT_HCI_IPC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_IPC)) + +DT_COMPAT_ZEPHYR_BT_HCI_LL_SW_SPLIT := zephyr,bt-hci-ll-sw-split + +config DT_HAS_ZEPHYR_BT_HCI_LL_SW_SPLIT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_LL_SW_SPLIT)) + +DT_COMPAT_ZEPHYR_BT_HCI_SPI := zephyr,bt-hci-spi + +config DT_HAS_ZEPHYR_BT_HCI_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_SPI)) + +DT_COMPAT_ZEPHYR_BT_HCI_SPI_SLAVE := zephyr,bt-hci-spi-slave + +config DT_HAS_ZEPHYR_BT_HCI_SPI_SLAVE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_SPI_SLAVE)) + +DT_COMPAT_ZEPHYR_BT_HCI_UART := zephyr,bt-hci-uart + +config DT_HAS_ZEPHYR_BT_HCI_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_UART)) + +DT_COMPAT_ZEPHYR_BT_HCI_USERCHAN := zephyr,bt-hci-userchan + +config DT_HAS_ZEPHYR_BT_HCI_USERCHAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_BT_HCI_USERCHAN)) + +DT_COMPAT_ZEPHYR_CAN_LOOPBACK := zephyr,can-loopback + +config DT_HAS_ZEPHYR_CAN_LOOPBACK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_CAN_LOOPBACK)) + +DT_COMPAT_ZEPHYR_CDC_ACM_UART := zephyr,cdc-acm-uart + +config DT_HAS_ZEPHYR_CDC_ACM_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_CDC_ACM_UART)) + +DT_COMPAT_ZEPHYR_CDC_ECM_ETHERNET := zephyr,cdc-ecm-ethernet + +config DT_HAS_ZEPHYR_CDC_ECM_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_CDC_ECM_ETHERNET)) + +DT_COMPAT_ZEPHYR_CDC_NCM_ETHERNET := zephyr,cdc-ncm-ethernet + +config DT_HAS_ZEPHYR_CDC_NCM_ETHERNET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_CDC_NCM_ETHERNET)) + +DT_COMPAT_ZEPHYR_CHARGER_GPIO := zephyr,charger-gpio + +config DT_HAS_ZEPHYR_CHARGER_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_CHARGER_GPIO)) + +DT_COMPAT_ZEPHYR_COREDUMP := zephyr,coredump + +config DT_HAS_ZEPHYR_COREDUMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_COREDUMP)) + +DT_COMPAT_ZEPHYR_COUNTER_WATCHDOG := zephyr,counter-watchdog + +config DT_HAS_ZEPHYR_COUNTER_WATCHDOG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_COUNTER_WATCHDOG)) + +DT_COMPAT_ZEPHYR_DAC_EMUL := zephyr,dac-emul + +config DT_HAS_ZEPHYR_DAC_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_DAC_EMUL)) + +DT_COMPAT_ZEPHYR_DEVMUX := zephyr,devmux + +config DT_HAS_ZEPHYR_DEVMUX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_DEVMUX)) + +DT_COMPAT_ZEPHYR_DISPLAYS := zephyr,displays + +config DT_HAS_ZEPHYR_DISPLAYS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_DISPLAYS)) + +DT_COMPAT_ZEPHYR_DMA_EMUL := zephyr,dma-emul + +config DT_HAS_ZEPHYR_DMA_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_DMA_EMUL)) + +DT_COMPAT_ZEPHYR_DUMMY_DC := zephyr,dummy-dc + +config DT_HAS_ZEPHYR_DUMMY_DC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_DUMMY_DC)) + +DT_COMPAT_ZEPHYR_EMU_EEPROM := zephyr,emu-eeprom + +config DT_HAS_ZEPHYR_EMU_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_EMU_EEPROM)) + +DT_COMPAT_ZEPHYR_ESPI_EMUL_CONTROLLER := zephyr,espi-emul-controller + +config DT_HAS_ZEPHYR_ESPI_EMUL_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_ESPI_EMUL_CONTROLLER)) + +DT_COMPAT_ZEPHYR_FAKE_CAN := zephyr,fake-can + +config DT_HAS_ZEPHYR_FAKE_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FAKE_CAN)) + +DT_COMPAT_ZEPHYR_FAKE_COMP := zephyr,fake-comp + +config DT_HAS_ZEPHYR_FAKE_COMP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FAKE_COMP)) + +DT_COMPAT_ZEPHYR_FAKE_EEPROM := zephyr,fake-eeprom + +config DT_HAS_ZEPHYR_FAKE_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FAKE_EEPROM)) + +DT_COMPAT_ZEPHYR_FAKE_PWM := zephyr,fake-pwm + +config DT_HAS_ZEPHYR_FAKE_PWM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FAKE_PWM)) + +DT_COMPAT_ZEPHYR_FAKE_REGULATOR := zephyr,fake-regulator + +config DT_HAS_ZEPHYR_FAKE_REGULATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FAKE_REGULATOR)) + +DT_COMPAT_ZEPHYR_FAKE_RTC := zephyr,fake-rtc + +config DT_HAS_ZEPHYR_FAKE_RTC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FAKE_RTC)) + +DT_COMPAT_ZEPHYR_FAKE_STEPPER_CTRL := zephyr,fake-stepper-ctrl + +config DT_HAS_ZEPHYR_FAKE_STEPPER_CTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FAKE_STEPPER_CTRL)) + +DT_COMPAT_ZEPHYR_FAKE_STEPPER_DRIVER := zephyr,fake-stepper-driver + +config DT_HAS_ZEPHYR_FAKE_STEPPER_DRIVER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FAKE_STEPPER_DRIVER)) + +DT_COMPAT_ZEPHYR_FLASH_DISK := zephyr,flash-disk + +config DT_HAS_ZEPHYR_FLASH_DISK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FLASH_DISK)) + +DT_COMPAT_ZEPHYR_FSTAB := zephyr,fstab + +config DT_HAS_ZEPHYR_FSTAB_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FSTAB)) + +DT_COMPAT_ZEPHYR_FSTAB_EXT2 := zephyr,fstab,ext2 + +config DT_HAS_ZEPHYR_FSTAB_EXT2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FSTAB_EXT2)) + +DT_COMPAT_ZEPHYR_FSTAB_FATFS := zephyr,fstab,fatfs + +config DT_HAS_ZEPHYR_FSTAB_FATFS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FSTAB_FATFS)) + +DT_COMPAT_ZEPHYR_FSTAB_LITTLEFS := zephyr,fstab,littlefs + +config DT_HAS_ZEPHYR_FSTAB_LITTLEFS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FSTAB_LITTLEFS)) + +DT_COMPAT_ZEPHYR_FTL_DHARA := zephyr,ftl-dhara + +config DT_HAS_ZEPHYR_FTL_DHARA_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FTL_DHARA)) + +DT_COMPAT_ZEPHYR_FUEL_GAUGE_COMPOSITE := zephyr,fuel-gauge-composite + +config DT_HAS_ZEPHYR_FUEL_GAUGE_COMPOSITE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_FUEL_GAUGE_COMPOSITE)) + +DT_COMPAT_ZEPHYR_GENERIC_PSTATE := zephyr,generic-pstate + +config DT_HAS_ZEPHYR_GENERIC_PSTATE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_GENERIC_PSTATE)) + +DT_COMPAT_ZEPHYR_GNSS_EMUL := zephyr,gnss-emul + +config DT_HAS_ZEPHYR_GNSS_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_GNSS_EMUL)) + +DT_COMPAT_ZEPHYR_GPIO_EMUL := zephyr,gpio-emul + +config DT_HAS_ZEPHYR_GPIO_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_GPIO_EMUL)) + +DT_COMPAT_ZEPHYR_GPIO_EMUL_SDL := zephyr,gpio-emul-sdl + +config DT_HAS_ZEPHYR_GPIO_EMUL_SDL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_GPIO_EMUL_SDL)) + +DT_COMPAT_ZEPHYR_GPIO_STEP_DIR_STEPPER_CTRL := zephyr,gpio-step-dir-stepper-ctrl + +config DT_HAS_ZEPHYR_GPIO_STEP_DIR_STEPPER_CTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_GPIO_STEP_DIR_STEPPER_CTRL)) + +DT_COMPAT_ZEPHYR_H_BRIDGE_STEPPER_CTRL := zephyr,h-bridge-stepper-ctrl + +config DT_HAS_ZEPHYR_H_BRIDGE_STEPPER_CTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_H_BRIDGE_STEPPER_CTRL)) + +DT_COMPAT_ZEPHYR_HID_DEVICE := zephyr,hid-device + +config DT_HAS_ZEPHYR_HID_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_HID_DEVICE)) + +DT_COMPAT_ZEPHYR_HUB12 := zephyr,hub12 + +config DT_HAS_ZEPHYR_HUB12_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_HUB12)) + +DT_COMPAT_ZEPHYR_I2C_DUMP_ALLOWLIST := zephyr,i2c-dump-allowlist + +config DT_HAS_ZEPHYR_I2C_DUMP_ALLOWLIST_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_I2C_DUMP_ALLOWLIST)) + +DT_COMPAT_ZEPHYR_I2C_EMUL_CONTROLLER := zephyr,i2c-emul-controller + +config DT_HAS_ZEPHYR_I2C_EMUL_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_I2C_EMUL_CONTROLLER)) + +DT_COMPAT_ZEPHYR_I2C_TARGET_EEPROM := zephyr,i2c-target-eeprom + +config DT_HAS_ZEPHYR_I2C_TARGET_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_I2C_TARGET_EEPROM)) + +DT_COMPAT_ZEPHYR_IEEE802154_UART_PIPE := zephyr,ieee802154-uart-pipe + +config DT_HAS_ZEPHYR_IEEE802154_UART_PIPE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_IEEE802154_UART_PIPE)) + +DT_COMPAT_ZEPHYR_INPUT_DOUBLE_TAP := zephyr,input-double-tap + +config DT_HAS_ZEPHYR_INPUT_DOUBLE_TAP_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_INPUT_DOUBLE_TAP)) + +DT_COMPAT_ZEPHYR_INPUT_LONGPRESS := zephyr,input-longpress + +config DT_HAS_ZEPHYR_INPUT_LONGPRESS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_INPUT_LONGPRESS)) + +DT_COMPAT_ZEPHYR_INPUT_SDL_TOUCH := zephyr,input-sdl-touch + +config DT_HAS_ZEPHYR_INPUT_SDL_TOUCH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_INPUT_SDL_TOUCH)) + +DT_COMPAT_ZEPHYR_IPC_ICBMSG := zephyr,ipc-icbmsg + +config DT_HAS_ZEPHYR_IPC_ICBMSG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_IPC_ICBMSG)) + +DT_COMPAT_ZEPHYR_IPC_ICMSG := zephyr,ipc-icmsg + +config DT_HAS_ZEPHYR_IPC_ICMSG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_IPC_ICMSG)) + +DT_COMPAT_ZEPHYR_IPC_ICMSG_ME_FOLLOWER := zephyr,ipc-icmsg-me-follower + +config DT_HAS_ZEPHYR_IPC_ICMSG_ME_FOLLOWER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_IPC_ICMSG_ME_FOLLOWER)) + +DT_COMPAT_ZEPHYR_IPC_ICMSG_ME_INITIATOR := zephyr,ipc-icmsg-me-initiator + +config DT_HAS_ZEPHYR_IPC_ICMSG_ME_INITIATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_IPC_ICMSG_ME_INITIATOR)) + +DT_COMPAT_ZEPHYR_IPC_OPENAMP_STATIC_VRINGS := zephyr,ipc-openamp-static-vrings + +config DT_HAS_ZEPHYR_IPC_OPENAMP_STATIC_VRINGS_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_IPC_OPENAMP_STATIC_VRINGS)) + +DT_COMPAT_ZEPHYR_LOG_UART := zephyr,log-uart + +config DT_HAS_ZEPHYR_LOG_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_LOG_UART)) + +DT_COMPAT_ZEPHYR_LVGL_BUTTON_INPUT := zephyr,lvgl-button-input + +config DT_HAS_ZEPHYR_LVGL_BUTTON_INPUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_LVGL_BUTTON_INPUT)) + +DT_COMPAT_ZEPHYR_LVGL_ENCODER_INPUT := zephyr,lvgl-encoder-input + +config DT_HAS_ZEPHYR_LVGL_ENCODER_INPUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_LVGL_ENCODER_INPUT)) + +DT_COMPAT_ZEPHYR_LVGL_KEYPAD_INPUT := zephyr,lvgl-keypad-input + +config DT_HAS_ZEPHYR_LVGL_KEYPAD_INPUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_LVGL_KEYPAD_INPUT)) + +DT_COMPAT_ZEPHYR_LVGL_POINTER_INPUT := zephyr,lvgl-pointer-input + +config DT_HAS_ZEPHYR_LVGL_POINTER_INPUT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_LVGL_POINTER_INPUT)) + +DT_COMPAT_ZEPHYR_MAPPED_PARTITION := zephyr,mapped-partition + +config DT_HAS_ZEPHYR_MAPPED_PARTITION_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MAPPED_PARTITION)) + +DT_COMPAT_ZEPHYR_MBOX_IPM := zephyr,mbox-ipm + +config DT_HAS_ZEPHYR_MBOX_IPM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MBOX_IPM)) + +DT_COMPAT_ZEPHYR_MCTP_I2C_GPIO_CONTROLLER := zephyr,mctp-i2c-gpio-controller + +config DT_HAS_ZEPHYR_MCTP_I2C_GPIO_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MCTP_I2C_GPIO_CONTROLLER)) + +DT_COMPAT_ZEPHYR_MCTP_I2C_GPIO_TARGET := zephyr,mctp-i2c-gpio-target + +config DT_HAS_ZEPHYR_MCTP_I2C_GPIO_TARGET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MCTP_I2C_GPIO_TARGET)) + +DT_COMPAT_ZEPHYR_MCTP_I3C_CONTROLLER := zephyr,mctp-i3c-controller + +config DT_HAS_ZEPHYR_MCTP_I3C_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MCTP_I3C_CONTROLLER)) + +DT_COMPAT_ZEPHYR_MCTP_I3C_ENDPOINT := zephyr,mctp-i3c-endpoint + +config DT_HAS_ZEPHYR_MCTP_I3C_ENDPOINT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MCTP_I3C_ENDPOINT)) + +DT_COMPAT_ZEPHYR_MCTP_I3C_TARGET := zephyr,mctp-i3c-target + +config DT_HAS_ZEPHYR_MCTP_I3C_TARGET_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MCTP_I3C_TARGET)) + +DT_COMPAT_ZEPHYR_MDIO_GPIO := zephyr,mdio-gpio + +config DT_HAS_ZEPHYR_MDIO_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MDIO_GPIO)) + +DT_COMPAT_ZEPHYR_MEMORY_REGION := zephyr,memory-region + +config DT_HAS_ZEPHYR_MEMORY_REGION_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MEMORY_REGION)) + +DT_COMPAT_ZEPHYR_MIDI2_DEVICE := zephyr,midi2-device + +config DT_HAS_ZEPHYR_MIDI2_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MIDI2_DEVICE)) + +DT_COMPAT_ZEPHYR_MIPI_DBI_BITBANG := zephyr,mipi-dbi-bitbang + +config DT_HAS_ZEPHYR_MIPI_DBI_BITBANG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MIPI_DBI_BITBANG)) + +DT_COMPAT_ZEPHYR_MIPI_DBI_SPI := zephyr,mipi-dbi-spi + +config DT_HAS_ZEPHYR_MIPI_DBI_SPI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MIPI_DBI_SPI)) + +DT_COMPAT_ZEPHYR_MMC_DISK := zephyr,mmc-disk + +config DT_HAS_ZEPHYR_MMC_DISK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MMC_DISK)) + +DT_COMPAT_ZEPHYR_MODBUS_SERIAL := zephyr,modbus-serial + +config DT_HAS_ZEPHYR_MODBUS_SERIAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MODBUS_SERIAL)) + +DT_COMPAT_ZEPHYR_MSPI_EMUL_CONTROLLER := zephyr,mspi-emul-controller + +config DT_HAS_ZEPHYR_MSPI_EMUL_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MSPI_EMUL_CONTROLLER)) + +DT_COMPAT_ZEPHYR_MSPI_EMUL_DEVICE := zephyr,mspi-emul-device + +config DT_HAS_ZEPHYR_MSPI_EMUL_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MSPI_EMUL_DEVICE)) + +DT_COMPAT_ZEPHYR_MSPI_EMUL_FLASH := zephyr,mspi-emul-flash + +config DT_HAS_ZEPHYR_MSPI_EMUL_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_MSPI_EMUL_FLASH)) + +DT_COMPAT_ZEPHYR_NATIVE_LINUX_CAN := zephyr,native-linux-can + +config DT_HAS_ZEPHYR_NATIVE_LINUX_CAN_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_LINUX_CAN)) + +DT_COMPAT_ZEPHYR_NATIVE_LINUX_EVDEV := zephyr,native-linux-evdev + +config DT_HAS_ZEPHYR_NATIVE_LINUX_EVDEV_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_LINUX_EVDEV)) + +DT_COMPAT_ZEPHYR_NATIVE_POSIX_UDC := zephyr,native-posix-udc + +config DT_HAS_ZEPHYR_NATIVE_POSIX_UDC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_POSIX_UDC)) + +DT_COMPAT_ZEPHYR_NATIVE_PTY_UART := zephyr,native-pty-uart + +config DT_HAS_ZEPHYR_NATIVE_PTY_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_PTY_UART)) + +DT_COMPAT_ZEPHYR_NATIVE_SIM_COUNTER := zephyr,native-sim-counter + +config DT_HAS_ZEPHYR_NATIVE_SIM_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_SIM_COUNTER)) + +DT_COMPAT_ZEPHYR_NATIVE_SIM_CPU := zephyr,native-sim-cpu + +config DT_HAS_ZEPHYR_NATIVE_SIM_CPU_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_SIM_CPU)) + +DT_COMPAT_ZEPHYR_NATIVE_SIM_PSTATE := zephyr,native-sim-pstate + +config DT_HAS_ZEPHYR_NATIVE_SIM_PSTATE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_SIM_PSTATE)) + +DT_COMPAT_ZEPHYR_NATIVE_SIM_RNG := zephyr,native-sim-rng + +config DT_HAS_ZEPHYR_NATIVE_SIM_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_SIM_RNG)) + +DT_COMPAT_ZEPHYR_NATIVE_TTY_UART := zephyr,native-tty-uart + +config DT_HAS_ZEPHYR_NATIVE_TTY_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NATIVE_TTY_UART)) + +DT_COMPAT_ZEPHYR_NUS_UART := zephyr,nus-uart + +config DT_HAS_ZEPHYR_NUS_UART_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_NUS_UART)) + +DT_COMPAT_ZEPHYR_OTP_EMUL := zephyr,otp-emul + +config DT_HAS_ZEPHYR_OTP_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_OTP_EMUL)) + +DT_COMPAT_ZEPHYR_PANEL_TIMING := zephyr,panel-timing + +config DT_HAS_ZEPHYR_PANEL_TIMING_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_PANEL_TIMING)) + +DT_COMPAT_ZEPHYR_PDM_DMIC := zephyr,pdm-dmic + +config DT_HAS_ZEPHYR_PDM_DMIC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_PDM_DMIC)) + +DT_COMPAT_ZEPHYR_POWER_STATE := zephyr,power-state + +config DT_HAS_ZEPHYR_POWER_STATE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_POWER_STATE)) + +DT_COMPAT_ZEPHYR_PSA_CRYPTO_RNG := zephyr,psa-crypto-rng + +config DT_HAS_ZEPHYR_PSA_CRYPTO_RNG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_PSA_CRYPTO_RNG)) + +DT_COMPAT_ZEPHYR_PSTATE := zephyr,pstate + +config DT_HAS_ZEPHYR_PSTATE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_PSTATE)) + +DT_COMPAT_ZEPHYR_RAM_DISK := zephyr,ram-disk + +config DT_HAS_ZEPHYR_RAM_DISK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_RAM_DISK)) + +DT_COMPAT_ZEPHYR_RETAINED_RAM := zephyr,retained-ram + +config DT_HAS_ZEPHYR_RETAINED_RAM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_RETAINED_RAM)) + +DT_COMPAT_ZEPHYR_RETAINED_REG := zephyr,retained-reg + +config DT_HAS_ZEPHYR_RETAINED_REG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_RETAINED_REG)) + +DT_COMPAT_ZEPHYR_RETENTION := zephyr,retention + +config DT_HAS_ZEPHYR_RETENTION_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_RETENTION)) + +DT_COMPAT_ZEPHYR_RTC_COUNTER := zephyr,rtc-counter + +config DT_HAS_ZEPHYR_RTC_COUNTER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_RTC_COUNTER)) + +DT_COMPAT_ZEPHYR_RTC_EMUL := zephyr,rtc-emul + +config DT_HAS_ZEPHYR_RTC_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_RTC_EMUL)) + +DT_COMPAT_ZEPHYR_SDHC_SPI_SLOT := zephyr,sdhc-spi-slot + +config DT_HAS_ZEPHYR_SDHC_SPI_SLOT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SDHC_SPI_SLOT)) + +DT_COMPAT_ZEPHYR_SDL_DC := zephyr,sdl-dc + +config DT_HAS_ZEPHYR_SDL_DC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SDL_DC)) + +DT_COMPAT_ZEPHYR_SDMMC_DISK := zephyr,sdmmc-disk + +config DT_HAS_ZEPHYR_SDMMC_DISK_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SDMMC_DISK)) + +DT_COMPAT_ZEPHYR_SENSING := zephyr,sensing + +config DT_HAS_ZEPHYR_SENSING_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SENSING)) + +DT_COMPAT_ZEPHYR_SENSING_HINGE_ANGLE := zephyr,sensing-hinge-angle + +config DT_HAS_ZEPHYR_SENSING_HINGE_ANGLE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SENSING_HINGE_ANGLE)) + +DT_COMPAT_ZEPHYR_SENSING_PHY_3D_SENSOR := zephyr,sensing-phy-3d-sensor + +config DT_HAS_ZEPHYR_SENSING_PHY_3D_SENSOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SENSING_PHY_3D_SENSOR)) + +DT_COMPAT_ZEPHYR_SIM_EEPROM := zephyr,sim-eeprom + +config DT_HAS_ZEPHYR_SIM_EEPROM_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SIM_EEPROM)) + +DT_COMPAT_ZEPHYR_SIM_FLASH := zephyr,sim-flash + +config DT_HAS_ZEPHYR_SIM_FLASH_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SIM_FLASH)) + +DT_COMPAT_ZEPHYR_SPI_BITBANG := zephyr,spi-bitbang + +config DT_HAS_ZEPHYR_SPI_BITBANG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SPI_BITBANG)) + +DT_COMPAT_ZEPHYR_SPI_EMUL_CONTROLLER := zephyr,spi-emul-controller + +config DT_HAS_ZEPHYR_SPI_EMUL_CONTROLLER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SPI_EMUL_CONTROLLER)) + +DT_COMPAT_ZEPHYR_SWDP_GPIO := zephyr,swdp-gpio + +config DT_HAS_ZEPHYR_SWDP_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_SWDP_GPIO)) + +DT_COMPAT_ZEPHYR_TACH_GPIO := zephyr,tach-gpio + +config DT_HAS_ZEPHYR_TACH_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_TACH_GPIO)) + +DT_COMPAT_ZEPHYR_UAC2 := zephyr,uac2 + +config DT_HAS_ZEPHYR_UAC2_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UAC2)) + +DT_COMPAT_ZEPHYR_UAC2_AUDIO_STREAMING := zephyr,uac2-audio-streaming + +config DT_HAS_ZEPHYR_UAC2_AUDIO_STREAMING_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UAC2_AUDIO_STREAMING)) + +DT_COMPAT_ZEPHYR_UAC2_CLOCK_SOURCE := zephyr,uac2-clock-source + +config DT_HAS_ZEPHYR_UAC2_CLOCK_SOURCE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UAC2_CLOCK_SOURCE)) + +DT_COMPAT_ZEPHYR_UAC2_FEATURE_UNIT := zephyr,uac2-feature-unit + +config DT_HAS_ZEPHYR_UAC2_FEATURE_UNIT_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UAC2_FEATURE_UNIT)) + +DT_COMPAT_ZEPHYR_UAC2_INPUT_TERMINAL := zephyr,uac2-input-terminal + +config DT_HAS_ZEPHYR_UAC2_INPUT_TERMINAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UAC2_INPUT_TERMINAL)) + +DT_COMPAT_ZEPHYR_UAC2_OUTPUT_TERMINAL := zephyr,uac2-output-terminal + +config DT_HAS_ZEPHYR_UAC2_OUTPUT_TERMINAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UAC2_OUTPUT_TERMINAL)) + +DT_COMPAT_ZEPHYR_UART_BITBANG := zephyr,uart-bitbang + +config DT_HAS_ZEPHYR_UART_BITBANG_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UART_BITBANG)) + +DT_COMPAT_ZEPHYR_UART_BRIDGE := zephyr,uart-bridge + +config DT_HAS_ZEPHYR_UART_BRIDGE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UART_BRIDGE)) + +DT_COMPAT_ZEPHYR_UART_EMUL := zephyr,uart-emul + +config DT_HAS_ZEPHYR_UART_EMUL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UART_EMUL)) + +DT_COMPAT_ZEPHYR_UDC_SKELETON := zephyr,udc-skeleton + +config DT_HAS_ZEPHYR_UDC_SKELETON_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UDC_SKELETON)) + +DT_COMPAT_ZEPHYR_UDC_VIRTUAL := zephyr,udc-virtual + +config DT_HAS_ZEPHYR_UDC_VIRTUAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UDC_VIRTUAL)) + +DT_COMPAT_ZEPHYR_UHC_VIRTUAL := zephyr,uhc-virtual + +config DT_HAS_ZEPHYR_UHC_VIRTUAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UHC_VIRTUAL)) + +DT_COMPAT_ZEPHYR_USB_C_PWRCTRL := zephyr,usb-c-pwrctrl + +config DT_HAS_ZEPHYR_USB_C_PWRCTRL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_USB_C_PWRCTRL)) + +DT_COMPAT_ZEPHYR_USB_C_VBUS_ADC := zephyr,usb-c-vbus-adc + +config DT_HAS_ZEPHYR_USB_C_VBUS_ADC_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_USB_C_VBUS_ADC)) + +DT_COMPAT_ZEPHYR_USB_C_VBUS_TCPCI := zephyr,usb-c-vbus-tcpci + +config DT_HAS_ZEPHYR_USB_C_VBUS_TCPCI_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_USB_C_VBUS_TCPCI)) + +DT_COMPAT_ZEPHYR_UVC_DEVICE := zephyr,uvc-device + +config DT_HAS_ZEPHYR_UVC_DEVICE_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_UVC_DEVICE)) + +DT_COMPAT_ZEPHYR_VIDEO_EMUL_IMAGER := zephyr,video-emul-imager + +config DT_HAS_ZEPHYR_VIDEO_EMUL_IMAGER_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_VIDEO_EMUL_IMAGER)) + +DT_COMPAT_ZEPHYR_VIDEO_EMUL_RX := zephyr,video-emul-rx + +config DT_HAS_ZEPHYR_VIDEO_EMUL_RX_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_VIDEO_EMUL_RX)) + +DT_COMPAT_ZEPHYR_VIDEO_SW_GENERATOR := zephyr,video-sw-generator + +config DT_HAS_ZEPHYR_VIDEO_SW_GENERATOR_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_VIDEO_SW_GENERATOR)) + +DT_COMPAT_ZEPHYR_W1_GPIO := zephyr,w1-gpio + +config DT_HAS_ZEPHYR_W1_GPIO_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_W1_GPIO)) + +DT_COMPAT_ZEPHYR_W1_SERIAL := zephyr,w1-serial + +config DT_HAS_ZEPHYR_W1_SERIAL_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZEPHYR_W1_SERIAL)) + +DT_COMPAT_ZHIANTEC_ZFM_X0 := zhiantec,zfm-x0 + +config DT_HAS_ZHIANTEC_ZFM_X0_ENABLED + def_bool $(dt_compat_enabled,$(DT_COMPAT_ZHIANTEC_ZFM_X0)) diff --git a/build/Kconfig/Kconfig.modules b/build/Kconfig/Kconfig.modules new file mode 100644 index 0000000..0ac3062 --- /dev/null +++ b/build/Kconfig/Kconfig.modules @@ -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 diff --git a/build/Kconfig/Kconfig.shield b/build/Kconfig/Kconfig.shield new file mode 100644 index 0000000..65cd7ac --- /dev/null +++ b/build/Kconfig/Kconfig.shield @@ -0,0 +1 @@ +osource "/Volumes/External/Work/radio/loramodem/app/../boards/shields/*/Kconfig.shield" diff --git a/build/Kconfig/Kconfig.shield.defconfig b/build/Kconfig/Kconfig.shield.defconfig new file mode 100644 index 0000000..89d100e --- /dev/null +++ b/build/Kconfig/Kconfig.shield.defconfig @@ -0,0 +1 @@ +osource "/Volumes/External/Work/radio/loramodem/app/../boards/shields/*/Kconfig.defconfig" diff --git a/build/Kconfig/Kconfig.sysbuild.modules b/build/Kconfig/Kconfig.sysbuild.modules new file mode 100644 index 0000000..4f7e2e8 --- /dev/null +++ b/build/Kconfig/Kconfig.sysbuild.modules @@ -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 diff --git a/build/Kconfig/arch/Kconfig b/build/Kconfig/arch/Kconfig new file mode 100644 index 0000000..2c2ed61 --- /dev/null +++ b/build/Kconfig/arch/Kconfig @@ -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" diff --git a/build/Kconfig/arch/Kconfig.tmp b/build/Kconfig/arch/Kconfig.tmp new file mode 100644 index 0000000..2c2ed61 --- /dev/null +++ b/build/Kconfig/arch/Kconfig.tmp @@ -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" diff --git a/build/Kconfig/boards/Kconfig b/build/Kconfig/boards/Kconfig new file mode 100644 index 0000000..eee645f --- /dev/null +++ b/build/Kconfig/boards/Kconfig @@ -0,0 +1,2 @@ +# Load Zephyr board Kconfig descriptions. +osource "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig" diff --git a/build/Kconfig/boards/Kconfig.defconfig b/build/Kconfig/boards/Kconfig.defconfig new file mode 100644 index 0000000..a7d04d8 --- /dev/null +++ b/build/Kconfig/boards/Kconfig.defconfig @@ -0,0 +1,2 @@ +# Load Zephyr board defconfig descriptions. +osource "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig.defconfig" diff --git a/build/Kconfig/boards/Kconfig.defconfig.tmp b/build/Kconfig/boards/Kconfig.defconfig.tmp new file mode 100644 index 0000000..a7d04d8 --- /dev/null +++ b/build/Kconfig/boards/Kconfig.defconfig.tmp @@ -0,0 +1,2 @@ +# Load Zephyr board defconfig descriptions. +osource "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig.defconfig" diff --git a/build/Kconfig/boards/Kconfig.sysbuild b/build/Kconfig/boards/Kconfig.sysbuild new file mode 100644 index 0000000..a5b86bd --- /dev/null +++ b/build/Kconfig/boards/Kconfig.sysbuild @@ -0,0 +1,2 @@ +# Load Sysbuild board Kconfig descriptions. +osource "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig.sysbuild" diff --git a/build/Kconfig/boards/Kconfig.sysbuild.tmp b/build/Kconfig/boards/Kconfig.sysbuild.tmp new file mode 100644 index 0000000..a5b86bd --- /dev/null +++ b/build/Kconfig/boards/Kconfig.sysbuild.tmp @@ -0,0 +1,2 @@ +# Load Sysbuild board Kconfig descriptions. +osource "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig.sysbuild" diff --git a/build/Kconfig/boards/Kconfig.tmp b/build/Kconfig/boards/Kconfig.tmp new file mode 100644 index 0000000..eee645f --- /dev/null +++ b/build/Kconfig/boards/Kconfig.tmp @@ -0,0 +1,2 @@ +# Load Zephyr board Kconfig descriptions. +osource "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig" diff --git a/build/Kconfig/boards/Kconfig.xiao_esp32s3 b/build/Kconfig/boards/Kconfig.xiao_esp32s3 new file mode 100644 index 0000000..e02ad69 --- /dev/null +++ b/build/Kconfig/boards/Kconfig.xiao_esp32s3 @@ -0,0 +1,2 @@ +# Load board Kconfig descriptions. +osource "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig.xiao_esp32s3" diff --git a/build/Kconfig/boards/Kconfig.xiao_esp32s3.tmp b/build/Kconfig/boards/Kconfig.xiao_esp32s3.tmp new file mode 100644 index 0000000..e02ad69 --- /dev/null +++ b/build/Kconfig/boards/Kconfig.xiao_esp32s3.tmp @@ -0,0 +1,2 @@ +# Load board Kconfig descriptions. +osource "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig.xiao_esp32s3" diff --git a/build/Kconfig/kconfig_module_dirs.cmake b/build/Kconfig/kconfig_module_dirs.cmake new file mode 100644 index 0000000..5803e97 --- /dev/null +++ b/build/Kconfig/kconfig_module_dirs.cmake @@ -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) diff --git a/build/Kconfig/kconfig_module_dirs.env b/build/Kconfig/kconfig_module_dirs.env new file mode 100644 index 0000000..75b241e --- /dev/null +++ b/build/Kconfig/kconfig_module_dirs.env @@ -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 diff --git a/build/Kconfig/soc/Kconfig b/build/Kconfig/soc/Kconfig new file mode 100644 index 0000000..f40109e --- /dev/null +++ b/build/Kconfig/soc/Kconfig @@ -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" diff --git a/build/Kconfig/soc/Kconfig.defconfig b/build/Kconfig/soc/Kconfig.defconfig new file mode 100644 index 0000000..00bee33 --- /dev/null +++ b/build/Kconfig/soc/Kconfig.defconfig @@ -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" diff --git a/build/Kconfig/soc/Kconfig.defconfig.tmp b/build/Kconfig/soc/Kconfig.defconfig.tmp new file mode 100644 index 0000000..00bee33 --- /dev/null +++ b/build/Kconfig/soc/Kconfig.defconfig.tmp @@ -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" diff --git a/build/Kconfig/soc/Kconfig.soc b/build/Kconfig/soc/Kconfig.soc new file mode 100644 index 0000000..a2f38db --- /dev/null +++ b/build/Kconfig/soc/Kconfig.soc @@ -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" diff --git a/build/Kconfig/soc/Kconfig.soc.tmp b/build/Kconfig/soc/Kconfig.soc.tmp new file mode 100644 index 0000000..a2f38db --- /dev/null +++ b/build/Kconfig/soc/Kconfig.soc.tmp @@ -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" diff --git a/build/Kconfig/soc/Kconfig.sysbuild b/build/Kconfig/soc/Kconfig.sysbuild new file mode 100644 index 0000000..05c0383 --- /dev/null +++ b/build/Kconfig/soc/Kconfig.sysbuild @@ -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" diff --git a/build/Kconfig/soc/Kconfig.sysbuild.tmp b/build/Kconfig/soc/Kconfig.sysbuild.tmp new file mode 100644 index 0000000..05c0383 --- /dev/null +++ b/build/Kconfig/soc/Kconfig.sysbuild.tmp @@ -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" diff --git a/build/Kconfig/soc/Kconfig.tmp b/build/Kconfig/soc/Kconfig.tmp new file mode 100644 index 0000000..f40109e --- /dev/null +++ b/build/Kconfig/soc/Kconfig.tmp @@ -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" diff --git a/build/app/libapp.a b/build/app/libapp.a new file mode 100644 index 0000000..a1fd41c Binary files /dev/null and b/build/app/libapp.a differ diff --git a/build/build.ninja b/build/build.ninja new file mode 100644 index 0000000..b5baeb3 --- /dev/null +++ b/build/build.ninja @@ -0,0 +1,9701 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 4.3 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: loramodem +# Configurations: +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles/rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = /Volumes/External/Work/radio/loramodem/build/ + +############################################# +# Utility command for boards + +build boards: phony CMakeFiles/boards + + +############################################# +# Utility command for shields + +build shields: phony CMakeFiles/shields + + +############################################# +# Utility command for snippets + +build snippets: phony CMakeFiles/snippets + + +############################################# +# Utility command for devicetree_target + +build devicetree_target: phony + + +############################################# +# Utility command for menuconfig + +build menuconfig: phony CMakeFiles/menuconfig + + +############################################# +# Utility command for guiconfig + +build guiconfig: phony CMakeFiles/guiconfig + + +############################################# +# Utility command for hardenconfig + +build hardenconfig: phony CMakeFiles/hardenconfig + + +############################################# +# Utility command for traceconfig + +build traceconfig: phony CMakeFiles/traceconfig + + +############################################# +# Utility command for config-twister + +build config-twister: phony CMakeFiles/config-twister + + +############################################# +# Utility command for asm + +build asm: phony + + +############################################# +# Utility command for compiler + +build compiler: phony + + +############################################# +# Utility command for compiler-cpp + +build compiler-cpp: phony + + +############################################# +# Utility command for linker + +build linker: phony + + +############################################# +# Utility command for bintools + +build bintools: phony + + +############################################# +# Utility command for code_data_relocation_target + +build code_data_relocation_target: phony + + +############################################# +# Utility command for runners_yaml_props_target + +build runners_yaml_props_target: phony + + +############################################# +# Utility command for pristine + +build pristine: phony CMakeFiles/pristine + + +############################################# +# Utility command for zephyr_property_target + +build zephyr_property_target: phony + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target app + + +############################################# +# Order-only phony target for app + +build cmake_object_order_depends_target_app: phony || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build CMakeFiles/app.dir/src/main.c.obj: C_COMPILER__app_unscanned_ /Volumes/External/Work/radio/loramodem/app/src/main.c || cmake_object_order_depends_target_app + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = CMakeFiles/app.dir/src/main.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Volumes/External/Work/radio/loramodem/app/src -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = CMakeFiles/app.dir + OBJECT_FILE_DIR = CMakeFiles/app.dir/src + TARGET_COMPILE_PDB = CMakeFiles/app.dir/app.pdb + TARGET_PDB = app/libapp.pdb + TARGET_SUPPORT_DIR = CMakeFiles/app.dir + +build CMakeFiles/app.dir/src/kiss.c.obj: C_COMPILER__app_unscanned_ /Volumes/External/Work/radio/loramodem/app/src/kiss.c || cmake_object_order_depends_target_app + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = CMakeFiles/app.dir/src/kiss.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Volumes/External/Work/radio/loramodem/app/src -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = CMakeFiles/app.dir + OBJECT_FILE_DIR = CMakeFiles/app.dir/src + TARGET_COMPILE_PDB = CMakeFiles/app.dir/app.pdb + TARGET_PDB = app/libapp.pdb + TARGET_SUPPORT_DIR = CMakeFiles/app.dir + +build CMakeFiles/app.dir/src/lora_modem.c.obj: C_COMPILER__app_unscanned_ /Volumes/External/Work/radio/loramodem/app/src/lora_modem.c || cmake_object_order_depends_target_app + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = CMakeFiles/app.dir/src/lora_modem.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Volumes/External/Work/radio/loramodem/app/src -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = CMakeFiles/app.dir + OBJECT_FILE_DIR = CMakeFiles/app.dir/src + TARGET_COMPILE_PDB = CMakeFiles/app.dir/app.pdb + TARGET_PDB = app/libapp.pdb + TARGET_SUPPORT_DIR = CMakeFiles/app.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target app + + +############################################# +# Link the static library app/libapp.a + +build app/libapp.a: C_STATIC_LIBRARY_LINKER__app_ CMakeFiles/app.dir/src/main.c.obj CMakeFiles/app.dir/src/kiss.c.obj CMakeFiles/app.dir/src/lora_modem.c.obj || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = CMakeFiles/app.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = CMakeFiles/app.dir/app.pdb + TARGET_FILE = app/libapp.a + TARGET_PDB = app/libapp.pdb + TARGET_SUPPORT_DIR = CMakeFiles/app.dir + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build edit_cache: phony CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + + +############################################# +# Custom command for CMakeFiles/boards + +build CMakeFiles/boards | ${cmake_ninja_workdir}CMakeFiles/boards: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build && /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/scripts/list_boards.py --board-root=/Volumes/External/Work/radio/loramodem/app/.. --board-root=/Users/wijnand/zephyrproject/zephyr --arch-root=/Users/wijnand/zephyrproject/zephyr --soc-root=/Users/wijnand/zephyrproject/zephyr + pool = console + + +############################################# +# Custom command for CMakeFiles/shields + +build CMakeFiles/shields | ${cmake_ninja_workdir}CMakeFiles/shields: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build && /opt/homebrew/bin/cmake -E echo abrobot_sh1106_72x40 && /opt/homebrew/bin/cmake -E echo adafruit_24lc32 && /opt/homebrew/bin/cmake -E echo adafruit_2_8_tft_touch_v2 && /opt/homebrew/bin/cmake -E echo adafruit_2_8_tft_touch_v2_nano && /opt/homebrew/bin/cmake -E echo adafruit_8chan_solenoid && /opt/homebrew/bin/cmake -E echo adafruit_ad5693r && /opt/homebrew/bin/cmake -E echo adafruit_adalogger_featherwing && /opt/homebrew/bin/cmake -E echo adafruit_aht20 && /opt/homebrew/bin/cmake -E echo adafruit_apds9960 && /opt/homebrew/bin/cmake -E echo adafruit_aw9523 && /opt/homebrew/bin/cmake -E echo adafruit_can_picowbell && /opt/homebrew/bin/cmake -E echo adafruit_data_logger && /opt/homebrew/bin/cmake -E echo adafruit_dps310 && /opt/homebrew/bin/cmake -E echo adafruit_drv2605l && /opt/homebrew/bin/cmake -E echo adafruit_ds2484 && /opt/homebrew/bin/cmake -E echo adafruit_featherwing_128x32_oled && /opt/homebrew/bin/cmake -E echo adafruit_featherwing_128x64_oled && /opt/homebrew/bin/cmake -E echo adafruit_ht16k33 && /opt/homebrew/bin/cmake -E echo adafruit_hts221 && /opt/homebrew/bin/cmake -E echo adafruit_ina219 && /opt/homebrew/bin/cmake -E echo adafruit_ina228 && /opt/homebrew/bin/cmake -E echo adafruit_ina237 && /opt/homebrew/bin/cmake -E echo adafruit_ina3221 && /opt/homebrew/bin/cmake -E echo adafruit_lis2mdl && /opt/homebrew/bin/cmake -E echo adafruit_lis3dh && /opt/homebrew/bin/cmake -E echo adafruit_lis3mdl && /opt/homebrew/bin/cmake -E echo adafruit_lps22 && /opt/homebrew/bin/cmake -E echo adafruit_ltr329 && /opt/homebrew/bin/cmake -E echo adafruit_max17048 && /opt/homebrew/bin/cmake -E echo adafruit_mcp4728 && /opt/homebrew/bin/cmake -E echo adafruit_mcp9808 && /opt/homebrew/bin/cmake -E echo adafruit_neopixel_grid_bff && /opt/homebrew/bin/cmake -E echo adafruit_neopixel_grid_bff_display && /opt/homebrew/bin/cmake -E echo adafruit_pca9685 && /opt/homebrew/bin/cmake -E echo adafruit_pcf8523 && /opt/homebrew/bin/cmake -E echo adafruit_sht4x && /opt/homebrew/bin/cmake -E echo adafruit_tsl2591 && /opt/homebrew/bin/cmake -E echo adafruit_vcnl4040 && /opt/homebrew/bin/cmake -E echo adafruit_veml7700 && /opt/homebrew/bin/cmake -E echo adafruit_winc1500 && /opt/homebrew/bin/cmake -E echo amg88xx_eval_kit && /opt/homebrew/bin/cmake -E echo amg88xx_grid_eye_eval_shield && /opt/homebrew/bin/cmake -E echo arceli_eth_w5500 && /opt/homebrew/bin/cmake -E echo arducam_cu450_ov5640_dvp && /opt/homebrew/bin/cmake -E echo arduino_giga_display_shield && /opt/homebrew/bin/cmake -E echo arduino_modulino_buttons && /opt/homebrew/bin/cmake -E echo arduino_modulino_latch_relay && /opt/homebrew/bin/cmake -E echo arduino_modulino_movement && /opt/homebrew/bin/cmake -E echo arduino_modulino_pixels && /opt/homebrew/bin/cmake -E echo arduino_modulino_thermo && /opt/homebrew/bin/cmake -E echo arduino_uno_click && /opt/homebrew/bin/cmake -E echo atmel_rf2xx && /opt/homebrew/bin/cmake -E echo atmel_rf2xx_arduino && /opt/homebrew/bin/cmake -E echo atmel_rf2xx_legacy && /opt/homebrew/bin/cmake -E echo atmel_rf2xx_mikrobus && /opt/homebrew/bin/cmake -E echo atmel_rf2xx_xplained && /opt/homebrew/bin/cmake -E echo atmel_rf2xx_xpro && /opt/homebrew/bin/cmake -E echo boostxl_ulpsense && /opt/homebrew/bin/cmake -E echo buydisplay_2_8_tft_touch_arduino && /opt/homebrew/bin/cmake -E echo buydisplay_3_5_tft_touch_arduino && /opt/homebrew/bin/cmake -E echo canis_canpico && /opt/homebrew/bin/cmake -E echo dac80508_evm && /opt/homebrew/bin/cmake -E echo dfrobot_can_bus_v2_0 && /opt/homebrew/bin/cmake -E echo dvp_20pin_ov7670 && /opt/homebrew/bin/cmake -E echo dvp_fpc24_mt9m114 && /opt/homebrew/bin/cmake -E echo ek_ra8d1_rtk7eka6m3b00001bu && /opt/homebrew/bin/cmake -E echo esp_8266 && /opt/homebrew/bin/cmake -E echo esp_8266_arduino && /opt/homebrew/bin/cmake -E echo esp_8266_mikrobus && /opt/homebrew/bin/cmake -E echo esp_threadbr_ethernet && /opt/homebrew/bin/cmake -E echo eval_ad4052_ardz && /opt/homebrew/bin/cmake -E echo eval_adxl362_ardz && /opt/homebrew/bin/cmake -E echo eval_adxl367_ardz && /opt/homebrew/bin/cmake -E echo eval_adxl372_ardz && /opt/homebrew/bin/cmake -E echo eval_cn0391_ardz && /opt/homebrew/bin/cmake -E echo frdm_cr20a && /opt/homebrew/bin/cmake -E echo frdm_kw41z && /opt/homebrew/bin/cmake -E echo frdm_stbc_agm01 && /opt/homebrew/bin/cmake -E echo ftdi_vm800c && /opt/homebrew/bin/cmake -E echo g1120b0mipi && /opt/homebrew/bin/cmake -E echo inventek_eswifi && /opt/homebrew/bin/cmake -E echo inventek_eswifi_arduino_spi && /opt/homebrew/bin/cmake -E echo inventek_eswifi_arduino_uart && /opt/homebrew/bin/cmake -E echo keyestudio_can_bus_ks0411 && /opt/homebrew/bin/cmake -E echo lcd_par_s035_8080 && /opt/homebrew/bin/cmake -E echo lcd_par_s035_spi && /opt/homebrew/bin/cmake -E echo link_board_eth && /opt/homebrew/bin/cmake -E echo lmp90100_evb && /opt/homebrew/bin/cmake -E echo ls013b7dh03 && /opt/homebrew/bin/cmake -E echo m5stack_cardputer && /opt/homebrew/bin/cmake -E echo m5stack_core2_ext && /opt/homebrew/bin/cmake -E echo max7219_8x8 && /opt/homebrew/bin/cmake -E echo mchp_rnbd451_bt_mikrobus && /opt/homebrew/bin/cmake -E echo mchp_rnbd451_bt_xplained_pro && /opt/homebrew/bin/cmake -E echo mikroe_3d_hall_3_click && /opt/homebrew/bin/cmake -E echo mikroe_accel13_click && /opt/homebrew/bin/cmake -E echo mikroe_accel4_click && /opt/homebrew/bin/cmake -E echo mikroe_adc_click && /opt/homebrew/bin/cmake -E echo mikroe_air_quality_3_click && /opt/homebrew/bin/cmake -E echo mikroe_ambient_2_click && /opt/homebrew/bin/cmake -E echo mikroe_ble_tiny_click && /opt/homebrew/bin/cmake -E echo mikroe_can_fd_6_click && /opt/homebrew/bin/cmake -E echo mikroe_can_spi_click && /opt/homebrew/bin/cmake -E echo mikroe_eeprom_13_click && /opt/homebrew/bin/cmake -E echo mikroe_eth3_click && /opt/homebrew/bin/cmake -E echo mikroe_eth_click && /opt/homebrew/bin/cmake -E echo mikroe_flash_5_click && /opt/homebrew/bin/cmake -E echo mikroe_flash_6_click && /opt/homebrew/bin/cmake -E echo mikroe_flash_8_click && /opt/homebrew/bin/cmake -E echo mikroe_h_bridge_4_click && /opt/homebrew/bin/cmake -E echo mikroe_illuminance_click && /opt/homebrew/bin/cmake -E echo mikroe_ir_gesture_click && /opt/homebrew/bin/cmake -E echo mikroe_lsm6dsl_click && /opt/homebrew/bin/cmake -E echo mikroe_lte_iot10_click && /opt/homebrew/bin/cmake -E echo mikroe_lte_iot7_click && /opt/homebrew/bin/cmake -E echo mikroe_mcp2517fd_click && /opt/homebrew/bin/cmake -E echo mikroe_mcp251863_click && /opt/homebrew/bin/cmake -E echo mikroe_mcp2518fd_click && /opt/homebrew/bin/cmake -E echo mikroe_mcp25625_click && /opt/homebrew/bin/cmake -E echo mikroe_pressure_3_click && /opt/homebrew/bin/cmake -E echo mikroe_proximity_9_click && /opt/homebrew/bin/cmake -E echo mikroe_rs485_isolator_5_click && /opt/homebrew/bin/cmake -E echo mikroe_rtc_18_click && /opt/homebrew/bin/cmake -E echo mikroe_stepper_18_click && /opt/homebrew/bin/cmake -E echo mikroe_stepper_19_click && /opt/homebrew/bin/cmake -E echo mikroe_temp_hum_click && /opt/homebrew/bin/cmake -E echo mikroe_weather_click_i2c && /opt/homebrew/bin/cmake -E echo mikroe_weather_click_spi && /opt/homebrew/bin/cmake -E echo mikroe_wifi_bt_click_arduino && /opt/homebrew/bin/cmake -E echo mikroe_wifi_bt_click_mikrobus && /opt/homebrew/bin/cmake -E echo npm1100_ek && /opt/homebrew/bin/cmake -E echo npm1300_ek && /opt/homebrew/bin/cmake -E echo npm1304_ek && /opt/homebrew/bin/cmake -E echo npm2100_ek && /opt/homebrew/bin/cmake -E echo npm6001_ek && /opt/homebrew/bin/cmake -E echo nrf7002eb && /opt/homebrew/bin/cmake -E echo nrf7002eb2 && /opt/homebrew/bin/cmake -E echo nrf7002eb2_coex && /opt/homebrew/bin/cmake -E echo nrf7002eb2_nrf7000 && /opt/homebrew/bin/cmake -E echo nrf7002eb2_nrf7001 && /opt/homebrew/bin/cmake -E echo nrf7002eb_coex && /opt/homebrew/bin/cmake -E echo nrf7002eb_coex_sa && /opt/homebrew/bin/cmake -E echo nrf7002ek && /opt/homebrew/bin/cmake -E echo nrf7002ek_coex && /opt/homebrew/bin/cmake -E echo nrf7002ek_nrf7000 && /opt/homebrew/bin/cmake -E echo nrf7002ek_nrf7001 && /opt/homebrew/bin/cmake -E echo nxp_adtja1101 && /opt/homebrew/bin/cmake -E echo nxp_btb44_ov5640 && /opt/homebrew/bin/cmake -E echo nxp_m2_1xk_wifi_bt && /opt/homebrew/bin/cmake -E echo nxp_m2_2el_wifi_bt && /opt/homebrew/bin/cmake -E echo nxp_m2_2ll_wifi_bt && /opt/homebrew/bin/cmake -E echo nxp_s32k5xx_mb && /opt/homebrew/bin/cmake -E echo olimex_shield_midi && /opt/homebrew/bin/cmake -E echo openthread_rcp_arduino_serial && /opt/homebrew/bin/cmake -E echo openthread_rcp_arduino_spi && /opt/homebrew/bin/cmake -E echo p3t1755dp_ard_i2c && /opt/homebrew/bin/cmake -E echo p3t1755dp_ard_i3c && /opt/homebrew/bin/cmake -E echo pmod_acl && /opt/homebrew/bin/cmake -E echo pmod_sd && /opt/homebrew/bin/cmake -E echo raspberry_pi_camera_module_2 && /opt/homebrew/bin/cmake -E echo renesas_aik_ov2640_cam && /opt/homebrew/bin/cmake -E echo renesas_us159_da14531evz && /opt/homebrew/bin/cmake -E echo reyax_lora && /opt/homebrew/bin/cmake -E echo rk043fn02h_ct && /opt/homebrew/bin/cmake -E echo rk043fn66hs_ctg && /opt/homebrew/bin/cmake -E echo rk055hdmipi4m && /opt/homebrew/bin/cmake -E echo rk055hdmipi4ma0 && /opt/homebrew/bin/cmake -E echo rpi_pico_uno_flexypin && /opt/homebrew/bin/cmake -E echo rtk0eg0019b01002bj && /opt/homebrew/bin/cmake -E echo rtk7eka6m3b00001bu && /opt/homebrew/bin/cmake -E echo rtklcdpar1s00001be && /opt/homebrew/bin/cmake -E echo rtkmipilcdb00000be && /opt/homebrew/bin/cmake -E echo seeed_w5500 && /opt/homebrew/bin/cmake -E echo seeed_xiao_can && /opt/homebrew/bin/cmake -E echo seeed_xiao_expansion_board && /opt/homebrew/bin/cmake -E echo seeed_xiao_hsp24 && /opt/homebrew/bin/cmake -E echo seeed_xiao_round_display && /opt/homebrew/bin/cmake -E echo semtech_sx1261mb2bas && /opt/homebrew/bin/cmake -E echo semtech_sx1262mb2das && /opt/homebrew/bin/cmake -E echo semtech_sx1272mb2das && /opt/homebrew/bin/cmake -E echo semtech_sx1276mb1mas && /opt/homebrew/bin/cmake -E echo sh1106_128x64 && /opt/homebrew/bin/cmake -E echo sparkfun_carrier_asset_tracker && /opt/homebrew/bin/cmake -E echo sparkfun_environmental_combo && /opt/homebrew/bin/cmake -E echo sparkfun_max3421e && /opt/homebrew/bin/cmake -E echo sparkfun_rv8803 && /opt/homebrew/bin/cmake -E echo sparkfun_sara_r4 && /opt/homebrew/bin/cmake -E echo sparkfun_shtc3 && /opt/homebrew/bin/cmake -E echo ssd1306_128x32 && /opt/homebrew/bin/cmake -E echo ssd1306_128x64 && /opt/homebrew/bin/cmake -E echo ssd1306_128x64_spi && /opt/homebrew/bin/cmake -E echo st7735r_ada_160x128 && /opt/homebrew/bin/cmake -E echo st7789v_tl019fqv01 && /opt/homebrew/bin/cmake -E echo st7789v_waveshare_240x240 && /opt/homebrew/bin/cmake -E echo st87mxx && /opt/homebrew/bin/cmake -E echo st_b_cams_imx_mb1854 && /opt/homebrew/bin/cmake -E echo st_b_cams_omv_mb1683 && /opt/homebrew/bin/cmake -E echo st_b_dsi_mb1314 && /opt/homebrew/bin/cmake -E echo st_b_lcd40_dsi1_mb1166 && /opt/homebrew/bin/cmake -E echo st_b_lcd40_dsi1_mb1166_a09 && /opt/homebrew/bin/cmake -E echo st_lcd_dsi_mb1835 && /opt/homebrew/bin/cmake -E echo st_mb1897_cam && /opt/homebrew/bin/cmake -E echo st_stm32f4dis_cam && /opt/homebrew/bin/cmake -E echo swir_hl78xx_ev_kit && /opt/homebrew/bin/cmake -E echo tcan4550evm && /opt/homebrew/bin/cmake -E echo ti_bp_bassensorsmkii && /opt/homebrew/bin/cmake -E echo v2c_daplink && /opt/homebrew/bin/cmake -E echo v2c_daplink_cfg && /opt/homebrew/bin/cmake -E echo waveshare_7inch_dsi_lcd_c && /opt/homebrew/bin/cmake -E echo waveshare_epaper_gdeh0154a07 && /opt/homebrew/bin/cmake -E echo waveshare_epaper_gdeh0213b1 && /opt/homebrew/bin/cmake -E echo waveshare_epaper_gdeh0213b72 && /opt/homebrew/bin/cmake -E echo waveshare_epaper_gdeh029a1 && /opt/homebrew/bin/cmake -E echo waveshare_epaper_gdew042t2 && /opt/homebrew/bin/cmake -E echo waveshare_epaper_gdew042t2-p && /opt/homebrew/bin/cmake -E echo waveshare_epaper_gdew075t7 && /opt/homebrew/bin/cmake -E echo waveshare_epaper_gdey0213b74 && /opt/homebrew/bin/cmake -E echo waveshare_pico_lcd_1_14 && /opt/homebrew/bin/cmake -E echo waveshare_pico_oled_1_3 && /opt/homebrew/bin/cmake -E echo waveshare_pico_ups_b && /opt/homebrew/bin/cmake -E echo weact_ov2640_cam_module && /opt/homebrew/bin/cmake -E echo wiznet_w5500 && /opt/homebrew/bin/cmake -E echo wnc_m14a2a && /opt/homebrew/bin/cmake -E echo x_nucleo_53l0a1 && /opt/homebrew/bin/cmake -E echo x_nucleo_bnrg2a1 && /opt/homebrew/bin/cmake -E echo x_nucleo_eeprma2 && /opt/homebrew/bin/cmake -E echo x_nucleo_gfx01m2 && /opt/homebrew/bin/cmake -E echo x_nucleo_idb05a1 && /opt/homebrew/bin/cmake -E echo x_nucleo_iks01a1 && /opt/homebrew/bin/cmake -E echo x_nucleo_iks01a2 && /opt/homebrew/bin/cmake -E echo x_nucleo_iks01a2_shub && /opt/homebrew/bin/cmake -E echo x_nucleo_iks01a3 && /opt/homebrew/bin/cmake -E echo x_nucleo_iks01a3_shub && /opt/homebrew/bin/cmake -E echo x_nucleo_iks02a1 && /opt/homebrew/bin/cmake -E echo x_nucleo_iks02a1_mic && /opt/homebrew/bin/cmake -E echo x_nucleo_iks02a1_shub && /opt/homebrew/bin/cmake -E echo x_nucleo_iks4a1 && /opt/homebrew/bin/cmake -E echo x_nucleo_iks4a1_shub1 && /opt/homebrew/bin/cmake -E echo x_nucleo_iks4a1_shub2 && /opt/homebrew/bin/cmake -E echo x_nucleo_iks5a1 && /opt/homebrew/bin/cmake -E echo x_nucleo_wb05kn1_spi && /opt/homebrew/bin/cmake -E echo x_nucleo_wb05kn1_uart && /opt/homebrew/bin/cmake -E echo zc143ac72mipi && /opt/homebrew/bin/cmake -E echo zhaw_lumamatrix + pool = console + + +############################################# +# Custom command for CMakeFiles/snippets + +build CMakeFiles/snippets | ${cmake_ninja_workdir}CMakeFiles/snippets: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build && /opt/homebrew/bin/cmake -E echo bt-ll-sw-split && /opt/homebrew/bin/cmake -E echo cdc-acm-console && /opt/homebrew/bin/cmake -E echo espressif-flash-128M && /opt/homebrew/bin/cmake -E echo espressif-flash-16M && /opt/homebrew/bin/cmake -E echo espressif-flash-2M && /opt/homebrew/bin/cmake -E echo espressif-flash-32M && /opt/homebrew/bin/cmake -E echo espressif-flash-4M && /opt/homebrew/bin/cmake -E echo espressif-flash-64M && /opt/homebrew/bin/cmake -E echo espressif-flash-8M && /opt/homebrew/bin/cmake -E echo espressif-psram-2M && /opt/homebrew/bin/cmake -E echo espressif-psram-4M && /opt/homebrew/bin/cmake -E echo espressif-psram-8M && /opt/homebrew/bin/cmake -E echo espressif-psram-reloc && /opt/homebrew/bin/cmake -E echo espressif-psram-wifi && /opt/homebrew/bin/cmake -E echo hci-uart-native-sim && /opt/homebrew/bin/cmake -E echo nordic-flpr && /opt/homebrew/bin/cmake -E echo nordic-flpr-xip && /opt/homebrew/bin/cmake -E echo nordic-log-stm && /opt/homebrew/bin/cmake -E echo nordic-log-stm-dict && /opt/homebrew/bin/cmake -E echo nordic-log-stm-tpiu-dict && /opt/homebrew/bin/cmake -E echo nordic-ppr && /opt/homebrew/bin/cmake -E echo nordic-ppr-xip && /opt/homebrew/bin/cmake -E echo nus-console && /opt/homebrew/bin/cmake -E echo ram-console && /opt/homebrew/bin/cmake -E echo ram-tracing && /opt/homebrew/bin/cmake -E echo rp2-boot-mode-retention && /opt/homebrew/bin/cmake -E echo rtt-console && /opt/homebrew/bin/cmake -E echo rtt-tracing && /opt/homebrew/bin/cmake -E echo semihost-tracing && /opt/homebrew/bin/cmake -E echo serial-console && /opt/homebrew/bin/cmake -E echo silabs-pti && /opt/homebrew/bin/cmake -E echo slot1-partition && /opt/homebrew/bin/cmake -E echo socketcan-native-sim && /opt/homebrew/bin/cmake -E echo usbip-native-sim && /opt/homebrew/bin/cmake -E echo video-sw-generator && /opt/homebrew/bin/cmake -E echo wifi-credentials && /opt/homebrew/bin/cmake -E echo wifi-enterprise && /opt/homebrew/bin/cmake -E echo wifi-ip && /opt/homebrew/bin/cmake -E echo wifi-ipv4 && /opt/homebrew/bin/cmake -E echo wifi-ipv6 && /opt/homebrew/bin/cmake -E echo xen_dom0 && /opt/homebrew/bin/cmake -E echo xiao-serial-console + pool = console + + +############################################# +# Custom command for CMakeFiles/menuconfig + +build CMakeFiles/menuconfig | ${cmake_ninja_workdir}CMakeFiles/menuconfig: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/kconfig && /opt/homebrew/bin/cmake -E env ZEPHYR_BASE=/Users/wijnand/zephyrproject/zephyr PYTHON_EXECUTABLE=/Users/wijnand/zephyrproject/.venv/bin/python3.14 srctree=/Users/wijnand/zephyrproject/zephyr 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 KERNELVERSION=0x4040000 APPVERSION= APP_VERSION_EXTENDED_STRING= APP_VERSION_TWEAK_STRING= APP_DIR=/Volumes/External/Work/radio/loramodem/app CONFIG_=CONFIG_ KCONFIG_CONFIG=/Volumes/External/Work/radio/loramodem/build/zephyr/.config KCONFIG_BOARD_DIR=/Volumes/External/Work/radio/loramodem/build/Kconfig/boards BOARD=xiao_esp32s3 BOARD_REVISION= BOARD_QUALIFIERS=esp32s3/procpu HWM_SCHEME=v2 KCONFIG_BINARY_DIR=/Volumes/External/Work/radio/loramodem/build/Kconfig APPLICATION_SOURCE_DIR=/Volumes/External/Work/radio/loramodem/app ZEPHYR_TOOLCHAIN_VARIANT=zephyr TOOLCHAIN_VARIANT_COMPILER=gnu TOOLCHAIN_KCONFIG_DIR=/Users/wijnand/zephyr-sdk-1.0.0/cmake/zephyr TOOLCHAIN_HAS_NEWLIB=n TOOLCHAIN_HAS_PICOLIBC=y TOOLCHAIN_HAS_GLIBCXX=y TOOLCHAIN_HAS_LIBCXX=n EDT_PICKLE=/Volumes/External/Work/radio/loramodem/build/zephyr/edt.pickle ZEPHYR_ACPICA_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/acpica/Kconfig ZEPHYR_CMSIS_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/cmsis/Kconfig ZEPHYR_CMSIS_DSP_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/cmsis-dsp/Kconfig ZEPHYR_CMSIS_NN_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/cmsis-nn/Kconfig ZEPHYR_CMSIS_6_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/cmsis_6/Kconfig ZEPHYR_DHARA_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/dhara/Kconfig ZEPHYR_FATFS_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/fatfs/Kconfig ZEPHYR_HAL_AFBR_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_afbr/Kconfig ZEPHYR_HAL_AMBIQ_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_ambiq/Kconfig ZEPHYR_HAL_BOUFFALOLAB_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_bouffalolab/Kconfig ZEPHYR_HAL_ESPRESSIF_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_espressif/Kconfig ZEPHYR_HAL_ETHOS_U_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_ethos_u/Kconfig ZEPHYR_HAL_GIGADEVICE_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_gigadevice/Kconfig ZEPHYR_HAL_INFINEON_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_infineon/Kconfig ZEPHYR_HAL_NORDIC_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/Kconfig ZEPHYR_HAL_NXP_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_nxp/Kconfig ZEPHYR_HAL_REALTEK_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_realtek/Kconfig ZEPHYR_HAL_RPI_PICO_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_rpi_pico/Kconfig ZEPHYR_HAL_SIFLI_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_sifli/Kconfig ZEPHYR_HAL_SILABS_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_silabs/Kconfig ZEPHYR_HAL_ST_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_st/Kconfig ZEPHYR_HAL_TDK_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_tdk/Kconfig ZEPHYR_HAL_WCH_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_wch/Kconfig ZEPHYR_HOSTAP_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hostap/Kconfig ZEPHYR_LIBLC3_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/liblc3/Kconfig ZEPHYR_LIBSBC_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/libsbc/Kconfig ZEPHYR_LITTLEFS_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/littlefs/Kconfig ZEPHYR_LORA_BASICS_MODEM_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/lora-basics-modem/Kconfig ZEPHYR_LORAMAC_NODE_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/loramac-node/Kconfig ZEPHYR_LVGL_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/lvgl/Kconfig ZEPHYR_MBEDTLS_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig ZEPHYR_NANOPB_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/nanopb/Kconfig ZEPHYR_NRF_WIFI_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/nrf_wifi/Kconfig ZEPHYR_OPENTHREAD_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/openthread/Kconfig ZEPHYR_PERCEPIO_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/percepio/Kconfig ZEPHYR_SEGGER_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/segger/Kconfig ZEPHYR_TRUSTED_FIRMWARE_A_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-a/Kconfig ZEPHYR_TRUSTED_FIRMWARE_M_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig ZEPHYR_UOSCORE_UEDHOC_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/uoscore-uedhoc/Kconfig ZEPHYR_ZCBOR_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/zcbor/Kconfig ARCH=* ARCH_DIR=/Users/wijnand/zephyrproject/zephyr/arch SHIELD_AS_LIST= DTS_POST_CPP=/Volumes/External/Work/radio/loramodem/build/zephyr/zephyr.dts.pre DTS_ROOT_BINDINGS=/Volumes/External/Work/radio/loramodem/dts/bindings?/Users/wijnand/zephyrproject/zephyr/dts/bindings /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/scripts/kconfig/menuconfig.py /Volumes/External/Work/radio/loramodem/app/Kconfig + pool = console + + +############################################# +# Custom command for CMakeFiles/guiconfig + +build CMakeFiles/guiconfig | ${cmake_ninja_workdir}CMakeFiles/guiconfig: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/kconfig && /opt/homebrew/bin/cmake -E env ZEPHYR_BASE=/Users/wijnand/zephyrproject/zephyr PYTHON_EXECUTABLE=/Users/wijnand/zephyrproject/.venv/bin/python3.14 srctree=/Users/wijnand/zephyrproject/zephyr 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 KERNELVERSION=0x4040000 APPVERSION= APP_VERSION_EXTENDED_STRING= APP_VERSION_TWEAK_STRING= APP_DIR=/Volumes/External/Work/radio/loramodem/app CONFIG_=CONFIG_ KCONFIG_CONFIG=/Volumes/External/Work/radio/loramodem/build/zephyr/.config KCONFIG_BOARD_DIR=/Volumes/External/Work/radio/loramodem/build/Kconfig/boards BOARD=xiao_esp32s3 BOARD_REVISION= BOARD_QUALIFIERS=esp32s3/procpu HWM_SCHEME=v2 KCONFIG_BINARY_DIR=/Volumes/External/Work/radio/loramodem/build/Kconfig APPLICATION_SOURCE_DIR=/Volumes/External/Work/radio/loramodem/app ZEPHYR_TOOLCHAIN_VARIANT=zephyr TOOLCHAIN_VARIANT_COMPILER=gnu TOOLCHAIN_KCONFIG_DIR=/Users/wijnand/zephyr-sdk-1.0.0/cmake/zephyr TOOLCHAIN_HAS_NEWLIB=n TOOLCHAIN_HAS_PICOLIBC=y TOOLCHAIN_HAS_GLIBCXX=y TOOLCHAIN_HAS_LIBCXX=n EDT_PICKLE=/Volumes/External/Work/radio/loramodem/build/zephyr/edt.pickle ZEPHYR_ACPICA_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/acpica/Kconfig ZEPHYR_CMSIS_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/cmsis/Kconfig ZEPHYR_CMSIS_DSP_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/cmsis-dsp/Kconfig ZEPHYR_CMSIS_NN_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/cmsis-nn/Kconfig ZEPHYR_CMSIS_6_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/cmsis_6/Kconfig ZEPHYR_DHARA_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/dhara/Kconfig ZEPHYR_FATFS_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/fatfs/Kconfig ZEPHYR_HAL_AFBR_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_afbr/Kconfig ZEPHYR_HAL_AMBIQ_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_ambiq/Kconfig ZEPHYR_HAL_BOUFFALOLAB_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_bouffalolab/Kconfig ZEPHYR_HAL_ESPRESSIF_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_espressif/Kconfig ZEPHYR_HAL_ETHOS_U_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_ethos_u/Kconfig ZEPHYR_HAL_GIGADEVICE_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_gigadevice/Kconfig ZEPHYR_HAL_INFINEON_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_infineon/Kconfig ZEPHYR_HAL_NORDIC_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/Kconfig ZEPHYR_HAL_NXP_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_nxp/Kconfig ZEPHYR_HAL_REALTEK_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_realtek/Kconfig ZEPHYR_HAL_RPI_PICO_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_rpi_pico/Kconfig ZEPHYR_HAL_SIFLI_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_sifli/Kconfig ZEPHYR_HAL_SILABS_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_silabs/Kconfig ZEPHYR_HAL_ST_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_st/Kconfig ZEPHYR_HAL_TDK_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_tdk/Kconfig ZEPHYR_HAL_WCH_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_wch/Kconfig ZEPHYR_HOSTAP_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hostap/Kconfig ZEPHYR_LIBLC3_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/liblc3/Kconfig ZEPHYR_LIBSBC_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/libsbc/Kconfig ZEPHYR_LITTLEFS_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/littlefs/Kconfig ZEPHYR_LORA_BASICS_MODEM_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/lora-basics-modem/Kconfig ZEPHYR_LORAMAC_NODE_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/loramac-node/Kconfig ZEPHYR_LVGL_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/lvgl/Kconfig ZEPHYR_MBEDTLS_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig ZEPHYR_NANOPB_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/nanopb/Kconfig ZEPHYR_NRF_WIFI_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/nrf_wifi/Kconfig ZEPHYR_OPENTHREAD_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/openthread/Kconfig ZEPHYR_PERCEPIO_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/percepio/Kconfig ZEPHYR_SEGGER_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/segger/Kconfig ZEPHYR_TRUSTED_FIRMWARE_A_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-a/Kconfig ZEPHYR_TRUSTED_FIRMWARE_M_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig ZEPHYR_UOSCORE_UEDHOC_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/uoscore-uedhoc/Kconfig ZEPHYR_ZCBOR_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/zcbor/Kconfig ARCH=* ARCH_DIR=/Users/wijnand/zephyrproject/zephyr/arch SHIELD_AS_LIST= DTS_POST_CPP=/Volumes/External/Work/radio/loramodem/build/zephyr/zephyr.dts.pre DTS_ROOT_BINDINGS=/Volumes/External/Work/radio/loramodem/dts/bindings?/Users/wijnand/zephyrproject/zephyr/dts/bindings /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/scripts/kconfig/guiconfig.py /Volumes/External/Work/radio/loramodem/app/Kconfig + pool = console + + +############################################# +# Custom command for CMakeFiles/hardenconfig + +build CMakeFiles/hardenconfig | ${cmake_ninja_workdir}CMakeFiles/hardenconfig: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/kconfig && /opt/homebrew/bin/cmake -E env ZEPHYR_BASE=/Users/wijnand/zephyrproject/zephyr PYTHON_EXECUTABLE=/Users/wijnand/zephyrproject/.venv/bin/python3.14 srctree=/Users/wijnand/zephyrproject/zephyr 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 KERNELVERSION=0x4040000 APPVERSION= APP_VERSION_EXTENDED_STRING= APP_VERSION_TWEAK_STRING= APP_DIR=/Volumes/External/Work/radio/loramodem/app CONFIG_=CONFIG_ KCONFIG_CONFIG=/Volumes/External/Work/radio/loramodem/build/zephyr/.config KCONFIG_BOARD_DIR=/Volumes/External/Work/radio/loramodem/build/Kconfig/boards BOARD=xiao_esp32s3 BOARD_REVISION= BOARD_QUALIFIERS=esp32s3/procpu HWM_SCHEME=v2 KCONFIG_BINARY_DIR=/Volumes/External/Work/radio/loramodem/build/Kconfig APPLICATION_SOURCE_DIR=/Volumes/External/Work/radio/loramodem/app ZEPHYR_TOOLCHAIN_VARIANT=zephyr TOOLCHAIN_VARIANT_COMPILER=gnu TOOLCHAIN_KCONFIG_DIR=/Users/wijnand/zephyr-sdk-1.0.0/cmake/zephyr TOOLCHAIN_HAS_NEWLIB=n TOOLCHAIN_HAS_PICOLIBC=y TOOLCHAIN_HAS_GLIBCXX=y TOOLCHAIN_HAS_LIBCXX=n EDT_PICKLE=/Volumes/External/Work/radio/loramodem/build/zephyr/edt.pickle ZEPHYR_ACPICA_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/acpica/Kconfig ZEPHYR_CMSIS_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/cmsis/Kconfig ZEPHYR_CMSIS_DSP_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/cmsis-dsp/Kconfig ZEPHYR_CMSIS_NN_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/cmsis-nn/Kconfig ZEPHYR_CMSIS_6_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/cmsis_6/Kconfig ZEPHYR_DHARA_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/dhara/Kconfig ZEPHYR_FATFS_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/fatfs/Kconfig ZEPHYR_HAL_AFBR_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_afbr/Kconfig ZEPHYR_HAL_AMBIQ_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_ambiq/Kconfig ZEPHYR_HAL_BOUFFALOLAB_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_bouffalolab/Kconfig ZEPHYR_HAL_ESPRESSIF_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_espressif/Kconfig ZEPHYR_HAL_ETHOS_U_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_ethos_u/Kconfig ZEPHYR_HAL_GIGADEVICE_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_gigadevice/Kconfig ZEPHYR_HAL_INFINEON_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_infineon/Kconfig ZEPHYR_HAL_NORDIC_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/Kconfig ZEPHYR_HAL_NXP_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_nxp/Kconfig ZEPHYR_HAL_REALTEK_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_realtek/Kconfig ZEPHYR_HAL_RPI_PICO_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_rpi_pico/Kconfig ZEPHYR_HAL_SIFLI_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_sifli/Kconfig ZEPHYR_HAL_SILABS_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_silabs/Kconfig ZEPHYR_HAL_ST_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_st/Kconfig ZEPHYR_HAL_TDK_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_tdk/Kconfig ZEPHYR_HAL_WCH_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_wch/Kconfig ZEPHYR_HOSTAP_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hostap/Kconfig ZEPHYR_LIBLC3_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/liblc3/Kconfig ZEPHYR_LIBSBC_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/libsbc/Kconfig ZEPHYR_LITTLEFS_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/littlefs/Kconfig ZEPHYR_LORA_BASICS_MODEM_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/lora-basics-modem/Kconfig ZEPHYR_LORAMAC_NODE_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/loramac-node/Kconfig ZEPHYR_LVGL_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/lvgl/Kconfig ZEPHYR_MBEDTLS_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig ZEPHYR_NANOPB_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/nanopb/Kconfig ZEPHYR_NRF_WIFI_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/nrf_wifi/Kconfig ZEPHYR_OPENTHREAD_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/openthread/Kconfig ZEPHYR_PERCEPIO_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/percepio/Kconfig ZEPHYR_SEGGER_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/segger/Kconfig ZEPHYR_TRUSTED_FIRMWARE_A_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-a/Kconfig ZEPHYR_TRUSTED_FIRMWARE_M_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig ZEPHYR_UOSCORE_UEDHOC_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/uoscore-uedhoc/Kconfig ZEPHYR_ZCBOR_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/zcbor/Kconfig ARCH=* ARCH_DIR=/Users/wijnand/zephyrproject/zephyr/arch SHIELD_AS_LIST= DTS_POST_CPP=/Volumes/External/Work/radio/loramodem/build/zephyr/zephyr.dts.pre DTS_ROOT_BINDINGS=/Volumes/External/Work/radio/loramodem/dts/bindings?/Users/wijnand/zephyrproject/zephyr/dts/bindings /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/scripts/kconfig/hardenconfig.py /Volumes/External/Work/radio/loramodem/app/Kconfig + pool = console + + +############################################# +# Custom command for CMakeFiles/traceconfig + +build CMakeFiles/traceconfig | ${cmake_ninja_workdir}CMakeFiles/traceconfig: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/kconfig && /opt/homebrew/bin/cmake -E env ZEPHYR_BASE=/Users/wijnand/zephyrproject/zephyr PYTHON_EXECUTABLE=/Users/wijnand/zephyrproject/.venv/bin/python3.14 srctree=/Users/wijnand/zephyrproject/zephyr 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 KERNELVERSION=0x4040000 APPVERSION= APP_VERSION_EXTENDED_STRING= APP_VERSION_TWEAK_STRING= APP_DIR=/Volumes/External/Work/radio/loramodem/app CONFIG_=CONFIG_ KCONFIG_CONFIG=/Volumes/External/Work/radio/loramodem/build/zephyr/.config KCONFIG_BOARD_DIR=/Volumes/External/Work/radio/loramodem/build/Kconfig/boards BOARD=xiao_esp32s3 BOARD_REVISION= BOARD_QUALIFIERS=esp32s3/procpu HWM_SCHEME=v2 KCONFIG_BINARY_DIR=/Volumes/External/Work/radio/loramodem/build/Kconfig APPLICATION_SOURCE_DIR=/Volumes/External/Work/radio/loramodem/app ZEPHYR_TOOLCHAIN_VARIANT=zephyr TOOLCHAIN_VARIANT_COMPILER=gnu TOOLCHAIN_KCONFIG_DIR=/Users/wijnand/zephyr-sdk-1.0.0/cmake/zephyr TOOLCHAIN_HAS_NEWLIB=n TOOLCHAIN_HAS_PICOLIBC=y TOOLCHAIN_HAS_GLIBCXX=y TOOLCHAIN_HAS_LIBCXX=n EDT_PICKLE=/Volumes/External/Work/radio/loramodem/build/zephyr/edt.pickle ZEPHYR_ACPICA_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/acpica/Kconfig ZEPHYR_CMSIS_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/cmsis/Kconfig ZEPHYR_CMSIS_DSP_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/cmsis-dsp/Kconfig ZEPHYR_CMSIS_NN_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/cmsis-nn/Kconfig ZEPHYR_CMSIS_6_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/cmsis_6/Kconfig ZEPHYR_DHARA_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/dhara/Kconfig ZEPHYR_FATFS_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/fatfs/Kconfig ZEPHYR_HAL_AFBR_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_afbr/Kconfig ZEPHYR_HAL_AMBIQ_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_ambiq/Kconfig ZEPHYR_HAL_BOUFFALOLAB_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_bouffalolab/Kconfig ZEPHYR_HAL_ESPRESSIF_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_espressif/Kconfig ZEPHYR_HAL_ETHOS_U_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_ethos_u/Kconfig ZEPHYR_HAL_GIGADEVICE_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_gigadevice/Kconfig ZEPHYR_HAL_INFINEON_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_infineon/Kconfig ZEPHYR_HAL_NORDIC_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/Kconfig ZEPHYR_HAL_NXP_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_nxp/Kconfig ZEPHYR_HAL_REALTEK_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_realtek/Kconfig ZEPHYR_HAL_RPI_PICO_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_rpi_pico/Kconfig ZEPHYR_HAL_SIFLI_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_sifli/Kconfig ZEPHYR_HAL_SILABS_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_silabs/Kconfig ZEPHYR_HAL_ST_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_st/Kconfig ZEPHYR_HAL_TDK_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_tdk/Kconfig ZEPHYR_HAL_WCH_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hal_wch/Kconfig ZEPHYR_HOSTAP_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/hostap/Kconfig ZEPHYR_LIBLC3_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/liblc3/Kconfig ZEPHYR_LIBSBC_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/libsbc/Kconfig ZEPHYR_LITTLEFS_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/littlefs/Kconfig ZEPHYR_LORA_BASICS_MODEM_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/lora-basics-modem/Kconfig ZEPHYR_LORAMAC_NODE_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/loramac-node/Kconfig ZEPHYR_LVGL_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/lvgl/Kconfig ZEPHYR_MBEDTLS_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig ZEPHYR_NANOPB_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/nanopb/Kconfig ZEPHYR_NRF_WIFI_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/nrf_wifi/Kconfig ZEPHYR_OPENTHREAD_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/openthread/Kconfig ZEPHYR_PERCEPIO_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/percepio/Kconfig ZEPHYR_SEGGER_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/segger/Kconfig ZEPHYR_TRUSTED_FIRMWARE_A_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-a/Kconfig ZEPHYR_TRUSTED_FIRMWARE_M_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig ZEPHYR_UOSCORE_UEDHOC_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/uoscore-uedhoc/Kconfig ZEPHYR_ZCBOR_KCONFIG=/Users/wijnand/zephyrproject/zephyr/modules/zcbor/Kconfig ARCH=* ARCH_DIR=/Users/wijnand/zephyrproject/zephyr/arch SHIELD_AS_LIST= DTS_POST_CPP=/Volumes/External/Work/radio/loramodem/build/zephyr/zephyr.dts.pre DTS_ROOT_BINDINGS=/Volumes/External/Work/radio/loramodem/dts/bindings?/Users/wijnand/zephyrproject/zephyr/dts/bindings /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/scripts/kconfig/traceconfig.py /Volumes/External/Work/radio/loramodem/build/zephyr/.config /Volumes/External/Work/radio/loramodem/build/zephyr/kconfig-trace.md /Volumes/External/Work/radio/loramodem/app/Kconfig + pool = console + + +############################################# +# Phony custom command for CMakeFiles/config-twister + +build CMakeFiles/config-twister | ${cmake_ninja_workdir}CMakeFiles/config-twister: phony zephyr/.config + + +############################################# +# Custom command for CMakeFiles/pristine + +build CMakeFiles/pristine | ${cmake_ninja_workdir}CMakeFiles/pristine: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build && /opt/homebrew/bin/cmake -DBINARY_DIR=/Volumes/External/Work/radio/loramodem/build -DSOURCE_DIR=/Volumes/External/Work/radio/loramodem/app -P /Users/wijnand/zephyrproject/zephyr/cmake/pristine.cmake + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target zephyr + + +############################################# +# Order-only phony target for zephyr + +build cmake_object_order_depends_target_zephyr: phony || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/CMakeFiles/zephyr.dir/lib/libc/validate_libc.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/libc/validate_libc.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/libc/validate_libc.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/libc + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/heap/heap.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/heap + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/os/cbprintf_packaged.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/lib/os/clock.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/os/clock.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/clock.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/os/printk.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/os/sem.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/os/thread_entry.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/os/cbprintf_complete.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/os/assert.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/lib/os/mpsc_pbuf.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/os/mpsc_pbuf.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/mpsc_pbuf.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/utils/dec.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/utils + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/utils/hex.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/utils + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/utils/rb.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/utils + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/set.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/utils/set.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/utils/set.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/utils + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/utils/timeutil.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/utils + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/utils/bitarray.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/utils + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/bitmask.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/utils/bitmask.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/utils/bitmask.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/utils + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt/getopt.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/utils/getopt/getopt.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt/getopt.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt/getopt_common.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/utils/getopt/getopt_common.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt/getopt_common.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/utils/ring_buffer.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/utils + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj: C_COMPILER__zephyr_unscanned_ /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/configs.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/misc/generated + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/soc.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/soc.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/soc.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/esp32s3-mp.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/esp32s3-mp.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/esp32s3-mp.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/soc/espressif/common/loader.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/loader.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/soc/espressif/common/loader.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/soc/espressif/common + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/hw_init.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/hw_init.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/hw_init.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_core.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/subsys/logging/log_core.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_core.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/subsys/logging + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_mgmt.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/subsys/logging/log_mgmt.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_mgmt.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/subsys/logging + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_cache.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/subsys/logging/log_cache.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_cache.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/subsys/logging + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_msg.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/subsys/logging/log_msg.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_msg.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/subsys/logging + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_output.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/subsys/logging/log_output.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_output.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/subsys/logging + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/subsys/logging/backends/log_backend_uart.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/log_backend_uart.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/subsys/logging/backends/log_backend_uart.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/subsys/logging/backends + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/zephyr/subsys/tracing/tracing_none.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/subsys/tracing + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_api.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_api.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_api.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_fields.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_fields.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_fields.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_utility.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_utility.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_utility.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_table.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_table.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_table.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_fields.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_fields.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_fields.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_utility.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_utility.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_utility.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build 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: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = 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.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/efuse_controller/keys/with_key_purposes + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/flash_encrypt.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/flash_encrypt.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/flash_encrypt.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_gpio_reserve.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_gpio_reserve.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_gpio_reserve.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_encrypt_hal_iram.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_encrypt_hal_iram.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_encrypt_hal_iram.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_iram.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_iram.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_iram.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_gpspi.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_gpspi.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_gpspi.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp32s3/spi_flash_oct_flash_init.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp32s3/spi_flash_oct_flash_init.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp32s3/spi_flash_oct_flash_init.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_api.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_api.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_api.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_spi_init.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_spi_init.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_spi_init.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_mmap.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_mmap.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_mmap.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_ops.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_ops.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_ops.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/memspi_host_driver.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/memspi_host_driver.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/memspi_host_driver.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_boya.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_boya.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_boya.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_drivers.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_drivers.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_drivers.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_gd.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_gd.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_gd.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_generic.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_generic.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_generic.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_issi.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_issi.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_issi.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic_opi.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic_opi.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic_opi.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_th.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_th.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_th.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_winbond.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_winbond.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_winbond.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_hpm_enable.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_hpm_enable.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_hpm_enable.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_noos.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_noos.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_noos.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_app.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_app.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_app.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_wrap.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_wrap.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_wrap.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/cache_utils.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/cache_utils.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/cache_utils.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal_iram.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal_iram.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal_iram.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal_iram.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal_iram.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal_iram.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/lldesc.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/lldesc.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/lldesc.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_top.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_top.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_top.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_ahb_v1.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_ahb_v1.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_ahb_v1.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/bootloader_clock_init.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/bootloader_clock_init.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/bootloader_clock_init.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_security/mpu_hal.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_security/mpu_hal.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_security/mpu_hal.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_security + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/console_init.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/console_init.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/console_init.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/soc_init.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/soc_init.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/soc_init.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_driver_gpio/src/rtc_io.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_driver_gpio/src/rtc_io.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_driver_gpio/src/rtc_io.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_driver_gpio/src + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/esp32s3/temperature_sensor_periph.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/esp32s3/temperature_sensor_periph.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/esp32s3/temperature_sensor_periph.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/temperature_sensor_hal.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/temperature_sensor_hal.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/temperature_sensor_hal.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_clock/esp32s3/clk_tree_hal.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_clock/esp32s3/clk_tree_hal.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_clock/esp32s3/clk_tree_hal.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_clock/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/esp32s3/rtc_io_periph.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/esp32s3/rtc_io_periph.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/esp32s3/rtc_io_periph.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/rtc_io_hal.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/rtc_io_hal.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/rtc_io_hal.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_systimer/systimer_hal.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_systimer/systimer_hal.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_systimer/systimer_hal.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_systimer + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/wdt_hal_iram.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/wdt_hal_iram.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/wdt_hal_iram.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/xt_wdt_hal.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/xt_wdt_hal.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/xt_wdt_hal.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/adc_share_hw_ctrl.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/adc_share_hw_ctrl.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/adc_share_hw_ctrl.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/clk_ctrl_os.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/clk_ctrl_os.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/clk_ctrl_os.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/cpu.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/cpu.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/cpu.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_clk.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_clk.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_clk.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/hw_random.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/hw_random.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/hw_random.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mac_addr.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mac_addr.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mac_addr.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mspi/mspi_timing_tuning/mspi_timing_tuning.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mspi/mspi_timing_tuning/mspi_timing_tuning.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mspi/mspi_timing_tuning/mspi_timing_tuning.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mspi/mspi_timing_tuning + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build 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: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3/mspi_timing_config.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = 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.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/periph_ctrl.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/periph_ctrl.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/periph_ctrl.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/cpu_region_protect.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/cpu_region_protect.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/cpu_region_protect.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_clk_tree.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_clk_tree.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_clk_tree.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_cpu_intr.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_cpu_intr.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_cpu_intr.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/io_mux.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/io_mux.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/io_mux.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk_init.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk_init.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk_init.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_init.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_init.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_init.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_sleep.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_sleep.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_sleep.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_time.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_time.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_time.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/sar_periph_ctrl.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/sar_periph_ctrl.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/sar_periph_ctrl.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/systimer.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/systimer.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/systimer.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp_clk_tree_common.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp_clk_tree_common.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp_clk_tree_common.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/regi2c_ctrl.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/regi2c_ctrl.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/regi2c_ctrl.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/rtc_module.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/rtc_module.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/rtc_module.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sar_tsens_ctrl.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sar_tsens_ctrl.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sar_tsens_ctrl.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sleep_modes.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sleep_modes.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sleep_modes.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_msync.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_msync.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_msync.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_utils.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_utils.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_utils.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_mmu_map.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_mmu_map.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_mmu_map.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/port/esp32s3/ext_mem_layout.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/port/esp32s3/ext_mem_layout.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/port/esp32s3/ext_mem_layout.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/port/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S.obj: ASM_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S.obj.d + FLAGS = -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -xassembler-with-cpp -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_crc.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_crc.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_crc.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_efuse.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_efuse.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_efuse.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_gpio.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_gpio.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_gpio.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_longjmp.S.obj: ASM_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_longjmp.S || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_longjmp.S.obj.d + FLAGS = -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -xassembler-with-cpp -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_print.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_print.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_print.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_serial_output.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_serial_output.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_serial_output.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_spiflash.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_spiflash.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_spiflash.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_sys.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_sys.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_sys.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/esp_err.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/esp_err.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/esp_err.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/clk.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/clk.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/clk.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/reset_reason.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/reset_reason.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/reset_reason.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/system_internal.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/system_internal.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/system_internal.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_common.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_common.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_common.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_systimer.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_systimer.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_systimer.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_init.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_init.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_init.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/ets_timer_legacy.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/ets_timer_legacy.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/ets_timer_legacy.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/esp32s3/efuse_hal.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/esp32s3/efuse_hal.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/esp32s3/efuse_hal.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/cache_hal.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/cache_hal.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/cache_hal.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/efuse_hal.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/efuse_hal.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/efuse_hal.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/mmu_hal.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/mmu_hal.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/mmu_hal.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32s3/gpio_periph.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32s3/gpio_periph.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32s3/gpio_periph.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32s3 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/esp_restart.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/esp_restart.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/esp_restart.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/flash_init.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/flash_init.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/flash_init.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/bootloader/bootloader_flash.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/bootloader/bootloader_flash.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/bootloader/bootloader_flash.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/bootloader + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/heap/heap_caps_zephyr.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/heap/heap_caps_zephyr.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/heap/heap_caps_zephyr.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/heap + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_flash_init.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_flash_init.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_flash_init.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_init.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_init.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_init.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + +build zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_random.c.obj: C_COMPILER__zephyr_unscanned_ /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_random.c || cmake_object_order_depends_target_zephyr + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_random.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target zephyr + + +############################################# +# Link the static library zephyr/libzephyr.a + +build zephyr/libzephyr.a: C_STATIC_LIBRARY_LINKER__zephyr_ zephyr/CMakeFiles/zephyr.dir/lib/libc/validate_libc.c.obj zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/clock.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/mpsc_pbuf.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/set.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/bitmask.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt/getopt.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt/getopt_common.c.obj zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/soc.c.obj zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/esp32s3-mp.c.obj zephyr/CMakeFiles/zephyr.dir/soc/espressif/common/loader.c.obj zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/hw_init.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_core.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_mgmt.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_cache.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_msg.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_output.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/logging/backends/log_backend_uart.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_api.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_fields.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_utility.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_table.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_fields.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_utility.c.obj 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 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/flash_encrypt.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_gpio_reserve.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_encrypt_hal_iram.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_iram.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_gpspi.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp32s3/spi_flash_oct_flash_init.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_api.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_spi_init.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_mmap.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_ops.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/memspi_host_driver.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_boya.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_drivers.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_gd.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_generic.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_issi.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic_opi.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_th.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_winbond.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_hpm_enable.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_noos.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_app.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_wrap.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/cache_utils.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal_iram.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal_iram.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/lldesc.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_top.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_ahb_v1.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/bootloader_clock_init.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_security/mpu_hal.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/console_init.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/soc_init.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_driver_gpio/src/rtc_io.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/esp32s3/temperature_sensor_periph.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/temperature_sensor_hal.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_clock/esp32s3/clk_tree_hal.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/esp32s3/rtc_io_periph.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/rtc_io_hal.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_systimer/systimer_hal.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/wdt_hal_iram.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/xt_wdt_hal.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/adc_share_hw_ctrl.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/clk_ctrl_os.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/cpu.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_clk.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/hw_random.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mac_addr.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mspi/mspi_timing_tuning/mspi_timing_tuning.c.obj 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 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/periph_ctrl.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/cpu_region_protect.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_clk_tree.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_cpu_intr.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/io_mux.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk_init.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_init.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_sleep.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_time.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/sar_periph_ctrl.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/systimer.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp_clk_tree_common.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/regi2c_ctrl.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/rtc_module.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sar_tsens_ctrl.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sleep_modes.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_msync.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_utils.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_mmu_map.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/port/esp32s3/ext_mem_layout.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_crc.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_efuse.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_gpio.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_longjmp.S.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_print.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_serial_output.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_spiflash.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_sys.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/esp_err.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/clk.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/reset_reason.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/system_internal.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_common.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_systimer.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_init.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/ets_timer_legacy.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/esp32s3/efuse_hal.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/cache_hal.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/efuse_hal.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/mmu_hal.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32s3/gpio_periph.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/esp_restart.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/flash_init.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/bootloader/bootloader_flash.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/heap/heap_caps_zephyr.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_flash_init.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_init.c.obj zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_random.c.obj || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb + TARGET_FILE = zephyr/libzephyr.a + TARGET_PDB = zephyr/libzephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr.dir + + +############################################# +# Utility command for version_h + +build zephyr/version_h: phony zephyr/CMakeFiles/version_h zephyr/include/generated/zephyr/version.h + + +############################################# +# Utility command for syscall_list_h_target + +build zephyr/syscall_list_h_target: phony zephyr/CMakeFiles/syscall_list_h_target zephyr/include/generated/zephyr/syscall_dispatch.c zephyr/include/generated/zephyr/syscall_exports_llext.c zephyr/syscall_weakdefs_llext.c zephyr/include/generated/zephyr/syscall_list.h zephyr/misc/generated/syscalls.json zephyr/misc/generated/struct_tags.json zephyr/misc/generated/syscalls_subdirs.trigger zephyr/misc/generated/syscalls_links/include zephyr/misc/generated/syscalls_links/include_zephyr zephyr/misc/generated/syscalls_links/include_zephyr_acpi zephyr/misc/generated/syscalls_links/include_zephyr_app_memory zephyr/misc/generated/syscalls_links/include_zephyr_arch zephyr/misc/generated/syscalls_links/include_zephyr_audio zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth zephyr/misc/generated/syscalls_links/include_zephyr_canbus zephyr/misc/generated/syscalls_links/include_zephyr_cleanup zephyr/misc/generated/syscalls_links/include_zephyr_console zephyr/misc/generated/syscalls_links/include_zephyr_cpu_freq zephyr/misc/generated/syscalls_links/include_zephyr_crypto zephyr/misc/generated/syscalls_links/include_zephyr_dap zephyr/misc/generated/syscalls_links/include_zephyr_data zephyr/misc/generated/syscalls_links/include_zephyr_debug zephyr/misc/generated/syscalls_links/include_zephyr_devicetree zephyr/misc/generated/syscalls_links/include_zephyr_dfu zephyr/misc/generated/syscalls_links/include_zephyr_display zephyr/misc/generated/syscalls_links/include_zephyr_drivers zephyr/misc/generated/syscalls_links/include_zephyr_dsp zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings zephyr/misc/generated/syscalls_links/include_zephyr_fs zephyr/misc/generated/syscalls_links/include_zephyr_gnss zephyr/misc/generated/syscalls_links/include_zephyr_input zephyr/misc/generated/syscalls_links/include_zephyr_instrumentation zephyr/misc/generated/syscalls_links/include_zephyr_internal zephyr/misc/generated/syscalls_links/include_zephyr_ipc zephyr/misc/generated/syscalls_links/include_zephyr_kernel zephyr/misc/generated/syscalls_links/include_zephyr_kvss zephyr/misc/generated/syscalls_links/include_zephyr_linker zephyr/misc/generated/syscalls_links/include_zephyr_llext zephyr/misc/generated/syscalls_links/include_zephyr_logging zephyr/misc/generated/syscalls_links/include_zephyr_lorawan zephyr/misc/generated/syscalls_links/include_zephyr_math zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_misc zephyr/misc/generated/syscalls_links/include_zephyr_modbus zephyr/misc/generated/syscalls_links/include_zephyr_modem zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap zephyr/misc/generated/syscalls_links/include_zephyr_net zephyr/misc/generated/syscalls_links/include_zephyr_platform zephyr/misc/generated/syscalls_links/include_zephyr_pm zephyr/misc/generated/syscalls_links/include_zephyr_pmci zephyr/misc/generated/syscalls_links/include_zephyr_portability zephyr/misc/generated/syscalls_links/include_zephyr_posix zephyr/misc/generated/syscalls_links/include_zephyr_psa zephyr/misc/generated/syscalls_links/include_zephyr_random zephyr/misc/generated/syscalls_links/include_zephyr_retention zephyr/misc/generated/syscalls_links/include_zephyr_rtio zephyr/misc/generated/syscalls_links/include_zephyr_sd zephyr/misc/generated/syscalls_links/include_zephyr_sensing zephyr/misc/generated/syscalls_links/include_zephyr_settings zephyr/misc/generated/syscalls_links/include_zephyr_shell zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc zephyr/misc/generated/syscalls_links/include_zephyr_stats zephyr/misc/generated/syscalls_links/include_zephyr_storage zephyr/misc/generated/syscalls_links/include_zephyr_sys zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt zephyr/misc/generated/syscalls_links/include_zephyr_timing zephyr/misc/generated/syscalls_links/include_zephyr_toolchain zephyr/misc/generated/syscalls_links/include_zephyr_tracing zephyr/misc/generated/syscalls_links/include_zephyr_usb zephyr/misc/generated/syscalls_links/include_zephyr_usb_c zephyr/misc/generated/syscalls_links/include_zephyr_video zephyr/misc/generated/syscalls_links/include_zephyr_xen zephyr/misc/generated/syscalls_links/include_zephyr_zbus zephyr/misc/generated/syscalls_links/include_zephyr_zvfs zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 zephyr/misc/generated/syscalls_links/include_zephyr_arch_common zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips zephyr/misc/generated/syscalls_links/include_zephyr_arch_openrisc zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv zephyr/misc/generated/syscalls_links/include_zephyr_arch_rx zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_biometrics zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can zephyr/misc/generated/syscalls_links/include_zephyr_drivers_charger zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dac zephyr/misc/generated/syscalls_links/include_zephyr_drivers_debug zephyr/misc/generated/syscalls_links/include_zephyr_drivers_disk zephyr/misc/generated/syscalls_links/include_zephyr_drivers_display zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma zephyr/misc/generated/syscalls_links/include_zephyr_drivers_edac zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip zephyr/misc/generated/syscalls_links/include_zephyr_drivers_memc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power zephyr/misc/generated/syscalls_links/include_zephyr_drivers_psi5 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator zephyr/misc/generated/syscalls_links/include_zephyr_drivers_reset zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sent zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_video zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_qemu_fwcfg zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_tisci zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi_nxp zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy_intel zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_flexram zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_max2221x zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_rtxxx_dsp_ctrl zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_dtc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_external_interrupt zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn_renesas_elc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_comparator zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_qspi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sent zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_wuc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_xspi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma_silabs zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas_ra-elc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs zephyr/misc/generated/syscalls_links/include_zephyr_gnss_rtk zephyr/misc/generated/syscalls_links/include_zephyr_ipc_backends zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr zephyr/misc/generated/syscalls_links/include_zephyr_modem_at zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend zephyr/misc/generated/syscalls_links/include_zephyr_modem_ubx zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if zephyr/misc/generated/syscalls_links/include_zephyr_net_http zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus zephyr/misc/generated/syscalls_links/include_zephyr_pmci_mctp zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa zephyr/misc/generated/syscalls_links/include_zephyr_posix_net zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal zephyr/misc/generated/syscalls_links/include_zephyr_toolchain_iar zephyr/misc/generated/syscalls_links/include_zephyr_usb_class zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 zephyr/misc/generated/syscalls_links/include_zephyr_xen_public zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io zephyr/misc/generated/syscalls_links/include_zephyr_zbus_proxy_agent + + +############################################# +# Utility command for driver_validation_h_target + +build zephyr/driver_validation_h_target: phony zephyr/CMakeFiles/driver_validation_h_target zephyr/include/generated/zephyr/driver-validation.h zephyr/misc/generated/syscalls.json zephyr/misc/generated/struct_tags.json zephyr/misc/generated/syscalls_subdirs.trigger zephyr/misc/generated/syscalls_links/include zephyr/misc/generated/syscalls_links/include_zephyr zephyr/misc/generated/syscalls_links/include_zephyr_acpi zephyr/misc/generated/syscalls_links/include_zephyr_app_memory zephyr/misc/generated/syscalls_links/include_zephyr_arch zephyr/misc/generated/syscalls_links/include_zephyr_audio zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth zephyr/misc/generated/syscalls_links/include_zephyr_canbus zephyr/misc/generated/syscalls_links/include_zephyr_cleanup zephyr/misc/generated/syscalls_links/include_zephyr_console zephyr/misc/generated/syscalls_links/include_zephyr_cpu_freq zephyr/misc/generated/syscalls_links/include_zephyr_crypto zephyr/misc/generated/syscalls_links/include_zephyr_dap zephyr/misc/generated/syscalls_links/include_zephyr_data zephyr/misc/generated/syscalls_links/include_zephyr_debug zephyr/misc/generated/syscalls_links/include_zephyr_devicetree zephyr/misc/generated/syscalls_links/include_zephyr_dfu zephyr/misc/generated/syscalls_links/include_zephyr_display zephyr/misc/generated/syscalls_links/include_zephyr_drivers zephyr/misc/generated/syscalls_links/include_zephyr_dsp zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings zephyr/misc/generated/syscalls_links/include_zephyr_fs zephyr/misc/generated/syscalls_links/include_zephyr_gnss zephyr/misc/generated/syscalls_links/include_zephyr_input zephyr/misc/generated/syscalls_links/include_zephyr_instrumentation zephyr/misc/generated/syscalls_links/include_zephyr_internal zephyr/misc/generated/syscalls_links/include_zephyr_ipc zephyr/misc/generated/syscalls_links/include_zephyr_kernel zephyr/misc/generated/syscalls_links/include_zephyr_kvss zephyr/misc/generated/syscalls_links/include_zephyr_linker zephyr/misc/generated/syscalls_links/include_zephyr_llext zephyr/misc/generated/syscalls_links/include_zephyr_logging zephyr/misc/generated/syscalls_links/include_zephyr_lorawan zephyr/misc/generated/syscalls_links/include_zephyr_math zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_misc zephyr/misc/generated/syscalls_links/include_zephyr_modbus zephyr/misc/generated/syscalls_links/include_zephyr_modem zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap zephyr/misc/generated/syscalls_links/include_zephyr_net zephyr/misc/generated/syscalls_links/include_zephyr_platform zephyr/misc/generated/syscalls_links/include_zephyr_pm zephyr/misc/generated/syscalls_links/include_zephyr_pmci zephyr/misc/generated/syscalls_links/include_zephyr_portability zephyr/misc/generated/syscalls_links/include_zephyr_posix zephyr/misc/generated/syscalls_links/include_zephyr_psa zephyr/misc/generated/syscalls_links/include_zephyr_random zephyr/misc/generated/syscalls_links/include_zephyr_retention zephyr/misc/generated/syscalls_links/include_zephyr_rtio zephyr/misc/generated/syscalls_links/include_zephyr_sd zephyr/misc/generated/syscalls_links/include_zephyr_sensing zephyr/misc/generated/syscalls_links/include_zephyr_settings zephyr/misc/generated/syscalls_links/include_zephyr_shell zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc zephyr/misc/generated/syscalls_links/include_zephyr_stats zephyr/misc/generated/syscalls_links/include_zephyr_storage zephyr/misc/generated/syscalls_links/include_zephyr_sys zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt zephyr/misc/generated/syscalls_links/include_zephyr_timing zephyr/misc/generated/syscalls_links/include_zephyr_toolchain zephyr/misc/generated/syscalls_links/include_zephyr_tracing zephyr/misc/generated/syscalls_links/include_zephyr_usb zephyr/misc/generated/syscalls_links/include_zephyr_usb_c zephyr/misc/generated/syscalls_links/include_zephyr_video zephyr/misc/generated/syscalls_links/include_zephyr_xen zephyr/misc/generated/syscalls_links/include_zephyr_zbus zephyr/misc/generated/syscalls_links/include_zephyr_zvfs zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 zephyr/misc/generated/syscalls_links/include_zephyr_arch_common zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips zephyr/misc/generated/syscalls_links/include_zephyr_arch_openrisc zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv zephyr/misc/generated/syscalls_links/include_zephyr_arch_rx zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_biometrics zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can zephyr/misc/generated/syscalls_links/include_zephyr_drivers_charger zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dac zephyr/misc/generated/syscalls_links/include_zephyr_drivers_debug zephyr/misc/generated/syscalls_links/include_zephyr_drivers_disk zephyr/misc/generated/syscalls_links/include_zephyr_drivers_display zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma zephyr/misc/generated/syscalls_links/include_zephyr_drivers_edac zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip zephyr/misc/generated/syscalls_links/include_zephyr_drivers_memc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power zephyr/misc/generated/syscalls_links/include_zephyr_drivers_psi5 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator zephyr/misc/generated/syscalls_links/include_zephyr_drivers_reset zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sent zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_video zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_qemu_fwcfg zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_tisci zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi_nxp zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy_intel zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_flexram zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_max2221x zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_rtxxx_dsp_ctrl zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_dtc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_external_interrupt zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn_renesas_elc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_comparator zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_qspi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sent zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_wuc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_xspi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma_silabs zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas_ra-elc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs zephyr/misc/generated/syscalls_links/include_zephyr_gnss_rtk zephyr/misc/generated/syscalls_links/include_zephyr_ipc_backends zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr zephyr/misc/generated/syscalls_links/include_zephyr_modem_at zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend zephyr/misc/generated/syscalls_links/include_zephyr_modem_ubx zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if zephyr/misc/generated/syscalls_links/include_zephyr_net_http zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus zephyr/misc/generated/syscalls_links/include_zephyr_pmci_mctp zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa zephyr/misc/generated/syscalls_links/include_zephyr_posix_net zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal zephyr/misc/generated/syscalls_links/include_zephyr_toolchain_iar zephyr/misc/generated/syscalls_links/include_zephyr_usb_class zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 zephyr/misc/generated/syscalls_links/include_zephyr_xen_public zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io zephyr/misc/generated/syscalls_links/include_zephyr_zbus_proxy_agent + + +############################################# +# Utility command for kobj_types_h_target + +build zephyr/kobj_types_h_target: phony zephyr/CMakeFiles/kobj_types_h_target zephyr/include/generated/zephyr/kobj-types-enum.h zephyr/include/generated/zephyr/otype-to-str.h zephyr/include/generated/zephyr/otype-to-size.h zephyr/misc/generated/syscalls.json zephyr/misc/generated/struct_tags.json zephyr/misc/generated/syscalls_subdirs.trigger zephyr/misc/generated/syscalls_links/include zephyr/misc/generated/syscalls_links/include_zephyr zephyr/misc/generated/syscalls_links/include_zephyr_acpi zephyr/misc/generated/syscalls_links/include_zephyr_app_memory zephyr/misc/generated/syscalls_links/include_zephyr_arch zephyr/misc/generated/syscalls_links/include_zephyr_audio zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth zephyr/misc/generated/syscalls_links/include_zephyr_canbus zephyr/misc/generated/syscalls_links/include_zephyr_cleanup zephyr/misc/generated/syscalls_links/include_zephyr_console zephyr/misc/generated/syscalls_links/include_zephyr_cpu_freq zephyr/misc/generated/syscalls_links/include_zephyr_crypto zephyr/misc/generated/syscalls_links/include_zephyr_dap zephyr/misc/generated/syscalls_links/include_zephyr_data zephyr/misc/generated/syscalls_links/include_zephyr_debug zephyr/misc/generated/syscalls_links/include_zephyr_devicetree zephyr/misc/generated/syscalls_links/include_zephyr_dfu zephyr/misc/generated/syscalls_links/include_zephyr_display zephyr/misc/generated/syscalls_links/include_zephyr_drivers zephyr/misc/generated/syscalls_links/include_zephyr_dsp zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings zephyr/misc/generated/syscalls_links/include_zephyr_fs zephyr/misc/generated/syscalls_links/include_zephyr_gnss zephyr/misc/generated/syscalls_links/include_zephyr_input zephyr/misc/generated/syscalls_links/include_zephyr_instrumentation zephyr/misc/generated/syscalls_links/include_zephyr_internal zephyr/misc/generated/syscalls_links/include_zephyr_ipc zephyr/misc/generated/syscalls_links/include_zephyr_kernel zephyr/misc/generated/syscalls_links/include_zephyr_kvss zephyr/misc/generated/syscalls_links/include_zephyr_linker zephyr/misc/generated/syscalls_links/include_zephyr_llext zephyr/misc/generated/syscalls_links/include_zephyr_logging zephyr/misc/generated/syscalls_links/include_zephyr_lorawan zephyr/misc/generated/syscalls_links/include_zephyr_math zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_misc zephyr/misc/generated/syscalls_links/include_zephyr_modbus zephyr/misc/generated/syscalls_links/include_zephyr_modem zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap zephyr/misc/generated/syscalls_links/include_zephyr_net zephyr/misc/generated/syscalls_links/include_zephyr_platform zephyr/misc/generated/syscalls_links/include_zephyr_pm zephyr/misc/generated/syscalls_links/include_zephyr_pmci zephyr/misc/generated/syscalls_links/include_zephyr_portability zephyr/misc/generated/syscalls_links/include_zephyr_posix zephyr/misc/generated/syscalls_links/include_zephyr_psa zephyr/misc/generated/syscalls_links/include_zephyr_random zephyr/misc/generated/syscalls_links/include_zephyr_retention zephyr/misc/generated/syscalls_links/include_zephyr_rtio zephyr/misc/generated/syscalls_links/include_zephyr_sd zephyr/misc/generated/syscalls_links/include_zephyr_sensing zephyr/misc/generated/syscalls_links/include_zephyr_settings zephyr/misc/generated/syscalls_links/include_zephyr_shell zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc zephyr/misc/generated/syscalls_links/include_zephyr_stats zephyr/misc/generated/syscalls_links/include_zephyr_storage zephyr/misc/generated/syscalls_links/include_zephyr_sys zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt zephyr/misc/generated/syscalls_links/include_zephyr_timing zephyr/misc/generated/syscalls_links/include_zephyr_toolchain zephyr/misc/generated/syscalls_links/include_zephyr_tracing zephyr/misc/generated/syscalls_links/include_zephyr_usb zephyr/misc/generated/syscalls_links/include_zephyr_usb_c zephyr/misc/generated/syscalls_links/include_zephyr_video zephyr/misc/generated/syscalls_links/include_zephyr_xen zephyr/misc/generated/syscalls_links/include_zephyr_zbus zephyr/misc/generated/syscalls_links/include_zephyr_zvfs zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 zephyr/misc/generated/syscalls_links/include_zephyr_arch_common zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips zephyr/misc/generated/syscalls_links/include_zephyr_arch_openrisc zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv zephyr/misc/generated/syscalls_links/include_zephyr_arch_rx zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_biometrics zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can zephyr/misc/generated/syscalls_links/include_zephyr_drivers_charger zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dac zephyr/misc/generated/syscalls_links/include_zephyr_drivers_debug zephyr/misc/generated/syscalls_links/include_zephyr_drivers_disk zephyr/misc/generated/syscalls_links/include_zephyr_drivers_display zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma zephyr/misc/generated/syscalls_links/include_zephyr_drivers_edac zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip zephyr/misc/generated/syscalls_links/include_zephyr_drivers_memc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power zephyr/misc/generated/syscalls_links/include_zephyr_drivers_psi5 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator zephyr/misc/generated/syscalls_links/include_zephyr_drivers_reset zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sent zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_video zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_qemu_fwcfg zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_tisci zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi_nxp zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy_intel zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_flexram zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_max2221x zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_rtxxx_dsp_ctrl zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_dtc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_external_interrupt zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn_renesas_elc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_comparator zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_qspi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sent zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_wuc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_xspi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma_silabs zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas_ra-elc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs zephyr/misc/generated/syscalls_links/include_zephyr_gnss_rtk zephyr/misc/generated/syscalls_links/include_zephyr_ipc_backends zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr zephyr/misc/generated/syscalls_links/include_zephyr_modem_at zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend zephyr/misc/generated/syscalls_links/include_zephyr_modem_ubx zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if zephyr/misc/generated/syscalls_links/include_zephyr_net_http zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus zephyr/misc/generated/syscalls_links/include_zephyr_pmci_mctp zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa zephyr/misc/generated/syscalls_links/include_zephyr_posix_net zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal zephyr/misc/generated/syscalls_links/include_zephyr_toolchain_iar zephyr/misc/generated/syscalls_links/include_zephyr_usb_class zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 zephyr/misc/generated/syscalls_links/include_zephyr_xen_public zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io zephyr/misc/generated/syscalls_links/include_zephyr_zbus_proxy_agent + + +############################################# +# Utility command for device_api_ld_target + +build zephyr/device_api_ld_target: phony zephyr/CMakeFiles/device_api_ld_target zephyr/include/generated/device-api-sections.ld zephyr/include/generated/device-api-sections.cmake zephyr/misc/generated/syscalls.json zephyr/misc/generated/struct_tags.json zephyr/misc/generated/syscalls_subdirs.trigger zephyr/misc/generated/syscalls_links/include zephyr/misc/generated/syscalls_links/include_zephyr zephyr/misc/generated/syscalls_links/include_zephyr_acpi zephyr/misc/generated/syscalls_links/include_zephyr_app_memory zephyr/misc/generated/syscalls_links/include_zephyr_arch zephyr/misc/generated/syscalls_links/include_zephyr_audio zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth zephyr/misc/generated/syscalls_links/include_zephyr_canbus zephyr/misc/generated/syscalls_links/include_zephyr_cleanup zephyr/misc/generated/syscalls_links/include_zephyr_console zephyr/misc/generated/syscalls_links/include_zephyr_cpu_freq zephyr/misc/generated/syscalls_links/include_zephyr_crypto zephyr/misc/generated/syscalls_links/include_zephyr_dap zephyr/misc/generated/syscalls_links/include_zephyr_data zephyr/misc/generated/syscalls_links/include_zephyr_debug zephyr/misc/generated/syscalls_links/include_zephyr_devicetree zephyr/misc/generated/syscalls_links/include_zephyr_dfu zephyr/misc/generated/syscalls_links/include_zephyr_display zephyr/misc/generated/syscalls_links/include_zephyr_drivers zephyr/misc/generated/syscalls_links/include_zephyr_dsp zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings zephyr/misc/generated/syscalls_links/include_zephyr_fs zephyr/misc/generated/syscalls_links/include_zephyr_gnss zephyr/misc/generated/syscalls_links/include_zephyr_input zephyr/misc/generated/syscalls_links/include_zephyr_instrumentation zephyr/misc/generated/syscalls_links/include_zephyr_internal zephyr/misc/generated/syscalls_links/include_zephyr_ipc zephyr/misc/generated/syscalls_links/include_zephyr_kernel zephyr/misc/generated/syscalls_links/include_zephyr_kvss zephyr/misc/generated/syscalls_links/include_zephyr_linker zephyr/misc/generated/syscalls_links/include_zephyr_llext zephyr/misc/generated/syscalls_links/include_zephyr_logging zephyr/misc/generated/syscalls_links/include_zephyr_lorawan zephyr/misc/generated/syscalls_links/include_zephyr_math zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_misc zephyr/misc/generated/syscalls_links/include_zephyr_modbus zephyr/misc/generated/syscalls_links/include_zephyr_modem zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap zephyr/misc/generated/syscalls_links/include_zephyr_net zephyr/misc/generated/syscalls_links/include_zephyr_platform zephyr/misc/generated/syscalls_links/include_zephyr_pm zephyr/misc/generated/syscalls_links/include_zephyr_pmci zephyr/misc/generated/syscalls_links/include_zephyr_portability zephyr/misc/generated/syscalls_links/include_zephyr_posix zephyr/misc/generated/syscalls_links/include_zephyr_psa zephyr/misc/generated/syscalls_links/include_zephyr_random zephyr/misc/generated/syscalls_links/include_zephyr_retention zephyr/misc/generated/syscalls_links/include_zephyr_rtio zephyr/misc/generated/syscalls_links/include_zephyr_sd zephyr/misc/generated/syscalls_links/include_zephyr_sensing zephyr/misc/generated/syscalls_links/include_zephyr_settings zephyr/misc/generated/syscalls_links/include_zephyr_shell zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc zephyr/misc/generated/syscalls_links/include_zephyr_stats zephyr/misc/generated/syscalls_links/include_zephyr_storage zephyr/misc/generated/syscalls_links/include_zephyr_sys zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt zephyr/misc/generated/syscalls_links/include_zephyr_timing zephyr/misc/generated/syscalls_links/include_zephyr_toolchain zephyr/misc/generated/syscalls_links/include_zephyr_tracing zephyr/misc/generated/syscalls_links/include_zephyr_usb zephyr/misc/generated/syscalls_links/include_zephyr_usb_c zephyr/misc/generated/syscalls_links/include_zephyr_video zephyr/misc/generated/syscalls_links/include_zephyr_xen zephyr/misc/generated/syscalls_links/include_zephyr_zbus zephyr/misc/generated/syscalls_links/include_zephyr_zvfs zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 zephyr/misc/generated/syscalls_links/include_zephyr_arch_common zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips zephyr/misc/generated/syscalls_links/include_zephyr_arch_openrisc zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv zephyr/misc/generated/syscalls_links/include_zephyr_arch_rx zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_biometrics zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can zephyr/misc/generated/syscalls_links/include_zephyr_drivers_charger zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dac zephyr/misc/generated/syscalls_links/include_zephyr_drivers_debug zephyr/misc/generated/syscalls_links/include_zephyr_drivers_disk zephyr/misc/generated/syscalls_links/include_zephyr_drivers_display zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma zephyr/misc/generated/syscalls_links/include_zephyr_drivers_edac zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip zephyr/misc/generated/syscalls_links/include_zephyr_drivers_memc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power zephyr/misc/generated/syscalls_links/include_zephyr_drivers_psi5 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator zephyr/misc/generated/syscalls_links/include_zephyr_drivers_reset zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sent zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_video zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_qemu_fwcfg zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_tisci zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi_nxp zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy_intel zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_flexram zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_max2221x zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_rtxxx_dsp_ctrl zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_dtc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_external_interrupt zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn_renesas_elc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_comparator zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_qspi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sent zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_wuc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_xspi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma_silabs zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas_ra-elc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs zephyr/misc/generated/syscalls_links/include_zephyr_gnss_rtk zephyr/misc/generated/syscalls_links/include_zephyr_ipc_backends zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr zephyr/misc/generated/syscalls_links/include_zephyr_modem_at zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend zephyr/misc/generated/syscalls_links/include_zephyr_modem_ubx zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if zephyr/misc/generated/syscalls_links/include_zephyr_net_http zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus zephyr/misc/generated/syscalls_links/include_zephyr_pmci_mctp zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa zephyr/misc/generated/syscalls_links/include_zephyr_posix_net zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal zephyr/misc/generated/syscalls_links/include_zephyr_toolchain_iar zephyr/misc/generated/syscalls_links/include_zephyr_usb_class zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 zephyr/misc/generated/syscalls_links/include_zephyr_xen_public zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io zephyr/misc/generated/syscalls_links/include_zephyr_zbus_proxy_agent + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target offsets + + +############################################# +# Order-only phony target for offsets + +build cmake_object_order_depends_target_offsets: phony || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/syscall_list_h_target + +build zephyr/CMakeFiles/offsets.dir/arch/xtensa/core/offsets/offsets.c.obj: C_COMPILER__offsets_unscanned_ /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/offsets/offsets.c || cmake_object_order_depends_target_offsets + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/offsets.dir/arch/xtensa/core/offsets/offsets.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-lto + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/offsets.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/offsets.dir/arch/xtensa/core/offsets + TARGET_COMPILE_PDB = zephyr/CMakeFiles/offsets.dir/ + TARGET_PDB = "" + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/offsets.dir + + + +############################################# +# Object library offsets + +build zephyr/offsets: phony zephyr/CMakeFiles/offsets.dir/arch/xtensa/core/offsets/offsets.c.obj + + +############################################# +# Utility command for offsets_h + +build zephyr/offsets_h: phony zephyr/CMakeFiles/offsets_h zephyr/include/generated/zephyr/offsets.h zephyr/offsets + + +############################################# +# Utility command for linker_zephyr_prebuilt_script_target + +build zephyr/linker_zephyr_prebuilt_script_target: phony zephyr/CMakeFiles/linker_zephyr_prebuilt_script_target zephyr/linker_zephyr_pre0.cmd zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/version_h + +# ============================================================================= +# Object build statements for EXECUTABLE target zephyr_pre0 + + +############################################# +# Order-only phony target for zephyr_pre0 + +build cmake_object_order_depends_target_zephyr_pre0: phony || cmake_object_order_depends_target_app cmake_object_order_depends_target_arch__common cmake_object_order_depends_target_arch__xtensa__core cmake_object_order_depends_target_drivers__clock_control cmake_object_order_depends_target_drivers__console cmake_object_order_depends_target_drivers__gpio cmake_object_order_depends_target_drivers__interrupt_controller cmake_object_order_depends_target_drivers__pinctrl cmake_object_order_depends_target_drivers__serial cmake_object_order_depends_target_drivers__spi cmake_object_order_depends_target_drivers__timer cmake_object_order_depends_target_isr_tables cmake_object_order_depends_target_kernel cmake_object_order_depends_target_lib__libc__common cmake_object_order_depends_target_lib__libc__picolibc cmake_object_order_depends_target_lib__posix__c_lib_ext cmake_object_order_depends_target_loramac-node cmake_object_order_depends_target_offsets cmake_object_order_depends_target_zephyr zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/linker_zephyr_prebuilt_script_target zephyr/syscall_list_h_target + +build zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj: C_COMPILER__zephyr_pre0_unscanned_ /Users/wijnand/zephyrproject/zephyr/misc/empty_file.c || cmake_object_order_depends_target_zephyr_pre0 + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr_pre0.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr_pre0.dir/misc + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr_pre0.dir/ + TARGET_PDB = zephyr/zephyr_pre0.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr_pre0.dir + + +# ============================================================================= +# Link build statements for EXECUTABLE target zephyr_pre0 + + +############################################# +# Link the executable zephyr/zephyr_pre0.elf + +build zephyr/zephyr_pre0.elf zephyr/zephyr_pre0.map | ${cmake_ninja_workdir}zephyr/zephyr_pre0.map: C_EXECUTABLE_LINKER__zephyr_pre0_ zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj | zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj zephyr/linker_zephyr_pre0.cmd app/libapp.a zephyr/libzephyr.a zephyr/arch/common/libarch__common.a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/lora/loramac-node/libloramac-node.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/spi/libdrivers__spi.a zephyr/drivers/timer/libdrivers__timer.a zephyr/kernel/libkernel.a zephyr/arch/common/libisr_tables.a zephyr/linker_zephyr_pre0.cmd || app/libapp.a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/lora/loramac-node/libloramac-node.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/spi/libdrivers__spi.a zephyr/drivers/timer/libdrivers__timer.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/syscall_list_h_target + LINK_FLAGS = -gdwarf-4 -Os + LINK_LIBRARIES = zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj -T zephyr/linker_zephyr_pre0.cmd -Wl,-Map,/Volumes/External/Work/radio/loramodem/build/zephyr/zephyr_pre0.map -Wl,--whole-archive app/libapp.a zephyr/libzephyr.a zephyr/arch/common/libarch__common.a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/lora/loramac-node/libloramac-node.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/spi/libdrivers__spi.a zephyr/drivers/timer/libdrivers__timer.a -Wl,--no-whole-archive zephyr/kernel/libkernel.a -L/Volumes/External/Work/radio/loramodem/build/zephyr zephyr/arch/common/libisr_tables.a -fuse-ld=bfd -Wl,--gc-sections -Wl,--build-id=none -Wl,--sort-common=descending -Wl,--sort-section=alignment -Wl,-u,_OffsetAbsSyms -Wl,-u,_ConfigAbsSyms -nostdlib -static -znoexecstack -Wl,-X -Wl,-N -Wl,--orphan-handling=warn -Wl,-no-pie -Wl,--undefined=_sw_isr_table -Wl,--undefined=_irq_vector_table -specs=picolibc.specs -DPICOLIBC_LONG_LONG_PRINTF_SCANF -lgcc -T/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/linker/esp32s3.rom.alias.ld -T/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/ld/esp32s3.rom.ld -T/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/ld/esp32s3.rom.api.ld -T/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/ld/esp32s3.rom.libgcc.ld -T/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/ld/esp32s3.rom.newlib.ld -T/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/ld/esp32s3.rom.version.ld -T/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/ld/esp32s3.rom.libc.ld -T/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld/esp32s3.peripherals.ld -Wl,--wrap=longjmp + OBJECT_DIR = zephyr/CMakeFiles/zephyr_pre0.dir + POST_BUILD = cd /Volumes/External/Work/radio/loramodem/build/zephyr && /opt/homebrew/bin/cmake -E true + PRE_LINK = : + RESTAT = 1 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr_pre0.dir/ + TARGET_FILE = zephyr/zephyr_pre0.elf + TARGET_PDB = zephyr/zephyr_pre0.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr_pre0.dir + + +############################################# +# Utility command for linker_zephyr_final_script_target + +build zephyr/linker_zephyr_final_script_target: phony zephyr/CMakeFiles/linker_zephyr_final_script_target zephyr/linker.cmd zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/version_h zephyr/zephyr_pre0.elf + +# ============================================================================= +# Object build statements for EXECUTABLE target zephyr_final + + +############################################# +# Order-only phony target for zephyr_final + +build cmake_object_order_depends_target_zephyr_final: phony || cmake_object_order_depends_target_app cmake_object_order_depends_target_arch__common cmake_object_order_depends_target_arch__xtensa__core cmake_object_order_depends_target_drivers__clock_control cmake_object_order_depends_target_drivers__console cmake_object_order_depends_target_drivers__gpio cmake_object_order_depends_target_drivers__interrupt_controller cmake_object_order_depends_target_drivers__pinctrl cmake_object_order_depends_target_drivers__serial cmake_object_order_depends_target_drivers__spi cmake_object_order_depends_target_drivers__timer cmake_object_order_depends_target_isr_tables cmake_object_order_depends_target_kernel cmake_object_order_depends_target_lib__libc__common cmake_object_order_depends_target_lib__libc__picolibc cmake_object_order_depends_target_lib__posix__c_lib_ext cmake_object_order_depends_target_loramac-node cmake_object_order_depends_target_offsets cmake_object_order_depends_target_zephyr zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/isr_tables.c zephyr/isr_tables_swi.ld zephyr/isr_tables_vt.ld zephyr/kobj_types_h_target zephyr/linker_zephyr_final_script_target zephyr/syscall_list_h_target zephyr/zephyr_pre0.elf + +build zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj: C_COMPILER__zephyr_final_unscanned_ /Users/wijnand/zephyrproject/zephyr/misc/empty_file.c || cmake_object_order_depends_target_zephyr_final + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr_final.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr_final.dir/misc + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr_final.dir/ + TARGET_PDB = zephyr/zephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr_final.dir + +build zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj: C_COMPILER__zephyr_final_unscanned_ /Volumes/External/Work/radio/loramodem/build/zephyr/isr_tables.c || cmake_object_order_depends_target_zephyr_final + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj.d + FLAGS = -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/CMakeFiles/zephyr_final.dir + OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr_final.dir + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr_final.dir/ + TARGET_PDB = zephyr/zephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr_final.dir + + +# ============================================================================= +# Link build statements for EXECUTABLE target zephyr_final + + +############################################# +# Link the executable zephyr/zephyr.elf + +build zephyr/zephyr.elf zephyr/zephyr.map zephyr/zephyr.bin zephyr/zephyr.stat | ${cmake_ninja_workdir}zephyr/zephyr.map ${cmake_ninja_workdir}zephyr/zephyr.bin ${cmake_ninja_workdir}zephyr/zephyr.stat: C_EXECUTABLE_LINKER__zephyr_final_ zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj | zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj zephyr/linker.cmd app/libapp.a zephyr/libzephyr.a zephyr/arch/common/libarch__common.a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/lora/loramac-node/libloramac-node.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/spi/libdrivers__spi.a zephyr/drivers/timer/libdrivers__timer.a zephyr/kernel/libkernel.a zephyr/arch/common/libisr_tables.a zephyr/linker.cmd || app/libapp.a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/lora/loramac-node/libloramac-node.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/spi/libdrivers__spi.a zephyr/drivers/timer/libdrivers__timer.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/offsets zephyr/syscall_list_h_target zephyr/zephyr_pre0.elf + LINK_FLAGS = -gdwarf-4 -Os + LINK_LIBRARIES = zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj -T zephyr/linker.cmd -Wl,-Map,/Volumes/External/Work/radio/loramodem/build/zephyr/zephyr_final.map -Wl,--whole-archive app/libapp.a zephyr/libzephyr.a zephyr/arch/common/libarch__common.a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/lora/loramac-node/libloramac-node.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/spi/libdrivers__spi.a zephyr/drivers/timer/libdrivers__timer.a -Wl,--no-whole-archive zephyr/kernel/libkernel.a -L/Volumes/External/Work/radio/loramodem/build/zephyr -Wl,--print-memory-usage zephyr/arch/common/libisr_tables.a -fuse-ld=bfd -Wl,--gc-sections -Wl,--build-id=none -Wl,--sort-common=descending -Wl,--sort-section=alignment -Wl,-u,_OffsetAbsSyms -Wl,-u,_ConfigAbsSyms -nostdlib -static -znoexecstack -Wl,-X -Wl,-N -Wl,--orphan-handling=warn -Wl,-no-pie -Wl,--undefined=_sw_isr_table -Wl,--undefined=_irq_vector_table -specs=picolibc.specs -DPICOLIBC_LONG_LONG_PRINTF_SCANF -lgcc -T/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/linker/esp32s3.rom.alias.ld -T/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/ld/esp32s3.rom.ld -T/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/ld/esp32s3.rom.api.ld -T/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/ld/esp32s3.rom.libgcc.ld -T/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/ld/esp32s3.rom.newlib.ld -T/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/ld/esp32s3.rom.version.ld -T/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/ld/esp32s3.rom.libc.ld -T/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld/esp32s3.peripherals.ld -Wl,--wrap=longjmp + OBJECT_DIR = zephyr/CMakeFiles/zephyr_final.dir + POST_BUILD = cd /Volumes/External/Work/radio/loramodem/build/zephyr && /opt/homebrew/bin/cmake -E echo Generating\ files\ from\ /Volumes/External/Work/radio/loramodem/build/zephyr/zephyr.elf\ for\ board:\ xiao_esp32s3/esp32s3/procpu && /opt/homebrew/bin/cmake -E copy zephyr_final.map zephyr.map && /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objcopy --gap-fill 0xFF --output-target=binary --remove-section=.comment --remove-section=COMMON zephyr.elf zephyr.bin && /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-readelf -e zephyr.elf > zephyr.stat && /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/scripts/build/check_init_priorities.py --elf-file=/Volumes/External/Work/radio/loramodem/build/zephyr/zephyr.elf && esptool --chip esp32s3 elf2image --ram-only-header --flash-mode dio --flash-freq 80m --flash-size 8MB -o /Volumes/External/Work/radio/loramodem/build/zephyr/zephyr.bin /Volumes/External/Work/radio/loramodem/build/zephyr/zephyr.elf + PRE_LINK = : + RESTAT = 1 + TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr_final.dir/ + TARGET_FILE = zephyr/zephyr.elf + TARGET_PDB = zephyr/zephyr.pdb + TARGET_SUPPORT_DIR = zephyr/CMakeFiles/zephyr_final.dir + + +############################################# +# Utility command for initlevels + +build zephyr/initlevels: phony zephyr/CMakeFiles/initlevels zephyr/zephyr.elf + + +############################################# +# Utility command for run + +build zephyr/run: phony zephyr/CMakeFiles/run + + +############################################# +# Utility command for build_info_yaml_saved + +build zephyr/build_info_yaml_saved: phony zephyr/CMakeFiles/build_info_yaml_saved + + +############################################# +# Utility command for edit_cache + +build zephyr/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/edit_cache: phony zephyr/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/rebuild_cache: phony zephyr/CMakeFiles/rebuild_cache.util + + +############################################# +# Phony custom command for zephyr/CMakeFiles/version_h + +build zephyr/CMakeFiles/version_h | ${cmake_ninja_workdir}zephyr/CMakeFiles/version_h: phony zephyr/include/generated/zephyr/version.h + + +############################################# +# Custom command for zephyr/include/generated/zephyr/version.h + +build zephyr/include/generated/zephyr/version.h | ${cmake_ninja_workdir}zephyr/include/generated/zephyr/version.h: CUSTOM_COMMAND /Users/wijnand/zephyrproject/zephyr/VERSION /Users/wijnand/zephyrproject/zephyr/.git/index + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr && /opt/homebrew/bin/cmake -DZEPHYR_BASE=/Users/wijnand/zephyrproject/zephyr -DOUT_FILE=/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/version.h -DVERSION_TYPE=KERNEL -DVERSION_FILE=/Users/wijnand/zephyrproject/zephyr/VERSION -DKERNEL_VERSION_CUSTOMIZATION="" -P /Users/wijnand/zephyrproject/zephyr/cmake/gen_version_h.cmake + DESC = Generating include/generated/zephyr/version.h + restat = 1 + + +############################################# +# Phony custom command for zephyr/CMakeFiles/syscall_list_h_target + +build zephyr/CMakeFiles/syscall_list_h_target | ${cmake_ninja_workdir}zephyr/CMakeFiles/syscall_list_h_target: phony zephyr/include/generated/zephyr/syscall_list.h + + +############################################# +# Custom command for zephyr/include/generated/zephyr/syscall_dispatch.c + +build zephyr/include/generated/zephyr/syscall_dispatch.c zephyr/include/generated/zephyr/syscall_exports_llext.c zephyr/syscall_weakdefs_llext.c zephyr/include/generated/zephyr/syscall_list.h | ${cmake_ninja_workdir}zephyr/include/generated/zephyr/syscall_dispatch.c ${cmake_ninja_workdir}zephyr/include/generated/zephyr/syscall_exports_llext.c ${cmake_ninja_workdir}zephyr/syscall_weakdefs_llext.c ${cmake_ninja_workdir}zephyr/include/generated/zephyr/syscall_list.h: CUSTOM_COMMAND zephyr/misc/generated/syscalls.json + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr && /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/scripts/build/gen_syscalls.py --json-file /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls.json --base-output include/generated/zephyr/syscalls --syscall-dispatch include/generated/zephyr/syscall_dispatch.c --syscall-exports-llext include/generated/zephyr/syscall_exports_llext.c --syscall-weakdefs-llext syscall_weakdefs_llext.c --syscall-list /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/syscall_list.h --split-type k_timeout_t --split-type k_ticks_t && /opt/homebrew/bin/cmake -E copy /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/syscall_list.h /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/syscall_list.h + DESC = Generating include/generated/zephyr/syscall_dispatch.c, include/generated/zephyr/syscall_exports_llext.c, syscall_weakdefs_llext.c, include/generated/zephyr/syscall_list.h + restat = 1 + + +############################################# +# Custom command for zephyr/misc/generated/syscalls.json + +build zephyr/misc/generated/syscalls.json zephyr/misc/generated/struct_tags.json | ${cmake_ninja_workdir}zephyr/misc/generated/syscalls.json ${cmake_ninja_workdir}zephyr/misc/generated/struct_tags.json: CUSTOM_COMMAND zephyr/misc/generated/syscalls_subdirs.trigger /Users/wijnand/zephyrproject/zephyr/include/zephyr/acpi/acpi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/acpi/acpi_osal.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/app_memory/app_memdomain.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/app_memory/mem_domain.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/app_memory/partitions.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/arc_addr_types.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/arch.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/arch_inlines.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/asm-compat/asm-macro-32-bit-gnu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/asm-compat/asm-macro-32-bit-mwdt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/asm-compat/asm-macro-64-bit-gnu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/asm-compat/asm-macro-64-bit-mwdt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/asm-compat/assembler.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/cluster.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/sys-io-common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/syscall.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/thread.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/tool-compat.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/v2/arc_connect.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/v2/arcv2_irq_unit.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/v2/asm_inline.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/v2/asm_inline_gcc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/v2/aux_regs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/v2/dsp/arc_dsp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/v2/error.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/v2/exception.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/v2/irq.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/v2/misc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/v2/mpu/arc_core_mpu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/v2/mpu/arc_mpu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/v2/secureshield/arc_secure.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/v2/sys_io.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/v2/vpx/arc_vpx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arch_inlines.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arch_interface.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/arch.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/arch_inlines.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/arm-m-switch.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/asm_inline.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/asm_inline_gcc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/barrier.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/cfi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_a_r/armv7_v8_timer.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_a_r/cpu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_a_r/exception.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_a_r/lib_helpers.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_a_r/mpu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_a_r/sys_io.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_a_r/timer.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_a_r/tpidruro.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/cpu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/exception.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/fpu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/memory_map.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/nvic.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/scb.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/error.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/exception.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/gdbstub.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/irq.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/misc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/mmu/arm_mem.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/mmu/arm_mmu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/mpu/arm_mpu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/mpu/arm_mpu_mem_cfg.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/mpu/arm_mpu_v7m.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/mpu/arm_mpu_v8.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/mpu/nxp_mpu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/nmi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/structs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/syscall.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/thread.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/arch.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/arch_inlines.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/arm-smccc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/arm_mem.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/arm_mmu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/asm_inline.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/asm_inline_gcc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/barrier.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/cache.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/cfi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/cortex_r/arm_mpu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/cpu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/error.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/exception.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/hypercall.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/irq.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/lib_helpers.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/misc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/mm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/pac.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/structs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/sys_io.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/syscall.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/thread.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/thread_stack.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/timer.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/tpidrro_el0.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/cache.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/cfi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/common/addr_types.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/common/exc_handle.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/common/ffs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/common/init.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/common/pm_s2ram.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/common/semihost.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/common/sys_bitops.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/common/sys_io.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/common/xip.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/cpu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/exception.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/mips/arch.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/mips/arch_inlines.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/mips/exception.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/mips/thread.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/openrisc/arch.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/openrisc/arch_inlines.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/openrisc/exception.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/openrisc/irq.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/openrisc/syscall.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/openrisc/thread.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/posix/arch.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/posix/arch_inlines.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/posix/asm_inline.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/posix/asm_inline_gcc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/posix/exception.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/posix/posix_soc_if.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/posix/posix_trace.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/posix/thread.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/riscv/arch.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/riscv/arch_inlines.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/riscv/atomic.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/riscv/cfi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/riscv/csr.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/riscv/elf.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/riscv/error.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/riscv/exception.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/riscv/icsr.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/riscv/irq.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/riscv/pmp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/riscv/riscv-privileged/asm_inline.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/riscv/riscv-privileged/asm_inline_gcc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/riscv/structs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/riscv/sys_io.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/riscv/syscall.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/riscv/thread.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/rx/arch.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/rx/arch_inlines.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/rx/error.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/rx/exception.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/rx/misc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/rx/sw_nmi_table.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/rx/thread.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/sparc/arch.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/sparc/arch_inlines.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/sparc/exception.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/sparc/sparc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/sparc/thread.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/structs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/syscall.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/arch.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/arch_inlines.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/cet.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/cpuid.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/efi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/ia32/arch.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/ia32/asm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/ia32/cfi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/ia32/exception.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/ia32/gdbstub.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/ia32/segmentation.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/ia32/structs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/ia32/sys_io.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/ia32/syscall.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/ia32/thread.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/intel64/arch.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/intel64/cfi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/intel64/exception.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/intel64/syscall.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/intel64/thread.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/intel_vtd.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/legacy_bios.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/memmap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/mmustructs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/msr.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/multiboot.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/multiboot_info.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/thread_stack.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/x86_acpi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/x86_acpi_osal.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/xtensa/arch.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/xtensa/arch_inlines.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/xtensa/atomic_xtensa.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/xtensa/cache.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/xtensa/exception.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/xtensa/gdbstub.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/xtensa/irq.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/xtensa/mpu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/xtensa/structs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/xtensa/syscall.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/xtensa/thread.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/xtensa/thread_stack.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/xtensa/xtensa_mmu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/audio/codec.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/audio/dmic.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/audio/midi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bindesc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/addr.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/assigned_numbers.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/att.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio/aics.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio/audio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio/bap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio/bap_lc3_preset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio/cap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio/ccid.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio/ccp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio/csip.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio/gmap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio/gmap_lc3_preset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio/has.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio/lc3.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio/mcc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio/mcs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio/media_proxy.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio/micp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio/pacs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio/pbp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio/tbs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio/tmap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio/vcp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio/vocs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/bluetooth.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/buf.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/byteorder.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/classic/a2dp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/classic/a2dp_codec_sbc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/classic/avdtp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/classic/avrcp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/classic/avrcp_cover_art.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/classic/bip.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/classic/classic.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/classic/goep.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/classic/hfp_ag.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/classic/hfp_hf.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/classic/l2cap_br.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/classic/obex.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/classic/rfcomm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/classic/sdp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/conn.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/controller.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/crypto.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/cs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/direction.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/ead.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/gap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/gatt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/hci.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/hci_raw.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/hci_types.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/hci_vs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/iso.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/l2cap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/access.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/blob.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/blob_cli.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/blob_io_flash.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/blob_srv.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/brg_cfg.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/brg_cfg_cli.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/brg_cfg_srv.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/cdb.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/cfg.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/cfg_cli.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/cfg_srv.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/dfd.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/dfd_srv.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/dfu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/dfu_cli.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/dfu_metadata.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/dfu_srv.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/health_cli.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/health_faults.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/health_srv.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/heartbeat.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/keys.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/large_comp_data_cli.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/large_comp_data_srv.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/main.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/msg.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/od_priv_proxy_cli.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/od_priv_proxy_srv.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/op_agg_cli.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/op_agg_srv.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/priv_beacon_cli.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/priv_beacon_srv.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/proxy.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/rpr.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/rpr_cli.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/rpr_srv.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/sar_cfg.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/sar_cfg_cli.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/sar_cfg_srv.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/shell.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/sol_pdu_rpl_cli.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/sol_pdu_rpl_srv.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh/statistic.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/sbc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/services/ans.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/services/bas.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/services/cts.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/services/dis.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/services/ets.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/services/hrs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/services/ias.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/services/nus.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/services/nus/inst.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/services/ots.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/testing.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/uuid.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/cache.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/canbus/isotp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/cleanup.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/cleanup/kernel.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/console/console.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/console/tty.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/cpu_freq/cpu_freq.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/cpu_freq/policy.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/cpu_freq/pstate.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/crypto/cipher.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/crypto/crypto.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/crypto/hash.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dap/dap_link.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/data/cobs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/data/json.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/data/jwt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/data/navigation.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/debug/coredump.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/debug/coresight/cs_trace_defmt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/debug/cpu_load.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/debug/gcov.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/debug/gdbstub.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/debug/mipi_stp_decoder.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/debug/object_tracing.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/debug/sparse.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/debug/stack.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/debug/symtab.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/debug/thread_analyzer.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/device.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/can.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/clocks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/display.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/fixed-partitions.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/hwspinlock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/interrupt_controller.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/io-channels.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/map.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/mapped-partition.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/mbox.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/nvmem.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/ordinals.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/partitions.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/port-endpoint.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/pwms.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/spi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/wuc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dfu/flash_img.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dfu/mcuboot.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/display/cfb.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/display/mb_display.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/display/mipi_display.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/display/ssd16xx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/adc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/adc/adc_emul.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/adc/adc_npcx_threshold.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/adc/adc_npcx_v2t.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/adc/ads131m02.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/adc/ads1x4s0x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/adc/current_sense_amplifier.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/adc/current_sense_shunt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/adc/lmp90xxx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/adc/mcp356xr.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/adc/voltage_divider.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/auxdisplay.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/bbram.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/biometrics.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/biometrics/emul.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/bluetooth.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/bluetooth/hci_driver_bluenrg.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/cache.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/can.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/can/can_fake.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/can/can_mcan.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/can/can_sja1000.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/can/transceiver.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/cellular.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/charger.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/charger/npm10xx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/adi_max32_clock_control.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/ameba_clock_control.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/arm_clock_control.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/atmel_sam_pmc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/bee_clock_control.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/clock_agilex_ll.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/clock_control_adsp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/clock_control_ambiq.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/clock_control_bflb_common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/clock_control_ifx_cat1.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/clock_control_litex.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/clock_control_numaker.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/clock_control_rts5912.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/clock_control_silabs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/esp32_clock_control.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/gd32.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/lpc11u6x_clock_control.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/mchp_clock_control.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/mchp_clock_pic32cm_jh.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/mchp_clock_pic32cm_pl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/mchp_clock_pic32cz_ca.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/mchp_clock_sam_d5x_e5x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/mchp_sam_pmc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/mchp_xec_clock_control.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/mspm0_clock_control.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/nrf_clock_control.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/nxp_clock_control.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/nxp_clock_controller_sources.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/renesas_cpg_mssr.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/renesas_ra_cgc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/renesas_rx_cgc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/renesas_rz_cgc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/sf32lb.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/smartbond_clock_control.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/stm32_clock_control.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control/tisci_clock_control.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/comparator.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/comparator/fake_comp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/comparator/mcux_acmp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/comparator/nrf_comp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/comparator/nrf_lpcomp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/console/console.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/console/ipm_console.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/console/posix_arch_console.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/console/uart_console.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/console/uart_mcumgr.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/coredump.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/counter.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/crc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/dac.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/dac/dac161s997.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/dac/dac_emul.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/dai.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/debug/debug_nrf_etr.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/debug/stmesp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/disk.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/disk/sdmmc_stm32.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/display.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/display/ac057tc1.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/dma/dma_esp32.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/dma/dma_gd32.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/dma/dma_intel_lpss.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/dma/dma_mcux_lpc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/dma/dma_mcux_pxp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/dma/dma_mcux_smartdma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/dma/dma_npcx_gdma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/dma/dma_silabs_ldma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/dma/dma_smartbond.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/dma/dma_stm32.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/dma/sf32lb.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/edac.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/edac/edac_mcux_erm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/edac/edac_synopsys.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/eeprom.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/eeprom/eeprom_fake.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/emul.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/emul_bbram.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/emul_fuel_gauge.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/emul_sensor.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/emul_stub_device.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/entropy.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/espi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/espi_emul.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/espi_saf.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/ethernet/eth_adin2111.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/ethernet/eth_intel_plat.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/ethernet/eth_lan865x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/ethernet/eth_nxp_enet.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/ethernet/eth_nxp_enet_qos.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/ethernet/nxp_imx_netc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/firmware/qemu_fwcfg/qemu_fwcfg.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi/clk.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi/nxp/cpu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi/nxp/system.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi/pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi/power.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi/protocol.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi/shmem.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi/system.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi/transport.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi/util.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/firmware/tisci/tisci.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/flash.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/flash/andes_flash_xip_api_ex.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/flash/flash_simulator.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/flash/it51xxx_flash_api_ex.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/flash/mchp_flash.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/flash/mchp_nvmctrl_g1.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/flash/npcx_flash_api_ex.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/flash/nrf_qspi_nor.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/flash/ra_flash_api_extensions.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/flash/rts5912_flash_api_ex.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/flash/stm32_flash_api_extensions.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/fpga.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/fuel_gauge.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/gnss.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/gnss/gnss_emul.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/gnss/gnss_publish.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/gpio/gpio_ambiq.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/gpio/gpio_bl61x_wo.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/gpio/gpio_cmsdk_ahb.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/gpio/gpio_emul.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/gpio/gpio_intel.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/gpio/gpio_mcux_lpc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/gpio/gpio_nct38xx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/gpio/gpio_nrf.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/gpio/gpio_pcal64xxa.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/gpio/gpio_rts5912.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/gpio/gpio_sx1509b.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/gpio/gpio_utils.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/haptics.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/haptics/cs40l5x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/haptics/drv2605.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/hwinfo.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/hwspinlock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/i2c.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/i2c/i2c_nrfx_twim.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/i2c/rtio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/i2c/stm32.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/i2c/target/eeprom.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/i2c_emul.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/i2s.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/i3c.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/i3c/addresses.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/i3c/ccc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/i3c/devicetree.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/i3c/error_types.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/i3c/hdr_ddr.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/i3c/ibi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/i3c/rtio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/i3c/target_device.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/ieee802154/cc1200.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/dw_ace.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/gd32_exti.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/gic.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/gicv3_its.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/gpio_intc_stm32.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_esp32.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_exti_stm32.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_max32_rv32.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_mchp_aic_g1.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_mchp_eic_g1.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_mchp_xec_ecia.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_nxp_gint.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_nxp_siul2_eirq.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_renesas_rx_grp_int.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_rx_icu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_rz_ext_irq.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_rz_icu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_rz_tint.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_vim.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_wkpu_nxp_s32.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intc_xmc4xxx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/intel_vtd.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/ioapic.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/loapic.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/nxp_pint.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/riscv_aplic.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/riscv_clic.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/riscv_imsic.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/riscv_plic.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/sam0_eic.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/sysapic.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/wch_exti.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/wuc_ite_it51xxx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller/wuc_ite_it8xxx2.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/ipm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/led.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/led/is31fl3733.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/led/lp50xx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/led_strip.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/led_strip/tlc5971.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/loopback_disk.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/lora.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mbox.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mdio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/memc/memc_stm32.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mfd/ad559x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mfd/adp5585.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mfd/aw9523b.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mfd/axp192.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mfd/bd8lb600fs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mfd/ds3231.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mfd/max22017.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mfd/max2221x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mfd/max31790.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mfd/mc146818.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mfd/mfd_ite_it8801.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mfd/mfd_maxq10xx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mfd/nct38xx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mfd/npm10xx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mfd/npm13xx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mfd/npm2100.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mfd/nxp_lp_flexcomm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mfd/pca9422.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mfd/rv3032.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mfd/tle9104.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mic_privacy/intel/mic_privacy.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mipi_dbi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mipi_dsi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mipi_dsi/mipi_dsi_mcux_2l.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/devmux/devmux.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/flexram/nxp_flexram.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/ft8xx/ft8xx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/ft8xx/ft8xx_common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/ft8xx/ft8xx_copro.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/ft8xx/ft8xx_dl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/ft8xx/ft8xx_memory.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/ft8xx/ft8xx_reference_api.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/grove_lcd/grove_lcd.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/interconn/renesas_elc/renesas_elc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/max2221x/max2221x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/nxp_flexio/nxp_flexio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/nxp_rtxxx_dsp_ctrl/nxp_rtxxx_dsp_ctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/pio_rpi_pico/pio_rpi_pico.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/renesas_ra_external_interrupt/renesas_ra_external_interrupt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/renesas_rx_dtc/renesas_rx_dtc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/renesas_rx_external_interrupt/renesas_rx_external_interrupt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/stm32_wkup_pins/stm32_wkup_pins.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/timeaware_gpio/timeaware_gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mm/mm_drv_bank.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mm/mm_drv_intel_adsp_mtl_tlb.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mm/rat.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mm/system_mm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/modem/hl7800.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/modem/hl78xx_apis.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/modem/modem_cellular.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/modem/simcom-sim7080.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/modem/st87mxx_app_services.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mspi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mspi/devicetree.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mspi/mspi_dw.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mspi_emul.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/opamp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/otp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pcie/cap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pcie/controller.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pcie/endpoint/pcie_ep.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pcie/msi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pcie/pcie.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pcie/ptm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pcie/vc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/peci.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pinctrl/pinctrl_esp32_common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pinctrl/pinctrl_nxp_port_common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pinctrl/pinctrl_nxp_siul2_common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pinctrl/pinctrl_rcar_common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pinctrl/pinctrl_soc_bflb_common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pinctrl/pinctrl_soc_sam_common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pm_cpu_ops.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pm_cpu_ops/psci.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/power/atmel_sam_supc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/ps2.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/psi5/psi5.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/ptp_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pwm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pwm/max2221x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pwm/max31790.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pwm/pwm_fake.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pwm/pwm_utils.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/regulator.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/regulator/fake.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/regulator/pca9420.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/reset/mchp_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/reset/mchp_rstc_g1.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/retained_mem.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/retained_mem/nrf_retained_mem.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/rtc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/rtc/maxim_ds3231.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/rtc/mcp7940n.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/rtc/mcux_snvs_rtc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/rtc/rtc_fake.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/rtc/rtc_max31331.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sdhc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/adc_cmp_npcx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/adc_v2t_npcx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/adltc2990.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/adt7420.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/adxl355.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/afbr_s50.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/apds9960.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/battery.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/bd8lb600fs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/bmm350.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/bmp581_user.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/ccs811.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/ens160.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/explorir_m.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/f75303.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/fcx_mldx5.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/fdc2x1x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/grow_r502a.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/hx711.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/icm4268x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/icm42x70.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/ina2xx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/it8xxx2_vcmp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/lis2dh.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/lm95234.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/lsm6dsvxxx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/max17055.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/max30210.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/max31790.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/max31865.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/max32664c.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/mcp9600.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/mcux_acmp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/mcux_lpcmp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/mhz19b.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/mlx90394.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/mmc56x3.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/mtch9010.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/npm10xx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/npm13xx_charger.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/npm2100_vbat.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/paj7620.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/pat9136.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/pzem004t.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/qdec_mcux.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/qdec_nxp_tpm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/s3km1110.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/scd4x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/sgp40.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/sht4x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/tcs3400.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/tdk_apex.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/ti_hdc302x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/tle9104.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/tmag5273.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/tmp108.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/tmp11x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/tsl2540.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/tsl2591.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/veaa_x_3.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/veml6031.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/veml6046.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/veml60xx-common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/veml7700.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/vl53l0x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/w1_sensor.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/wsen_hids_2525020210002.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/wsen_pads_2511020213301.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/wsen_tids_2521020222501.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor/xbr818.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor_attribute_types.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor_data_types.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sent/sent.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/serial/uart_altera.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/serial/uart_async_rx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/serial/uart_async_to_irq.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/serial/uart_emul.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/serial/uart_ifx_cat1.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/serial/uart_intel_lw.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/serial/uart_ns16550.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sip_svc/sip_svc_agilex_mailbox.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sip_svc/sip_svc_agilex_smc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sip_svc/sip_svc_driver.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sip_svc/sip_svc_proto.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/smbus.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/spi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/spi/rtio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/spi_emul.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/stepper/stepper.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/stepper/stepper_ctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/stepper/stepper_drv84xx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/stepper/stepper_tmcm3216.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/stepper/stepper_trinamic.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/swdp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/syscon.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/tee.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/timer/arm_arch_timer.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/timer/ifx_tcpwm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/timer/nrf_grtc_timer.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/timer/nrf_rtc_timer.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/timer/nxp_os_timer.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/timer/system_timer.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/timer/system_timer_lpm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/uaol.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/uart.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/uart/cdc_acm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/uart/serial_test.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/uart/uart_bridge.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/uart/uart_internal.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/uart_emul.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/uart_pipe.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/usb/emul_bc12.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/usb/udc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/usb/uhc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/usb/usb_bc12.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/usb/usb_buf.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/usb/usb_dc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/usb_c/tcpci_priv.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/usb_c/usbc_pd.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/usb_c/usbc_ppc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/usb_c/usbc_tc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/usb_c/usbc_tcpc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/usb_c/usbc_vbus.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/video-controls.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/video.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/video/arducam_mega.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/video/stm32_dcmipp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/virtio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/virtio/virtio_config.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/virtio/virtqueue.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/virtualization/ivshmem.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/w1.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/watchdog.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/wifi/nrf_wifi/bus/qspi_if.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/wifi/nrf_wifi/bus/rpu_hw_if.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/wifi/nrf_wifi/off_raw_tx/off_raw_tx_api.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/wuc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dsp/basicmath.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dsp/basicmath_f16.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dsp/dsp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dsp/print_format.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dsp/types.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dsp/utils.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/acpi/acpi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/ad4130-adc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/ad4170-adc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/ad7124-adc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/adc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/ads1x4s0x_adc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/b91-adc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/gd32f3x0.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/infineon-sar.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/mchp_pic32cm_jh_adc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/mchp_pic32cx_sg_adc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/mchp_sam_d5x_e5x_adc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/mcp356xr-adc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/mcux-adc16.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/mcux-lpadc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/nrf-adc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/nrf-saadc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/nxp,gau-adc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/silabs-adc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/silabs-siwx91x-adc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/smartbond-adc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/battery/battery.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/adi_max32_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/alif-clocks-common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/alif-ensemble-clocks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/amebad_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/amebadplus_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/amebag2_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/ast10x0_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/atmel_sam_pmc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/bflb_bl60x_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/bflb_bl61x_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/bflb_bl70x_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/bflb_bl70xl_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/bflb_clock_common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/ch32v00x-clocks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/ch32v20x_30x-clocks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/em32_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/esp32_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/esp32c2_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/esp32c3_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/esp32c5_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/esp32c6_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/esp32h2_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/esp32s2_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/esp32s3_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/focaltech_ft9001_clocks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/gd32-clocks-common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/gd32a50x-clocks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/gd32e10x-clocks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/gd32e50x-clocks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/gd32f3x0-clocks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/gd32f403-clocks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/gd32f4xx-clocks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/gd32l23x-clocks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/gd32vf103-clocks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/ifx_clock_source_boards.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/ifx_clock_source_common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/ifx_clock_source_psc3xx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/ifx_clock_source_pse8xx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/ifx_clock_source_psoc4xx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/imx8ulp_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/imx943_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/imx95_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/imx_ccm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/imx_ccm_rev2.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/intel_socfpga_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/ite-it51xxx-clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/kinetis_mcg.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/kinetis_pcc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/kinetis_scg.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/kinetis_sim.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/lpc11u6x_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/mchp_pic32cm_jh_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/mchp_pic32cm_pl_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/mchp_pic32cz_ca_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/mchp_sam_d5x_e5x_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/mchp_xec_pcr.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/mcux_lpc_syscon_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/microchip_sam_pmc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/mspm0_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/npcm_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/npcx_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/nrf-auxpll.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/nrfs-audiopll.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/numaker_m2l31x_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/numaker_m333x_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/numaker_m335x_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/numaker_m46x_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/numaker_m55m1x_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/nxp_mc_cgm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/nxp_s32k146_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/nxp_s32k148_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/nxp_s32k344_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/nxp_s32k566_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/nxp_s32z2_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/r8a7795_cpg_mssr.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/r8a779f0_cpg_mssr.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/r8a779g0_cpg_mssr.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/ra_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/renesas_cpg_mssr.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/renesas_rza2m_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/renesas_rza_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/renesas_rzg_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/renesas_rztn_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/renesas_rzv_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/rpi_pico_clock_common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/rpi_pico_rp2040_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/rpi_pico_rp2350_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/rtl8752h-clocks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/rtl87x2g-clocks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/rts5817_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/rts5912_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/rx_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/scg_k4.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/sf32lb-clocks-common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/sf32lb52x-clocks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs/common-clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs/siwx91x-clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs/xg21-clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs/xg22-clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs/xg23-clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs/xg24-clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs/xg26-clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs/xg27-clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs/xg28-clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs/xg29-clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32_common_clocks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32c0_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32c5_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32f0_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32f10x_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32f1_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32f37x_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32f3_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32f410_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32f427_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32f4_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32f7_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32g0_b1x_c1x_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32g0_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32g4_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32h5_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32h7_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32h7rs_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32l0_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32l1_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32l4_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32l4plus_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32l5_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32mp13_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32mp2_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32n6_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32u0_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32u3_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32u5_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32wb0_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32wb_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32wba_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32wl_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/syna_sr100_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/comparator/it51xxx-vcmp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/comparator/nrf-comp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/comparator/silabs-acmp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dac/dacx0508.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dac/silabs-vdac.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dai/esai.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/display/panel.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/atmel_samx7x_dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/ch32v003-dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/dma_smartbond.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/gd32_dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/infineon-xmc4xxx-dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max32650_dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max32655_dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max32657_dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max32660_dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max32662_dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max32666_dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max32670_dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max32672_dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max32675_dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max32680_dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max32690_dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max78000_dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/max78002_dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/renesas_rz_dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/rpi-pico-dma-common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/rpi-pico-dma-rp2040.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/rpi-pico-dma-rp2350.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/sf32lb-dma-config.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/sf32lb52x-dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/silabs/common-dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/silabs/xg21-dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/silabs/xg22-dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/silabs/xg23-dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/silabs/xg24-dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/silabs/xg26-dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/silabs/xg27-dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/silabs/xg28-dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/silabs/xg29-dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/stm32_dma.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dt-util.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/espi/npcx_espi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/ethernet/dsa_tag_proto.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/ethernet/nxp_enet.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/ethernet/xlnx_gem.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/flash_controller/npcx_fiu_qspi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/flash_controller/ospi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/flash_controller/xspi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/adi-max32-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/adi-sdp-120.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/andestech-atcgpio100.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/arducam-ffc-40pin-connector.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/arduino-header-r3.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/arduino-mkr-header.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/arduino-nano-header.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/atmel-sam-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/atmel-sam0-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/digilent-pmod.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/dvp-20pin-connector.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/ene-kb106x-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/ene-kb1200-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/espressif-esp32-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/infineon-xmc4xxx-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/ite-it8xxx2-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/microchip-port-g1-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/microchip-sam-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/microchip-xec-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/nordic-npm13xx-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/nordic-npm2100-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/nordic-npm6001-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/nordic-nrf-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/numicro-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/nuvoton-npcx-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/nxp-imx-igpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/nxp-kinetis-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/nxp-siul2-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/pca-series-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/raspberrypi-csi-connector.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/realtek-bee-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/realtek-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/renesas-ra-gpio-ioport.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/renesas-rtk0eg0019b01002bj.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/renesas-rz-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/renesas-rza2m-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/renesas-rzt2m-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/renesas-rztn-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/semtech-sx1509b.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/snps-designware-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/st-morpho-header.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/stm32-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/ti-cc13xx-cc26xx-gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/i2c/i2c.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/i2c/it51xxx-i2c.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/i2c/it8xxx2-i2c.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/i2c/npcx-i2c.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/input/cst8xx-gesture-codes.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/input/esp32-touch-sensor-input.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/input/input-event-codes.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/input/keymap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/input/stm32-tsc-defines.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/inputmux/inputmux_trigger_ports.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/arm-gic.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/esp-esp32c2-intmux.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/esp-esp32c3-intmux.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/esp-esp32c5-intmux.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/esp-esp32c6-intmux.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/esp-esp32h2-intmux.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/esp-xtensa-intmux.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/esp32s2-xtensa-intmux.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/esp32s3-xtensa-intmux.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/infineon-xmc4xxx-intc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/intel-ioapic.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/it8xxx2-wuc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/ite-intc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/ite-it51xxx-intc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/ite-it51xxx-wuc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/mchp-xec-ecia.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/openisa-intmux.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/rts5817_intc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/ti-vim.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/ipc_service/static_vrings.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/led/led.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/led/seagate_legend_b1414.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/led/worldsemi_ws2812c.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/lora/sx126x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/lvgl/lvgl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-attr/memory-attr-arm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-attr/memory-attr-riscv.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-attr/memory-attr-sw.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-attr/memory-attr-xtensa.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-attr/memory-attr.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-controller/adi-max32-hpb.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-controller/nxp,flexram.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-controller/renesas,ra-sdram.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-controller/stm32-fmc-nor-psram.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-controller/stm32-fmc-sdram.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/mfd/mfd_it8801_altctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/mfd/mfd_mchp_sam_flexcom.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/mipi_dbi/mipi_dbi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/mipi_dsi/mipi_dsi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/ifx_cyw20829.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/nordic-domain-id-nrf54h20.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/nordic-domain-id-nrf9230.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/nordic-nrf-ficr-nrf54h20.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/nordic-nrf-ficr-nrf9230-engb.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/nordic-owner-id-nrf54h20.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/nordic-owner-id-nrf9230.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/nxp_rtxxx_dsp_ctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra2a1-elc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra2l1-elc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra4e1-elc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra4e2-elc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra4l1-elc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra4m1-elc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra4m2-elc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra4m3-elc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra4t1-elc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra4w1-elc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra6e1-elc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra6e2-elc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra6m1-elc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra6m2-elc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra6m3-elc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra6m4-elc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra6m5-elc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra8d1-elc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra8e1-elc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra8m1-elc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc/ra8t1-elc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pcie/pcie.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/alif-ensemble-e1c-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/alif-ensemble-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ambiq-apollo2-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ambiq-apollo3-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ambiq-apollo4-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ambiq-apollo5-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/amebad-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/amebadplus-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/amebag2-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/arm-mps2-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/arm-mps3-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/arm-mps4-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/arm-v2m_beetle-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/b91-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/bcm2711-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/bee-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/cc13xx_cc26xx-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/cc23x0-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ch32v003-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ch32v00x-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ch32v20x_30x-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/em32f967-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/emsdp-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ene-kb106x-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ene-kb1200-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp-pinctrl-common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32-gpio-sigmap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32c2-gpio-sigmap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32c2-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32c3-gpio-sigmap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32c3-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32c5-gpio-sigmap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32c5-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32c6-gpio-sigmap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32c6-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32h2-gpio-sigmap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32h2-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32s2-gpio-sigmap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32s2-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32s3-gpio-sigmap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32s3-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/focaltech_ft9001_pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/gecko-pinctrl-s1.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/gecko-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ifx_cat1-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/imx8qm-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/imx8qxp-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/it8xxx2-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/lpc11u6x-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/max32-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/mchp-xec-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/mspm0-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/npcx-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/nrf-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/numaker-m46x-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/numicro-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/nxp-siul2-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/pinctrl-zynq.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/pinctrl-zynqmp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/quicklogic-eos-s3-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/realtek-rts5912-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas-rzt2m-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-r8a77951.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-r8a77961.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-r8a779f0.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-r8a779g0.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-ra.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-ra0.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rcar-common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rza-common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rza2m.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rzg-common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rzg2-common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rzg3e.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rzn-common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rzt-common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rzv-common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rzv2h.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas/pinctrl-rzv2n.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/rpi-pico-pinctrl-common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/rpi-pico-rp2040-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/rpi-pico-rp2350-pinctrl-common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/rpi-pico-rp2350a-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/rpi-pico-rp2350b-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/rtl8752h-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/rtl87x2g-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/rts5817_pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/rv32m1-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/sf32lb-common-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/sf32lb52x-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/si32-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/sifive-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs-pinctrl-dbus.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs-pinctrl-siwx91x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs/siwx91x-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs/xg21-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs/xg22-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs/xg23-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs/xg24-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs/xg26-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs/xg27-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs/xg28-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs/xg29-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/smartbond-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/stm32-pinctrl-common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/stm32-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/stm32f1-afio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/stm32f1-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/sy1xx-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/syna-sr100-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ti-cc32xx-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/ti-k3-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/xmc4xxx-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/power/atmel_sam_supc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/power/imx943_power.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/power/imx95_power.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/power/imx_scu_rsrc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/power/imx_spc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/power/nxp_rw_pmu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/power/stm32_pwr.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/power/stm32h5_iocell.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/power/stm32h7rs_iocell.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/power/stm32n6_iocell.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/it51xxx_pwm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/it8xxx2_pwm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/pwm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/pwm_ifx_tcpwm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/ra_pwm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/renesas_rz_pwm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/rx_mtu_pwm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/stm32_pwm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/qspi/nxp-s32-qspi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/rdc/imx_rdc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/adp5360.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/axp192.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/max20335.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/npm10xx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/npm1100.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/npm13xx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/npm2100.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/npm6001.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/nrf5x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/nxp_vref.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/rpi_pico.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator/silabs_dcdc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reserved-memory/nordic-owned-memory.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/ast10x0_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/focaltech_ft9001_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/gd32-common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/gd32a50x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/gd32e10x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/gd32e50x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/gd32f3x0.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/gd32f403.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/gd32f4xx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/gd32l23x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/gd32vf103.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/intel_socfpga_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/mchp_mss_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/npcx4_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/npcx7_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/npcx9_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/numaker_m2l31x_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/numaker_m333x_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/numaker_m335x_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/numaker_m46x_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/numaker_m55m1x_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/numicro_m48x_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/nxp_syscon_reset_common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/rp2040_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/rp2350_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/rts5817_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/sf32lb_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32-common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32c0_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32c5_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32f0_1_3_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32f2_4_7_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32g0_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32g4_l4_5_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32h5_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32h7_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32h7rs_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32l0_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32l1_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32mp13_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32mp1_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32mp2_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32n6_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32u0_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32u3_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32u5_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32wb0_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32wb_l_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32wba_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/syna_sr100_reset.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/adxl345.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/adxl355.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/adxl362.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/adxl367.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/adxl372.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/afbr_s50.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/apds9253.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/bmp581.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/bq274xx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/icm42686.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/icm42688.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/icm4268x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/icm45686.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/iis2dlpc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/iis2iclx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/iis3dwb.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/ina226.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/ina230.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/ina237.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/ism330dhcx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/ism6hg256x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/it51xxx_tach.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/it8xxx2_tach.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/it8xxx2_vcmp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lis2de12.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lis2dh.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lis2ds12.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lis2du12.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lis2dux12.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lis2dw12.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lps22hh.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lps2xdf.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lsm6dso.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lsm6dso16is.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lsm6dsv16x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lsm6dsv320x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lsm6dsv32x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lsm6dsv80x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lsm6dsvxxx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/lsm9ds1.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/mc3419.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/mcp9600.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/mtch9010.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/npcx_tach.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/qdec_nrf.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/qdec_nxp_s32.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/qdec_stm32.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/rm3100.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/sensor_axis_align.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/stcc4.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/stts22h.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/tmag5273.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/tmp114.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/tmp11x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sent/sent.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/spi/spi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/timer/nuclei-systimer.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/timer/stm32-timer.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/usb-c/nxp_nx20p3483.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/usb-c/pd.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/usb/audio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/video/video-interfaces.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/wuc/wuc_nxp_llwu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/xspi/nxp-s32-xspi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/fatal.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/fatal_types.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/fs/ext2.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/fs/fcb.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/fs/fs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/fs/fs_interface.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/fs/fs_sys.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/fs/littlefs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/fs/nvs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/fs/virtiofs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/fs/zms.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/gnss/rtk/decoder.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/gnss/rtk/rtk.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/gnss/rtk/rtk_publish.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/init.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/input/cy8cmbr3xxx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/input/input.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/input/input_analog_axis.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/input/input_analog_axis_settings.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/input/input_hid.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/input/input_kbd_matrix.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/input/input_keymap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/input/input_pat912x.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/input/input_paw32xx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/input/input_pmw3610.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/input/input_renesas_ra_ctsu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/input/input_renesas_rx_ctsu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/input/input_touch.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/instrumentation/instrumentation.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/internal/syscall_handler.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/ipc/backends/intel_adsp_host_ipc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/ipc/icmsg.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/ipc/icmsg_me.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/ipc/ipc_rpmsg.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/ipc/ipc_service.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/ipc/ipc_service_backend.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/ipc/ipc_static_vrings.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/ipc/pbuf.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/ipc/rpmsg_service.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/irq.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/irq_multilevel.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/irq_nextlevel.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/irq_offload.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/kernel.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/kernel/internal/mm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/kernel/mm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/kernel/mm/demand_paging.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/kernel/obj_core.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/kernel/smp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/kernel/stats.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/kernel/thread.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/kernel/thread_stack.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/kernel_includes.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/kernel_structs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/kernel_version.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/kvss/nvs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/kvss/zms.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/devicetree_regions.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/iterable_sections.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/linker-defs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/linker-devnull.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/linker-tool-gcc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/linker-tool-lld.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/linker-tool-mwdt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/linker-tool.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/section_tags.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/sections.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/utils.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/llext/buf_loader.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/llext/elf.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/llext/fs_loader.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/llext/inspect.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/llext/llext.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/llext/llext_internal.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/llext/loader.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/llext/symbol.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_backend.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_backend_adsp_hda.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_backend_adsp_mtrace.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_backend_ble.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_backend_mqtt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_backend_net.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_backend_std.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_backend_ws.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_core.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_ctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_frontend.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_frontend_stmesp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_frontend_stmesp_demux.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_instance.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_internal.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_link.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_msg.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_multidomain_helper.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_output.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_output_custom.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_output_dict.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/lorawan/emul.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/lorawan/lorawan.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/math/ilog2.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/math/interpolation.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mem_mgmt/mem_attr.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mem_mgmt/mem_attr_heap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/ec_host_cmd/backend.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/ec_host_cmd/ec_host_cmd.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/ec_host_cmd/simulator.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/hawkbit.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/hawkbit/autohandler.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/hawkbit/config.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/hawkbit/event.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/hawkbit/hawkbit.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/enum_mgmt/enum_mgmt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/enum_mgmt/enum_mgmt_callbacks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/fs_mgmt/fs_mgmt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/fs_mgmt/fs_mgmt_callbacks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/fs_mgmt/fs_mgmt_hash_checksum.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/img_mgmt/img_mgmt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/img_mgmt/img_mgmt_callbacks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/img_mgmt/img_mgmt_client.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/os_mgmt/os_mgmt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/os_mgmt/os_mgmt_callbacks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/os_mgmt/os_mgmt_client.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/settings_mgmt/settings_mgmt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/settings_mgmt/settings_mgmt_callbacks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/shell_mgmt/shell_mgmt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/stat_mgmt/stat_mgmt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/zephyr/zephyr_basic.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/mgmt/callback_defines.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/mgmt/callbacks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/mgmt/handlers.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/mgmt/mgmt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/mgmt/mgmt_defines.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/smp/smp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/smp/smp_client.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/transport/serial.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/transport/smp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/transport/smp_bt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/transport/smp_dummy.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/transport/smp_raw_dummy.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/transport/smp_shell.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/transport/smp_udp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/osdp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/updatehub.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/misc/lorem_ipsum.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/modbus/modbus.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/modem/at/user_pipe.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/modem/backend/tty.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/modem/backend/uart.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/modem/chat.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/modem/cmux.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/modem/pipe.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/modem/pipelink.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/modem/ppp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/modem/stats.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/modem/ubx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/modem/ubx/checksum.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/modem/ubx/keys.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/modem/ubx/protocol.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/multi_heap/shared_multi_heap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/canbus.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/capture.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/coap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/coap_client.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/coap_link_format.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/coap_mgmt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/coap_service.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/conn_mgr/connectivity_wifi_mgmt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/conn_mgr_connectivity.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/conn_mgr_connectivity_impl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/conn_mgr_monitor.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/dhcpv4.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/dhcpv4_server.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/dhcpv6.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/dns_resolve.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/dns_sd.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/dsa_core.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/dsa_tag.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/dummy.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/ethernet.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/ethernet_bridge.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/ethernet_bridge_fdb.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/ethernet_mgmt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/ethernet_vlan.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/ftp_client.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/gptp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/hdlc_rcp_if/hdlc_rcp_if.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/hostname.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/http/client.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/http/frame.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/http/hpack.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/http/method.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/http/parser.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/http/parser_state.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/http/parser_url.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/http/server.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/http/service.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/http/status.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/icmp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/ieee802154.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/ieee802154_ie.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/ieee802154_mgmt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/ieee802154_pkt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/ieee802154_radio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/ieee802154_radio_openthread.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/igmp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/ipv4_autoconf.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/latmon.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/lldp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/loopback.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/lwm2m.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/lwm2m_path.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/lwm2m_send_scheduler.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/mdio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/mdns_responder.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/midi2.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/mii.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/mld.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/mqtt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/mqtt_sn.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/net_compat.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/net_config.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/net_context.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/net_core.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/net_event.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/net_if.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/net_ip.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/net_l2.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/net_linkaddr.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/net_log.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/net_mgmt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/net_offload.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/net_pkt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/net_pkt_filter.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/net_stats.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/net_time.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/net_timeout.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/ocpp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/offloaded_netdev.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/openthread.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/phy.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/ppp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/prometheus/collector.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/prometheus/counter.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/prometheus/formatter.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/prometheus/gauge.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/prometheus/histogram.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/prometheus/label.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/prometheus/metric.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/prometheus/summary.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/promiscuous.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/ptp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/ptp_time.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/sntp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/socket.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/socket_net_mgmt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/socket_offload.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/socket_poll.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/socket_select.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/socket_service.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/socket_types.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/socketcan.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/socketcan_utils.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/socketutils.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/tftp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/tls_credentials.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/trickle.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/udp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/virtual.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/virtual_mgmt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/websocket.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/wifi.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/wifi_certs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/wifi_credentials.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/wifi_mgmt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/wifi_nm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/wifi_utils.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/wireguard.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net/zperf.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/net_buf.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/nvmem.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/platform/hooks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/pm/device.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/pm/device_runtime.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/pm/pm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/pm/policy.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/pm/state.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/pmci/mctp/mctp_i2c_gpio_common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/pmci/mctp/mctp_i2c_gpio_controller.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/pmci/mctp/mctp_i2c_gpio_target.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/pmci/mctp/mctp_i3c_common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/pmci/mctp/mctp_i3c_controller.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/pmci/mctp/mctp_i3c_endpoint.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/pmci/mctp/mctp_i3c_target.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/pmci/mctp/mctp_uart.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/pmci/mctp/mctp_usb.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/portability/cmsis_os.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/portability/cmsis_os2.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/portability/cmsis_types.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/aio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/arpa/inet.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/dirent.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/fcntl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/fnmatch.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/grp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/mqueue.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/net/if.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/net/if_arp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/netdb.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/netinet/in.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/netinet/tcp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/poll.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/posix_features.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/posix_limits.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/posix_signal.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/posix_time.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/posix_types.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/pthread.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/pwd.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/sched.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/semaphore.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/stropts.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/sys/confstr.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/sys/dirent.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/sys/eventfd.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/sys/ioctl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/sys/mman.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/sys/select.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/sys/socket.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/sys/stat.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/sys/sysconf.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/sys/time.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/sys/times.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/sys/utsname.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/syslog.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/unistd.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/psa/its_ids.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/psa/key_ids.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/psa/ps_ids.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/random/random.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/retention/blinfo.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/retention/bootmode.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/retention/retention.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/rtio/cqe.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/rtio/iodev.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/rtio/regmap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/rtio/rtio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/rtio/sqe.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/rtio/work.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sd/mmc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sd/sd.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sd/sd_spec.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sd/sdio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sd/sdmmc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sensing/sensing.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sensing/sensing_datatypes.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sensing/sensing_sensor.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sensing/sensing_sensor_types.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/settings/settings.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/shared_irq.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/shell/shell.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/shell/shell_adsp_memory_window.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/shell/shell_backend.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/shell/shell_dummy.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/shell/shell_fprintf.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/shell/shell_history.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/shell/shell_log_backend.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/shell/shell_mqtt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/shell/shell_rpmsg.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/shell/shell_rtt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/shell/shell_string_conv.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/shell/shell_telnet.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/shell/shell_types.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/shell/shell_uart.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/shell/shell_websocket.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sip_svc/sip_svc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sip_svc/sip_svc_controller.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/smf.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/spinlock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/stats/stats.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/storage/disk_access.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/storage/flash_map.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/storage/stream_flash.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sw_isr_table.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/__assert.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/atomic.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/atomic_arch.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/atomic_builtin.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/atomic_c.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/atomic_types.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/barrier.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/barrier_builtin.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/base64.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/bitarray.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/byteorder.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/cbprintf.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/cbprintf_cxx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/cbprintf_enums.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/cbprintf_internal.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/check.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/cpu_load.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/crc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/device_mmio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/dlist.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/errno_private.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/fdtable.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/hash_function.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/hash_map.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/hash_map_api.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/hash_map_cxx.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/hash_map_oa_lp.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/hash_map_sc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/heap_listener.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/internal/kobject_internal.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/iterable_sections.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/kobject.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/libc-hooks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/linear_range.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/list_gen.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/math_extras.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/math_extras_impl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/mem_blocks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/mem_manage.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/mem_stats.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/min_heap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/mpsc_lockfree.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/mpsc_packet.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/mpsc_pbuf.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/multi_heap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/mutex.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/notify.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/onoff.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/p4wq.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/poweroff.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/printk-hooks.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/printk.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/rb.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/reboot.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/ring_buffer.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/sem.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/set.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/sflist.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/slist.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/speculation.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/spsc_lockfree.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/spsc_pbuf.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/sys_getopt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/sys_heap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/sys_io.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/time_units.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/timeutil.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_is_eq.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_dec.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_inc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_x2.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_listify.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_loops.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_macro.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_utf8.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/uuid.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/winstream.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/syscall.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/task_wdt/task_wdt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/timing/timing.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/timing/types.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/armclang.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/gcc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/iar.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/iar/iar_missing_defs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/iar/iccarm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/llvm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/mwdt.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/xcc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/xcc_missing_defs.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/tracing/tracing.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/tracing/tracing_format.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/tracing/tracing_macros.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/tracing/tracing_syscall.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/tracing/tracking.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/types.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/usb/bos.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/usb/class/hid.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/usb/class/usb_audio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/usb/class/usb_cdc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/usb/class/usb_dfu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/usb/class/usb_hid.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/usb/class/usb_hub.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/usb/class/usbd_dfu.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/usb/class/usbd_hid.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/usb/class/usbd_midi2.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/usb/class/usbd_msc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/usb/class/usbd_uac2.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/usb/class/usbd_uvc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/usb/msos_desc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/usb/usb_ch9.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/usb/usb_device.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/usb/usbd.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/usb/usbd_msg.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/usb/usbh.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/usb_c/tcpci.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/usb_c/usbc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/video/video.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/console.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/dmop.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/dom0/domctl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/dom0/sysctl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/events.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/generic.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/gnttab.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/hvm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/memory.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/public/arch-arm.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/public/domctl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/public/event_channel.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/public/grant_table.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/public/hvm/dm_op.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/public/hvm/hvm_op.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/public/hvm/ioreq.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/public/hvm/params.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/public/io/console.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/public/memory.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/public/sched.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/public/sysctl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/public/version.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/public/xen.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/version.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/zbus/proxy_agent/zbus_proxy_agent.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/zbus/proxy_agent/zbus_proxy_agent_ipc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/zbus/zbus.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/zvfs/eventfd.h zephyr/misc/generated/syscalls_file_list.txt + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr && /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/scripts/build/parse_syscalls.py --scan /Users/wijnand/zephyrproject/zephyr/include --scan /Users/wijnand/zephyrproject/zephyr/drivers --scan /Users/wijnand/zephyrproject/zephyr/subsys/net --json-file /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls.json --tag-struct-file /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/struct_tags.json --file-list /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_file_list.txt + DESC = Generating misc/generated/syscalls.json, misc/generated/struct_tags.json + restat = 1 + + +############################################# +# Custom command for zephyr/misc/generated/syscalls_subdirs.trigger + +build zephyr/misc/generated/syscalls_subdirs.trigger | ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_subdirs.trigger: CUSTOM_COMMAND zephyr/misc/generated/syscalls_links/include zephyr/misc/generated/syscalls_links/include_zephyr zephyr/misc/generated/syscalls_links/include_zephyr_acpi zephyr/misc/generated/syscalls_links/include_zephyr_app_memory zephyr/misc/generated/syscalls_links/include_zephyr_arch zephyr/misc/generated/syscalls_links/include_zephyr_audio zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth zephyr/misc/generated/syscalls_links/include_zephyr_canbus zephyr/misc/generated/syscalls_links/include_zephyr_cleanup zephyr/misc/generated/syscalls_links/include_zephyr_console zephyr/misc/generated/syscalls_links/include_zephyr_cpu_freq zephyr/misc/generated/syscalls_links/include_zephyr_crypto zephyr/misc/generated/syscalls_links/include_zephyr_dap zephyr/misc/generated/syscalls_links/include_zephyr_data zephyr/misc/generated/syscalls_links/include_zephyr_debug zephyr/misc/generated/syscalls_links/include_zephyr_devicetree zephyr/misc/generated/syscalls_links/include_zephyr_dfu zephyr/misc/generated/syscalls_links/include_zephyr_display zephyr/misc/generated/syscalls_links/include_zephyr_drivers zephyr/misc/generated/syscalls_links/include_zephyr_dsp zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings zephyr/misc/generated/syscalls_links/include_zephyr_fs zephyr/misc/generated/syscalls_links/include_zephyr_gnss zephyr/misc/generated/syscalls_links/include_zephyr_input zephyr/misc/generated/syscalls_links/include_zephyr_instrumentation zephyr/misc/generated/syscalls_links/include_zephyr_internal zephyr/misc/generated/syscalls_links/include_zephyr_ipc zephyr/misc/generated/syscalls_links/include_zephyr_kernel zephyr/misc/generated/syscalls_links/include_zephyr_kvss zephyr/misc/generated/syscalls_links/include_zephyr_linker zephyr/misc/generated/syscalls_links/include_zephyr_llext zephyr/misc/generated/syscalls_links/include_zephyr_logging zephyr/misc/generated/syscalls_links/include_zephyr_lorawan zephyr/misc/generated/syscalls_links/include_zephyr_math zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_misc zephyr/misc/generated/syscalls_links/include_zephyr_modbus zephyr/misc/generated/syscalls_links/include_zephyr_modem zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap zephyr/misc/generated/syscalls_links/include_zephyr_net zephyr/misc/generated/syscalls_links/include_zephyr_platform zephyr/misc/generated/syscalls_links/include_zephyr_pm zephyr/misc/generated/syscalls_links/include_zephyr_pmci zephyr/misc/generated/syscalls_links/include_zephyr_portability zephyr/misc/generated/syscalls_links/include_zephyr_posix zephyr/misc/generated/syscalls_links/include_zephyr_psa zephyr/misc/generated/syscalls_links/include_zephyr_random zephyr/misc/generated/syscalls_links/include_zephyr_retention zephyr/misc/generated/syscalls_links/include_zephyr_rtio zephyr/misc/generated/syscalls_links/include_zephyr_sd zephyr/misc/generated/syscalls_links/include_zephyr_sensing zephyr/misc/generated/syscalls_links/include_zephyr_settings zephyr/misc/generated/syscalls_links/include_zephyr_shell zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc zephyr/misc/generated/syscalls_links/include_zephyr_stats zephyr/misc/generated/syscalls_links/include_zephyr_storage zephyr/misc/generated/syscalls_links/include_zephyr_sys zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt zephyr/misc/generated/syscalls_links/include_zephyr_timing zephyr/misc/generated/syscalls_links/include_zephyr_toolchain zephyr/misc/generated/syscalls_links/include_zephyr_tracing zephyr/misc/generated/syscalls_links/include_zephyr_usb zephyr/misc/generated/syscalls_links/include_zephyr_usb_c zephyr/misc/generated/syscalls_links/include_zephyr_video zephyr/misc/generated/syscalls_links/include_zephyr_xen zephyr/misc/generated/syscalls_links/include_zephyr_zbus zephyr/misc/generated/syscalls_links/include_zephyr_zvfs zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 zephyr/misc/generated/syscalls_links/include_zephyr_arch_common zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips zephyr/misc/generated/syscalls_links/include_zephyr_arch_openrisc zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv zephyr/misc/generated/syscalls_links/include_zephyr_arch_rx zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_biometrics zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can zephyr/misc/generated/syscalls_links/include_zephyr_drivers_charger zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dac zephyr/misc/generated/syscalls_links/include_zephyr_drivers_debug zephyr/misc/generated/syscalls_links/include_zephyr_drivers_disk zephyr/misc/generated/syscalls_links/include_zephyr_drivers_display zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma zephyr/misc/generated/syscalls_links/include_zephyr_drivers_edac zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip zephyr/misc/generated/syscalls_links/include_zephyr_drivers_memc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power zephyr/misc/generated/syscalls_links/include_zephyr_drivers_psi5 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator zephyr/misc/generated/syscalls_links/include_zephyr_drivers_reset zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sent zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_video zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_qemu_fwcfg zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_tisci zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi_nxp zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy_intel zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_flexram zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_max2221x zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_rtxxx_dsp_ctrl zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_dtc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_external_interrupt zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn_renesas_elc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_comparator zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_qspi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sent zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_wuc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_xspi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma_silabs zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas_ra-elc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs zephyr/misc/generated/syscalls_links/include_zephyr_gnss_rtk zephyr/misc/generated/syscalls_links/include_zephyr_ipc_backends zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr zephyr/misc/generated/syscalls_links/include_zephyr_modem_at zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend zephyr/misc/generated/syscalls_links/include_zephyr_modem_ubx zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if zephyr/misc/generated/syscalls_links/include_zephyr_net_http zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus zephyr/misc/generated/syscalls_links/include_zephyr_pmci_mctp zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa zephyr/misc/generated/syscalls_links/include_zephyr_posix_net zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal zephyr/misc/generated/syscalls_links/include_zephyr_toolchain_iar zephyr/misc/generated/syscalls_links/include_zephyr_usb_class zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 zephyr/misc/generated/syscalls_links/include_zephyr_xen_public zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io zephyr/misc/generated/syscalls_links/include_zephyr_zbus_proxy_agent + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr && /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/scripts/build/subfolder_list.py --directory /Users/wijnand/zephyrproject/zephyr/include --out-file /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_subdirs.txt --trigger-file /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_subdirs.trigger --create-links /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links + DESC = Generating misc/generated/syscalls_subdirs.trigger + restat = 1 + + +############################################# +# Custom command for zephyr/misc/generated/syscalls_links/include + +build zephyr/misc/generated/syscalls_links/include zephyr/misc/generated/syscalls_links/include_zephyr zephyr/misc/generated/syscalls_links/include_zephyr_acpi zephyr/misc/generated/syscalls_links/include_zephyr_app_memory zephyr/misc/generated/syscalls_links/include_zephyr_arch zephyr/misc/generated/syscalls_links/include_zephyr_audio zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth zephyr/misc/generated/syscalls_links/include_zephyr_canbus zephyr/misc/generated/syscalls_links/include_zephyr_cleanup zephyr/misc/generated/syscalls_links/include_zephyr_console zephyr/misc/generated/syscalls_links/include_zephyr_cpu_freq zephyr/misc/generated/syscalls_links/include_zephyr_crypto zephyr/misc/generated/syscalls_links/include_zephyr_dap zephyr/misc/generated/syscalls_links/include_zephyr_data zephyr/misc/generated/syscalls_links/include_zephyr_debug zephyr/misc/generated/syscalls_links/include_zephyr_devicetree zephyr/misc/generated/syscalls_links/include_zephyr_dfu zephyr/misc/generated/syscalls_links/include_zephyr_display zephyr/misc/generated/syscalls_links/include_zephyr_drivers zephyr/misc/generated/syscalls_links/include_zephyr_dsp zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings zephyr/misc/generated/syscalls_links/include_zephyr_fs zephyr/misc/generated/syscalls_links/include_zephyr_gnss zephyr/misc/generated/syscalls_links/include_zephyr_input zephyr/misc/generated/syscalls_links/include_zephyr_instrumentation zephyr/misc/generated/syscalls_links/include_zephyr_internal zephyr/misc/generated/syscalls_links/include_zephyr_ipc zephyr/misc/generated/syscalls_links/include_zephyr_kernel zephyr/misc/generated/syscalls_links/include_zephyr_kvss zephyr/misc/generated/syscalls_links/include_zephyr_linker zephyr/misc/generated/syscalls_links/include_zephyr_llext zephyr/misc/generated/syscalls_links/include_zephyr_logging zephyr/misc/generated/syscalls_links/include_zephyr_lorawan zephyr/misc/generated/syscalls_links/include_zephyr_math zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_misc zephyr/misc/generated/syscalls_links/include_zephyr_modbus zephyr/misc/generated/syscalls_links/include_zephyr_modem zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap zephyr/misc/generated/syscalls_links/include_zephyr_net zephyr/misc/generated/syscalls_links/include_zephyr_platform zephyr/misc/generated/syscalls_links/include_zephyr_pm zephyr/misc/generated/syscalls_links/include_zephyr_pmci zephyr/misc/generated/syscalls_links/include_zephyr_portability zephyr/misc/generated/syscalls_links/include_zephyr_posix zephyr/misc/generated/syscalls_links/include_zephyr_psa zephyr/misc/generated/syscalls_links/include_zephyr_random zephyr/misc/generated/syscalls_links/include_zephyr_retention zephyr/misc/generated/syscalls_links/include_zephyr_rtio zephyr/misc/generated/syscalls_links/include_zephyr_sd zephyr/misc/generated/syscalls_links/include_zephyr_sensing zephyr/misc/generated/syscalls_links/include_zephyr_settings zephyr/misc/generated/syscalls_links/include_zephyr_shell zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc zephyr/misc/generated/syscalls_links/include_zephyr_stats zephyr/misc/generated/syscalls_links/include_zephyr_storage zephyr/misc/generated/syscalls_links/include_zephyr_sys zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt zephyr/misc/generated/syscalls_links/include_zephyr_timing zephyr/misc/generated/syscalls_links/include_zephyr_toolchain zephyr/misc/generated/syscalls_links/include_zephyr_tracing zephyr/misc/generated/syscalls_links/include_zephyr_usb zephyr/misc/generated/syscalls_links/include_zephyr_usb_c zephyr/misc/generated/syscalls_links/include_zephyr_video zephyr/misc/generated/syscalls_links/include_zephyr_xen zephyr/misc/generated/syscalls_links/include_zephyr_zbus zephyr/misc/generated/syscalls_links/include_zephyr_zvfs zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 zephyr/misc/generated/syscalls_links/include_zephyr_arch_common zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips zephyr/misc/generated/syscalls_links/include_zephyr_arch_openrisc zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv zephyr/misc/generated/syscalls_links/include_zephyr_arch_rx zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_biometrics zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can zephyr/misc/generated/syscalls_links/include_zephyr_drivers_charger zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dac zephyr/misc/generated/syscalls_links/include_zephyr_drivers_debug zephyr/misc/generated/syscalls_links/include_zephyr_drivers_disk zephyr/misc/generated/syscalls_links/include_zephyr_drivers_display zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma zephyr/misc/generated/syscalls_links/include_zephyr_drivers_edac zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip zephyr/misc/generated/syscalls_links/include_zephyr_drivers_memc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power zephyr/misc/generated/syscalls_links/include_zephyr_drivers_psi5 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator zephyr/misc/generated/syscalls_links/include_zephyr_drivers_reset zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sent zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c zephyr/misc/generated/syscalls_links/include_zephyr_drivers_video zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_qemu_fwcfg zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_tisci zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi_nxp zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy_intel zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_flexram zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_max2221x zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_rtxxx_dsp_ctrl zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_dtc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_external_interrupt zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn_renesas_elc zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_comparator zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_qspi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sent zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_wuc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_xspi zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma_silabs zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas_ra-elc zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs zephyr/misc/generated/syscalls_links/include_zephyr_gnss_rtk zephyr/misc/generated/syscalls_links/include_zephyr_ipc_backends zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr zephyr/misc/generated/syscalls_links/include_zephyr_modem_at zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend zephyr/misc/generated/syscalls_links/include_zephyr_modem_ubx zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if zephyr/misc/generated/syscalls_links/include_zephyr_net_http zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus zephyr/misc/generated/syscalls_links/include_zephyr_pmci_mctp zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa zephyr/misc/generated/syscalls_links/include_zephyr_posix_net zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal zephyr/misc/generated/syscalls_links/include_zephyr_toolchain_iar zephyr/misc/generated/syscalls_links/include_zephyr_usb_class zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 zephyr/misc/generated/syscalls_links/include_zephyr_xen_public zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io zephyr/misc/generated/syscalls_links/include_zephyr_zbus_proxy_agent | ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_acpi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_app_memory ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_audio ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_canbus ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_cleanup ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_console ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_cpu_freq ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_crypto ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dap ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_data ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_debug ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_devicetree ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dfu ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_display ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dsp ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_fs ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_gnss ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_input ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_instrumentation ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_internal ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_ipc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_kernel ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_kvss ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_linker ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_llext ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_logging ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_lorawan ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_math ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_misc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_modbus ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_modem ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_net ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_platform ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_pm ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_pmci ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_portability ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_posix ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_psa ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_random ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_retention ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_rtio ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_sd ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_sensing ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_settings ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_shell ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_stats ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_storage ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_sys ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_timing ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_toolchain ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_tracing ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_usb ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_usb_c ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_video ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_xen ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_zbus ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_zvfs ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_common ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_openrisc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_rx ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_biometrics ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_charger ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dac ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_debug ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_disk ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_display ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_edac ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_memc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_psi5 ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_reset ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sent ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_video ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtio ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_qemu_fwcfg ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_tisci ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi_nxp ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy_intel ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_flexram ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_max2221x ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_rtxxx_dsp_ctrl ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_dtc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_external_interrupt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn_renesas_elc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_comparator ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_qspi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sent ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_wuc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_xspi ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma_silabs ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas_ra-elc ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_gnss_rtk ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_ipc_backends ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_modem_at ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_modem_ubx ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_net_http ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_pmci_mctp ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_posix_net ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_toolchain_iar ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_usb_class ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_xen_public ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io ${cmake_ninja_workdir}zephyr/misc/generated/syscalls_links/include_zephyr_zbus_proxy_agent: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr && /opt/homebrew/bin/cmake -E echo + DESC = Preparing syscall dependency handling + restat = 1 + + +############################################# +# Phony custom command for zephyr/CMakeFiles/driver_validation_h_target + +build zephyr/CMakeFiles/driver_validation_h_target | ${cmake_ninja_workdir}zephyr/CMakeFiles/driver_validation_h_target: phony zephyr/include/generated/zephyr/driver-validation.h + + +############################################# +# Custom command for zephyr/include/generated/zephyr/driver-validation.h + +build zephyr/include/generated/zephyr/driver-validation.h | ${cmake_ninja_workdir}zephyr/include/generated/zephyr/driver-validation.h: CUSTOM_COMMAND zephyr/misc/generated/struct_tags.json /Users/wijnand/zephyrproject/zephyr/scripts/build/gen_kobject_list.py + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr && /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/scripts/build/gen_kobject_list.py --validation-output /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/driver-validation.h --include-subsystem-list /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/struct_tags.json + DESC = Generating include/generated/zephyr/driver-validation.h + restat = 1 + + +############################################# +# Phony custom command for zephyr/CMakeFiles/kobj_types_h_target + +build zephyr/CMakeFiles/kobj_types_h_target | ${cmake_ninja_workdir}zephyr/CMakeFiles/kobj_types_h_target: phony zephyr/include/generated/zephyr/kobj-types-enum.h zephyr/include/generated/zephyr/otype-to-str.h zephyr/include/generated/zephyr/otype-to-size.h + + +############################################# +# Custom command for zephyr/include/generated/zephyr/kobj-types-enum.h + +build zephyr/include/generated/zephyr/kobj-types-enum.h zephyr/include/generated/zephyr/otype-to-str.h zephyr/include/generated/zephyr/otype-to-size.h | ${cmake_ninja_workdir}zephyr/include/generated/zephyr/kobj-types-enum.h ${cmake_ninja_workdir}zephyr/include/generated/zephyr/otype-to-str.h ${cmake_ninja_workdir}zephyr/include/generated/zephyr/otype-to-size.h: CUSTOM_COMMAND zephyr/misc/generated/struct_tags.json /Users/wijnand/zephyrproject/zephyr/scripts/build/gen_kobject_list.py + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr && /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/scripts/build/gen_kobject_list.py --kobj-types-output /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/kobj-types-enum.h --kobj-otype-output /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/otype-to-str.h --kobj-size-output /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/otype-to-size.h --include-subsystem-list /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/struct_tags.json + DESC = Generating include/generated/zephyr/kobj-types-enum.h, include/generated/zephyr/otype-to-str.h, include/generated/zephyr/otype-to-size.h + restat = 1 + + +############################################# +# Phony custom command for zephyr/CMakeFiles/device_api_ld_target + +build zephyr/CMakeFiles/device_api_ld_target | ${cmake_ninja_workdir}zephyr/CMakeFiles/device_api_ld_target: phony zephyr/include/generated/device-api-sections.ld zephyr/include/generated/device-api-sections.cmake + + +############################################# +# Custom command for zephyr/include/generated/device-api-sections.ld + +build zephyr/include/generated/device-api-sections.ld zephyr/include/generated/device-api-sections.cmake | ${cmake_ninja_workdir}zephyr/include/generated/device-api-sections.ld ${cmake_ninja_workdir}zephyr/include/generated/device-api-sections.cmake: CUSTOM_COMMAND /Users/wijnand/zephyrproject/zephyr/scripts/build/gen_iter_sections.py zephyr/misc/generated/struct_tags.json + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr && /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/scripts/build/gen_iter_sections.py --alignment 4 --input /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/struct_tags.json --tag __subsystem --ld-output /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/device-api-sections.ld --cmake-output /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/device-api-sections.cmake + DESC = Generating include/generated/device-api-sections.ld, include/generated/device-api-sections.cmake + restat = 1 + + +############################################# +# Phony custom command for zephyr/CMakeFiles/offsets_h + +build zephyr/CMakeFiles/offsets_h | ${cmake_ninja_workdir}zephyr/CMakeFiles/offsets_h: phony zephyr/include/generated/zephyr/offsets.h || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants zephyr/lib/heap/heap_constants_h zephyr/offsets zephyr/syscall_list_h_target + + +############################################# +# Custom command for zephyr/include/generated/zephyr/offsets.h + +build zephyr/include/generated/zephyr/offsets.h | ${cmake_ninja_workdir}zephyr/include/generated/zephyr/offsets.h: CUSTOM_COMMAND zephyr/CMakeFiles/offsets.dir/arch/xtensa/core/offsets/offsets.c.obj || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants zephyr/lib/heap/heap_constants_h zephyr/offsets zephyr/syscall_list_h_target + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr && /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/scripts/build/gen_offset_header.py -i /Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj -o /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/offsets.h + DESC = Generating include/generated/zephyr/offsets.h + restat = 1 + + +############################################# +# Phony custom command for zephyr/CMakeFiles/linker_zephyr_prebuilt_script_target + +build zephyr/CMakeFiles/linker_zephyr_prebuilt_script_target | ${cmake_ninja_workdir}zephyr/CMakeFiles/linker_zephyr_prebuilt_script_target: phony zephyr/linker_zephyr_pre0.cmd || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants zephyr/lib/heap/heap_constants_h zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + + +############################################# +# Custom command for zephyr/linker_zephyr_pre0.cmd + +build zephyr/linker_zephyr_pre0.cmd | ${cmake_ninja_workdir}zephyr/linker_zephyr_pre0.cmd: CUSTOM_COMMAND /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/default.ld zephyr/include/generated/zephyr/autoconf.h || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants zephyr/lib/heap/heap_constants_h zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr && /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -x assembler-with-cpp -undef -MD -MF linker_zephyr_pre0.cmd.dep -MT linker_zephyr_pre0.cmd -D_LINKER -D_ASMLANGUAGE -D__GCC_LINKER_CMD__ -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/../esp32s3 -DLINKER_ZEPHYR_PREBUILT -E /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/../esp32s3/default.ld -P -o linker_zephyr_pre0.cmd && /opt/homebrew/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /Volumes/External/Work/radio/loramodem/app /Users/wijnand/zephyrproject/zephyr /Volumes/External/Work/radio/loramodem/build /Volumes/External/Work/radio/loramodem/build/zephyr /Volumes/External/Work/radio/loramodem/build/zephyr/linker_zephyr_pre0.cmd.dep /Volumes/External/Work/radio/loramodem/build/CMakeFiles/d/cac7baf8c94ec4478f33c3691ce7d3b555249d0fa83ef0b949665c679623c432.d + DESC = Generating linker_zephyr_pre0.cmd + depfile = CMakeFiles/d/cac7baf8c94ec4478f33c3691ce7d3b555249d0fa83ef0b949665c679623c432.d + deps = gcc + restat = 1 + + +############################################# +# Phony custom command for zephyr/CMakeFiles/linker_zephyr_final_script_target + +build zephyr/CMakeFiles/linker_zephyr_final_script_target | ${cmake_ninja_workdir}zephyr/CMakeFiles/linker_zephyr_final_script_target: phony zephyr/linker.cmd || app/libapp.a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/lora/loramac-node/libloramac-node.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/spi/libdrivers__spi.a zephyr/drivers/timer/libdrivers__timer.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants zephyr/lib/heap/heap_constants_h zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr_pre0.elf + + +############################################# +# Custom command for zephyr/linker.cmd + +build zephyr/linker.cmd | ${cmake_ninja_workdir}zephyr/linker.cmd: CUSTOM_COMMAND /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/default.ld zephyr/include/generated/zephyr/autoconf.h zephyr/zephyr_pre0.elf || app/libapp.a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/lora/loramac-node/libloramac-node.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/spi/libdrivers__spi.a zephyr/drivers/timer/libdrivers__timer.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants zephyr/lib/heap/heap_constants_h zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr_pre0.elf + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr && /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -x assembler-with-cpp -undef -MD -MF linker.cmd.dep -MT linker.cmd -D_LINKER -D_ASMLANGUAGE -D__GCC_LINKER_CMD__ -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/../esp32s3 -DLINKER_ZEPHYR_FINAL -E /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/../esp32s3/default.ld -P -o linker.cmd && /opt/homebrew/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /Volumes/External/Work/radio/loramodem/app /Users/wijnand/zephyrproject/zephyr /Volumes/External/Work/radio/loramodem/build /Volumes/External/Work/radio/loramodem/build/zephyr /Volumes/External/Work/radio/loramodem/build/zephyr/linker.cmd.dep /Volumes/External/Work/radio/loramodem/build/CMakeFiles/d/240310ad3477ee74cbd18f7b44bbeb2ab7e3a5199082e8bc4e2c70b237826b12.d + DESC = Generating linker.cmd + depfile = CMakeFiles/d/240310ad3477ee74cbd18f7b44bbeb2ab7e3a5199082e8bc4e2c70b237826b12.d + deps = gcc + restat = 1 + + +############################################# +# Custom command for zephyr/isr_tables.c + +build zephyr/isr_tables.c zephyr/isr_tables_vt.ld zephyr/isr_tables_swi.ld | ${cmake_ninja_workdir}zephyr/isr_tables.c ${cmake_ninja_workdir}zephyr/isr_tables_vt.ld ${cmake_ninja_workdir}zephyr/isr_tables_swi.ld: CUSTOM_COMMAND zephyr/zephyr_pre0.elf || app/libapp.a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/lora/loramac-node/libloramac-node.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/spi/libdrivers__spi.a zephyr/drivers/timer/libdrivers__timer.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants zephyr/lib/heap/heap_constants_h zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr_pre0.elf + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr && /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/scripts/build/gen_isr_tables.py --output-source isr_tables.c --linker-output-files isr_tables_vt.ld isr_tables_swi.ld --kernel /Volumes/External/Work/radio/loramodem/build/zephyr/zephyr_pre0.elf --intlist-section .intList --intlist-section intList --sw-isr-table + DESC = Generating isr_tables.c, isr_tables_vt.ld, isr_tables_swi.ld + restat = 1 + + +############################################# +# Custom command for zephyr/CMakeFiles/initlevels + +build zephyr/CMakeFiles/initlevels | ${cmake_ninja_workdir}zephyr/CMakeFiles/initlevels: CUSTOM_COMMAND zephyr/zephyr.elf || app/libapp.a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/lora/loramac-node/libloramac-node.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/spi/libdrivers__spi.a zephyr/drivers/timer/libdrivers__timer.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants zephyr/lib/heap/heap_constants_h zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr.elf zephyr/zephyr_pre0.elf + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr && /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/scripts/build/check_init_priorities.py --elf-file=/Volumes/External/Work/radio/loramodem/build/zephyr/zephyr.elf --initlevels + pool = console + + +############################################# +# Custom command for zephyr/CMakeFiles/run + +build zephyr/CMakeFiles/run | ${cmake_ninja_workdir}zephyr/CMakeFiles/run: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr && /opt/homebrew/bin/cmake -E echo =================================================== Emulation/Simulation\ not\ supported\ with\ this\ board. =================================================== + + +############################################# +# Phony custom command for zephyr/CMakeFiles/build_info_yaml_saved + +build zephyr/CMakeFiles/build_info_yaml_saved | ${cmake_ninja_workdir}zephyr/CMakeFiles/build_info_yaml_saved: phony build_info.yml + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/arch/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/arch && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/arch/edit_cache: phony zephyr/arch/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/arch/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/arch && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/arch/rebuild_cache: phony zephyr/arch/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/arch/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target arch__common + + +############################################# +# Order-only phony target for arch__common + +build cmake_object_order_depends_target_arch__common: phony || cmake_object_order_depends_target_isr_tables zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj: C_COMPILER__arch__common_unscanned_ /Users/wijnand/zephyrproject/zephyr/arch/common/sw_isr_common.c || cmake_object_order_depends_target_arch__common + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Users/wijnand/zephyrproject/zephyr/arch/common/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/common/CMakeFiles/arch__common.dir + OBJECT_FILE_DIR = zephyr/arch/common/CMakeFiles/arch__common.dir + TARGET_COMPILE_PDB = zephyr/arch/common/CMakeFiles/arch__common.dir/arch__common.pdb + TARGET_PDB = zephyr/arch/common/libarch__common.pdb + TARGET_SUPPORT_DIR = zephyr/arch/common/CMakeFiles/arch__common.dir + +build zephyr/arch/common/CMakeFiles/arch__common.dir/dynamic_isr.c.obj: C_COMPILER__arch__common_unscanned_ /Users/wijnand/zephyrproject/zephyr/arch/common/dynamic_isr.c || cmake_object_order_depends_target_arch__common + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/arch/common/CMakeFiles/arch__common.dir/dynamic_isr.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Users/wijnand/zephyrproject/zephyr/arch/common/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/common/CMakeFiles/arch__common.dir + OBJECT_FILE_DIR = zephyr/arch/common/CMakeFiles/arch__common.dir + TARGET_COMPILE_PDB = zephyr/arch/common/CMakeFiles/arch__common.dir/arch__common.pdb + TARGET_PDB = zephyr/arch/common/libarch__common.pdb + TARGET_SUPPORT_DIR = zephyr/arch/common/CMakeFiles/arch__common.dir + +build zephyr/arch/common/CMakeFiles/arch__common.dir/init.c.obj: C_COMPILER__arch__common_unscanned_ /Users/wijnand/zephyrproject/zephyr/arch/common/init.c || cmake_object_order_depends_target_arch__common + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/arch/common/CMakeFiles/arch__common.dir/init.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Users/wijnand/zephyrproject/zephyr/arch/common/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/common/CMakeFiles/arch__common.dir + OBJECT_FILE_DIR = zephyr/arch/common/CMakeFiles/arch__common.dir + TARGET_COMPILE_PDB = zephyr/arch/common/CMakeFiles/arch__common.dir/arch__common.pdb + TARGET_PDB = zephyr/arch/common/libarch__common.pdb + TARGET_SUPPORT_DIR = zephyr/arch/common/CMakeFiles/arch__common.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target arch__common + + +############################################# +# Link the static library zephyr/arch/common/libarch__common.a + +build zephyr/arch/common/libarch__common.a: C_STATIC_LIBRARY_LINKER__arch__common_ zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj zephyr/arch/common/CMakeFiles/arch__common.dir/dynamic_isr.c.obj zephyr/arch/common/CMakeFiles/arch__common.dir/init.c.obj || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr/arch/common/CMakeFiles/arch__common.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = zephyr/arch/common/CMakeFiles/arch__common.dir/arch__common.pdb + TARGET_FILE = zephyr/arch/common/libarch__common.a + TARGET_PDB = zephyr/arch/common/libarch__common.pdb + TARGET_SUPPORT_DIR = zephyr/arch/common/CMakeFiles/arch__common.dir + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target isr_tables + + +############################################# +# Order-only phony target for isr_tables + +build cmake_object_order_depends_target_isr_tables: phony || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj: C_COMPILER__isr_tables_unscanned_ /Users/wijnand/zephyrproject/zephyr/arch/common/isr_tables.c || cmake_object_order_depends_target_isr_tables + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/common/CMakeFiles/isr_tables.dir + OBJECT_FILE_DIR = zephyr/arch/common/CMakeFiles/isr_tables.dir + TARGET_COMPILE_PDB = zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.pdb + TARGET_PDB = zephyr/arch/common/libisr_tables.pdb + TARGET_SUPPORT_DIR = zephyr/arch/common/CMakeFiles/isr_tables.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target isr_tables + + +############################################# +# Link the static library zephyr/arch/common/libisr_tables.a + +build zephyr/arch/common/libisr_tables.a: C_STATIC_LIBRARY_LINKER__isr_tables_ zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr/arch/common/CMakeFiles/isr_tables.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.pdb + TARGET_FILE = zephyr/arch/common/libisr_tables.a + TARGET_PDB = zephyr/arch/common/libisr_tables.pdb + TARGET_SUPPORT_DIR = zephyr/arch/common/CMakeFiles/isr_tables.dir + + +############################################# +# Utility command for edit_cache + +build zephyr/arch/common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/arch/common && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/arch/common/edit_cache: phony zephyr/arch/common/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/arch/common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/arch/common && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/arch/common/rebuild_cache: phony zephyr/arch/common/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/arch/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/arch/arch/xtensa/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/arch/arch/xtensa/edit_cache: phony zephyr/arch/arch/xtensa/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/arch/arch/xtensa/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/arch/arch/xtensa/rebuild_cache: phony zephyr/arch/arch/xtensa/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/arch/xtensa/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target arch__xtensa__core + + +############################################# +# Order-only phony target for arch__xtensa__core + +build cmake_object_order_depends_target_arch__xtensa__core: phony || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/cpu_idle.c.obj: C_COMPILER__arch__xtensa__core_unscanned_ /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/cpu_idle.c || cmake_object_order_depends_target_arch__xtensa__core + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/cpu_idle.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + OBJECT_FILE_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + TARGET_COMPILE_PDB = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/arch__xtensa__core.pdb + TARGET_PDB = zephyr/arch/arch/xtensa/core/libarch__xtensa__core.pdb + TARGET_SUPPORT_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + +build zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/fatal.c.obj: C_COMPILER__arch__xtensa__core_unscanned_ /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/fatal.c || cmake_object_order_depends_target_arch__xtensa__core + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/fatal.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + OBJECT_FILE_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + TARGET_COMPILE_PDB = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/arch__xtensa__core.pdb + TARGET_PDB = zephyr/arch/arch/xtensa/core/libarch__xtensa__core.pdb + TARGET_SUPPORT_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + +build zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/window_vectors.S.obj: ASM_COMPILER__arch__xtensa__core_unscanned_ /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/window_vectors.S || cmake_object_order_depends_target_arch__xtensa__core + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/window_vectors.S.obj.d + FLAGS = -Wshadow -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -xassembler-with-cpp -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + OBJECT_FILE_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + TARGET_COMPILE_PDB = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/arch__xtensa__core.pdb + TARGET_PDB = zephyr/arch/arch/xtensa/core/libarch__xtensa__core.pdb + TARGET_SUPPORT_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + +build zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/xtensa_asm2_util.S.obj: ASM_COMPILER__arch__xtensa__core_unscanned_ /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/xtensa_asm2_util.S || cmake_object_order_depends_target_arch__xtensa__core + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/xtensa_asm2_util.S.obj.d + FLAGS = -Wshadow -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -xassembler-with-cpp -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + OBJECT_FILE_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + TARGET_COMPILE_PDB = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/arch__xtensa__core.pdb + TARGET_PDB = zephyr/arch/arch/xtensa/core/libarch__xtensa__core.pdb + TARGET_SUPPORT_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + +build zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/irq_manage.c.obj: C_COMPILER__arch__xtensa__core_unscanned_ /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/irq_manage.c || cmake_object_order_depends_target_arch__xtensa__core + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/irq_manage.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + OBJECT_FILE_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + TARGET_COMPILE_PDB = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/arch__xtensa__core.pdb + TARGET_PDB = zephyr/arch/arch/xtensa/core/libarch__xtensa__core.pdb + TARGET_SUPPORT_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + +build zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/thread.c.obj: C_COMPILER__arch__xtensa__core_unscanned_ /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/thread.c || cmake_object_order_depends_target_arch__xtensa__core + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/thread.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + OBJECT_FILE_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + TARGET_COMPILE_PDB = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/arch__xtensa__core.pdb + TARGET_PDB = zephyr/arch/arch/xtensa/core/libarch__xtensa__core.pdb + TARGET_SUPPORT_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + +build zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/vector_handlers.c.obj: C_COMPILER__arch__xtensa__core_unscanned_ /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/vector_handlers.c || cmake_object_order_depends_target_arch__xtensa__core + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/vector_handlers.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + OBJECT_FILE_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + TARGET_COMPILE_PDB = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/arch__xtensa__core.pdb + TARGET_PDB = zephyr/arch/arch/xtensa/core/libarch__xtensa__core.pdb + TARGET_SUPPORT_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + +build zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/prep_c.c.obj: C_COMPILER__arch__xtensa__core_unscanned_ /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/prep_c.c || cmake_object_order_depends_target_arch__xtensa__core + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/prep_c.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + OBJECT_FILE_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + TARGET_COMPILE_PDB = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/arch__xtensa__core.pdb + TARGET_PDB = zephyr/arch/arch/xtensa/core/libarch__xtensa__core.pdb + TARGET_SUPPORT_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target arch__xtensa__core + + +############################################# +# Link the static library zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a + +build zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a: C_STATIC_LIBRARY_LINKER__arch__xtensa__core_ zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/cpu_idle.c.obj zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/fatal.c.obj zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/window_vectors.S.obj zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/xtensa_asm2_util.S.obj zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/irq_manage.c.obj zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/thread.c.obj zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/vector_handlers.c.obj zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/prep_c.c.obj || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/arch__xtensa__core.pdb + TARGET_FILE = zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a + TARGET_PDB = zephyr/arch/arch/xtensa/core/libarch__xtensa__core.pdb + TARGET_SUPPORT_DIR = zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir + + +############################################# +# Utility command for zsr_h + +build zephyr/arch/arch/xtensa/core/zsr_h: phony zephyr/arch/arch/xtensa/core/CMakeFiles/zsr_h zephyr/include/generated/zephyr/zsr.h zephyr/include/generated/zephyr/core-isa-dM.h + + +############################################# +# Utility command for xtensa_vectors_ld + +build zephyr/arch/arch/xtensa/core/xtensa_vectors_ld: phony zephyr/arch/arch/xtensa/core/CMakeFiles/xtensa_vectors_ld zephyr/include/generated/xtensa_vectors.ld zephyr/include/generated/zephyr/core-isa-dM.h + + +############################################# +# Utility command for edit_cache + +build zephyr/arch/arch/xtensa/core/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/arch/arch/xtensa/core/edit_cache: phony zephyr/arch/arch/xtensa/core/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/arch/arch/xtensa/core/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/arch/arch/xtensa/core/rebuild_cache: phony zephyr/arch/arch/xtensa/core/CMakeFiles/rebuild_cache.util + + +############################################# +# Phony custom command for zephyr/arch/arch/xtensa/core/CMakeFiles/zsr_h + +build zephyr/arch/arch/xtensa/core/CMakeFiles/zsr_h | ${cmake_ninja_workdir}zephyr/arch/arch/xtensa/core/CMakeFiles/zsr_h: phony zephyr/include/generated/zephyr/zsr.h + + +############################################# +# Custom command for zephyr/include/generated/zephyr/zsr.h + +build zephyr/include/generated/zephyr/zsr.h | ${cmake_ninja_workdir}zephyr/include/generated/zephyr/zsr.h: CUSTOM_COMMAND zephyr/include/generated/zephyr/core-isa-dM.h + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core && /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/gen_zsr.py /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/core-isa-dM.h /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/zsr.h + DESC = Generating ../../../../include/generated/zephyr/zsr.h + restat = 1 + + +############################################# +# Custom command for zephyr/include/generated/zephyr/core-isa-dM.h + +build zephyr/include/generated/zephyr/core-isa-dM.h | ${cmake_ninja_workdir}zephyr/include/generated/zephyr/core-isa-dM.h: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core && /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -E -dM -U__XCC__ -I/Users/wijnand/zephyrproject/modules/hal/espressif/components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/core-isa-dM.c -o /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/core-isa-dM.h + DESC = Generating ../../../../include/generated/zephyr/core-isa-dM.h + restat = 1 + + +############################################# +# Phony custom command for zephyr/arch/arch/xtensa/core/CMakeFiles/xtensa_vectors_ld + +build zephyr/arch/arch/xtensa/core/CMakeFiles/xtensa_vectors_ld | ${cmake_ninja_workdir}zephyr/arch/arch/xtensa/core/CMakeFiles/xtensa_vectors_ld: phony zephyr/include/generated/xtensa_vectors.ld + + +############################################# +# Custom command for zephyr/include/generated/xtensa_vectors.ld + +build zephyr/include/generated/xtensa_vectors.ld | ${cmake_ninja_workdir}zephyr/include/generated/xtensa_vectors.ld: CUSTOM_COMMAND zephyr/include/generated/zephyr/core-isa-dM.h + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core && /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/gen_vectors.py /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/core-isa-dM.h > /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/xtensa_vectors.ld + DESC = Generating ../../../../include/generated/xtensa_vectors.ld + restat = 1 + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/arch/arch/xtensa/core/startup/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core/startup && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/arch/arch/xtensa/core/startup/edit_cache: phony zephyr/arch/arch/xtensa/core/startup/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/arch/arch/xtensa/core/startup/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core/startup && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/arch/arch/xtensa/core/startup/rebuild_cache: phony zephyr/arch/arch/xtensa/core/startup/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/edit_cache: phony zephyr/lib/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/rebuild_cache: phony zephyr/lib/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/libc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/libc/edit_cache: phony zephyr/lib/libc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/libc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/libc/rebuild_cache: phony zephyr/lib/libc/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/lib/libc/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target lib__libc__picolibc + + +############################################# +# Order-only phony target for lib__libc__picolibc + +build cmake_object_order_depends_target_lib__libc__picolibc: phony || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj: C_COMPILER__lib__libc__picolibc_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/assert.c || cmake_object_order_depends_target_lib__libc__picolibc + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-lto + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + OBJECT_FILE_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + TARGET_COMPILE_PDB = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/lib__libc__picolibc.pdb + TARGET_PDB = zephyr/lib/libc/picolibc/liblib__libc__picolibc.pdb + TARGET_SUPPORT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + +build zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj: C_COMPILER__lib__libc__picolibc_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/cbprintf.c || cmake_object_order_depends_target_lib__libc__picolibc + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-lto + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + OBJECT_FILE_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + TARGET_COMPILE_PDB = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/lib__libc__picolibc.pdb + TARGET_PDB = zephyr/lib/libc/picolibc/liblib__libc__picolibc.pdb + TARGET_SUPPORT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + +build zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj: C_COMPILER__lib__libc__picolibc_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/chk_fail.c || cmake_object_order_depends_target_lib__libc__picolibc + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-lto + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + OBJECT_FILE_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + TARGET_COMPILE_PDB = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/lib__libc__picolibc.pdb + TARGET_PDB = zephyr/lib/libc/picolibc/liblib__libc__picolibc.pdb + TARGET_SUPPORT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + +build zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj: C_COMPILER__lib__libc__picolibc_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/errno_wrap.c || cmake_object_order_depends_target_lib__libc__picolibc + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-lto + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + OBJECT_FILE_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + TARGET_COMPILE_PDB = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/lib__libc__picolibc.pdb + TARGET_PDB = zephyr/lib/libc/picolibc/liblib__libc__picolibc.pdb + TARGET_SUPPORT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + +build zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj: C_COMPILER__lib__libc__picolibc_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/exit.c || cmake_object_order_depends_target_lib__libc__picolibc + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-lto + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + OBJECT_FILE_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + TARGET_COMPILE_PDB = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/lib__libc__picolibc.pdb + TARGET_PDB = zephyr/lib/libc/picolibc/liblib__libc__picolibc.pdb + TARGET_SUPPORT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + +build zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj: C_COMPILER__lib__libc__picolibc_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/locks.c || cmake_object_order_depends_target_lib__libc__picolibc + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-lto + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + OBJECT_FILE_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + TARGET_COMPILE_PDB = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/lib__libc__picolibc.pdb + TARGET_PDB = zephyr/lib/libc/picolibc/liblib__libc__picolibc.pdb + TARGET_SUPPORT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + +build zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj: C_COMPILER__lib__libc__picolibc_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/stdio.c || cmake_object_order_depends_target_lib__libc__picolibc + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-lto + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + OBJECT_FILE_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + TARGET_COMPILE_PDB = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/lib__libc__picolibc.pdb + TARGET_PDB = zephyr/lib/libc/picolibc/liblib__libc__picolibc.pdb + TARGET_SUPPORT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target lib__libc__picolibc + + +############################################# +# Link the static library zephyr/lib/libc/picolibc/liblib__libc__picolibc.a + +build zephyr/lib/libc/picolibc/liblib__libc__picolibc.a: C_STATIC_LIBRARY_LINKER__lib__libc__picolibc_ zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/lib__libc__picolibc.pdb + TARGET_FILE = zephyr/lib/libc/picolibc/liblib__libc__picolibc.a + TARGET_PDB = zephyr/lib/libc/picolibc/liblib__libc__picolibc.pdb + TARGET_SUPPORT_DIR = zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/libc/picolibc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/picolibc && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/libc/picolibc/edit_cache: phony zephyr/lib/libc/picolibc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/libc/picolibc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/picolibc && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/libc/picolibc/rebuild_cache: phony zephyr/lib/libc/picolibc/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/lib/libc/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target lib__libc__common + + +############################################# +# Order-only phony target for lib__libc__common + +build cmake_object_order_depends_target_lib__libc__common: phony || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj: C_COMPILER__lib__libc__common_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/libc/common/source/stdlib/abort.c || cmake_object_order_depends_target_lib__libc__common + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-builtin-malloc + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir + OBJECT_FILE_DIR = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib + TARGET_COMPILE_PDB = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/lib__libc__common.pdb + TARGET_PDB = zephyr/lib/libc/common/liblib__libc__common.pdb + TARGET_SUPPORT_DIR = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir + +build zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/time/time.c.obj: C_COMPILER__lib__libc__common_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/libc/common/source/time/time.c || cmake_object_order_depends_target_lib__libc__common + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/time/time.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-builtin-malloc + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir + OBJECT_FILE_DIR = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/time + TARGET_COMPILE_PDB = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/lib__libc__common.pdb + TARGET_PDB = zephyr/lib/libc/common/liblib__libc__common.pdb + TARGET_SUPPORT_DIR = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir + +build zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj: C_COMPILER__lib__libc__common_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/libc/common/source/stdlib/malloc.c || cmake_object_order_depends_target_lib__libc__common + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-builtin-malloc + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir + OBJECT_FILE_DIR = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib + TARGET_COMPILE_PDB = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/lib__libc__common.pdb + TARGET_PDB = zephyr/lib/libc/common/liblib__libc__common.pdb + TARGET_SUPPORT_DIR = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target lib__libc__common + + +############################################# +# Link the static library zephyr/lib/libc/common/liblib__libc__common.a + +build zephyr/lib/libc/common/liblib__libc__common.a: C_STATIC_LIBRARY_LINKER__lib__libc__common_ zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/time/time.c.obj zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/lib__libc__common.pdb + TARGET_FILE = zephyr/lib/libc/common/liblib__libc__common.a + TARGET_PDB = zephyr/lib/libc/common/liblib__libc__common.pdb + TARGET_SUPPORT_DIR = zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/libc/common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/common && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/libc/common/edit_cache: phony zephyr/lib/libc/common/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/libc/common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/common && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/libc/common/rebuild_cache: phony zephyr/lib/libc/common/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/posix/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/posix/edit_cache: phony zephyr/lib/posix/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/posix/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/posix/rebuild_cache: phony zephyr/lib/posix/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/lib/posix/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/posix/c_lang_support_r/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix/c_lang_support_r && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/posix/c_lang_support_r/edit_cache: phony zephyr/lib/posix/c_lang_support_r/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/posix/c_lang_support_r/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix/c_lang_support_r && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/posix/c_lang_support_r/rebuild_cache: phony zephyr/lib/posix/c_lang_support_r/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/lib/posix/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target lib__posix__c_lib_ext + + +############################################# +# Order-only phony target for lib__posix__c_lib_ext + +build cmake_object_order_depends_target_lib__posix__c_lib_ext: phony || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/fnmatch.c.obj: C_COMPILER__lib__posix__c_lib_ext_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/fnmatch.c || cmake_object_order_depends_target_lib__posix__c_lib_ext + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/fnmatch.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir + OBJECT_FILE_DIR = zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir + TARGET_COMPILE_PDB = zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/lib__posix__c_lib_ext.pdb + TARGET_PDB = zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.pdb + TARGET_SUPPORT_DIR = zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir + +build zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getentropy.c.obj: C_COMPILER__lib__posix__c_lib_ext_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getentropy.c || cmake_object_order_depends_target_lib__posix__c_lib_ext + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getentropy.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir + OBJECT_FILE_DIR = zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir + TARGET_COMPILE_PDB = zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/lib__posix__c_lib_ext.pdb + TARGET_PDB = zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.pdb + TARGET_SUPPORT_DIR = zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir + +build zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt_shim.c.obj: C_COMPILER__lib__posix__c_lib_ext_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt_shim.c || cmake_object_order_depends_target_lib__posix__c_lib_ext + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt_shim.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir + OBJECT_FILE_DIR = zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir + TARGET_COMPILE_PDB = zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/lib__posix__c_lib_ext.pdb + TARGET_PDB = zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.pdb + TARGET_SUPPORT_DIR = zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target lib__posix__c_lib_ext + + +############################################# +# Link the static library zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a + +build zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a: C_STATIC_LIBRARY_LINKER__lib__posix__c_lib_ext_ zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/fnmatch.c.obj zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getentropy.c.obj zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt_shim.c.obj || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/lib__posix__c_lib_ext.pdb + TARGET_FILE = zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a + TARGET_PDB = zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.pdb + TARGET_SUPPORT_DIR = zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/posix/c_lib_ext/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix/c_lib_ext && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/posix/c_lib_ext/edit_cache: phony zephyr/lib/posix/c_lib_ext/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/posix/c_lib_ext/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix/c_lib_ext && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/posix/c_lib_ext/rebuild_cache: phony zephyr/lib/posix/c_lib_ext/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/hash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/hash && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/hash/edit_cache: phony zephyr/lib/hash/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/hash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/hash && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/hash/rebuild_cache: phony zephyr/lib/hash/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/lib/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target heap_constants + + +############################################# +# Order-only phony target for heap_constants + +build cmake_object_order_depends_target_heap_constants: phony || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target + +build zephyr/lib/heap/CMakeFiles/heap_constants.dir/heap_constants.c.obj: C_COMPILER__heap_constants_unscanned_ /Users/wijnand/zephyrproject/zephyr/lib/heap/heap_constants.c || cmake_object_order_depends_target_heap_constants + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/lib/heap/CMakeFiles/heap_constants.dir/heap_constants.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-lto + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/lib/heap/CMakeFiles/heap_constants.dir + OBJECT_FILE_DIR = zephyr/lib/heap/CMakeFiles/heap_constants.dir + TARGET_COMPILE_PDB = zephyr/lib/heap/CMakeFiles/heap_constants.dir/ + TARGET_PDB = "" + TARGET_SUPPORT_DIR = zephyr/lib/heap/CMakeFiles/heap_constants.dir + + + +############################################# +# Object library heap_constants + +build zephyr/lib/heap/heap_constants: phony zephyr/lib/heap/CMakeFiles/heap_constants.dir/heap_constants.c.obj + + +############################################# +# Utility command for heap_constants_h + +build zephyr/lib/heap/heap_constants_h: phony zephyr/lib/heap/CMakeFiles/heap_constants_h zephyr/include/generated/zephyr/heap_constants.h zephyr/lib/heap/heap_constants + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/heap/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/heap && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/heap/edit_cache: phony zephyr/lib/heap/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/heap/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/heap && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/heap/rebuild_cache: phony zephyr/lib/heap/CMakeFiles/rebuild_cache.util + + +############################################# +# Phony custom command for zephyr/lib/heap/CMakeFiles/heap_constants_h + +build zephyr/lib/heap/CMakeFiles/heap_constants_h | ${cmake_ninja_workdir}zephyr/lib/heap/CMakeFiles/heap_constants_h: phony zephyr/include/generated/zephyr/heap_constants.h || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants zephyr/syscall_list_h_target + + +############################################# +# Custom command for zephyr/include/generated/zephyr/heap_constants.h + +build zephyr/include/generated/zephyr/heap_constants.h | ${cmake_ninja_workdir}zephyr/include/generated/zephyr/heap_constants.h: CUSTOM_COMMAND zephyr/lib/heap/CMakeFiles/heap_constants.dir/heap_constants.c.obj || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants zephyr/syscall_list_h_target + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/heap && /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/scripts/build/gen_offset_header.py -i /Volumes/External/Work/radio/loramodem/build/zephyr/lib/heap/CMakeFiles/heap_constants.dir/./heap_constants.c.obj -o /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/heap_constants.h + DESC = Generating ../../include/generated/zephyr/heap_constants.h + restat = 1 + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/mem_blocks/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/mem_blocks && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/mem_blocks/edit_cache: phony zephyr/lib/mem_blocks/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/mem_blocks/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/mem_blocks && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/mem_blocks/rebuild_cache: phony zephyr/lib/mem_blocks/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/midi2/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/midi2 && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/midi2/edit_cache: phony zephyr/lib/midi2/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/midi2/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/midi2 && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/midi2/rebuild_cache: phony zephyr/lib/midi2/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/os/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/os && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/os/edit_cache: phony zephyr/lib/os/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/os/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/os && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/os/rebuild_cache: phony zephyr/lib/os/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/utils/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/utils && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/utils/edit_cache: phony zephyr/lib/utils/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/utils/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/utils && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/utils/rebuild_cache: phony zephyr/lib/utils/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/lib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/lib/uuid/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/uuid && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/lib/uuid/edit_cache: phony zephyr/lib/uuid/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/lib/uuid/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/lib/uuid && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/lib/uuid/rebuild_cache: phony zephyr/lib/uuid/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/soc && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/soc/edit_cache: phony zephyr/soc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/soc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/soc && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/soc/rebuild_cache: phony zephyr/soc/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/soc/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/soc/common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/soc/common && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/soc/common/edit_cache: phony zephyr/soc/common/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/soc/common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/soc/common && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/soc/common/rebuild_cache: phony zephyr/soc/common/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/soc/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/soc/soc/esp32s3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/soc/soc/esp32s3 && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/soc/soc/esp32s3/edit_cache: phony zephyr/soc/soc/esp32s3/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/soc/soc/esp32s3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/soc/soc/esp32s3 && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/soc/soc/esp32s3/rebuild_cache: phony zephyr/soc/soc/esp32s3/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/soc/espressif/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/soc/soc/esp32s3/common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/soc/soc/esp32s3/common && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/soc/soc/esp32s3/common/edit_cache: phony zephyr/soc/soc/esp32s3/common/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/soc/soc/esp32s3/common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/soc/soc/esp32s3/common && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/soc/soc/esp32s3/common/rebuild_cache: phony zephyr/soc/soc/esp32s3/common/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/soc/espressif/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/soc/soc/esp32s3/esp32s3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/soc/soc/esp32s3/esp32s3 && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/soc/soc/esp32s3/esp32s3/edit_cache: phony zephyr/soc/soc/esp32s3/esp32s3/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/soc/soc/esp32s3/esp32s3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/soc/soc/esp32s3/esp32s3 && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/soc/soc/esp32s3/esp32s3/rebuild_cache: phony zephyr/soc/soc/esp32s3/esp32s3/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/boards/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/boards && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/boards/edit_cache: phony zephyr/boards/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/boards/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/boards && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/boards/rebuild_cache: phony zephyr/boards/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/boards/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/boards/shields/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/boards/shields && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/boards/shields/edit_cache: phony zephyr/boards/shields/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/boards/shields/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/boards/shields && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/boards/shields/rebuild_cache: phony zephyr/boards/shields/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/edit_cache: phony zephyr/subsys/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/rebuild_cache: phony zephyr/subsys/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/canbus/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/canbus && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/canbus/edit_cache: phony zephyr/subsys/canbus/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/canbus/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/canbus && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/canbus/rebuild_cache: phony zephyr/subsys/canbus/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/debug/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/debug && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/debug/edit_cache: phony zephyr/subsys/debug/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/debug/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/debug && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/debug/rebuild_cache: phony zephyr/subsys/debug/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/fb/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/fb && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/fb/edit_cache: phony zephyr/subsys/fb/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/fb/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/fb && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/fb/rebuild_cache: phony zephyr/subsys/fb/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/fs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/fs && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/fs/edit_cache: phony zephyr/subsys/fs/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/fs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/fs && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/fs/rebuild_cache: phony zephyr/subsys/fs/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/gnss/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/gnss && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/gnss/edit_cache: phony zephyr/subsys/gnss/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/gnss/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/gnss && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/gnss/rebuild_cache: phony zephyr/subsys/gnss/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/instrumentation/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/instrumentation && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/instrumentation/edit_cache: phony zephyr/subsys/instrumentation/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/instrumentation/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/instrumentation && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/instrumentation/rebuild_cache: phony zephyr/subsys/instrumentation/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/ipc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/ipc && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/ipc/edit_cache: phony zephyr/subsys/ipc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/ipc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/ipc && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/ipc/rebuild_cache: phony zephyr/subsys/ipc/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/kvss/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/kvss && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/kvss/edit_cache: phony zephyr/subsys/kvss/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/kvss/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/kvss && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/kvss/rebuild_cache: phony zephyr/subsys/kvss/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/logging/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/logging && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/logging/edit_cache: phony zephyr/subsys/logging/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/logging/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/logging && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/logging/rebuild_cache: phony zephyr/subsys/logging/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/logging/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/logging/backends/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/logging/backends && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/logging/backends/edit_cache: phony zephyr/subsys/logging/backends/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/logging/backends/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/logging/backends && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/logging/backends/rebuild_cache: phony zephyr/subsys/logging/backends/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/logging/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/logging/frontends/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/logging/frontends && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/logging/frontends/edit_cache: phony zephyr/subsys/logging/frontends/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/logging/frontends/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/logging/frontends && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/logging/frontends/rebuild_cache: phony zephyr/subsys/logging/frontends/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/mem_mgmt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/mem_mgmt && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/mem_mgmt/edit_cache: phony zephyr/subsys/mem_mgmt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/mem_mgmt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/mem_mgmt && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/mem_mgmt/rebuild_cache: phony zephyr/subsys/mem_mgmt/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/mgmt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/mgmt && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/mgmt/edit_cache: phony zephyr/subsys/mgmt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/mgmt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/mgmt && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/mgmt/rebuild_cache: phony zephyr/subsys/mgmt/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/modbus/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/modbus && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/modbus/edit_cache: phony zephyr/subsys/modbus/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/modbus/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/modbus && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/modbus/rebuild_cache: phony zephyr/subsys/modbus/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/pm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/pm && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/pm/edit_cache: phony zephyr/subsys/pm/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/pm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/pm && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/pm/rebuild_cache: phony zephyr/subsys/pm/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/pm/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/pm/policy/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/pm/policy && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/pm/policy/edit_cache: phony zephyr/subsys/pm/policy/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/pm/policy/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/pm/policy && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/pm/policy/rebuild_cache: phony zephyr/subsys/pm/policy/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/pmci/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/pmci && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/pmci/edit_cache: phony zephyr/subsys/pmci/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/pmci/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/pmci && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/pmci/rebuild_cache: phony zephyr/subsys/pmci/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/portability/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/portability && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/portability/edit_cache: phony zephyr/subsys/portability/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/portability/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/portability && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/portability/rebuild_cache: phony zephyr/subsys/portability/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/random/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/random && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/random/edit_cache: phony zephyr/subsys/random/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/random/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/random && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/random/rebuild_cache: phony zephyr/subsys/random/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/rtio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/rtio && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/rtio/edit_cache: phony zephyr/subsys/rtio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/rtio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/rtio && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/rtio/rebuild_cache: phony zephyr/subsys/rtio/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/sd/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/sd && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/sd/edit_cache: phony zephyr/subsys/sd/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/sd/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/sd && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/sd/rebuild_cache: phony zephyr/subsys/sd/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/stats/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/stats && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/stats/edit_cache: phony zephyr/subsys/stats/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/stats/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/stats && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/stats/rebuild_cache: phony zephyr/subsys/stats/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/storage/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/storage && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/storage/edit_cache: phony zephyr/subsys/storage/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/storage/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/storage && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/storage/rebuild_cache: phony zephyr/subsys/storage/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/task_wdt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/task_wdt && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/task_wdt/edit_cache: phony zephyr/subsys/task_wdt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/task_wdt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/task_wdt && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/task_wdt/rebuild_cache: phony zephyr/subsys/task_wdt/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/testsuite/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/testsuite && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/testsuite/edit_cache: phony zephyr/subsys/testsuite/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/testsuite/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/testsuite && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/testsuite/rebuild_cache: phony zephyr/subsys/testsuite/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/tracing/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/tracing && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/tracing/edit_cache: phony zephyr/subsys/tracing/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/tracing/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/tracing && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/tracing/rebuild_cache: phony zephyr/subsys/tracing/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/usb/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/usb && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/usb/edit_cache: phony zephyr/subsys/usb/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/usb/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/usb && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/usb/rebuild_cache: phony zephyr/subsys/usb/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/subsys/usb/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/subsys/usb/common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/usb/common && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/subsys/usb/common/edit_cache: phony zephyr/subsys/usb/common/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/subsys/usb/common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/usb/common && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/subsys/usb/common/rebuild_cache: phony zephyr/subsys/usb/common/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/edit_cache: phony zephyr/drivers/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/rebuild_cache: phony zephyr/drivers/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/disk/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/disk && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/disk/edit_cache: phony zephyr/drivers/disk/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/disk/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/disk && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/disk/rebuild_cache: phony zephyr/drivers/disk/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/firmware/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/firmware && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/firmware/edit_cache: phony zephyr/drivers/firmware/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/firmware/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/firmware && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/firmware/rebuild_cache: phony zephyr/drivers/firmware/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__interrupt_controller + + +############################################# +# Order-only phony target for drivers__interrupt_controller + +build cmake_object_order_depends_target_drivers__interrupt_controller: phony || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_esp32.c.obj: C_COMPILER__drivers__interrupt_controller_unscanned_ /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/intc_esp32.c || cmake_object_order_depends_target_drivers__interrupt_controller + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_esp32.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/arch/common/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir + OBJECT_FILE_DIR = zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir + TARGET_COMPILE_PDB = zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/drivers__interrupt_controller.pdb + TARGET_PDB = zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__interrupt_controller + + +############################################# +# Link the static library zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a + +build zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a: C_STATIC_LIBRARY_LINKER__drivers__interrupt_controller_ zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_esp32.c.obj || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/drivers__interrupt_controller.pdb + TARGET_FILE = zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a + TARGET_PDB = zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/interrupt_controller/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/interrupt_controller && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/interrupt_controller/edit_cache: phony zephyr/drivers/interrupt_controller/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/interrupt_controller/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/interrupt_controller && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/interrupt_controller/rebuild_cache: phony zephyr/drivers/interrupt_controller/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/misc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/misc && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/misc/edit_cache: phony zephyr/drivers/misc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/misc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/misc && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/misc/rebuild_cache: phony zephyr/drivers/misc/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/drivers/misc/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/misc/interconn/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/misc/interconn && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/misc/interconn/edit_cache: phony zephyr/drivers/misc/interconn/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/misc/interconn/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/misc/interconn && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/misc/interconn/rebuild_cache: phony zephyr/drivers/misc/interconn/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/pcie/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pcie && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/pcie/edit_cache: phony zephyr/drivers/pcie/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/pcie/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pcie && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/pcie/rebuild_cache: phony zephyr/drivers/pcie/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/usb/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/usb/edit_cache: phony zephyr/drivers/usb/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/usb/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/usb/rebuild_cache: phony zephyr/drivers/usb/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/drivers/usb/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/usb/common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb/common && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/usb/common/edit_cache: phony zephyr/drivers/usb/common/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/usb/common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb/common && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/usb/common/rebuild_cache: phony zephyr/drivers/usb/common/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/drivers/usb/common/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/usb/common/buf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb/common/buf && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/usb/common/buf/edit_cache: phony zephyr/drivers/usb/common/buf/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/usb/common/buf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb/common/buf && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/usb/common/buf/rebuild_cache: phony zephyr/drivers/usb/common/buf/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/usb_c/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb_c && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/usb_c/edit_cache: phony zephyr/drivers/usb_c/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/usb_c/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb_c && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/usb_c/rebuild_cache: phony zephyr/drivers/usb_c/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__clock_control + + +############################################# +# Order-only phony target for drivers__clock_control + +build cmake_object_order_depends_target_drivers__clock_control: phony || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_control_esp32.c.obj: C_COMPILER__drivers__clock_control_unscanned_ /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/clock_control_esp32.c || cmake_object_order_depends_target_drivers__clock_control + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_control_esp32.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir + OBJECT_FILE_DIR = zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir + TARGET_COMPILE_PDB = zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/drivers__clock_control.pdb + TARGET_PDB = zephyr/drivers/clock_control/libdrivers__clock_control.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__clock_control + + +############################################# +# Link the static library zephyr/drivers/clock_control/libdrivers__clock_control.a + +build zephyr/drivers/clock_control/libdrivers__clock_control.a: C_STATIC_LIBRARY_LINKER__drivers__clock_control_ zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_control_esp32.c.obj || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/drivers__clock_control.pdb + TARGET_FILE = zephyr/drivers/clock_control/libdrivers__clock_control.a + TARGET_PDB = zephyr/drivers/clock_control/libdrivers__clock_control.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/clock_control/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/clock_control && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/clock_control/edit_cache: phony zephyr/drivers/clock_control/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/clock_control/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/clock_control && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/clock_control/rebuild_cache: phony zephyr/drivers/clock_control/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__console + + +############################################# +# Order-only phony target for drivers__console + +build cmake_object_order_depends_target_drivers__console: phony || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj: C_COMPILER__drivers__console_unscanned_ /Users/wijnand/zephyrproject/zephyr/drivers/console/uart_console.c || cmake_object_order_depends_target_drivers__console + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/console/CMakeFiles/drivers__console.dir + OBJECT_FILE_DIR = zephyr/drivers/console/CMakeFiles/drivers__console.dir + TARGET_COMPILE_PDB = zephyr/drivers/console/CMakeFiles/drivers__console.dir/drivers__console.pdb + TARGET_PDB = zephyr/drivers/console/libdrivers__console.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/console/CMakeFiles/drivers__console.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__console + + +############################################# +# Link the static library zephyr/drivers/console/libdrivers__console.a + +build zephyr/drivers/console/libdrivers__console.a: C_STATIC_LIBRARY_LINKER__drivers__console_ zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr/drivers/console/CMakeFiles/drivers__console.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = zephyr/drivers/console/CMakeFiles/drivers__console.dir/drivers__console.pdb + TARGET_FILE = zephyr/drivers/console/libdrivers__console.a + TARGET_PDB = zephyr/drivers/console/libdrivers__console.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/console/CMakeFiles/drivers__console.dir + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/console/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/console && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/console/edit_cache: phony zephyr/drivers/console/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/console/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/console && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/console/rebuild_cache: phony zephyr/drivers/console/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__gpio + + +############################################# +# Order-only phony target for drivers__gpio + +build cmake_object_order_depends_target_drivers__gpio: phony || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_esp32.c.obj: C_COMPILER__drivers__gpio_unscanned_ /Users/wijnand/zephyrproject/zephyr/drivers/gpio/gpio_esp32.c || cmake_object_order_depends_target_drivers__gpio + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_esp32.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir + OBJECT_FILE_DIR = zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir + TARGET_COMPILE_PDB = zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/drivers__gpio.pdb + TARGET_PDB = zephyr/drivers/gpio/libdrivers__gpio.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__gpio + + +############################################# +# Link the static library zephyr/drivers/gpio/libdrivers__gpio.a + +build zephyr/drivers/gpio/libdrivers__gpio.a: C_STATIC_LIBRARY_LINKER__drivers__gpio_ zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_esp32.c.obj || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/drivers__gpio.pdb + TARGET_FILE = zephyr/drivers/gpio/libdrivers__gpio.a + TARGET_PDB = zephyr/drivers/gpio/libdrivers__gpio.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/gpio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/gpio && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/gpio/edit_cache: phony zephyr/drivers/gpio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/gpio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/gpio && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/gpio/rebuild_cache: phony zephyr/drivers/gpio/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/lora/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/lora/edit_cache: phony zephyr/drivers/lora/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/lora/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/lora/rebuild_cache: phony zephyr/drivers/lora/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/drivers/lora/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target loramac-node + + +############################################# +# Order-only phony target for loramac-node + +build cmake_object_order_depends_target_loramac-node: phony || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx126x.c.obj: C_COMPILER__loramac-node_unscanned_ /Users/wijnand/zephyrproject/zephyr/drivers/lora/loramac-node/sx126x.c || cmake_object_order_depends_target_loramac-node + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx126x.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + OBJECT_FILE_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + TARGET_COMPILE_PDB = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/loramac-node.pdb + TARGET_PDB = zephyr/drivers/lora/loramac-node/libloramac-node.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + +build zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/hal_common.c.obj: C_COMPILER__loramac-node_unscanned_ /Users/wijnand/zephyrproject/zephyr/drivers/lora/loramac-node/hal_common.c || cmake_object_order_depends_target_loramac-node + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/hal_common.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + OBJECT_FILE_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + TARGET_COMPILE_PDB = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/loramac-node.pdb + TARGET_PDB = zephyr/drivers/lora/loramac-node/libloramac-node.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + +build zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx12xx_common.c.obj: C_COMPILER__loramac-node_unscanned_ /Users/wijnand/zephyrproject/zephyr/drivers/lora/loramac-node/sx12xx_common.c || cmake_object_order_depends_target_loramac-node + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx12xx_common.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + OBJECT_FILE_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + TARGET_COMPILE_PDB = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/loramac-node.pdb + TARGET_PDB = zephyr/drivers/lora/loramac-node/libloramac-node.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + +build zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx126x_standalone.c.obj: C_COMPILER__loramac-node_unscanned_ /Users/wijnand/zephyrproject/zephyr/drivers/lora/loramac-node/sx126x_standalone.c || cmake_object_order_depends_target_loramac-node + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx126x_standalone.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + OBJECT_FILE_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + TARGET_COMPILE_PDB = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/loramac-node.pdb + TARGET_PDB = zephyr/drivers/lora/loramac-node/libloramac-node.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + +build zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards/mcu/utilities.c.obj: C_COMPILER__loramac-node_unscanned_ /Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards/mcu/utilities.c || cmake_object_order_depends_target_loramac-node + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards/mcu/utilities.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + OBJECT_FILE_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards/mcu + TARGET_COMPILE_PDB = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/loramac-node.pdb + TARGET_PDB = zephyr/drivers/lora/loramac-node/libloramac-node.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + +build zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/systime.c.obj: C_COMPILER__loramac-node_unscanned_ /Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/systime.c || cmake_object_order_depends_target_loramac-node + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/systime.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + OBJECT_FILE_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system + TARGET_COMPILE_PDB = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/loramac-node.pdb + TARGET_PDB = zephyr/drivers/lora/loramac-node/libloramac-node.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + +build zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/timer.c.obj: C_COMPILER__loramac-node_unscanned_ /Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/timer.c || cmake_object_order_depends_target_loramac-node + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/timer.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + OBJECT_FILE_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system + TARGET_COMPILE_PDB = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/loramac-node.pdb + TARGET_PDB = zephyr/drivers/lora/loramac-node/libloramac-node.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + +build zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/delay.c.obj: C_COMPILER__loramac-node_unscanned_ /Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/delay.c || cmake_object_order_depends_target_loramac-node + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/delay.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + OBJECT_FILE_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system + TARGET_COMPILE_PDB = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/loramac-node.pdb + TARGET_PDB = zephyr/drivers/lora/loramac-node/libloramac-node.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + +build zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/sx126x.c.obj: C_COMPILER__loramac-node_unscanned_ /Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/sx126x.c || cmake_object_order_depends_target_loramac-node + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/sx126x.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + OBJECT_FILE_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x + TARGET_COMPILE_PDB = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/loramac-node.pdb + TARGET_PDB = zephyr/drivers/lora/loramac-node/libloramac-node.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + +build zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/radio.c.obj: C_COMPILER__loramac-node_unscanned_ /Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/radio.c || cmake_object_order_depends_target_loramac-node + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/radio.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + OBJECT_FILE_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x + TARGET_COMPILE_PDB = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/loramac-node.pdb + TARGET_PDB = zephyr/drivers/lora/loramac-node/libloramac-node.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target loramac-node + + +############################################# +# Link the static library zephyr/drivers/lora/loramac-node/libloramac-node.a + +build zephyr/drivers/lora/loramac-node/libloramac-node.a: C_STATIC_LIBRARY_LINKER__loramac-node_ zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx126x.c.obj zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/hal_common.c.obj zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx12xx_common.c.obj zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx126x_standalone.c.obj zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards/mcu/utilities.c.obj zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/systime.c.obj zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/timer.c.obj zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/delay.c.obj zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/sx126x.c.obj zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/radio.c.obj || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/loramac-node.pdb + TARGET_FILE = zephyr/drivers/lora/loramac-node/libloramac-node.a + TARGET_PDB = zephyr/drivers/lora/loramac-node/libloramac-node.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/lora/loramac-node/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora/loramac-node && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/lora/loramac-node/edit_cache: phony zephyr/drivers/lora/loramac-node/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/lora/loramac-node/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora/loramac-node && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/lora/loramac-node/rebuild_cache: phony zephyr/drivers/lora/loramac-node/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__pinctrl + + +############################################# +# Order-only phony target for drivers__pinctrl + +build cmake_object_order_depends_target_drivers__pinctrl: phony || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj: C_COMPILER__drivers__pinctrl_unscanned_ /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/common.c || cmake_object_order_depends_target_drivers__pinctrl + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir + OBJECT_FILE_DIR = zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir + TARGET_COMPILE_PDB = zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/drivers__pinctrl.pdb + TARGET_PDB = zephyr/drivers/pinctrl/libdrivers__pinctrl.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir + +build zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_esp32.c.obj: C_COMPILER__drivers__pinctrl_unscanned_ /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/pinctrl_esp32.c || cmake_object_order_depends_target_drivers__pinctrl + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_esp32.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir + OBJECT_FILE_DIR = zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir + TARGET_COMPILE_PDB = zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/drivers__pinctrl.pdb + TARGET_PDB = zephyr/drivers/pinctrl/libdrivers__pinctrl.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__pinctrl + + +############################################# +# Link the static library zephyr/drivers/pinctrl/libdrivers__pinctrl.a + +build zephyr/drivers/pinctrl/libdrivers__pinctrl.a: C_STATIC_LIBRARY_LINKER__drivers__pinctrl_ zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_esp32.c.obj || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/drivers__pinctrl.pdb + TARGET_FILE = zephyr/drivers/pinctrl/libdrivers__pinctrl.a + TARGET_PDB = zephyr/drivers/pinctrl/libdrivers__pinctrl.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/pinctrl/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pinctrl && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/pinctrl/edit_cache: phony zephyr/drivers/pinctrl/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/pinctrl/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pinctrl && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/pinctrl/rebuild_cache: phony zephyr/drivers/pinctrl/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/pinctrl/renesas/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pinctrl/renesas && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/pinctrl/renesas/edit_cache: phony zephyr/drivers/pinctrl/renesas/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/pinctrl/renesas/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pinctrl/renesas && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/pinctrl/renesas/rebuild_cache: phony zephyr/drivers/pinctrl/renesas/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__serial + + +############################################# +# Order-only phony target for drivers__serial + +build cmake_object_order_depends_target_drivers__serial: phony || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/serial_esp32_usb.c.obj: C_COMPILER__drivers__serial_unscanned_ /Users/wijnand/zephyrproject/zephyr/drivers/serial/serial_esp32_usb.c || cmake_object_order_depends_target_drivers__serial + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/serial_esp32_usb.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/serial/CMakeFiles/drivers__serial.dir + OBJECT_FILE_DIR = zephyr/drivers/serial/CMakeFiles/drivers__serial.dir + TARGET_COMPILE_PDB = zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/drivers__serial.pdb + TARGET_PDB = zephyr/drivers/serial/libdrivers__serial.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/serial/CMakeFiles/drivers__serial.dir + +build zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/uart_esp32.c.obj: C_COMPILER__drivers__serial_unscanned_ /Users/wijnand/zephyrproject/zephyr/drivers/serial/uart_esp32.c || cmake_object_order_depends_target_drivers__serial + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/uart_esp32.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/serial/CMakeFiles/drivers__serial.dir + OBJECT_FILE_DIR = zephyr/drivers/serial/CMakeFiles/drivers__serial.dir + TARGET_COMPILE_PDB = zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/drivers__serial.pdb + TARGET_PDB = zephyr/drivers/serial/libdrivers__serial.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/serial/CMakeFiles/drivers__serial.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__serial + + +############################################# +# Link the static library zephyr/drivers/serial/libdrivers__serial.a + +build zephyr/drivers/serial/libdrivers__serial.a: C_STATIC_LIBRARY_LINKER__drivers__serial_ zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/serial_esp32_usb.c.obj zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/uart_esp32.c.obj || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr/drivers/serial/CMakeFiles/drivers__serial.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/drivers__serial.pdb + TARGET_FILE = zephyr/drivers/serial/libdrivers__serial.a + TARGET_PDB = zephyr/drivers/serial/libdrivers__serial.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/serial/CMakeFiles/drivers__serial.dir + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/serial/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/serial && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/serial/edit_cache: phony zephyr/drivers/serial/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/serial/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/serial && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/serial/rebuild_cache: phony zephyr/drivers/serial/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__spi + + +############################################# +# Order-only phony target for drivers__spi + +build cmake_object_order_depends_target_drivers__spi: phony || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/drivers/spi/CMakeFiles/drivers__spi.dir/spi_esp32_spim.c.obj: C_COMPILER__drivers__spi_unscanned_ /Users/wijnand/zephyrproject/zephyr/drivers/spi/spi_esp32_spim.c || cmake_object_order_depends_target_drivers__spi + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/drivers/spi/CMakeFiles/drivers__spi.dir/spi_esp32_spim.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/spi/CMakeFiles/drivers__spi.dir + OBJECT_FILE_DIR = zephyr/drivers/spi/CMakeFiles/drivers__spi.dir + TARGET_COMPILE_PDB = zephyr/drivers/spi/CMakeFiles/drivers__spi.dir/drivers__spi.pdb + TARGET_PDB = zephyr/drivers/spi/libdrivers__spi.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/spi/CMakeFiles/drivers__spi.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__spi + + +############################################# +# Link the static library zephyr/drivers/spi/libdrivers__spi.a + +build zephyr/drivers/spi/libdrivers__spi.a: C_STATIC_LIBRARY_LINKER__drivers__spi_ zephyr/drivers/spi/CMakeFiles/drivers__spi.dir/spi_esp32_spim.c.obj || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr/drivers/spi/CMakeFiles/drivers__spi.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = zephyr/drivers/spi/CMakeFiles/drivers__spi.dir/drivers__spi.pdb + TARGET_FILE = zephyr/drivers/spi/libdrivers__spi.a + TARGET_PDB = zephyr/drivers/spi/libdrivers__spi.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/spi/CMakeFiles/drivers__spi.dir + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/spi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/spi && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/spi/edit_cache: phony zephyr/drivers/spi/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/spi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/spi && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/spi/rebuild_cache: phony zephyr/drivers/spi/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/drivers/spi/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/spi/spi_nxp_lpspi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/spi/spi_nxp_lpspi && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/spi/spi_nxp_lpspi/edit_cache: phony zephyr/drivers/spi/spi_nxp_lpspi/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/spi/spi_nxp_lpspi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/spi/spi_nxp_lpspi && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/spi/spi_nxp_lpspi/rebuild_cache: phony zephyr/drivers/spi/spi_nxp_lpspi/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/drivers/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target drivers__timer + + +############################################# +# Order-only phony target for drivers__timer + +build cmake_object_order_depends_target_drivers__timer: phony || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj: C_COMPILER__drivers__timer_unscanned_ /Users/wijnand/zephyrproject/zephyr/drivers/timer/sys_clock_init.c || cmake_object_order_depends_target_drivers__timer + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/timer/CMakeFiles/drivers__timer.dir + OBJECT_FILE_DIR = zephyr/drivers/timer/CMakeFiles/drivers__timer.dir + TARGET_COMPILE_PDB = zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/drivers__timer.pdb + TARGET_PDB = zephyr/drivers/timer/libdrivers__timer.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/timer/CMakeFiles/drivers__timer.dir + +build zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/xtensa_sys_timer.c.obj: C_COMPILER__drivers__timer_unscanned_ /Users/wijnand/zephyrproject/zephyr/drivers/timer/xtensa_sys_timer.c || cmake_object_order_depends_target_drivers__timer + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/xtensa_sys_timer.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/drivers/timer/CMakeFiles/drivers__timer.dir + OBJECT_FILE_DIR = zephyr/drivers/timer/CMakeFiles/drivers__timer.dir + TARGET_COMPILE_PDB = zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/drivers__timer.pdb + TARGET_PDB = zephyr/drivers/timer/libdrivers__timer.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/timer/CMakeFiles/drivers__timer.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target drivers__timer + + +############################################# +# Link the static library zephyr/drivers/timer/libdrivers__timer.a + +build zephyr/drivers/timer/libdrivers__timer.a: C_STATIC_LIBRARY_LINKER__drivers__timer_ zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/xtensa_sys_timer.c.obj || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr/drivers/timer/CMakeFiles/drivers__timer.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/drivers__timer.pdb + TARGET_FILE = zephyr/drivers/timer/libdrivers__timer.a + TARGET_PDB = zephyr/drivers/timer/libdrivers__timer.pdb + TARGET_SUPPORT_DIR = zephyr/drivers/timer/CMakeFiles/drivers__timer.dir + + +############################################# +# Utility command for edit_cache + +build zephyr/drivers/timer/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/timer && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/drivers/timer/edit_cache: phony zephyr/drivers/timer/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/drivers/timer/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/timer && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/drivers/timer/rebuild_cache: phony zephyr/drivers/timer/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/acpica/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/acpica && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/acpica/edit_cache: phony modules/acpica/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/acpica/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/acpica && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/acpica/rebuild_cache: phony modules/acpica/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/cmsis/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/cmsis && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/cmsis/edit_cache: phony modules/cmsis/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/cmsis/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/cmsis && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/cmsis/rebuild_cache: phony modules/cmsis/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/cmsis-dsp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/cmsis-dsp && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/cmsis-dsp/edit_cache: phony modules/cmsis-dsp/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/cmsis-dsp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/cmsis-dsp && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/cmsis-dsp/rebuild_cache: phony modules/cmsis-dsp/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/cmsis-nn/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/cmsis-nn && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/cmsis-nn/edit_cache: phony modules/cmsis-nn/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/cmsis-nn/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/cmsis-nn && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/cmsis-nn/rebuild_cache: phony modules/cmsis-nn/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/cmsis_6/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/cmsis_6 && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/cmsis_6/edit_cache: phony modules/cmsis_6/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/cmsis_6/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/cmsis_6 && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/cmsis_6/rebuild_cache: phony modules/cmsis_6/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/dhara/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/dhara && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/dhara/edit_cache: phony modules/dhara/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/dhara/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/dhara && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/dhara/rebuild_cache: phony modules/dhara/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/fatfs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/fatfs && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/fatfs/edit_cache: phony modules/fatfs/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/fatfs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/fatfs && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/fatfs/rebuild_cache: phony modules/fatfs/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/adi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/adi && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/adi/edit_cache: phony modules/adi/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/adi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/adi && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/adi/rebuild_cache: phony modules/adi/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_afbr/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_afbr && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_afbr/edit_cache: phony modules/hal_afbr/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_afbr/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_afbr && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_afbr/rebuild_cache: phony modules/hal_afbr/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_ambiq/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_ambiq && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_ambiq/edit_cache: phony modules/hal_ambiq/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_ambiq/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_ambiq && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_ambiq/rebuild_cache: phony modules/hal_ambiq/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/atmel/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/atmel && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/atmel/edit_cache: phony modules/atmel/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/atmel/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/atmel && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/atmel/rebuild_cache: phony modules/atmel/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/modules/hal/atmel/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/atmel/asf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/atmel/asf && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/atmel/asf/edit_cache: phony modules/atmel/asf/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/atmel/asf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/atmel/asf && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/atmel/asf/rebuild_cache: phony modules/atmel/asf/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/modules/hal/atmel/asf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/atmel/asf/common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/atmel/asf/common/edit_cache: phony modules/atmel/asf/common/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/atmel/asf/common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/atmel/asf/common/rebuild_cache: phony modules/atmel/asf/common/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/modules/hal/atmel/asf/common/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/atmel/asf/common/components/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common/components && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/atmel/asf/common/components/edit_cache: phony modules/atmel/asf/common/components/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/atmel/asf/common/components/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common/components && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/atmel/asf/common/components/rebuild_cache: phony modules/atmel/asf/common/components/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/modules/hal/atmel/asf/common/components/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/atmel/asf/common/components/wifi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common/components/wifi && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/atmel/asf/common/components/wifi/edit_cache: phony modules/atmel/asf/common/components/wifi/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/atmel/asf/common/components/wifi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common/components/wifi && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/atmel/asf/common/components/wifi/rebuild_cache: phony modules/atmel/asf/common/components/wifi/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_bouffalolab/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_bouffalolab && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_bouffalolab/edit_cache: phony modules/hal_bouffalolab/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_bouffalolab/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_bouffalolab && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_bouffalolab/rebuild_cache: phony modules/hal_bouffalolab/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_espressif/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_espressif && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_espressif/edit_cache: phony modules/hal_espressif/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_espressif/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_espressif && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_espressif/rebuild_cache: phony modules/hal_espressif/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/modules/hal_espressif/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_espressif/hal_espressif/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_espressif/hal_espressif && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_espressif/hal_espressif/edit_cache: phony modules/hal_espressif/hal_espressif/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_espressif/hal_espressif/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_espressif/hal_espressif && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_espressif/hal_espressif/rebuild_cache: phony modules/hal_espressif/hal_espressif/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_espressif/hal_espressif/esp32s3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_espressif/hal_espressif/esp32s3 && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_espressif/hal_espressif/esp32s3/edit_cache: phony modules/hal_espressif/hal_espressif/esp32s3/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_espressif/hal_espressif/esp32s3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_espressif/hal_espressif/esp32s3 && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_espressif/hal_espressif/esp32s3/rebuild_cache: phony modules/hal_espressif/hal_espressif/esp32s3/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_ethos_u/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_ethos_u && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_ethos_u/edit_cache: phony modules/hal_ethos_u/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_ethos_u/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_ethos_u && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_ethos_u/rebuild_cache: phony modules/hal_ethos_u/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_gigadevice/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_gigadevice && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_gigadevice/edit_cache: phony modules/hal_gigadevice/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_gigadevice/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_gigadevice && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_gigadevice/rebuild_cache: phony modules/hal_gigadevice/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_infineon/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_infineon && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_infineon/edit_cache: phony modules/hal_infineon/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_infineon/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_infineon && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_infineon/rebuild_cache: phony modules/hal_infineon/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_intel/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_intel && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_intel/edit_cache: phony modules/hal_intel/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_intel/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_intel && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_intel/rebuild_cache: phony modules/hal_intel/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/microchip/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/microchip && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/microchip/edit_cache: phony modules/microchip/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/microchip/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/microchip && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/microchip/rebuild_cache: phony modules/microchip/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_nordic/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_nordic && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_nordic/edit_cache: phony modules/hal_nordic/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_nordic/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_nordic && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_nordic/rebuild_cache: phony modules/hal_nordic/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/nuvoton/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/nuvoton && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nuvoton/edit_cache: phony modules/nuvoton/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/nuvoton/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/nuvoton && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nuvoton/rebuild_cache: phony modules/nuvoton/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_nxp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_nxp && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_nxp/edit_cache: phony modules/hal_nxp/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_nxp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_nxp && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_nxp/rebuild_cache: phony modules/hal_nxp/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/modules/hal_nxp/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_nxp/hal_nxp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_nxp/hal_nxp && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_nxp/hal_nxp/edit_cache: phony modules/hal_nxp/hal_nxp/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_nxp/hal_nxp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_nxp/hal_nxp && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_nxp/hal_nxp/rebuild_cache: phony modules/hal_nxp/hal_nxp/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/openisa/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/openisa && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/openisa/edit_cache: phony modules/openisa/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/openisa/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/openisa && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/openisa/rebuild_cache: phony modules/openisa/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/quicklogic/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/quicklogic && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/quicklogic/edit_cache: phony modules/quicklogic/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/quicklogic/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/quicklogic && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/quicklogic/rebuild_cache: phony modules/quicklogic/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_realtek/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_realtek && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_realtek/edit_cache: phony modules/hal_realtek/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_realtek/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_realtek && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_realtek/rebuild_cache: phony modules/hal_realtek/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/modules/hal_realtek/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_realtek/hal_realtek/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_realtek/hal_realtek && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_realtek/hal_realtek/edit_cache: phony modules/hal_realtek/hal_realtek/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_realtek/hal_realtek/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_realtek/hal_realtek && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_realtek/hal_realtek/rebuild_cache: phony modules/hal_realtek/hal_realtek/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_renesas/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_renesas && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_renesas/edit_cache: phony modules/hal_renesas/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_renesas/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_renesas && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_renesas/rebuild_cache: phony modules/hal_renesas/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/modules/hal/renesas/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_renesas/zephyr/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_renesas/zephyr && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_renesas/zephyr/edit_cache: phony modules/hal_renesas/zephyr/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_renesas/zephyr/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_renesas/zephyr && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_renesas/zephyr/rebuild_cache: phony modules/hal_renesas/zephyr/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/modules/hal/renesas/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_renesas/drivers/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_renesas/drivers && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_renesas/drivers/edit_cache: phony modules/hal_renesas/drivers/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_renesas/drivers/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_renesas/drivers && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_renesas/drivers/rebuild_cache: phony modules/hal_renesas/drivers/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_rpi_pico/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_rpi_pico && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_rpi_pico/edit_cache: phony modules/hal_rpi_pico/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_rpi_pico/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_rpi_pico && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_rpi_pico/rebuild_cache: phony modules/hal_rpi_pico/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_sifli/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_sifli && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_sifli/edit_cache: phony modules/hal_sifli/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_sifli/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_sifli && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_sifli/rebuild_cache: phony modules/hal_sifli/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_silabs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_silabs && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_silabs/edit_cache: phony modules/hal_silabs/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_silabs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_silabs && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_silabs/rebuild_cache: phony modules/hal_silabs/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_st/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_st && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_st/edit_cache: phony modules/hal_st/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_st/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_st && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_st/rebuild_cache: phony modules/hal_st/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_stm32/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_stm32 && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_stm32/edit_cache: phony modules/hal_stm32/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_stm32/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_stm32 && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_stm32/rebuild_cache: phony modules/hal_stm32/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_tdk/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_tdk && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_tdk/edit_cache: phony modules/hal_tdk/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_tdk/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_tdk && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_tdk/rebuild_cache: phony modules/hal_tdk/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_telink/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_telink && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_telink/edit_cache: phony modules/hal_telink/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_telink/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_telink && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_telink/rebuild_cache: phony modules/hal_telink/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/ti/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/ti && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/ti/edit_cache: phony modules/ti/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/ti/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/ti && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/ti/rebuild_cache: phony modules/ti/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/modules/hal/ti/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/ti/simplelink/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/ti/simplelink/edit_cache: phony modules/ti/simplelink/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/ti/simplelink/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/ti/simplelink/rebuild_cache: phony modules/ti/simplelink/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/modules/hal/ti/simplelink/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/ti/simplelink/source/ti/devices/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink/source/ti/devices && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/ti/simplelink/source/ti/devices/edit_cache: phony modules/ti/simplelink/source/ti/devices/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/ti/simplelink/source/ti/devices/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink/source/ti/devices && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/ti/simplelink/source/ti/devices/rebuild_cache: phony modules/ti/simplelink/source/ti/devices/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/modules/hal/ti/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/ti/simplelink_lpf3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink_lpf3 && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/ti/simplelink_lpf3/edit_cache: phony modules/ti/simplelink_lpf3/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/ti/simplelink_lpf3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink_lpf3 && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/ti/simplelink_lpf3/rebuild_cache: phony modules/ti/simplelink_lpf3/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/modules/hal/ti/simplelink_lpf3/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/ti/simplelink_lpf3/source/ti/devices/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink_lpf3/source/ti/devices && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/ti/simplelink_lpf3/source/ti/devices/edit_cache: phony modules/ti/simplelink_lpf3/source/ti/devices/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/ti/simplelink_lpf3/source/ti/devices/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink_lpf3/source/ti/devices && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/ti/simplelink_lpf3/source/ti/devices/rebuild_cache: phony modules/ti/simplelink_lpf3/source/ti/devices/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/modules/hal/ti/simplelink_lpf3/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/ti/simplelink_lpf3/source/ti/boards/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink_lpf3/source/ti/boards && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/ti/simplelink_lpf3/source/ti/boards/edit_cache: phony modules/ti/simplelink_lpf3/source/ti/boards/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/ti/simplelink_lpf3/source/ti/boards/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink_lpf3/source/ti/boards && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/ti/simplelink_lpf3/source/ti/boards/rebuild_cache: phony modules/ti/simplelink_lpf3/source/ti/boards/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/modules/hal/ti/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/ti/mspm0/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/ti/mspm0 && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/ti/mspm0/edit_cache: phony modules/ti/mspm0/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/ti/mspm0/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/ti/mspm0 && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/ti/mspm0/rebuild_cache: phony modules/ti/mspm0/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_wch/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_wch && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_wch/edit_cache: phony modules/hal_wch/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_wch/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_wch && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_wch/rebuild_cache: phony modules/hal_wch/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hal_wurthelektronik/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_wurthelektronik && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hal_wurthelektronik/edit_cache: phony modules/hal_wurthelektronik/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hal_wurthelektronik/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hal_wurthelektronik && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hal_wurthelektronik/rebuild_cache: phony modules/hal_wurthelektronik/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/xtensa/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/xtensa && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/xtensa/edit_cache: phony modules/xtensa/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/xtensa/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/xtensa && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/xtensa/rebuild_cache: phony modules/xtensa/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/hostap/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hostap && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/hostap/edit_cache: phony modules/hostap/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/hostap/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/hostap && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/hostap/rebuild_cache: phony modules/hostap/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/liblc3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/liblc3 && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/liblc3/edit_cache: phony modules/liblc3/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/liblc3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/liblc3 && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/liblc3/rebuild_cache: phony modules/liblc3/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/libmctp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/libmctp && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/libmctp/edit_cache: phony modules/libmctp/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/libmctp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/libmctp && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/libmctp/rebuild_cache: phony modules/libmctp/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/libmetal/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/libmetal && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/libmetal/edit_cache: phony modules/libmetal/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/libmetal/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/libmetal && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/libmetal/rebuild_cache: phony modules/libmetal/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/libsbc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/libsbc && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/libsbc/edit_cache: phony modules/libsbc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/libsbc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/libsbc && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/libsbc/rebuild_cache: phony modules/libsbc/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/littlefs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/littlefs && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/littlefs/edit_cache: phony modules/littlefs/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/littlefs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/littlefs && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/littlefs/rebuild_cache: phony modules/littlefs/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/lora-basics-modem/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/lora-basics-modem && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/lora-basics-modem/edit_cache: phony modules/lora-basics-modem/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/lora-basics-modem/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/lora-basics-modem && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/lora-basics-modem/rebuild_cache: phony modules/lora-basics-modem/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/loramac-node/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/loramac-node && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/loramac-node/edit_cache: phony modules/loramac-node/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/loramac-node/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/loramac-node && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/loramac-node/rebuild_cache: phony modules/loramac-node/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/lvgl/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/lvgl && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/lvgl/edit_cache: phony modules/lvgl/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/lvgl/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/lvgl && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/lvgl/rebuild_cache: phony modules/lvgl/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/mbedtls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/mbedtls && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/mbedtls/edit_cache: phony modules/mbedtls/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/mbedtls/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/mbedtls && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/mbedtls/rebuild_cache: phony modules/mbedtls/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/mcuboot/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/mcuboot && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/mcuboot/edit_cache: phony modules/mcuboot/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/mcuboot/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/mcuboot && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/mcuboot/rebuild_cache: phony modules/mcuboot/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/mipi-sys-t/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/mipi-sys-t && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/mipi-sys-t/edit_cache: phony modules/mipi-sys-t/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/mipi-sys-t/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/mipi-sys-t && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/mipi-sys-t/rebuild_cache: phony modules/mipi-sys-t/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/nanopb/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/nanopb && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nanopb/edit_cache: phony modules/nanopb/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/nanopb/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/nanopb && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nanopb/rebuild_cache: phony modules/nanopb/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/nrf_wifi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/nrf_wifi && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf_wifi/edit_cache: phony modules/nrf_wifi/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf_wifi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/nrf_wifi && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf_wifi/rebuild_cache: phony modules/nrf_wifi/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/open-amp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/open-amp && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/open-amp/edit_cache: phony modules/open-amp/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/open-amp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/open-amp && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/open-amp/rebuild_cache: phony modules/open-amp/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/openthread/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/openthread && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/openthread/edit_cache: phony modules/openthread/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/openthread/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/openthread && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/openthread/rebuild_cache: phony modules/openthread/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/percepio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/percepio && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/percepio/edit_cache: phony modules/percepio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/percepio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/percepio && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/percepio/rebuild_cache: phony modules/percepio/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/picolibc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/picolibc && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/picolibc/edit_cache: phony modules/picolibc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/picolibc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/picolibc && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/picolibc/rebuild_cache: phony modules/picolibc/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/segger/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/segger && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/segger/edit_cache: phony modules/segger/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/segger/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/segger && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/segger/rebuild_cache: phony modules/segger/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/trusted-firmware-a/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/trusted-firmware-a && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/trusted-firmware-a/edit_cache: phony modules/trusted-firmware-a/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/trusted-firmware-a/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/trusted-firmware-a && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/trusted-firmware-a/rebuild_cache: phony modules/trusted-firmware-a/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/trusted-firmware-m/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/trusted-firmware-m && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/trusted-firmware-m/edit_cache: phony modules/trusted-firmware-m/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/trusted-firmware-m/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/trusted-firmware-m && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/trusted-firmware-m/rebuild_cache: phony modules/trusted-firmware-m/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/uoscore-uedhoc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/uoscore-uedhoc && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/uoscore-uedhoc/edit_cache: phony modules/uoscore-uedhoc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/uoscore-uedhoc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/uoscore-uedhoc && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/uoscore-uedhoc/rebuild_cache: phony modules/uoscore-uedhoc/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/zcbor/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/zcbor && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/zcbor/edit_cache: phony modules/zcbor/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/zcbor/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/zcbor && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/zcbor/rebuild_cache: phony modules/zcbor/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build modules/nrf_hw_models/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/nrf_hw_models && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build modules/nrf_hw_models/edit_cache: phony modules/nrf_hw_models/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build modules/nrf_hw_models/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/modules/nrf_hw_models && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build modules/nrf_hw_models/rebuild_cache: phony modules/nrf_hw_models/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target kernel + + +############################################# +# Order-only phony target for kernel + +build cmake_object_order_depends_target_kernel: phony || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + +build zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/main_weak.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/banner.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/busy_wait.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/device.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/errno.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/fatal.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/init.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/kheap.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/mem_slab.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/float.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/version.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/idle.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/mailbox.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/msg_q.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/mutex.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/queue.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/sem.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/stack.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/system_work_q.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/work.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/condvar.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/thread.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/sched.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/pipe.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/pipe.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/pipe.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/timeslicing.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/timeout.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/timer.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/poll.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/poll.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/poll.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/mempool.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + +build zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj: C_COMPILER__kernel_unscanned_ /Users/wijnand/zephyrproject/zephyr/kernel/dynamic_disabled.c || cmake_object_order_depends_target_kernel + DEFINES = -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ + DEP_FILE = zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj.d + FLAGS = -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 + INCLUDES = -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + OBJECT_FILE_DIR = zephyr/kernel/CMakeFiles/kernel.dir + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target kernel + + +############################################# +# Link the static library zephyr/kernel/libkernel.a + +build zephyr/kernel/libkernel.a: C_STATIC_LIBRARY_LINKER__kernel_ zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj zephyr/kernel/CMakeFiles/kernel.dir/pipe.c.obj zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj zephyr/kernel/CMakeFiles/kernel.dir/poll.c.obj zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj || zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants_h zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h + OBJECT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = zephyr/kernel/CMakeFiles/kernel.dir/kernel.pdb + TARGET_FILE = zephyr/kernel/libkernel.a + TARGET_PDB = zephyr/kernel/libkernel.pdb + TARGET_SUPPORT_DIR = zephyr/kernel/CMakeFiles/kernel.dir + + +############################################# +# Utility command for edit_cache + +build zephyr/kernel/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/kernel && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/kernel/edit_cache: phony zephyr/kernel/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/kernel/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/kernel && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/kernel/rebuild_cache: phony zephyr/kernel/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for flash + +build zephyr/cmake/flash/flash: phony zephyr/cmake/flash/CMakeFiles/flash + + +############################################# +# Utility command for debug + +build zephyr/cmake/flash/debug: phony zephyr/cmake/flash/CMakeFiles/debug + + +############################################# +# Utility command for debugserver + +build zephyr/cmake/flash/debugserver: phony zephyr/cmake/flash/CMakeFiles/debugserver + + +############################################# +# Utility command for attach + +build zephyr/cmake/flash/attach: phony zephyr/cmake/flash/CMakeFiles/attach + + +############################################# +# Utility command for rtt + +build zephyr/cmake/flash/rtt: phony zephyr/cmake/flash/CMakeFiles/rtt + + +############################################# +# Utility command for edit_cache + +build zephyr/cmake/flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/cmake/flash && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/cmake/flash/edit_cache: phony zephyr/cmake/flash/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/cmake/flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/cmake/flash && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/cmake/flash/rebuild_cache: phony zephyr/cmake/flash/CMakeFiles/rebuild_cache.util + + +############################################# +# Custom command for zephyr/cmake/flash/CMakeFiles/flash + +build zephyr/cmake/flash/CMakeFiles/flash | ${cmake_ninja_workdir}zephyr/cmake/flash/CMakeFiles/flash: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build && cmake -E echo WARNING:\ CMake\ flash\ target\ is\ deprecated,\ call\ west\ directly\ instead && /opt/homebrew/bin/cmake -DTARGET=flash -DDEPENDENCIES="" -P /Users/wijnand/zephyrproject/zephyr/cmake/flash/check_runner_dependencies.cmake && /opt/homebrew/bin/cmake -E env ZEPHYR_BASE=/Users/wijnand/zephyrproject/zephyr /Users/wijnand/zephyrproject/.venv/bin/python3.14 -m west flash + DESC = Flashing xiao_esp32s3 + pool = console + + +############################################# +# Custom command for zephyr/cmake/flash/CMakeFiles/debug + +build zephyr/cmake/flash/CMakeFiles/debug | ${cmake_ninja_workdir}zephyr/cmake/flash/CMakeFiles/debug: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build && cmake -E echo WARNING:\ CMake\ debug\ target\ is\ deprecated,\ call\ west\ directly\ instead && /opt/homebrew/bin/cmake -DTARGET=debug -DDEPENDENCIES="" -P /Users/wijnand/zephyrproject/zephyr/cmake/flash/check_runner_dependencies.cmake && /opt/homebrew/bin/cmake -E env ZEPHYR_BASE=/Users/wijnand/zephyrproject/zephyr /Users/wijnand/zephyrproject/.venv/bin/python3.14 -m west debug + DESC = Debugging xiao_esp32s3 + pool = console + + +############################################# +# Custom command for zephyr/cmake/flash/CMakeFiles/debugserver + +build zephyr/cmake/flash/CMakeFiles/debugserver | ${cmake_ninja_workdir}zephyr/cmake/flash/CMakeFiles/debugserver: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build && cmake -E echo WARNING:\ CMake\ debugserver\ target\ is\ deprecated,\ call\ west\ directly\ instead && /opt/homebrew/bin/cmake -DTARGET=debugserver -DDEPENDENCIES="" -P /Users/wijnand/zephyrproject/zephyr/cmake/flash/check_runner_dependencies.cmake && /opt/homebrew/bin/cmake -E env ZEPHYR_BASE=/Users/wijnand/zephyrproject/zephyr /Users/wijnand/zephyrproject/.venv/bin/python3.14 -m west debugserver + DESC = Debugging xiao_esp32s3 + pool = console + + +############################################# +# Custom command for zephyr/cmake/flash/CMakeFiles/attach + +build zephyr/cmake/flash/CMakeFiles/attach | ${cmake_ninja_workdir}zephyr/cmake/flash/CMakeFiles/attach: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build && cmake -E echo WARNING:\ CMake\ attach\ target\ is\ deprecated,\ call\ west\ directly\ instead && /opt/homebrew/bin/cmake -DTARGET=attach -DDEPENDENCIES="" -P /Users/wijnand/zephyrproject/zephyr/cmake/flash/check_runner_dependencies.cmake && /opt/homebrew/bin/cmake -E env ZEPHYR_BASE=/Users/wijnand/zephyrproject/zephyr /Users/wijnand/zephyrproject/.venv/bin/python3.14 -m west attach + DESC = Debugging xiao_esp32s3 + pool = console + + +############################################# +# Custom command for zephyr/cmake/flash/CMakeFiles/rtt + +build zephyr/cmake/flash/CMakeFiles/rtt | ${cmake_ninja_workdir}zephyr/cmake/flash/CMakeFiles/rtt: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build && cmake -E echo WARNING:\ CMake\ rtt\ target\ is\ deprecated,\ call\ west\ directly\ instead && /opt/homebrew/bin/cmake -DTARGET=rtt -DDEPENDENCIES="" -P /Users/wijnand/zephyrproject/zephyr/cmake/flash/check_runner_dependencies.cmake && /opt/homebrew/bin/cmake -E env ZEPHYR_BASE=/Users/wijnand/zephyrproject/zephyr /Users/wijnand/zephyrproject/.venv/bin/python3.14 -m west rtt + DESC = RTT xiao_esp32s3 + pool = console + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for usage + +build zephyr/cmake/usage/usage: phony zephyr/cmake/usage/CMakeFiles/usage + + +############################################# +# Utility command for edit_cache + +build zephyr/cmake/usage/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/cmake/usage && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/cmake/usage/edit_cache: phony zephyr/cmake/usage/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/cmake/usage/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/cmake/usage && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/cmake/usage/rebuild_cache: phony zephyr/cmake/usage/CMakeFiles/rebuild_cache.util + + +############################################# +# Custom command for zephyr/cmake/usage/CMakeFiles/usage + +build zephyr/cmake/usage/CMakeFiles/usage | ${cmake_ninja_workdir}zephyr/cmake/usage/CMakeFiles/usage: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/cmake/usage && /opt/homebrew/bin/cmake -DZEPHYR_BASE=/Users/wijnand/zephyrproject/zephyr -DCMAKE_MAKE_PROGRAM=/opt/homebrew/bin/ninja -P /Users/wijnand/zephyrproject/zephyr/cmake/usage/usage.cmake + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for ram_report + +build zephyr/cmake/reports/ram_report: phony zephyr/cmake/reports/CMakeFiles/ram_report zephyr/zephyr.elf + + +############################################# +# Utility command for ram_plot + +build zephyr/cmake/reports/ram_plot: phony zephyr/cmake/reports/CMakeFiles/ram_plot zephyr/cmake/reports/ram_report + + +############################################# +# Utility command for rom_report + +build zephyr/cmake/reports/rom_report: phony zephyr/cmake/reports/CMakeFiles/rom_report zephyr/zephyr.elf + + +############################################# +# Utility command for rom_plot + +build zephyr/cmake/reports/rom_plot: phony zephyr/cmake/reports/CMakeFiles/rom_plot zephyr/cmake/reports/rom_report + + +############################################# +# Utility command for footprint + +build zephyr/cmake/reports/footprint: phony zephyr/cmake/reports/CMakeFiles/footprint zephyr/cmake/reports/ram_report zephyr/cmake/reports/rom_report + + +############################################# +# Utility command for dashboard + +build zephyr/cmake/reports/dashboard: phony zephyr/cmake/reports/CMakeFiles/dashboard zephyr/zephyr.elf + + +############################################# +# Utility command for edit_cache + +build zephyr/cmake/reports/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/cmake/reports && /opt/homebrew/bin/ccmake -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build zephyr/cmake/reports/edit_cache: phony zephyr/cmake/reports/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build zephyr/cmake/reports/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/cmake/reports && /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build zephyr/cmake/reports/rebuild_cache: phony zephyr/cmake/reports/CMakeFiles/rebuild_cache.util + + +############################################# +# Custom command for zephyr/cmake/reports/CMakeFiles/ram_report + +build zephyr/cmake/reports/CMakeFiles/ram_report | ${cmake_ninja_workdir}zephyr/cmake/reports/CMakeFiles/ram_report: CUSTOM_COMMAND zephyr/zephyr.elf || app/libapp.a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/lora/loramac-node/libloramac-node.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/spi/libdrivers__spi.a zephyr/drivers/timer/libdrivers__timer.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants zephyr/lib/heap/heap_constants_h zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr.elf zephyr/zephyr_pre0.elf + COMMAND = cd /Volumes/External/Work/radio/loramodem/build && /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/scripts/footprint/size_report -k /Volumes/External/Work/radio/loramodem/build/zephyr/zephyr.elf -z /Users/wijnand/zephyrproject/zephyr -o /Volumes/External/Work/radio/loramodem/build --workspace=/Users/wijnand/zephyrproject -d 99 --json ram.json ram + pool = console + + +############################################# +# Custom command for zephyr/cmake/reports/CMakeFiles/ram_plot + +build zephyr/cmake/reports/CMakeFiles/ram_plot | ${cmake_ninja_workdir}zephyr/cmake/reports/CMakeFiles/ram_plot: CUSTOM_COMMAND || app/libapp.a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/cmake/reports/ram_report zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/lora/loramac-node/libloramac-node.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/spi/libdrivers__spi.a zephyr/drivers/timer/libdrivers__timer.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants zephyr/lib/heap/heap_constants_h zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr.elf zephyr/zephyr_pre0.elf + COMMAND = cd /Volumes/External/Work/radio/loramodem/build && /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/scripts/footprint/plot.py ram.json + pool = console + + +############################################# +# Custom command for zephyr/cmake/reports/CMakeFiles/rom_report + +build zephyr/cmake/reports/CMakeFiles/rom_report | ${cmake_ninja_workdir}zephyr/cmake/reports/CMakeFiles/rom_report: CUSTOM_COMMAND zephyr/zephyr.elf || app/libapp.a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/lora/loramac-node/libloramac-node.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/spi/libdrivers__spi.a zephyr/drivers/timer/libdrivers__timer.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants zephyr/lib/heap/heap_constants_h zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr.elf zephyr/zephyr_pre0.elf + COMMAND = cd /Volumes/External/Work/radio/loramodem/build && /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/scripts/footprint/size_report -k /Volumes/External/Work/radio/loramodem/build/zephyr/zephyr.elf -z /Users/wijnand/zephyrproject/zephyr -o /Volumes/External/Work/radio/loramodem/build --workspace=/Users/wijnand/zephyrproject -d 99 --json rom.json rom + pool = console + + +############################################# +# Custom command for zephyr/cmake/reports/CMakeFiles/rom_plot + +build zephyr/cmake/reports/CMakeFiles/rom_plot | ${cmake_ninja_workdir}zephyr/cmake/reports/CMakeFiles/rom_plot: CUSTOM_COMMAND || app/libapp.a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/cmake/reports/rom_report zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/lora/loramac-node/libloramac-node.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/spi/libdrivers__spi.a zephyr/drivers/timer/libdrivers__timer.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants zephyr/lib/heap/heap_constants_h zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr.elf zephyr/zephyr_pre0.elf + COMMAND = cd /Volumes/External/Work/radio/loramodem/build && /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/scripts/footprint/plot.py rom.json + pool = console + + +############################################# +# Phony custom command for zephyr/cmake/reports/CMakeFiles/footprint + +build zephyr/cmake/reports/CMakeFiles/footprint | ${cmake_ninja_workdir}zephyr/cmake/reports/CMakeFiles/footprint: phony || app/libapp.a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/cmake/reports/ram_report zephyr/cmake/reports/rom_report zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/lora/loramac-node/libloramac-node.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/spi/libdrivers__spi.a zephyr/drivers/timer/libdrivers__timer.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants zephyr/lib/heap/heap_constants_h zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr.elf zephyr/zephyr_pre0.elf + + +############################################# +# Custom command for zephyr/cmake/reports/CMakeFiles/dashboard + +build zephyr/cmake/reports/CMakeFiles/dashboard | ${cmake_ninja_workdir}zephyr/cmake/reports/CMakeFiles/dashboard: CUSTOM_COMMAND zephyr/zephyr.elf || app/libapp.a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a zephyr/arch/arch/xtensa/core/xtensa_vectors_ld zephyr/arch/arch/xtensa/core/zsr_h zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/device_api_ld_target zephyr/driver_validation_h_target zephyr/drivers/clock_control/libdrivers__clock_control.a zephyr/drivers/console/libdrivers__console.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a zephyr/drivers/lora/loramac-node/libloramac-node.a zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/spi/libdrivers__spi.a zephyr/drivers/timer/libdrivers__timer.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/heap/heap_constants zephyr/lib/heap/heap_constants_h zephyr/lib/libc/common/liblib__libc__common.a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a zephyr/libzephyr.a zephyr/linker_zephyr_final_script_target zephyr/linker_zephyr_prebuilt_script_target zephyr/offsets zephyr/offsets_h zephyr/syscall_list_h_target zephyr/version_h zephyr/zephyr.elf zephyr/zephyr_pre0.elf + COMMAND = cd /Volumes/External/Work/radio/loramodem/build/zephyr/cmake/reports && /Users/wijnand/zephyrproject/.venv/bin/python3.14 /Users/wijnand/zephyrproject/zephyr/scripts/dashboard/dashboard.py --output /Volumes/External/Work/radio/loramodem/build/dashboard --zephyr-base /Users/wijnand/zephyrproject/zephyr --kernel-bin-name zephyr --open /Volumes/External/Work/radio/loramodem/build + +# ============================================================================= +# Target aliases. + +build app: phony app/libapp.a + +build arch__common: phony zephyr/arch/common/libarch__common.a + +build arch__xtensa__core: phony zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a + +build attach: phony zephyr/cmake/flash/attach + +build build_info_yaml_saved: phony zephyr/build_info_yaml_saved + +build dashboard: phony zephyr/cmake/reports/dashboard + +build debug: phony zephyr/cmake/flash/debug + +build debugserver: phony zephyr/cmake/flash/debugserver + +build device_api_ld_target: phony zephyr/device_api_ld_target + +build driver_validation_h_target: phony zephyr/driver_validation_h_target + +build drivers__clock_control: phony zephyr/drivers/clock_control/libdrivers__clock_control.a + +build drivers__console: phony zephyr/drivers/console/libdrivers__console.a + +build drivers__gpio: phony zephyr/drivers/gpio/libdrivers__gpio.a + +build drivers__interrupt_controller: phony zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a + +build drivers__pinctrl: phony zephyr/drivers/pinctrl/libdrivers__pinctrl.a + +build drivers__serial: phony zephyr/drivers/serial/libdrivers__serial.a + +build drivers__spi: phony zephyr/drivers/spi/libdrivers__spi.a + +build drivers__timer: phony zephyr/drivers/timer/libdrivers__timer.a + +build flash: phony zephyr/cmake/flash/flash + +build footprint: phony zephyr/cmake/reports/footprint + +build heap_constants: phony zephyr/lib/heap/heap_constants + +build heap_constants_h: phony zephyr/lib/heap/heap_constants_h + +build initlevels: phony zephyr/initlevels + +build isr_tables: phony zephyr/arch/common/libisr_tables.a + +build kernel: phony zephyr/kernel/libkernel.a + +build kobj_types_h_target: phony zephyr/kobj_types_h_target + +build lib__libc__common: phony zephyr/lib/libc/common/liblib__libc__common.a + +build lib__libc__picolibc: phony zephyr/lib/libc/picolibc/liblib__libc__picolibc.a + +build lib__posix__c_lib_ext: phony zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a + +build libapp.a: phony app/libapp.a + +build libarch__common.a: phony zephyr/arch/common/libarch__common.a + +build libarch__xtensa__core.a: phony zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a + +build libdrivers__clock_control.a: phony zephyr/drivers/clock_control/libdrivers__clock_control.a + +build libdrivers__console.a: phony zephyr/drivers/console/libdrivers__console.a + +build libdrivers__gpio.a: phony zephyr/drivers/gpio/libdrivers__gpio.a + +build libdrivers__interrupt_controller.a: phony zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a + +build libdrivers__pinctrl.a: phony zephyr/drivers/pinctrl/libdrivers__pinctrl.a + +build libdrivers__serial.a: phony zephyr/drivers/serial/libdrivers__serial.a + +build libdrivers__spi.a: phony zephyr/drivers/spi/libdrivers__spi.a + +build libdrivers__timer.a: phony zephyr/drivers/timer/libdrivers__timer.a + +build libisr_tables.a: phony zephyr/arch/common/libisr_tables.a + +build libkernel.a: phony zephyr/kernel/libkernel.a + +build liblib__libc__common.a: phony zephyr/lib/libc/common/liblib__libc__common.a + +build liblib__libc__picolibc.a: phony zephyr/lib/libc/picolibc/liblib__libc__picolibc.a + +build liblib__posix__c_lib_ext.a: phony zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a + +build libloramac-node.a: phony zephyr/drivers/lora/loramac-node/libloramac-node.a + +build libzephyr.a: phony zephyr/libzephyr.a + +build linker_zephyr_final_script_target: phony zephyr/linker_zephyr_final_script_target + +build linker_zephyr_prebuilt_script_target: phony zephyr/linker_zephyr_prebuilt_script_target + +build loramac-node: phony zephyr/drivers/lora/loramac-node/libloramac-node.a + +build offsets: phony zephyr/offsets + +build offsets_h: phony zephyr/offsets_h + +build ram_plot: phony zephyr/cmake/reports/ram_plot + +build ram_report: phony zephyr/cmake/reports/ram_report + +build rom_plot: phony zephyr/cmake/reports/rom_plot + +build rom_report: phony zephyr/cmake/reports/rom_report + +build rtt: phony zephyr/cmake/flash/rtt + +build run: phony zephyr/run + +build syscall_list_h_target: phony zephyr/syscall_list_h_target + +build usage: phony zephyr/cmake/usage/usage + +build version_h: phony zephyr/version_h + +build xtensa_vectors_ld: phony zephyr/arch/arch/xtensa/core/xtensa_vectors_ld + +build zephyr: phony zephyr/libzephyr.a + +build zephyr.elf: phony zephyr/zephyr.elf + +build zephyr_final: phony zephyr/zephyr.elf + +build zephyr_pre0: phony zephyr/zephyr_pre0.elf + +build zephyr_pre0.elf: phony zephyr/zephyr_pre0.elf + +build zsr_h: phony zephyr/arch/arch/xtensa/core/zsr_h + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build + +build all: phony app/libapp.a zephyr/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/acpica + +build modules/acpica/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/adi + +build modules/adi/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/atmel + +build modules/atmel/all: phony modules/atmel/asf/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/atmel/asf + +build modules/atmel/asf/all: phony modules/atmel/asf/common/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common + +build modules/atmel/asf/common/all: phony modules/atmel/asf/common/components/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common/components + +build modules/atmel/asf/common/components/all: phony modules/atmel/asf/common/components/wifi/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common/components/wifi + +build modules/atmel/asf/common/components/wifi/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/cmsis + +build modules/cmsis/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/cmsis-dsp + +build modules/cmsis-dsp/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/cmsis-nn + +build modules/cmsis-nn/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/cmsis_6 + +build modules/cmsis_6/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/dhara + +build modules/dhara/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/fatfs + +build modules/fatfs/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_afbr + +build modules/hal_afbr/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_ambiq + +build modules/hal_ambiq/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_bouffalolab + +build modules/hal_bouffalolab/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_espressif + +build modules/hal_espressif/all: phony modules/hal_espressif/hal_espressif/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_espressif/hal_espressif + +build modules/hal_espressif/hal_espressif/all: phony modules/hal_espressif/hal_espressif/esp32s3/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_espressif/hal_espressif/esp32s3 + +build modules/hal_espressif/hal_espressif/esp32s3/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_ethos_u + +build modules/hal_ethos_u/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_gigadevice + +build modules/hal_gigadevice/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_infineon + +build modules/hal_infineon/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_intel + +build modules/hal_intel/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_nordic + +build modules/hal_nordic/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_nxp + +build modules/hal_nxp/all: phony modules/hal_nxp/hal_nxp/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_nxp/hal_nxp + +build modules/hal_nxp/hal_nxp/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_realtek + +build modules/hal_realtek/all: phony modules/hal_realtek/hal_realtek/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_realtek/hal_realtek + +build modules/hal_realtek/hal_realtek/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_renesas + +build modules/hal_renesas/all: phony modules/hal_renesas/zephyr/all modules/hal_renesas/drivers/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_renesas/drivers + +build modules/hal_renesas/drivers/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_renesas/zephyr + +build modules/hal_renesas/zephyr/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_rpi_pico + +build modules/hal_rpi_pico/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_sifli + +build modules/hal_sifli/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_silabs + +build modules/hal_silabs/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_st + +build modules/hal_st/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_stm32 + +build modules/hal_stm32/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_tdk + +build modules/hal_tdk/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_telink + +build modules/hal_telink/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_wch + +build modules/hal_wch/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hal_wurthelektronik + +build modules/hal_wurthelektronik/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/hostap + +build modules/hostap/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/liblc3 + +build modules/liblc3/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/libmctp + +build modules/libmctp/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/libmetal + +build modules/libmetal/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/libsbc + +build modules/libsbc/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/littlefs + +build modules/littlefs/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/lora-basics-modem + +build modules/lora-basics-modem/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/loramac-node + +build modules/loramac-node/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/lvgl + +build modules/lvgl/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/mbedtls + +build modules/mbedtls/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/mcuboot + +build modules/mcuboot/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/microchip + +build modules/microchip/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/mipi-sys-t + +build modules/mipi-sys-t/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/nanopb + +build modules/nanopb/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/nrf_hw_models + +build modules/nrf_hw_models/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/nrf_wifi + +build modules/nrf_wifi/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/nuvoton + +build modules/nuvoton/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/open-amp + +build modules/open-amp/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/openisa + +build modules/openisa/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/openthread + +build modules/openthread/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/percepio + +build modules/percepio/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/picolibc + +build modules/picolibc/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/quicklogic + +build modules/quicklogic/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/segger + +build modules/segger/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/ti + +build modules/ti/all: phony modules/ti/simplelink/all modules/ti/simplelink_lpf3/all modules/ti/mspm0/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/ti/mspm0 + +build modules/ti/mspm0/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink + +build modules/ti/simplelink/all: phony modules/ti/simplelink/source/ti/devices/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink/source/ti/devices + +build modules/ti/simplelink/source/ti/devices/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink_lpf3 + +build modules/ti/simplelink_lpf3/all: phony modules/ti/simplelink_lpf3/source/ti/devices/all modules/ti/simplelink_lpf3/source/ti/boards/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink_lpf3/source/ti/boards + +build modules/ti/simplelink_lpf3/source/ti/boards/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink_lpf3/source/ti/devices + +build modules/ti/simplelink_lpf3/source/ti/devices/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/trusted-firmware-a + +build modules/trusted-firmware-a/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/trusted-firmware-m + +build modules/trusted-firmware-m/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/uoscore-uedhoc + +build modules/uoscore-uedhoc/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/xtensa + +build modules/xtensa/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/modules/zcbor + +build modules/zcbor/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr + +build zephyr/all: phony zephyr/libzephyr.a zephyr/offsets zephyr/zephyr_pre0.elf zephyr/zephyr.elf zephyr/build_info_yaml_saved zephyr/arch/all zephyr/lib/all zephyr/soc/all zephyr/boards/all zephyr/subsys/all zephyr/drivers/all modules/acpica/all modules/cmsis/all modules/cmsis-dsp/all modules/cmsis-nn/all modules/cmsis_6/all modules/dhara/all modules/fatfs/all modules/adi/all modules/hal_afbr/all modules/hal_ambiq/all modules/atmel/all modules/hal_bouffalolab/all modules/hal_espressif/all modules/hal_ethos_u/all modules/hal_gigadevice/all modules/hal_infineon/all modules/hal_intel/all modules/microchip/all modules/hal_nordic/all modules/nuvoton/all modules/hal_nxp/all modules/openisa/all modules/quicklogic/all modules/hal_realtek/all modules/hal_renesas/all modules/hal_rpi_pico/all modules/hal_sifli/all modules/hal_silabs/all modules/hal_st/all modules/hal_stm32/all modules/hal_tdk/all modules/hal_telink/all modules/ti/all modules/hal_wch/all modules/hal_wurthelektronik/all modules/xtensa/all modules/hostap/all modules/liblc3/all modules/libmctp/all modules/libmetal/all modules/libsbc/all modules/littlefs/all modules/lora-basics-modem/all modules/loramac-node/all modules/lvgl/all modules/mbedtls/all modules/mcuboot/all modules/mipi-sys-t/all modules/nanopb/all modules/nrf_wifi/all modules/open-amp/all modules/openthread/all modules/percepio/all modules/picolibc/all modules/segger/all modules/trusted-firmware-a/all modules/trusted-firmware-m/all modules/uoscore-uedhoc/all modules/zcbor/all modules/nrf_hw_models/all zephyr/kernel/all zephyr/cmake/flash/all zephyr/cmake/usage/all zephyr/cmake/reports/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/arch + +build zephyr/arch/all: phony zephyr/arch/common/all zephyr/arch/arch/xtensa/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa + +build zephyr/arch/arch/xtensa/all: phony zephyr/arch/arch/xtensa/core/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core + +build zephyr/arch/arch/xtensa/core/all: phony zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a zephyr/arch/arch/xtensa/core/startup/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core/startup + +build zephyr/arch/arch/xtensa/core/startup/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/arch/common + +build zephyr/arch/common/all: phony zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/boards + +build zephyr/boards/all: phony zephyr/boards/shields/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/boards/shields + +build zephyr/boards/shields/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/cmake/flash + +build zephyr/cmake/flash/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/cmake/reports + +build zephyr/cmake/reports/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/cmake/usage + +build zephyr/cmake/usage/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/drivers + +build zephyr/drivers/all: phony zephyr/drivers/disk/all zephyr/drivers/firmware/all zephyr/drivers/interrupt_controller/all zephyr/drivers/misc/all zephyr/drivers/pcie/all zephyr/drivers/usb/all zephyr/drivers/usb_c/all zephyr/drivers/clock_control/all zephyr/drivers/console/all zephyr/drivers/gpio/all zephyr/drivers/lora/all zephyr/drivers/pinctrl/all zephyr/drivers/serial/all zephyr/drivers/spi/all zephyr/drivers/timer/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/clock_control + +build zephyr/drivers/clock_control/all: phony zephyr/drivers/clock_control/libdrivers__clock_control.a + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/console + +build zephyr/drivers/console/all: phony zephyr/drivers/console/libdrivers__console.a + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/disk + +build zephyr/drivers/disk/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/firmware + +build zephyr/drivers/firmware/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/gpio + +build zephyr/drivers/gpio/all: phony zephyr/drivers/gpio/libdrivers__gpio.a + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/interrupt_controller + +build zephyr/drivers/interrupt_controller/all: phony zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora + +build zephyr/drivers/lora/all: phony zephyr/drivers/lora/loramac-node/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora/loramac-node + +build zephyr/drivers/lora/loramac-node/all: phony zephyr/drivers/lora/loramac-node/libloramac-node.a + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/misc + +build zephyr/drivers/misc/all: phony zephyr/drivers/misc/interconn/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/misc/interconn + +build zephyr/drivers/misc/interconn/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pcie + +build zephyr/drivers/pcie/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pinctrl + +build zephyr/drivers/pinctrl/all: phony zephyr/drivers/pinctrl/libdrivers__pinctrl.a zephyr/drivers/pinctrl/renesas/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pinctrl/renesas + +build zephyr/drivers/pinctrl/renesas/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/serial + +build zephyr/drivers/serial/all: phony zephyr/drivers/serial/libdrivers__serial.a + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/spi + +build zephyr/drivers/spi/all: phony zephyr/drivers/spi/libdrivers__spi.a zephyr/drivers/spi/spi_nxp_lpspi/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/spi/spi_nxp_lpspi + +build zephyr/drivers/spi/spi_nxp_lpspi/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/timer + +build zephyr/drivers/timer/all: phony zephyr/drivers/timer/libdrivers__timer.a + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb + +build zephyr/drivers/usb/all: phony zephyr/drivers/usb/common/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb/common + +build zephyr/drivers/usb/common/all: phony zephyr/drivers/usb/common/buf/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb/common/buf + +build zephyr/drivers/usb/common/buf/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb_c + +build zephyr/drivers/usb_c/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/kernel + +build zephyr/kernel/all: phony zephyr/kernel/libkernel.a + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/lib + +build zephyr/lib/all: phony zephyr/lib/libc/all zephyr/lib/posix/all zephyr/lib/hash/all zephyr/lib/heap/all zephyr/lib/mem_blocks/all zephyr/lib/midi2/all zephyr/lib/os/all zephyr/lib/utils/all zephyr/lib/uuid/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/lib/hash + +build zephyr/lib/hash/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/lib/heap + +build zephyr/lib/heap/all: phony zephyr/lib/heap/heap_constants + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc + +build zephyr/lib/libc/all: phony zephyr/lib/libc/picolibc/all zephyr/lib/libc/common/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/common + +build zephyr/lib/libc/common/all: phony zephyr/lib/libc/common/liblib__libc__common.a + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/picolibc + +build zephyr/lib/libc/picolibc/all: phony zephyr/lib/libc/picolibc/liblib__libc__picolibc.a + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/lib/mem_blocks + +build zephyr/lib/mem_blocks/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/lib/midi2 + +build zephyr/lib/midi2/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/lib/os + +build zephyr/lib/os/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix + +build zephyr/lib/posix/all: phony zephyr/lib/posix/c_lang_support_r/all zephyr/lib/posix/c_lib_ext/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix/c_lang_support_r + +build zephyr/lib/posix/c_lang_support_r/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix/c_lib_ext + +build zephyr/lib/posix/c_lib_ext/all: phony zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/lib/utils + +build zephyr/lib/utils/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/lib/uuid + +build zephyr/lib/uuid/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/soc + +build zephyr/soc/all: phony zephyr/soc/common/all zephyr/soc/soc/esp32s3/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/soc/common + +build zephyr/soc/common/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/soc/soc/esp32s3 + +build zephyr/soc/soc/esp32s3/all: phony zephyr/soc/soc/esp32s3/common/all zephyr/soc/soc/esp32s3/esp32s3/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/soc/soc/esp32s3/common + +build zephyr/soc/soc/esp32s3/common/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/soc/soc/esp32s3/esp32s3 + +build zephyr/soc/soc/esp32s3/esp32s3/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys + +build zephyr/subsys/all: phony zephyr/subsys/canbus/all zephyr/subsys/debug/all zephyr/subsys/fb/all zephyr/subsys/fs/all zephyr/subsys/gnss/all zephyr/subsys/instrumentation/all zephyr/subsys/ipc/all zephyr/subsys/kvss/all zephyr/subsys/logging/all zephyr/subsys/mem_mgmt/all zephyr/subsys/mgmt/all zephyr/subsys/modbus/all zephyr/subsys/pm/all zephyr/subsys/pmci/all zephyr/subsys/portability/all zephyr/subsys/random/all zephyr/subsys/rtio/all zephyr/subsys/sd/all zephyr/subsys/stats/all zephyr/subsys/storage/all zephyr/subsys/task_wdt/all zephyr/subsys/testsuite/all zephyr/subsys/tracing/all zephyr/subsys/usb/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/canbus + +build zephyr/subsys/canbus/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/debug + +build zephyr/subsys/debug/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/fb + +build zephyr/subsys/fb/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/fs + +build zephyr/subsys/fs/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/gnss + +build zephyr/subsys/gnss/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/instrumentation + +build zephyr/subsys/instrumentation/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/ipc + +build zephyr/subsys/ipc/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/kvss + +build zephyr/subsys/kvss/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/logging + +build zephyr/subsys/logging/all: phony zephyr/subsys/logging/backends/all zephyr/subsys/logging/frontends/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/logging/backends + +build zephyr/subsys/logging/backends/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/logging/frontends + +build zephyr/subsys/logging/frontends/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/mem_mgmt + +build zephyr/subsys/mem_mgmt/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/mgmt + +build zephyr/subsys/mgmt/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/modbus + +build zephyr/subsys/modbus/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/pm + +build zephyr/subsys/pm/all: phony zephyr/subsys/pm/policy/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/pm/policy + +build zephyr/subsys/pm/policy/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/pmci + +build zephyr/subsys/pmci/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/portability + +build zephyr/subsys/portability/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/random + +build zephyr/subsys/random/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/rtio + +build zephyr/subsys/rtio/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/sd + +build zephyr/subsys/sd/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/stats + +build zephyr/subsys/stats/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/storage + +build zephyr/subsys/storage/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/task_wdt + +build zephyr/subsys/task_wdt/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/testsuite + +build zephyr/subsys/testsuite/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/tracing + +build zephyr/subsys/tracing/all: phony + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/usb + +build zephyr/subsys/usb/all: phony zephyr/subsys/usb/common/all + +# ============================================================================= + +############################################# +# Folder: /Volumes/External/Work/radio/loramodem/build/zephyr/subsys/usb/common + +build zephyr/subsys/usb/common/all: phony + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja /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: RERUN_CMAKE | /Users/wijnand/zephyr-sdk-1.0.0/cmake/Zephyr-sdkConfig.cmake /Users/wijnand/zephyr-sdk-1.0.0/cmake/Zephyr-sdkConfigVersion.cmake /Users/wijnand/zephyr-sdk-1.0.0/cmake/zephyr/Kconfig /Users/wijnand/zephyr-sdk-1.0.0/cmake/zephyr/gnu/generic.cmake /Users/wijnand/zephyr-sdk-1.0.0/cmake/zephyr/gnu/target.cmake /Users/wijnand/zephyr-sdk-1.0.0/cmake/zephyr/host-tools.cmake /Users/wijnand/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/CMakeLists.txt /Users/wijnand/zephyrproject/modules/bsim_hw_models/nrf_hw_models/CMakeLists.txt /Users/wijnand/zephyrproject/modules/debug/mipi-sys-t/CMakeLists.txt /Users/wijnand/zephyrproject/modules/debug/percepio/DFM/kernelports/Zephyr/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/DFM/kernelports/Zephyr/storageports/Filesystem/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/DFM/kernelports/Zephyr/storageports/Flash/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.BufferAllocation /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.Debug /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.EntryTable /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.ISR /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.InternalBuffer /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.StackMonitor /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.StartMode /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.StreamPort /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.TraceControl /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.TraceCoverage /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/kernelports/ESP-IDF_FreeRTOS/streamports/ESP_IDF_APPTRACE/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/kernelports/Zephyr/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/kernelports/Zephyr/streamports/Semihost/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/ARM_ITM/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/File/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/Jlink_RTT/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/RingBuffer/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/STM32_USB_CDC/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/TCPIP/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/UDP/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/zephyr/Kconfig /Users/wijnand/zephyrproject/modules/hal/adi/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/ambiq/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/atmel/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/atmel/asf/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/atmel/asf/common/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/atmel/asf/common/components/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/atmel/asf/common/components/wifi/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32/include/soc/Kconfig.soc_caps.in /Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32c2/include/soc/Kconfig.soc_caps.in /Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32c3/include/soc/Kconfig.soc_caps.in /Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32c5/include/soc/Kconfig.soc_caps.in /Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32c6/include/soc/Kconfig.soc_caps.in /Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32h2/include/soc/Kconfig.soc_caps.in /Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32s2/include/soc/Kconfig.soc_caps.in /Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32s3/include/soc/Kconfig.soc_caps.in /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/intel/zephyr/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/intel/zephyr/Kconfig /Users/wijnand/zephyrproject/modules/hal/intel/zephyr/bsp_sedi/Kconfig /Users/wijnand/zephyrproject/modules/hal/intel/zephyr/subsys/logging/backends/Kconfig.i2c /Users/wijnand/zephyrproject/modules/hal/libmetal/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/microchip/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/nuvoton/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/nxp/zephyr/src/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/openisa/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/quicklogic/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/realtek/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/realtek/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/ameba/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/ameba/amebad/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/ameba/amebadplus/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/ameba/amebag2/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/adc/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/bluetooth/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/can/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/codec/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/dma/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/gpio/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/i2c/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/i2s/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/ir/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/keyscan/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/mac_802154/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/nvic/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/pinmux/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/qdec/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/rcc/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/rtc/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/sdhc/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/spi/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/tim/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/uart/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/usb/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/wdt/Kconfig /Users/wijnand/zephyrproject/modules/hal/renesas/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/renesas/drivers/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/renesas/zephyr/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/st/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/stm32/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/tdk/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/telink/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/telink/Kconfig /Users/wijnand/zephyrproject/modules/hal/telink/tlsr9/Kconfig /Users/wijnand/zephyrproject/modules/hal/ti/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/ti/mspm0/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/ti/simplelink/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/ti/simplelink/source/ti/devices/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/ti/simplelink_lpf3/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/ti/simplelink_lpf3/source/ti/boards/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/ti/simplelink_lpf3/source/ti/devices/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/wurthelektronik/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/xtensa/CMakeLists.txt /Users/wijnand/zephyrproject/modules/lib/gui/lvgl/Kconfig /Users/wijnand/zephyrproject/modules/lib/gui/lvgl/zephyr/Kconfig /Users/wijnand/zephyrproject/modules/lib/libmctp/zephyr/CMakeLists.txt /Users/wijnand/zephyrproject/modules/lib/open-amp/CMakeLists.txt /Users/wijnand/zephyrproject/modules/lib/picolibc/CMakeLists.txt /Users/wijnand/zephyrproject/modules/lib/picolibc/zephyr/Kconfig /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/Kconfig.constants /Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr /Users/wijnand/zephyrproject/zephyr/VERSION /Users/wijnand/zephyrproject/zephyr/arch/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/arch/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arc/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arc/core/dsp/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arc/core/mpu/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm/core/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm/core/Kconfig.vfp /Users/wijnand/zephyrproject/zephyr/arch/arm/core/arm9/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm/core/cortex_a_r/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm/core/cortex_m/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm/core/cortex_m/tz/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm/core/mmu/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm/core/mpu/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm64/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm64/core/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm64/core/cortex_r/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm64/core/xen/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/common/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/arch/common/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/mips/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/openrisc/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/posix/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/posix/Kconfig.natsim_optional /Users/wijnand/zephyrproject/zephyr/arch/riscv/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/riscv/Kconfig.isa /Users/wijnand/zephyrproject/zephyr/arch/riscv/custom/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/riscv/custom/andes/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/riscv/custom/thead/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/riscv/custom/thead/Kconfig.core /Users/wijnand/zephyrproject/zephyr/arch/riscv/custom/vexriscv/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/rx/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/sparc/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/x86/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/x86/core/Kconfig.ia32 /Users/wijnand/zephyrproject/zephyr/arch/x86/core/Kconfig.intel64 /Users/wijnand/zephyrproject/zephyr/arch/xtensa/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/arch/xtensa/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/startup/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/boards/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/boards/Kconfig /Users/wijnand/zephyrproject/zephyr/boards/Kconfig.v2 /Users/wijnand/zephyrproject/zephyr/boards/Kconfig.whisper /Users/wijnand/zephyrproject/zephyr/boards/common/esp32.board.cmake /Users/wijnand/zephyrproject/zephyr/boards/common/openocd.board.cmake /Users/wijnand/zephyrproject/zephyr/boards/deprecated.cmake /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig.xiao_esp32s3 /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/board.cmake /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/board.yml /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/seeed_xiao_connector.dtsi /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu.dts /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/boards/shields/abrobot_esp32c3_oled/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_24lc32/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_2_8_tft_touch_v2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_2_8_tft_touch_v2/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_8chan_solenoid/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ad5693r/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_adalogger_featherwing/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_aht20/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_apds9960/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_aw9523/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_data_logger/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_dps310/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_drv2605l/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ds2484/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_featherwing_128x32_oled/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_featherwing_128x32_oled/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_featherwing_128x64_oled/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_featherwing_128x64_oled/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ht16k33/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_hts221/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ina219/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ina228/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ina237/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ina3221/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_lis2mdl/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_lis3dh/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_lis3mdl/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_lps22/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ltr329/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_max17048/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_mcp4728/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_mcp9808/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_neopixel_grid_bff/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_neopixel_grid_bff/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_pca9685/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_pcf8523/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_sht4x/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_tsl2591/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_vcnl4040/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_veml7700/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_winc1500/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_winc1500/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/amg88xx/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/arceli_eth_w5500/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/arceli_eth_w5500/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/arducam_cu450_ov5640/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_giga_display_shield/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_giga_display_shield/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_modulino_buttons/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_modulino_latch_relay/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_modulino_movement/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_modulino_pixels/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_modulino_thermo/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_uno_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/atmel_rf2xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/atmel_rf2xx/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/boostxl_ulpsense/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/buydisplay_2_8_tft_touch_arduino/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/buydisplay_2_8_tft_touch_arduino/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/buydisplay_3_5_tft_touch_arduino/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/buydisplay_3_5_tft_touch_arduino/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/canis_canpico/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/dac80508_evm/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/dvp_20pin_ov7670/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/dvp_fpc24_mt9m114/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/ek_ra8d1_rtk7eka6m3b00001bu/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/esp_8266/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/esp_8266/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/esp_8266/boards/disco_l475_iot1.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/esp_8266/boards/sam4e_xpro.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/esp_threadbr_ethernet/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/esp_threadbr_ethernet/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/eval_ad4052_ardz/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/eval_adxl362_ardz/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/eval_adxl367_ardz/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/eval_adxl372_ardz/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/eval_cn0391_ardz/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/frdm_cr20a/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/frdm_cr20a/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/frdm_cr20a/boards/frdm_k64f.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/frdm_kw41z/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/frdm_stbc_agm01/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/ftdi_vm800c/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/g1120b0mipi/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/g1120b0mipi/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/inventek_eswifi/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/inventek_eswifi/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/inventek_eswifi/boards/frdm_k64f.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/inventek_eswifi/boards/nucleo_f767zi.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/lcd_par_s035/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/lcd_par_s035/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/link_board_eth/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/link_board_eth/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/lmp90100_evb/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/lmp90100_evb/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/ls0xx_generic/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/ls0xx_generic/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/m5stack_cardputer/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/m5stack_cardputer/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/m5stack_core2_ext/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/max3421e/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/max7219/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mchp_rnbd451_bt/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/mchp_rnbd451_bt/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mcp2515/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_3d_hall_3_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_accel13_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_accel4_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_adc_click/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_adc_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_air_quality_3_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_ambient_2_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_ble_tiny_click/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_ble_tiny_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_can_fd_6_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_eeprom_13_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_eth3_click/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_eth3_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_eth_click/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_eth_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_flash_5_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_flash_6_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_flash_8_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_h_bridge_4_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_illuminance_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_ir_gesture_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_lsm6dsl_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_lte_iot10_click/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_lte_iot10_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_lte_iot7_click/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_lte_iot7_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_mcp251x_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_mcp251xfd_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_pressure_3_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_proximity_9_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_rs485_isolator_5_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_rtc_18_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_stepper_18_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_stepper_19_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_temp_hum_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_weather_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_wifi_bt_click/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_wifi_bt_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/npm1100_ek/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/npm1300_ek/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/npm1304_ek/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/npm2100_ek/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/npm6001_ek/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/nrf7002eb/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/nrf7002eb2/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/nrf7002ek/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/nxp_adtja1101/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/nxp_btb44_ov5640/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/nxp_m2_wifi_bt/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/nxp_m2_wifi_bt/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/nxp_s32k5xx_mb/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/olimex_shield_midi/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/openthread_rcp_arduino/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/openthread_rcp_arduino/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/p3t1755dp_ard_i2c/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/p3t1755dp_ard_i3c/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/pmod_acl/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/pmod_sd/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/raspberry_pi_camera_module_2/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/renesas_aik_ov2640_cam/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/renesas_us159_da14531evz/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/reyax_lora/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/rk043fn02h_ct/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rk043fn02h_ct/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/rk043fn66hs_ctg/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rk043fn66hs_ctg/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/rk055hdmipi4m/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rk055hdmipi4m/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/rk055hdmipi4ma0/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rk055hdmipi4ma0/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/rpi_pico_uno_flexypin/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/rtk0eg0019b01002bj/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rtk0eg0019b01002bj/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/rtk7eka6m3b00001bu/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rtk7eka6m3b00001bu/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/rtk7eka6m3b00001bu/boards/ek_ra8d1.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rtklcdpar1s00001be/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rtklcdpar1s00001be/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/rtklcdpar1s00001be/boards/ek_ra8d2_r7ka8d2kflcac_cm85.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rtklcdpar1s00001be/boards/ek_ra8p1_r7ka8p1kflcac_cm85.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rtkmipilcdb00000be/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rtkmipilcdb00000be/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/rtkmipilcdb00000be/boards/aik_ra8d1.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rtkmipilcdb00000be/boards/ek_ra8d1.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rtkmipilcdb00000be/boards/ek_ra8p1_r7ka8p1kflcac_cm85.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/seeed_w5500/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/seeed_w5500/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/seeed_xiao_expansion_board/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/seeed_xiao_expansion_board/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/seeed_xiao_hsp24/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/seeed_xiao_round_display/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/seeed_xiao_round_display/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/semtech_sx1261mb2bas/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/semtech_sx1262mb2das/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/semtech_sx1272mb2das/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/semtech_sx1276mb1mas/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/sparkfun_carrier_asset_tracker/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/sparkfun_environmental_combo/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/sparkfun_rv8803/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/sparkfun_sara_r4/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/sparkfun_sara_r4/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/sparkfun_shtc3/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/ssd1306/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/ssd1306/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/st7735r/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/st7735r/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/st7789v_generic/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/st7789v_generic/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/st87mxx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/st87mxx/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_cams_imx_mb1854/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_cams_imx_mb1854/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_cams_omv_mb1683/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_dsi_mb1314/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/boards/stm32h747i_disco_stm32h747xx_m7.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/boards/stm32h757i_eval_stm32h757xx_m7.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/st_lcd_dsi_mb1835/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/st_mb1897_cam/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/st_stm32f4dis_cam/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/swir_hl78xx_ev_kit/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/tcan4550evm/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/ti_bp_bassensorsmkii/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/v2c_daplink/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_dsi_lcd/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_dsi_lcd/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_epaper/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_epaper/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_pico_lcd_1_14/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_pico_lcd_1_14/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_pico_oled_1_3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_pico_oled_1_3/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_ups/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/weact_ov2640_cam_module/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/wiznet_w5500/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/wiznet_w5500/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/wnc_m14a2a/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/wnc_m14a2a/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_53l0a1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_53l0a1/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_bnrg2a1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_bnrg2a1/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_eeprma2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_eeprma2/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_gfx01m2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_gfx01m2/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_idb05a1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_idb05a1/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_iks01a1/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_iks01a2/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_iks01a3/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_iks02a1/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_iks4a1/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_iks5a1/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_wb05kn1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_wb05kn1/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/zc143ac72mipi/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/zc143ac72mipi/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/zhaw_lumamatrix/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/cmake/bintools/bintools_template.cmake /Users/wijnand/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake /Users/wijnand/zephyrproject/zephyr/cmake/bintools/gnu/target_bintools.cmake /Users/wijnand/zephyrproject/zephyr/cmake/compiler/compiler_features.cmake /Users/wijnand/zephyrproject/zephyr/cmake/compiler/compiler_flags_template.cmake /Users/wijnand/zephyrproject/zephyr/cmake/compiler/gcc/compiler_flags.cmake /Users/wijnand/zephyrproject/zephyr/cmake/compiler/gcc/generic.cmake /Users/wijnand/zephyrproject/zephyr/cmake/compiler/gcc/target.cmake /Users/wijnand/zephyrproject/zephyr/cmake/compiler/gcc/target_xtensa.cmake /Users/wijnand/zephyrproject/zephyr/cmake/compiler/target_template.cmake /Users/wijnand/zephyrproject/zephyr/cmake/extra_flags.cmake /Users/wijnand/zephyrproject/zephyr/cmake/flash/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/cmake/gcc-m-cpu.cmake /Users/wijnand/zephyrproject/zephyr/cmake/gcc-m-fpu.cmake /Users/wijnand/zephyrproject/zephyr/cmake/kobj.cmake /Users/wijnand/zephyrproject/zephyr/cmake/linker/ld/gcc/linker_flags.cmake /Users/wijnand/zephyrproject/zephyr/cmake/linker/ld/linker_flags.cmake /Users/wijnand/zephyrproject/zephyr/cmake/linker/ld/linker_libraries.cmake /Users/wijnand/zephyrproject/zephyr/cmake/linker/ld/target.cmake /Users/wijnand/zephyrproject/zephyr/cmake/linker/ld/target_configure.cmake /Users/wijnand/zephyrproject/zephyr/cmake/linker/ld/target_relocation.cmake /Users/wijnand/zephyrproject/zephyr/cmake/linker/linker_flags_template.cmake /Users/wijnand/zephyrproject/zephyr/cmake/linker/linker_libraries_template.cmake /Users/wijnand/zephyrproject/zephyr/cmake/linker/target_template.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/FindDtc.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/FindGnuLd.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/FindHostTools.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/FindScaTools.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/FindZephyr-sdk.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/arch.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/basic_settings.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/boards.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/ccache.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/configuration_files.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/dts.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/extensions.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/generated_file_directories.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/hwm_v2.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/kconfig.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/pre_dt.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/python.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/root.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/shields.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/snippets.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/soc.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/user_cache.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/version.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/west.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/yaml.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_module.cmake /Users/wijnand/zephyrproject/zephyr/cmake/reports/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/cmake/target_toolchain_flags.cmake /Users/wijnand/zephyrproject/zephyr/cmake/toolchain/zephyr/generic.cmake /Users/wijnand/zephyrproject/zephyr/cmake/toolchain/zephyr/target.cmake /Users/wijnand/zephyrproject/zephyr/cmake/usage/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ad405x /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ad4114 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ad4130 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ad4170 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ad559x /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ad7124 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.adc_emul /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ads1112 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ads1119 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ads131m02 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ads1x1x /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ads1x4s0x /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ads7052 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ads79xx /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.b91 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.cc13xx_cc26xx /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.cc32xx /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ch32v00x /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ene /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.infineon_autanalog_sar /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.infineon_hppass_sar /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.infineon_sar /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.lmp90xxx /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ltc2451 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.max11102_17 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.max1125x /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.max2253x /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.mcp320x /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.mcp3221 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.mcp356xr /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.nrfx /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.nxp_s32 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.renesas_rx /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.sam_afec /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ti_am335x /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.tla202x /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.vf610 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.aw88298 /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.cs43l22 /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.da7212 /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_ambiq_pdm /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_infineon /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_mcux /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_nxp_micfil /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_pdm_nrfx /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.max98091 /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.mpxxdtyy /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.pcm1681 /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.tas6422dac /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.tlv320aic3110 /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.tlv320dac /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.wm8904 /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.wm8962 /Users/wijnand/zephyrproject/zephyr/drivers/audio/mic_privacy/intel/Kconfig.mic_privacy /Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.gpio /Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.hd44780 /Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.itron /Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.jhd1313 /Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.pt6314 /Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.serlcd /Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.tm1637 /Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.bbram_emul /Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.mc146818 /Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.microchip /Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/biometrics/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/biometrics/Kconfig.emul /Users/wijnand/zephyrproject/zephyr/drivers/biometrics/Kconfig.gt5x /Users/wijnand/zephyrproject/zephyr/drivers/biometrics/Kconfig.zfm_x0 /Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.bee /Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.nxp /Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.andes /Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.aspeed /Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.nrf /Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.nxp_lmem_cache /Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.nxp_syscon_lpcac /Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.nxp_xcache /Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.fake /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.kvaser /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.loopback /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.mcan /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.mcp2515 /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.mcp251xfd /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.native_linux /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.nrf /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.nxp_lpc_mcan /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.nxp_s32 /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.rcar /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.sja1000 /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.tcan4x5x /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/can/transceiver/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.axp2101 /Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.bq24190 /Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.bq2518x /Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.bq25713 /Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.gpio /Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.max20335 /Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.npm10xx /Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.pca9422 /Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.pf1550 /Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.sbs_charger /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.agilex5 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.alif /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.ameba /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.arm_scmi /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.aspeed /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.bee /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.beetle /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.cavs /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.fixed /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.focaltech /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.lpc11u6x /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.mspm0 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.npcm /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.nrf /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.nxp /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.pwm /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.rcar /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.renesas_ra_cgc /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.renesas_rx_cgc /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.renesas_rz_cgc /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.renesas_rz_cpg /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.rts5817 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.rv32m1 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.sf32lb_hxt48 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.sf32lb_rcc /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.si32 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.syna_sr100 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.tisci /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.wch_rcc /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.fake_comp /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.it51xxx_vcmp /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.mcux_acmp /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.nrf_comp /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.nrf_lpcomp /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.nxp_acomp /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.nxp_cmp /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.nxp_hscmp /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.nxp_lpcmp /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.renesas_rx /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.shell /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.silabs_acmp /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.stm32_comp /Users/wijnand/zephyrproject/zephyr/drivers/console/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/console/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/coredump/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.ace /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.andes_atcpit100 /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.bee_timer /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.cc23x0_lgpt /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.cc23x0_rtc /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.cmos /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.dtmr_cmsdk_apb /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.dw /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.esp32_rtc /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.esp32_tmr /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.imx_epit /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.infineon_tcpwm /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.ite_it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.ite_it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.max32_rtc /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.max32_timer /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.max32_wut /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.maxim_ds3231 /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mchp_sam_pit64b /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcp7940n /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_ctimer /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_ftm /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_gpt /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_lpc_rtc /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_lpit /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_lptmr /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_qtmr /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_rtc /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_rtc_jdp /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_snvs /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_stm /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_tpm /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mspm0 /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.native_sim /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.neorv32 /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.nrfx /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.nxp_mrt /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.nxp_pit /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.nxp_s32 /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.rpi_pico_pit /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.rts5912_slwtmr /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.rv3032_counter /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.smartbond_timer /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.stm32_rtc /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.stm32_timer /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.tmr_cmsdk_apb /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.xlnx /Users/wijnand/zephyrproject/zephyr/drivers/crc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/crc/Kconfig.nxp /Users/wijnand/zephyrproject/zephyr/drivers/crc/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/crc/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/crc/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/crc/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.ataes132a /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.intel /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.mcux_dcp /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.nrf_ecb /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.nxp_s32_hse /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.si32 /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.ad559x /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.ad569x /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.ad56x1 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.ad56xx /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.dac161s997 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.dac_emul /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.dacx0501 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.dacx0508 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.dacx311 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.dacx3608 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.ltc166x /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.max22017 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.mcp4725 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.mcp4728 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.samd5x /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/dai/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/dai/intel/alh/Kconfig.alh /Users/wijnand/zephyrproject/zephyr/drivers/dai/intel/dmic/Kconfig.dmic /Users/wijnand/zephyrproject/zephyr/drivers/dai/intel/hda/Kconfig.hda /Users/wijnand/zephyrproject/zephyr/drivers/dai/intel/ssp/Kconfig.ssp /Users/wijnand/zephyrproject/zephyr/drivers/dai/intel/uaol/Kconfig.uaol /Users/wijnand/zephyrproject/zephyr/drivers/dai/nxp/esai/Kconfig.esai /Users/wijnand/zephyrproject/zephyr/drivers/dai/nxp/micfil/Kconfig.micfil /Users/wijnand/zephyrproject/zephyr/drivers/dai/nxp/sai/Kconfig.sai /Users/wijnand/zephyrproject/zephyr/drivers/debug/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/debug/Kconfig.nrf /Users/wijnand/zephyrproject/zephyr/drivers/debug/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/disk/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/disk/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/disk/Kconfig.flash /Users/wijnand/zephyrproject/zephyr/drivers/disk/Kconfig.ftl /Users/wijnand/zephyrproject/zephyr/drivers/disk/Kconfig.loopback /Users/wijnand/zephyrproject/zephyr/drivers/disk/Kconfig.mmc /Users/wijnand/zephyrproject/zephyr/drivers/disk/Kconfig.ram /Users/wijnand/zephyrproject/zephyr/drivers/disk/Kconfig.sdmmc /Users/wijnand/zephyrproject/zephyr/drivers/disk/nvme/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ac057tc1 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.co5300 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.dummy /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.gc9x01x /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.hub12 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.hx8379c /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.hx8394 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ili9806e_dsi /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ili9xxx /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.intel_multibootfb /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ist3931 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.led_strip_matrix /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.lpm013m126 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ls0xx /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.max7219 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.mcux_dcnano_lcdif /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.mcux_elcdif /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.mcux_lcdifv2 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.mcux_lcdifv3 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.microbit /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.nrf_led_matrix /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.nt35510 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.otm8009a /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.qemu_ramfb /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.renesas_lcdc /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.rm67162 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.rm68200 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.sdl /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.sh1122 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd1306 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd1320 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd1322 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd1327_5 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd1331 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd135x /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd1363 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd16xx /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st730x /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st75256 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st7567 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st7586s /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st7701 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st7735r /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st7789v /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st7796s /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.stm32_ltdc /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.uc81xx /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.waveshare_dsi2dpi /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.andes_atcdmacx00 /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.dma_pl330 /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.dw /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.dw_axi_dmac /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.dw_common /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.emul /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.intel_adsp_gpdma /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.intel_adsp_hda /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.intel_lpss /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.iproc_pax /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.mcux_edma /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.mcux_lpc /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.mcux_pxp /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.mcux_smartdma /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.nios2_msgdma /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.nxp_4ch_dma /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.nxp_edma /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.nxp_sdma /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.nxp_sof_host_dma /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.sam_xdmac /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.sedi /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.si32 /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.ti_cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.wch /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.xilinx_axi_dma /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/dp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/edac/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/edac/Kconfig.mcux_erm /Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.eeprom_emu /Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.fm25xxx /Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.lpc11u6x /Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.mb85rcxx /Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.mb85rsxx /Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.tmp11x /Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.b91 /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.bt_hci /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.cc13xx_cc26xx /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.gecko /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.iproc /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.maxq10xx /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.mspm0_trng /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.native_sim /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.neorv32 /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.nrf5 /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.nrf_cracen /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.nxp /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.psa_crypto /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.rv32m1 /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.sy1xx /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.virtio /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.wch /Users/wijnand/zephyrproject/zephyr/drivers/espi/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/espi/Kconfig.espi_emul /Users/wijnand/zephyrproject/zephyr/drivers/espi/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/espi/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/espi/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/espi/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.adin2111 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.cyclonev /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.dm9051 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.dwmac /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.e1000 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.enc28j60 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.enc424j600 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.gecko /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.ivshmem /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.lan865x /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.lan9250 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.native_tap /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.nxp_enet /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.nxp_s32_gmac /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.nxp_s32_netc /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.renesas_ra_rmac /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.sam_gmac /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.smsc911x /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.smsc91x /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.stellaris /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.stm32_hal /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.sy1xx_mac /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.virtio_net /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.w5500 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.w6100 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.wch /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.xilinx_axi_ethernet_lite /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.xilinx_axienet /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.xlnx_gem /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/dsa/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/dwc_xgmac/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/eth_nxp_enet_qos/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/intel/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/intel/Kconfig.intel_igc /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.adin2111 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.dwcxgmac /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.gpio /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.intel_igc /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.lan865x /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.nxp_enet /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.nxp_enet_qos /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.nxp_imx_netc /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.nxp_s32_gmac /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.nxp_s32_netc /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.stm32_hal /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.sy1xx /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.wch /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.xilinx_axi_ethernet_lite /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.xilinx_axienet /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/nxp_imx_netc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.dm8806 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.microchip_t1s /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.nxp_t1s /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.tja1103 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.tja11xx /Users/wijnand/zephyrproject/zephyr/drivers/firmware/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/firmware/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/firmware/qemu_fwcfg/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/firmware/scmi/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/firmware/scmi/nxp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/firmware/scmi/shell/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/firmware/tisci/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.adi_max32_spixf /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.andes /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.at25xv021a /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.at45 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.b91 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.cadence_nand /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.cadence_qspi_nor /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.cc13xx_cc26xx /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.gecko /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.it51xxx_m1k /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.lpc /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.mspi /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nand /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nor /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nordic_qspi_nor /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.npcx_fiu /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nrf /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nrf_mram /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nrf_mramc /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nrf_rram /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.numaker_rmc /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nxp_s32_qspi /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nxp_s32_xspi /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_ra_ospi /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_ra_qspi /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_rx /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_rz_qspi /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.rv32m1 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.s3axx04 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.sf32lb_mpi_qspi_nor /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.si32 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.simulator /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.stm32_ospi /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.stm32_qspi /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.stm32_xspi /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/fpga/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/fpga/Kconfig.altera_agilex_bridge /Users/wijnand/zephyrproject/zephyr/drivers/fpga/Kconfig.eos_s3 /Users/wijnand/zephyrproject/zephyr/drivers/fpga/Kconfig.ice40 /Users/wijnand/zephyrproject/zephyr/drivers/fpga/Kconfig.mpfs /Users/wijnand/zephyrproject/zephyr/drivers/fpga/Kconfig.slg471x5 /Users/wijnand/zephyrproject/zephyr/drivers/fpga/Kconfig.zynqmp /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/axp2101/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/bq27z746/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/bq40z50/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/composite/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/hy4245/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/lc709203f/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/ltc2959/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/max17048/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/sbs_gauge/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/sbs_gauge/Kconfig.emul_sbs_gauge /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/sy24561/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/gnss/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/gnss/Kconfig.emul /Users/wijnand/zephyrproject/zephyr/drivers/gnss/Kconfig.generic /Users/wijnand/zephyrproject/zephyr/drivers/gnss/Kconfig.globaltop_pa6h /Users/wijnand/zephyrproject/zephyr/drivers/gnss/Kconfig.luatos_air530z /Users/wijnand/zephyrproject/zephyr/drivers/gnss/Kconfig.quectel_lcx6g /Users/wijnand/zephyrproject/zephyr/drivers/gnss/u_blox/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/gnss/u_blox/Kconfig.u_blox_common /Users/wijnand/zephyrproject/zephyr/drivers/gnss/u_blox/Kconfig.u_blox_f9p /Users/wijnand/zephyrproject/zephyr/drivers/gnss/u_blox/Kconfig.u_blox_m8 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.ad559x /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.adp5585 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.ads1x4s0x /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.aesc /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.altera /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.ameba /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.andes_atcgpio100 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.aw9523b /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.axp192 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.b91 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.bcm2711 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.bd8lb600fs /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.bee /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.brcmstb /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.cc13xx_cc26xx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.cc32xx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.cmsdk_ahb /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.creg_gpio /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.cy8c95xx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.cyw43 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.davinci /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.dw /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.efinix_sapphire /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.emul /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.emul_sdl /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.ene /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.eos_s3 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.fxl6408 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.gecko /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.grgpio /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.imx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.intel /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.iproc /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.it8801 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.lmp90xxx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.lpc11u6x /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.max14906 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.max14916 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.max14917 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.max22017 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.max2219x /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mchp_mss /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mcp23xxx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mcux_igpio /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mcux_lpc /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mcux_rgpio /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mfxstm32l152 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mmio32 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mspm0 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.nct38xx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.neorv32 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.npm13xx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.npm2100 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.npm6001 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.nrfx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.numicro /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.nxp_siul2 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.pca953x /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.pca95xx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.pca_series /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.pcal64xxa /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.pcal9722 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.pcf857x /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.psoc6 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.rcar /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.renesas_ra_ioport /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.renesas_rx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.renesas_rza2m /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.rp1 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.rt1718s /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.rv32m1 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.rzt2m /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sc18im704 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sc18is606 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sedi /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.si32 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sifive /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sn74hc595 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.stellaris /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.stmpe1600 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sx1509b /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sy1xx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.tca6424a /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.tle9104 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.wch_ch32v00x /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.xlnx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.xlnx_ps /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/haptics/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/haptics/cirrus/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/haptics/cirrus/Kconfig.cs40l5x /Users/wijnand/zephyrproject/zephyr/drivers/haptics/ti/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/haptics/ti/Kconfig.drv2605 /Users/wijnand/zephyrproject/zephyr/drivers/hdlc_rcp_if/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/hdlc_rcp_if/Kconfig.nxp /Users/wijnand/zephyrproject/zephyr/drivers/hdlc_rcp_if/Kconfig.spi /Users/wijnand/zephyrproject/zephyr/drivers/hdlc_rcp_if/Kconfig.uart /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.andes /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.cc13xx_cc26xx /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.gecko /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.imxrt /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_mcx_cmc /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_rcm /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_rstctl /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_sim /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_src /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_src_rev2 /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_syscon /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mspm0 /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.native /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.nrf /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.numaker_rmc /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.psoc6 /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.rw61x /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.sam4l /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.sam_rstc /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.silabs_series2 /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/hwspinlock/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/hwspinlock/Kconfig.nxp_sema42 /Users/wijnand/zephyrproject/zephyr/drivers/hwspinlock/Kconfig.sqn /Users/wijnand/zephyrproject/zephyr/drivers/hwspinlock/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.andes_atciic100 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.b91 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.bcm_iproc /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.cc13xx_cc26xx /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.cdns /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.dw /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.ene /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.gpio /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.i2c_emul /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.infineon_xmc4 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.lpc11u6x /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.mchp_mss /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.mchp_xec /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.nrfx /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.omap /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.rcar /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.renesas_rx /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sam_twihs /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sbcon /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sc18im704 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sedi /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sifive /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sy1xx /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.tca954x /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.wch /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.xilinx_axi /Users/wijnand/zephyrproject/zephyr/drivers/i2c/target/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/i2c/target/Kconfig.eeprom /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.mcux_flexcomm /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.nrfx /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.sam_ssc /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.cdns /Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.dw /Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.nxp /Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.renesas /Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.b91 /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.cc1200 /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.cc13xx_cc26xx /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.cc2520 /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.dw1000 /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.kw41z /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.mcr20a /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.mcxw /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.nrf5 /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.rf2xx /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.stm32wba /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.uart_pipe /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.adafruit_seesaw_gamepad /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.adc_keys /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.analog_axis /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.bee_keyscan /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.cap12xx /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.cf1133 /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.ch9350l /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.chsc5x /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.chsc6x /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.cst8xx /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.cy8cmbr3xxx /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.evdev /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.ft5336 /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.ft6146 /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.gpio_kbd_matrix /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.gpio_keys /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.gpio_qdec /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.gt911 /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.ili2132a /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.it8801 /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.kbd_matrix /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.mcux_kpp /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.mcux_tsi /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.modulino /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.nunchuk /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.pat912x /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.paw32xx /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.pinnacle /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.pmw3610 /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.renesas_rx /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.sbus /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.sdl /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.stmpe811 /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.tma525b /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.touch /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.tsc_keys /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.vs1838b /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.xpt2046 /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.cavs /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.clic /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.dw /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.gd32_exti /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.gic /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.intel_vtd /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.loapic /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.max32_rv32 /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.mtk_adsp /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.multilevel /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.multilevel.aggregator_template /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_gint /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_irqsteer /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_pint /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_s32 /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_siul2 /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.plic /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.renesas_rx /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.riscv_aia /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.rv32m1 /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.shared_irq /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.swerv /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.vim /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.wch_exti /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.wch_pfic /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/ipm/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ipm/Kconfig.imx /Users/wijnand/zephyrproject/zephyr/drivers/ipm/Kconfig.ivshmem /Users/wijnand/zephyrproject/zephyr/drivers/ipm/Kconfig.nrfx /Users/wijnand/zephyrproject/zephyr/drivers/ipm/Kconfig.nrfx_ipc_channel /Users/wijnand/zephyrproject/zephyr/drivers/ipm/Kconfig.sedi /Users/wijnand/zephyrproject/zephyr/drivers/ipm/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.axp192 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.dac /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.gpio /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.ht16k33 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.is31fl319x /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.is31fl3216a /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.is31fl3733 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.leds-group-multicolor /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.lp3943 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.lp50xx /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.lp5562 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.lp5569 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.modulino /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.ncp5623 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.npm13xx /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.pca9533 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.pca9633 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.pwm /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.sct2024 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.tlc59108 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/led_strip/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/led_strip/Kconfig.apa102 /Users/wijnand/zephyrproject/zephyr/drivers/led_strip/Kconfig.lpd880x /Users/wijnand/zephyrproject/zephyr/drivers/led_strip/Kconfig.modulino /Users/wijnand/zephyrproject/zephyr/drivers/led_strip/Kconfig.tlc5971 /Users/wijnand/zephyrproject/zephyr/drivers/led_strip/Kconfig.tlc59731 /Users/wijnand/zephyrproject/zephyr/drivers/led_strip/Kconfig.ws2812 /Users/wijnand/zephyrproject/zephyr/drivers/lora/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/lora/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/lora/Kconfig.rylrxxx /Users/wijnand/zephyrproject/zephyr/drivers/lora/Kconfig.sx12xx /Users/wijnand/zephyrproject/zephyr/drivers/lora/lora-basics-modem/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/lora/loramac-node/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/lora/native/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/lora/native/sx126x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.adi_max32 /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.andes /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.ivshmem /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.mhuv3 /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.nrf_bellboard /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.nrf_vevif_event /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.nrf_vevif_task /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.nrfx /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.nxp_imx /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.nxp_mailbox /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.nxp_s32 /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.stm32_hsem /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.ti_omap /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.ti_secproxy /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.xlnx /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.max32_hpb /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.mspi /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.nxp_s32_qspi /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.nxp_s32_xspi /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.sifive /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.siwx91x_qspi /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.ad559x /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.adp5585 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.aw9523b /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.axp192 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.axp2101 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.bd8lb600fs /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.ds3231 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.it8801 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.lpflexcomm /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.max20335 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.max22017 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.max2221x /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.max31790 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.maxq10xx /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.mc146818 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.mchp_sam /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.nct38xx /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.npm10xx /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.npm13xx /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.npm2100 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.npm6001 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.pca9422 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.pf1550 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.rv3032_mfd /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.sc18is606_mfd /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.tle9104 /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.bitbang /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.nxp_dcnano_lcdif /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.nxp_flexio_lcdif /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.nxp_lcdic /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.sf32lb_lcdc /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.spi /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.stm32_fmc /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/misc/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/misc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/devmux/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/ethos_u/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/ft8xx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/grove_lcd_rgb/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/interconn/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/misc/interconn/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/interconn/renesas_elc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/interconn/renesas_elc/Kconfig.renesas_ra_elc /Users/wijnand/zephyrproject/zephyr/drivers/misc/max2221x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/mcux_flexio/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/nordic_vpr_launcher/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/nxp_flexram/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/nxp_imx93_mediamix/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/nxp_inputmux/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/nxp_rtxxx_dsp_ctrl/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/nxp_s32_emios/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/pio_rpi_pico/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/renesas_drw/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/renesas_drw/Kconfig.renesas_ra_drw /Users/wijnand/zephyrproject/zephyr/drivers/misc/renesas_ra_external_interrupt/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/renesas_rx_dtc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/renesas_rx_external_interrupt/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/stm32n6_axisram/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/timeaware_gpio/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/timeaware_gpio/Kconfig.timeaware_gpio_intel /Users/wijnand/zephyrproject/zephyr/drivers/mm/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig.at_shell /Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig.cellular /Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig.hl7800 /Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig.quectel-bg9x /Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig.st87mxx /Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig.ublox-sara-r4 /Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig.wncm14a2a /Users/wijnand/zephyrproject/zephyr/drivers/modem/hl78xx/Kconfig.hl78xx /Users/wijnand/zephyrproject/zephyr/drivers/modem/hl78xx/hl78xx_evt_monitor/Kconfig.hl78xx_evt_monitor /Users/wijnand/zephyrproject/zephyr/drivers/modem/simcom/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/modem/simcom/sim7080/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/mspi/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/mspi/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/mspi/Kconfig.dw /Users/wijnand/zephyrproject/zephyr/drivers/mspi/Kconfig.mspi_emul /Users/wijnand/zephyrproject/zephyr/drivers/mspi/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/net/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/opamp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/opamp/Kconfig.mcux_opamp /Users/wijnand/zephyrproject/zephyr/drivers/opamp/Kconfig.mcux_opamp_fast /Users/wijnand/zephyrproject/zephyr/drivers/opamp/Kconfig.stm32_opamp /Users/wijnand/zephyrproject/zephyr/drivers/otp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/otp/Kconfig.emu /Users/wijnand/zephyrproject/zephyr/drivers/otp/Kconfig.mcux_ocotp /Users/wijnand/zephyrproject/zephyr/drivers/otp/Kconfig.sifli /Users/wijnand/zephyrproject/zephyr/drivers/otp/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/pcie/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/pcie/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/pcie/controller/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/pcie/controller/Kconfig.brcmstb /Users/wijnand/zephyrproject/zephyr/drivers/pcie/endpoint/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/pcie/endpoint/Kconfig.iproc /Users/wijnand/zephyrproject/zephyr/drivers/pcie/host/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/peci/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/peci/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/peci/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/peci/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.alif /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ameba /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.arm_mps2 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.arm_mps3 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.arm_mps4 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.arm_v2m_beetle /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.b91 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.bcm2711 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.bee /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.cc13xx_cc26xx /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.emsdp /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ene /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.eos_s3 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.gecko /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.imx /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.lpc_iocon /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.mci_io_mux /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.mspm0 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.nrf /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.numicro /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.nxp_port /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.nxp_siul2 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.realtek_rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.rts5817 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.rv32m1 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sf32lb52x /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sifive /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.silabs_dbus /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sy1xx /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.syna_sr100 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ti_cc32xx /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ti_k3 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.wch_00x_afio /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.wch_20x_30x_afio /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.wch_afio /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.xlnx /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.zynqmp /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/renesas/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/renesas/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/renesas/ra/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/renesas/rcar/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/renesas/rx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/renesas/rz/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/renesas/smartbond/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/pm_cpu_ops/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/power_domain/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/power_domain/Kconfig.nrfs_gdpwr /Users/wijnand/zephyrproject/zephyr/drivers/power_domain/Kconfig.nrfs_swext /Users/wijnand/zephyrproject/zephyr/drivers/power_domain/Kconfig.silabs_siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/ps2/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ps2/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/ps2/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/ps2/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/psi5/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/psi5/Kconfig.nxp_s32 /Users/wijnand/zephyrproject/zephyr/drivers/ptp_clock/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ptp_clock/Kconfig.nxp_enet /Users/wijnand/zephyrproject/zephyr/drivers/ptp_clock/Kconfig.nxp_netc /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.ambiq_timer /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.b91 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.cc13xx_cc26xx_timer /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.cc23x0_timer /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.ene /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.fake /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.gecko /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.imx /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.infineon_tcpwm /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.intel_blinky /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.it8801 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.max2221x /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.max31790 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_ctimer /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_ftm /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_pwt /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_qtmr /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_sctimer /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_tpm /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mspm0 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.neorv32 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.nrf_sw /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.nrfx /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.nxp_flexio /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.nxp_s32_emios /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.pca9685 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.rcar /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.renesas_rx_mtu /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.rv32m1_tpm /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.sam0_tc /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.sifive /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.wch /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.xlnx /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.xmc4xxx_ccu4 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.xmc4xxx_ccu8 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.adp5360 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.axp192 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.cp9314 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.da1469x /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.fake /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.fixed /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.gpio /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.max20335 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.modulino_latch_relay /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.mpm54304 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.npm10xx /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.npm1100 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.npm13xx /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.npm2100 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.npm6001 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.nrf_vregusb /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.nxp_vref /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.nxp_vrefv1 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.pca9420 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.pca9422 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.pf1550 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.stm32_vrefbuf /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.tps55287 /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.aspeed /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.focaltech /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.intel_socfpga /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.lpc_syscon /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.mchp_mss /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.mmio /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.nxp_mrcc /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.nxp_rstctl /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.rts5817 /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.syna_sr100 /Users/wijnand/zephyrproject/zephyr/drivers/retained_mem/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/retained_mem/Kconfig.nrf /Users/wijnand/zephyrproject/zephyr/drivers/retained_mem/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/retained_mem/Kconfig.zephyr /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.am1805 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.bq32002 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.counter /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.ds1302 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.ds1307 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.ds1337 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.ds3231 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.emul /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.fake /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.max31331 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.mc146818 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.nxp_irtc /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.pcf2123 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.pcf85063a /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.pcf8523 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.pcf8563 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.rv3028 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.rv3032 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.rv8263 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.rv8803 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.rx8130ce /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.ti_mspm0 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.imx /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.intel /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.mcux_sdif /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.rcar /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.sam_hsmci /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.sam_sdmmc /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.sdhc_cdns /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.spi /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.xlnx /Users/wijnand/zephyrproject/zephyr/drivers/sensor/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/Kconfig.sensor_clock /Users/wijnand/zephyrproject/zephyr/drivers/sensor/Kconfig.trigger_template /Users/wijnand/zephyrproject/zephyr/drivers/sensor/a01nyub/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/ad2s1210/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/ade7978/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adltc2990/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adt7310/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adt7420/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adxl345/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adxl355/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adxl362/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adxl367/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adxl372/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/max30210/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/max32664c/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/als31300/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/amd_sb_tsi/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/amg88xx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/ams_as5048/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/ams_as5600/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/ams_iAQcore/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/ccs811/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/ens210/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/tcs3400/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/tmd2620/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/tsl2540/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/tsl2561/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/tsl2591/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/aosong/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/aosong/ags10/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/aosong/dht/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/aosong/dht20/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/apds9253/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/apds9306/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/apds9960/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/asahi_kasei/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/asahi_kasei/ak8975/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/asahi_kasei/akm09918c/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bma280/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bma4xx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmc150_magn/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bme280/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bme680/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmg160/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmi08x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmi160/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmi270/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmi323/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmm150/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmm350/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmp180/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmp388/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmp581/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/broadcom/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/broadcom/afbr_s50/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/current_amp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ene_tach_kb1200/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ens160/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/espressif/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/espressif/esp32_temp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/espressif/pcnt_esp32/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/everlight/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/everlight/als_pt19/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/explorir_m/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/f75303/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/fcx_mldx5/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/grow_r502a/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/hc_sr04/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/honeywell/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/honeywell/hmc5883l/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/honeywell/mpr/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/honeywell/sm351lt/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/hp206c/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/hx711_spi/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/iclegend/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/iclegend/s3km1110/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/infineon/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/infineon/dps310/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/infineon/tle9104/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/infineon/xmc4xxx_temp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ist8310/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ite/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ite/ite_tach_it51xxx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ite/ite_tach_it8xxx2/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ite/ite_vcmp_it8xxx2/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/jedec/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/jedec/jc42/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/liteon/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/liteon/ltr55x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/liteon/ltrf216a/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/lm35/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/lm75/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/lm77/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/ds18b20/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/ds3231/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max17055/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max17262/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max30101/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max31790/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max31855/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max31865/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max31875/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max44009/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max6675/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/mb7040/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/meas/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/meas/ms5607/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/meas/ms5837/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/melexis/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/melexis/mlx90394/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/memsic/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/memsic/mc3419/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/memsic/mmc56x3/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/mhz19b/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/microchip/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/microchip/mchp_tach_xec/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/microchip/mcp9600/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/microchip/mcp970x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/microchip/mtch9010/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/microchip/tcn75a/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nct75/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nordic/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nordic/npm10xx_adc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nordic/npm13xx_charger/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nordic/npm2100_vbat/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nordic/qdec_nrfx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nordic/temp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ntc_thermistor/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nuvoton/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nuvoton/nuvoton_adc_cmp_npcx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nuvoton/nuvoton_adc_v2t_npcx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nuvoton/nuvoton_tach_npcx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/fxas21002/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/fxls8974/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/fxos8700/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/mcux_acmp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/mcux_lpcmp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/nxp_kinetis_temp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/nxp_lpadc_temp40/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/nxp_pmc_tmpsns/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/nxp_tempmon/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/nxp_tempsense/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/nxp_tmpsns/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/p3t1755/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/qdc_mcux/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/qdec_mcux/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/qdec_nxp_s32/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/qdec_tpm/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/omron/2smpb_02e/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/omron/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/omron/d6f/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/pixart/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/pixart/paa3905/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/pixart/paj7620/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/pixart/pat9136/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/pms7003/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/pni/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/pni/rm3100/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/pzem004t/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/qdec_sam/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/qst/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/qst/qmi8658a/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/realtek/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/realtek/rts5912/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/renesas/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/renesas/hs300x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/renesas/hs400x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/renesas/isl29035/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/rohm/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/rohm/bd8lb600fs/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/rohm/bh1730/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/rohm/bh1750/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/rohm/bh1790/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/rpi_pico_temp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/rv3032_temp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/s11059/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sbs_gauge/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/seeed/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/seeed/grove/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/seeed/hm330x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/scd4x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/sgp40/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/sht3xd/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/sht4x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/shtcx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/stcc4/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/sts4x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sifli/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sifli/sf32lb_tsen/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/silabs/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/silabs/si7006/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/silabs/si7055/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/silabs/si7060/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/silabs/si7210/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/hts221/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/i3g4250d/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/iis2dh/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/iis2dlpc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/iis2iclx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/iis2mdc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/iis328dq/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/iis3dhhc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/iis3dwb/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/ism330dhcx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis2de12/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis2dh/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis2ds12/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis2du12/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis2dux12/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis2dw12/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis2mdl/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis3mdl/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lps22hb/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lps22hh/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lps25hb/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lps2xdf/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm303dlhc_magn/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm6ds0/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm6dsl/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm6dso/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm6dso16is/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm6dsv16x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm6dsvxxx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm9ds0_gyro/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm9ds0_mfd/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm9ds1/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm9ds1_mag/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/qdec_stm32/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/stm32_digi_temp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/stm32_temp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/stm32_vbat/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/stm32_vref/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/stmemsc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/stts22h/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/stts751/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/vl53l0x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/vl53l1x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sx9500/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tach_gpio/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/icm40627/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/icm42605/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/icm4268x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/icm42x70/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/icm45686/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/icp101xx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/icp201xx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/mpu6050/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/mpu9250/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/th02/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/bq274xx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/fdc2x1x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/ina219/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/ina2xx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/ina3221/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/ina7xx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/lm95234/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/opt300x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/ti_hdc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/ti_hdc20xx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/ti_hdc302x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmag5170/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmag5273/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmp007/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmp1075/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmp108/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmp112/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmp114/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmp11x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmp435/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tsic_xx6/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/veaa_x_3/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/vishay/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/vishay/vcnl36825t/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/vishay/vcnl4040/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/vishay/veml6031/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/vishay/veml6046/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/vishay/veml7700/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/voltage_divider/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/wsen_hids_2525020210002/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/wsen_isds_2536030320001/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/wsen_itds_2533020201601/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/wsen_pads_2511020213301/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/wsen_pdms_25131308XXX05/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/wsen_pdus_25131308XXXXX/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/wsen_tids_2521020222501/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/xbr818/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sent/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sent/Kconfig.nxp_s32 /Users/wijnand/zephyrproject/zephyr/drivers/serial/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.aesc /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.altera /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.altera_jtag /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.ameba_loguart /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.apbuart /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.b91 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.bcm2711 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.bee /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.bitbang /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.bridge /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.bt /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.cc13xx_cc26xx /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.cc32xx /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.cdns /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.cmsdk_apb /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.efinix_sapphire /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.emul /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.ene /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.focaltech /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.gecko /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.hostlink /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.imx /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.intel_lw /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.leuart_gecko /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.lpc11u6x /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.mcux_flexcomm /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.mcux_iuart /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.mcux_lpsci /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.mcux_lpuart /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.miv /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.msp432p4xx /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.mspm0 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.native_pty /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.native_tty /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.neorv32 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.nrfx /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.nrfx_uart_instance /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.ns16550 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.numicro /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.nxp_s32 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.opentitan /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.pl011 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.psoc6 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.ql_usbserialport_s3b /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.rcar /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.realtek_rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_ra8 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_rx /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_rx_qemu /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.rpmsg /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.rtt /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.rv32m1_lpuart /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.rzt2m /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.sedi /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.si32 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.sifive /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.silabs_eusart /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.silabs_usart /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.stellaris /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.sy1xx /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.uart_sam /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.usart_sam /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.virtio_console /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.wch_usart /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.xen /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.xlnx /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/sip_svc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sip_svc/Kconfig.sip_smc_agilex /Users/wijnand/zephyrproject/zephyr/drivers/smbus/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/spi/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.andes_atcspi200 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.b91 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.bitbang /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.cc13xx_cc26xx /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.cdns /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.dw /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.egis_et171 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.grlib_spimctrl /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.mchp_mss /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.mchp_mss_qspi /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.mcux_dspi /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.mcux_ecspi /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.mcux_flexcomm /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.mcux_flexio /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.nrfx /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.nxp_s32 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.oc_simple /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.omap /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.opentitan /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.pl022 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.psoc6 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.pw /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.renesas_ra8 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.renesas_rx /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.rv32m1_lpspi /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.sc18is606 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.sedi /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.sifive /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.silabs_eusart /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.silabs_siwx91x_gspi /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.silabs_usart /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.spi_emul /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.sy1xx /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.wch /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.xec_qmspi /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.xlnx /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/spi/spi_nxp_lpspi/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/spi/spi_nxp_lpspi/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/stepper/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/stepper/Kconfig.fake /Users/wijnand/zephyrproject/zephyr/drivers/stepper/adi_tmc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/stepper/adi_tmc/Kconfig.tmc_rampgen_template /Users/wijnand/zephyrproject/zephyr/drivers/stepper/adi_tmc/bus/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/stepper/adi_tmc/tmc22xx/Kconfig.tmc22xx /Users/wijnand/zephyrproject/zephyr/drivers/stepper/adi_tmc/tmc50xx/Kconfig.tmc50xx /Users/wijnand/zephyrproject/zephyr/drivers/stepper/adi_tmc/tmc51xx/Kconfig.tmc51xx /Users/wijnand/zephyrproject/zephyr/drivers/stepper/adi_tmc/tmcm3216/Kconfig.tmcm3216 /Users/wijnand/zephyrproject/zephyr/drivers/stepper/allegro/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/stepper/allegro/Kconfig.a4979 /Users/wijnand/zephyrproject/zephyr/drivers/stepper/event_handler/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/stepper/gpio_stepper/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/stepper/gpio_stepper/Kconfig.gpio_step_dir /Users/wijnand/zephyrproject/zephyr/drivers/stepper/gpio_stepper/Kconfig.h_bridge /Users/wijnand/zephyrproject/zephyr/drivers/stepper/gpio_stepper/common/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/stepper/step_dir/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/stepper/ti/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/stepper/ti/Kconfig.drv84xx /Users/wijnand/zephyrproject/zephyr/drivers/syscon/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/syscon/Kconfig.bflb_efuse /Users/wijnand/zephyrproject/zephyr/drivers/tee/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/tee/optee/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/timer/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.arcv2 /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.arm_arch /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.cavs /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.cc13xx_cc26xx_rtc /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.cortex_m_systick /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.gecko /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.infineon_lp /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.ite_it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.leon_gptimer /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.max32_rv32_sys_timer /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.max32_wut /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.mchp_sam /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.mchp_xec_rtos /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.mcux_gpt /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.mcux_lptmr /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.mcux_os /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.mips_cp0 /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.mtk_adsp /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.native_sim /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.npcx_itim /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.nrf_grtc /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.nrf_rtc /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.nrf_xrtc /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.openrisc_tick /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.rcar_cmt /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.realtek_rts5912_rtmr /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.renesas_ra_ulpt /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.renesas_rx /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.renesas_rza2m /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.riscv_machine /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.rv32m1_lptmr /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.sam0_rtc /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.stm32_lptim /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.stm32wb0_radio_timer /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.sy1xx_sys_timer /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.system_timer_lpm /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.ti_dm_timer /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.wch_ch32v00x /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.x86 /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.xlnx_psttc /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.xtensa /Users/wijnand/zephyrproject/zephyr/drivers/uaol/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/usb/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb/bc12/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb/bc12/Kconfig.pi3usb9201 /Users/wijnand/zephyrproject/zephyr/drivers/usb/common/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/usb/common/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb/common/buf/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/usb/common/nrf_usbd_common/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb/common/stm32/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb/device/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.bflb_v1 /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.dwc2 /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.it82xx2 /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.kinetis /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.nrf /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.sam_udp /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.sam_usbc /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.sam_usbhs /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.skeleton /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.virtual /Users/wijnand/zephyrproject/zephyr/drivers/usb/uhc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb/uhc/Kconfig.max3421e /Users/wijnand/zephyrproject/zephyr/drivers/usb/uhc/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/usb/uhc/Kconfig.virtual /Users/wijnand/zephyrproject/zephyr/drivers/usb/uvb/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/ppc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/ppc/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/ppc/Kconfig.nxp /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_fusb307 /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_numaker /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_ps8xxx /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_rt1715 /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_stm32 /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_tcpci /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/vbus/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/vbus/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/vbus/Kconfig.usbc_vbus_adc /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/vbus/Kconfig.usbc_vbus_tcpci /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.arducam_mega /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.emul_imager /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.emul_rx /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.esp32_dvp /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.gc2145 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.hm01b0 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.hm0360 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.imx219 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.imx335 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.mcux_csi /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.mcux_mipi_csi2rx /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.mcux_sdma /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.mt9m114 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.ov2640 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.ov5640 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.ov5642 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.ov767x /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.ov7725 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.ov9655 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.renesas_ra_ceu /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.shell /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.st_mipid02 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.stm32_dcmi /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.stm32_dcmipp /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.stm32_jpeg /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.stm32_venc /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.sw_generator /Users/wijnand/zephyrproject/zephyr/drivers/virtio/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/virtualization/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.ds2477_85 /Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.ds2482-800 /Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.ds2484 /Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.ds2485 /Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.zephyr_gpio /Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.zephyr_serial /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.adi_max42500 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.andes_atcwdt200 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.cc13xx_cc26xx /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.cc32xx /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.cmsdk_apb /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.dw /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.ene /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.gecko /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.intel_adsp /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.mcux_imx /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.npm13xx /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.npm2100 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.npm6001 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.nrfx /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.nxp_ewm /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.nxp_fs26 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.nxp_s32 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.opentitan /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.renesas_rx /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.rts5817 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.sam4l /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.shell /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.sifive /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.tco /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.ti_rti /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.ti_tps382x /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.wch /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.xilinx_wwdt /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.xlnx /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/wifi/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/wifi/esp32/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/wifi/esp_at/Kconfig.esp_at /Users/wijnand/zephyrproject/zephyr/drivers/wifi/esp_hosted/Kconfig.esp_hosted /Users/wijnand/zephyrproject/zephyr/drivers/wifi/eswifi/Kconfig.eswifi /Users/wijnand/zephyrproject/zephyr/drivers/wifi/infineon/Kconfig.airoc /Users/wijnand/zephyrproject/zephyr/drivers/wifi/nrf_wifi/Kconfig.nrfwifi /Users/wijnand/zephyrproject/zephyr/drivers/wifi/nxp/Kconfig.nxp /Users/wijnand/zephyrproject/zephyr/drivers/wifi/simplelink/Kconfig.simplelink /Users/wijnand/zephyrproject/zephyr/drivers/wifi/siwx91x/Kconfig.siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/wifi/winc1500/Kconfig.winc1500 /Users/wijnand/zephyrproject/zephyr/drivers/wuc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/wuc/Kconfig.mcux_wuc /Users/wijnand/zephyrproject/zephyr/drivers/xen/Kconfig /Users/wijnand/zephyrproject/zephyr/dts/Kconfig /Users/wijnand/zephyrproject/zephyr/dts/common/freq.h /Users/wijnand/zephyrproject/zephyr/dts/common/mem.h /Users/wijnand/zephyrproject/zephyr/dts/common/skeleton.dtsi /Users/wijnand/zephyrproject/zephyr/dts/vendor/espressif/partitions_0x0_amp.dtsi /Users/wijnand/zephyrproject/zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi /Users/wijnand/zephyrproject/zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi /Users/wijnand/zephyrproject/zephyr/dts/xtensa/espressif/esp32s3/esp32s3_wroom_n8r8.dtsi /Users/wijnand/zephyrproject/zephyr/dts/xtensa/xtensa.dtsi /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/common/app_data_alignment.ld /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/adc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/esp32s3_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dt-util.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/i2c/i2c.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/esp32s3-xtensa-intmux.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp-pinctrl-common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32s3-gpio-sigmap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32s3-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/app_smem.ld /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/app_smem_aligned.ld /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/app_smem_unaligned.ld /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_is_eq.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_dec.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_inc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_x2.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_listify.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_loops.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_macro.h /Users/wijnand/zephyrproject/zephyr/kernel/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/kernel/Kconfig /Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.device /Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.init /Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.mem_domain /Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.obj_core /Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.smp /Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.vm /Users/wijnand/zephyrproject/zephyr/lib/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/acpi/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/cpp/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/hash/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/hash/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/hash/Kconfig.hash_func /Users/wijnand/zephyrproject/zephyr/lib/hash/Kconfig.hash_map /Users/wijnand/zephyrproject/zephyr/lib/heap/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/heap/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/libc/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/libc/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/libc/common/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/libc/common/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/libc/minimal/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/libc/newlib/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/mem_blocks/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/mem_blocks/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/midi2/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/midi2/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/min_heap/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/net_buf/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/os/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/os/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/os/Kconfig.cbprintf /Users/wijnand/zephyrproject/zephyr/lib/os/cpu_load/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/os/zvfs/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/posix/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/posix/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/posix/Kconfig.profile /Users/wijnand/zephyrproject/zephyr/lib/posix/Kconfig.toolchain /Users/wijnand/zephyrproject/zephyr/lib/posix/c_lang_support_r/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/posix/c_lang_support_r/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/posix/eventfd/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.aio /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.barrier /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.device_io /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.fd_mgmt /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.file_system_r /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.fs /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.mem /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.mqueue /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.net /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.proc1 /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.procN /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.pthread /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.rwlock /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.sched /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.semaphore /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.signal /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.spinlock /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.sync_io /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.timer /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_realtime /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_single_process /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_streams /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_system_logging /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_threads_ext /Users/wijnand/zephyrproject/zephyr/lib/posix/shell/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/posix/shell/Kconfig.env /Users/wijnand/zephyrproject/zephyr/lib/posix/shell/Kconfig.uname /Users/wijnand/zephyrproject/zephyr/lib/runtime/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/smf/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/utils/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/utils/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/uuid/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/uuid/Kconfig /Users/wijnand/zephyrproject/zephyr/misc/empty_file.c /Users/wijnand/zephyrproject/zephyr/misc/generated/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/misc/generated/configs.c.in /Users/wijnand/zephyrproject/zephyr/modules/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.atmel /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.chre /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.cypress /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.eos_s3 /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.intel /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.libmetal /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.mcuboot /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.microchip /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.mspm0 /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.nuvoton /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.open-amp /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.picolibc /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.renesas /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.rust /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.simplelink /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.syst /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.telink /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.vega /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.wurthelektronik /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.xtensa /Users/wijnand/zephyrproject/zephyr/modules/acpica/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/acpica/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/canopennode/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/cmsis-dsp/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/cmsis-dsp/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/cmsis-nn/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/cmsis-nn/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/cmsis/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/cmsis/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/cmsis_6/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/cmsis_6/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/dhara/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/dhara/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/fatfs/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/fatfs/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_afbr/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_afbr/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_ambiq/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_ambiq/Kconfig.components /Users/wijnand/zephyrproject/zephyr/modules/hal_ambiq/Kconfig.hal /Users/wijnand/zephyrproject/zephyr/modules/hal_bouffalolab/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_bouffalolab/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_espressif/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_espressif/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_ethos_u/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_ethos_u/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_gigadevice/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_gigadevice/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_infineon/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_infineon/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/Kconfig.nrf_regtool /Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/ironside/se/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/nrfs/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/nrfs/backends/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/nrfs/dvfs/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/nrfx/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/nrfx/Kconfig.logging /Users/wijnand/zephyrproject/zephyr/modules/hal_nxp/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_nxp/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_nxp/imx/Kconfig.imx /Users/wijnand/zephyrproject/zephyr/modules/hal_nxp/mcux/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/modules/hal_nxp/s32/Kconfig.nxp_s32 /Users/wijnand/zephyrproject/zephyr/modules/hal_realtek/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_realtek/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_realtek/bee/Kconfig.bee /Users/wijnand/zephyrproject/zephyr/modules/hal_rpi_pico/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_rpi_pico/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_sifli/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_sifli/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_silabs/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_silabs/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_silabs/gecko/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_silabs/simplicity_sdk/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_silabs/wiseconnect/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_st/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_tdk/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_wch/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_wch/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hostap/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hostap/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/liblc3/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/liblc3/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/libsbc/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/libsbc/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/littlefs/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/littlefs/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/lora-basics-modem/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/lora-basics-modem/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/loramac-node/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/loramac-node/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/lvgl/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/lvgl/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/lvgl/Kconfig.input /Users/wijnand/zephyrproject/zephyr/modules/lvgl/Kconfig.memory /Users/wijnand/zephyrproject/zephyr/modules/lvgl/Kconfig.shell /Users/wijnand/zephyrproject/zephyr/modules/mbedtls/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig.ciphersuites /Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig.deprecated /Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig.mbedtls /Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig.psa.auto /Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig.psa.logic /Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig.tf-psa-crypto /Users/wijnand/zephyrproject/zephyr/modules/modules.cmake /Users/wijnand/zephyrproject/zephyr/modules/nanopb/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/nanopb/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/nrf_wifi/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/nrf_wifi/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/nrf_wifi/bus/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/openthread/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/openthread/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/openthread/Kconfig.features /Users/wijnand/zephyrproject/zephyr/modules/openthread/Kconfig.thread /Users/wijnand/zephyrproject/zephyr/modules/percepio/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/percepio/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/segger/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/segger/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/tflite-micro/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/thrift/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-a/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-a/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-m/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig.tfm /Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig.tfm.crypto_modules /Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig.tfm.partitions /Users/wijnand/zephyrproject/zephyr/modules/uoscore-uedhoc/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/uoscore-uedhoc/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/zcbor/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/zcbor/Kconfig /Users/wijnand/zephyrproject/zephyr/scripts/dts/gen_defines.py /Users/wijnand/zephyrproject/zephyr/scripts/dts/gen_driver_kconfig_dts.py /Users/wijnand/zephyrproject/zephyr/scripts/dts/gen_dts_cmake.py /Users/wijnand/zephyrproject/zephyr/scripts/dts/gen_edt.py /Users/wijnand/zephyrproject/zephyr/scripts/snippets.py /Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake /Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfigVersion.cmake /Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/zephyr_package_search.cmake /Users/wijnand/zephyrproject/zephyr/snippets/bt-ll-sw-split/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/cdc-acm-console/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/flash-128M/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/flash-16M/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/flash-2M/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/flash-32M/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/flash-4M/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/flash-64M/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/flash-8M/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/psram-2M/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/psram-4M/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/psram-8M/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/psram-reloc/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/psram-wifi/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/hci-uart-native-sim/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/nordic/nordic-flpr-xip/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/nordic/nordic-flpr/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/nordic/nordic-log-stm-dict/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/nordic/nordic-log-stm-tpiu-dict/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/nordic/nordic-log-stm/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/nordic/nordic-ppr-xip/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/nordic/nordic-ppr/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/nus-console/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/ram-console/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/ram-tracing/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/rp2-boot-mode-retention/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/rtt-console/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/rtt-tracing/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/semihost-tracing/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/serial-console/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/silabs-pti/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/slot1-partition/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/socketcan-native-sim/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/usbip-native-sim/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/video-sw-generator/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/wifi/wifi-credentials/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/wifi/wifi-enterprise/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/wifi/wifi-ip/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/wifi/wifi-ipv4/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/wifi/wifi-ipv6/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/xen_dom0/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/xiao-serial-console/snippet.yml /Users/wijnand/zephyrproject/zephyr/soc/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/soc/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/Kconfig.v2 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32650 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32655 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32657 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32660 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32662 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32666 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32670 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32672 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32675 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32680 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32690 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max78000 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max78002 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/aesc/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/aesc/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/aesc/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/aesc/nitrogen/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/aesc/nitrogen/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/aesc/nitrogen/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e1c/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e1c/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e1c/Kconfig.defconfig.ae1c1f4051920ph0_rtss_he /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e1c/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e4/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e4/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e4/Kconfig.defconfig.ae402fa0e5597le0_rtss_he /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e4/Kconfig.defconfig.ae402fa0e5597le0_rtss_hp /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e4/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e6/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e6/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e6/Kconfig.defconfig.ae612fa0e5597ls0_rtss_he /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e6/Kconfig.defconfig.ae612fa0e5597ls0_rtss_hp /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e6/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e8/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e8/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e8/Kconfig.defconfig.ae822fa0e5597ls0_rtss_he /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e8/Kconfig.defconfig.ae822fa0e5597ls0_rtss_hp /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e8/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/allwinner/sun8i_h3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/allwinner/sun8i_h3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/allwinner/sun8i_h3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ambiq/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ambiq/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ambiq/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo2x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo2x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo2x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig.apollo3_blue /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig.apollo3p_blue /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig.apollo4p /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig.apollo4p_blue /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo5x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo5x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo5x/Kconfig.defconfig.apollo510 /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo5x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/andestech/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/andestech/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/andestech/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/andestech/ae350/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/andestech/ae350/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/andestech/ae350/Kconfig.defconfig.ae350 /Users/wijnand/zephyrproject/zephyr/soc/andestech/ae350/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/antmicro/myra/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/antmicro/myra/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/arm/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/arm/beetle/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/beetle/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/beetle/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/arm/designstart/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/designstart/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/arm/fvp_aem/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/fvp_aem/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/fvp_aem/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/arm/fvp_aemv8r/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/fvp_aemv8r/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/fvp_aemv8r/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an383 /Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an385 /Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an386 /Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an500 /Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an521 /Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/arm/mps3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/mps3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/mps3/Kconfig.defconfig.mps3_corstone300 /Users/wijnand/zephyrproject/zephyr/soc/arm/mps3/Kconfig.defconfig.mps3_corstone310 /Users/wijnand/zephyrproject/zephyr/soc/arm/mps3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/arm/mps4/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/mps4/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/mps4/Kconfig.defconfig.mps4_corstone315 /Users/wijnand/zephyrproject/zephyr/soc/arm/mps4/Kconfig.defconfig.mps4_corstone320 /Users/wijnand/zephyrproject/zephyr/soc/arm/mps4/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/arm/musca/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/musca/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/musca/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/arm/qemu_cortex_a53/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/qemu_cortex_a53/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/qemu_cortex_a53/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/arm/qemu_virt_arm64/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/qemu_virt_arm64/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/qemu_virt_arm64/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/aspeed/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/aspeed/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/aspeed/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/aspeed/ast10x0/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/aspeed/ast10x0/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/aspeed/ast10x0/Kconfig.defconfig.ast1030 /Users/wijnand/zephyrproject/zephyr/soc/aspeed/ast10x0/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/common/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam3x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam3x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam3x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4e/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4e/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4e/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4l/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4l/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4l/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4s/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4s/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4s/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig.soc.same70 /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig.soc.samv71 /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/common/Kconfig.samd2x /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/common/Kconfig.samd5x /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/common/Kconfig.saml2x /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samc20/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samc20/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samc20/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samc21/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samc21/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samc21/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd20/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd20/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd20/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd21/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd21/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd21/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd51/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd51/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd51/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same51/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same51/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same51/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same53/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same53/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same53/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same54/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same54/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same54/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/saml21/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/saml21/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/saml21/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr21/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr21/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr21/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr34/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr34/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr34/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr35/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr35/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr35/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/bflb/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/bflb/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/bflb/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl60x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl60x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl60x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl61x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl61x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl61x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl70x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl70x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl70x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl70xl/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl70xl/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl70xl/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/blackberry/qnxhv_vm/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/blackberry/qnxhv_vm/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/blackberry/qnxhv_vm/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig.viper_bcm58402_a72 /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig.viper_bcm58402_m7 /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/s400/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/s400/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/s420/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/s420/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/s420/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/common/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/soc/common/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/common/riscv-privileged/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/egis/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/egis/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/egis/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/egis/et171/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/egis/et171/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/egis/et171/Kconfig.defconfig.et171 /Users/wijnand/zephyrproject/zephyr/soc/egis/et171/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/elan/em32f967/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/elan/em32f967/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/elan/em32f967/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/kb106x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/kb106x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/kb106x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ene/kb1200/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ene/kb1200/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ene/kb1200/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/espressif/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig.ulp /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.amp /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.console /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.efuse /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.esptool /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.flash /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.lcd_cam /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.spiram /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32/Kconfig.mac /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c2/Kconfig.mac /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c3/Kconfig.mac /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c5/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c5/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c5/Kconfig.mac /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c5/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c6/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c6/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c6/Kconfig.mac /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c6/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32h2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32h2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32h2/Kconfig.mac /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32h2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s2/Kconfig.mac /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.mac /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/espressif/soc.yml /Users/wijnand/zephyrproject/zephyr/soc/focaltech/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/focaltech/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/focaltech/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/focaltech/ft9001/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/focaltech/ft9001/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/focaltech/ft9001/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gaisler/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gaisler/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32a50x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32a50x/Kconfig.defconfig.gd32a503 /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32a50x/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32a50x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e10x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e10x/Kconfig.defconfig.gd32e103 /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e10x/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e10x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e50x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e50x/Kconfig.defconfig.gd32e507 /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e50x/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e50x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f3x0/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.defconfig.gd32f350 /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f403/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f403/Kconfig.defconfig.gd32f403 /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f403/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f403/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f405 /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f407 /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f450 /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f470 /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32l23x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32l23x/Kconfig.defconfig.gd32l233 /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32l23x/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32l23x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32vf103/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32vf103/Kconfig.defconfig.gd32vf103 /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32vf103/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32vf103/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_01/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_01/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_02/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_02/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_03/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_03/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_04/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_04/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_legacy/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_legacy/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/cyw20829/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/cyw20829/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/cyw20829/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/psc3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/psc3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/psc3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/xmc7200/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/xmc7200/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/xmc7200/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig.xmc4500 /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig.xmc4700 /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/pse84/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/pse84/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/pse84/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/psoc4100smax/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/psoc4100smax/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/psoc4100smax/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/psoc4100tp/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/psoc4100tp/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/psoc4100tp/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/atom/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/atom/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/atom/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace15_mtpm /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace20_lnl /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace30 /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace40 /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/cavs/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/cavs/Kconfig.defconfig.cavs_v25 /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/cavs/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/cavs/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/intel_ish5/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/intel_ish5/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/intel_ish5/pm/Kconfig.pm /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/niosv/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/niosv/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/niosv/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.defconfig.agilex /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.defconfig.agilex5 /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.defconfig.cyclonev /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/lakemont/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/lakemont/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/lakemont/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/wildcat_lake/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/wildcat_lake/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/wildcat_lake/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it51xxx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it51xxx/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it51xxx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202bx /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202cx /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202dx /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302bx /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302cx /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302dx /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82000bw /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82002aw /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82002bw /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82202ax /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82202bw /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82302ax /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82302bw /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8186/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8188/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8195/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8196/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8365/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec15xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec15xx/Kconfig.defconfig.mec1501hsz /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec15xx/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec15xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec165xb/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec165xb/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec165xb/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.mec172xnlj /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.mec172xnsz /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec174x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec174x/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec174x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec175x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec175x/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec175x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/miv/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/miv/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/miv/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/polarfire/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/polarfire/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/polarfire/Kconfig.defconfig.polarfire_u54 /Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/polarfire/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/pic32cm_jh00/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/pic32cm_jh01/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/pic32cm_pl10/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/pic32cx_sg41/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/pic32cx_sg60/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/pic32cx_sg61/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/pic32cz_ca80/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/pic32cz_ca90/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/pic32cz_ca91/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/pic64gx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/pic64gx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/pic64gx/Kconfig.defconfig.pic64gx1000_u54 /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/pic64gx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/atsamd51/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/atsame51/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/atsame53/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/atsame54/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/sama7d6/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/sama7d6/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/sama7g5/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/sama7g5/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/native/inf_clock/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/native/inf_clock/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/neorv32/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/neorv32/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/neorv32/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nordic/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nordic/common/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/common/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/common/Kconfig.peripherals /Users/wijnand/zephyrproject/zephyr/soc/nordic/common/Kconfig.tfm /Users/wijnand/zephyrproject/zephyr/soc/nordic/common/uicr/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/common/uicr/Kconfig.gen_uicr /Users/wijnand/zephyrproject/zephyr/soc/nordic/common/vpr/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/common/vpr/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf51/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf51/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf51/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52805_CAAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52810_QFAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52811_QFAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52820_QDAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_CIAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_QFAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_QFAB /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52833_QDAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52833_QIAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52840_QFAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52840_QIAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.defconfig.nrf5340_CPUAPP_QKAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.defconfig.nrf5340_CPUNET_QKAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.sync_rtc /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.sync_rtc_ipm /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuapp /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuflpr /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuppr /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpurad /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/bicr/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l_05_10_15_cpuapp /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l_05_10_15_cpuflpr /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54lm20_a_b_cpuapp /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54lm20_a_b_cpuflpr /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf71/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf71/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf71/Kconfig.defconfig.nrf7120_enga_cpuapp /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf71/Kconfig.defconfig.nrf7120_enga_cpuflpr /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf71/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9131_LACA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9151_LACA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9160_SICA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9161_LACA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpuapp /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpuppr /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpurad /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/npcm4/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/npcm4/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/npcm4/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npck3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npck3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npck3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx4/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx4/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx4/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx7/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx7/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx7/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx9/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx9/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx9/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.defconfig.m2l31xxx /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m333x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m333x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m333x/Kconfig.defconfig.m333xxx /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m333x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m335x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m335x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m335x/Kconfig.defconfig.m335xxx /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m335x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m46x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m46x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m46x/Kconfig.defconfig.m467 /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m46x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m55m1x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m55m1x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m55m1x/Kconfig.defconfig.m55m1xxx /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m55m1x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/m48x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/m48x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/m48x/Kconfig.defconfig.m487 /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/m48x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/common/Kconfig.flexspi_xip /Users/wijnand/zephyrproject/zephyr/soc/nxp/common/Kconfig.nbu /Users/wijnand/zephyrproject/zephyr/soc/nxp/common/Kconfig.rom_loader /Users/wijnand/zephyrproject/zephyr/soc/nxp/common/Kconfig.xspi_xip /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx6sx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx6sx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx6sx/Kconfig.defconfig.mcimx6x_m4 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx6sx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx7d/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx7d/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx7d/Kconfig.defconfig.mcimx7d_m4 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx7d/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_a53 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_adsp /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_m7 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mm6_a53 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mm6_m4 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mn6_a53 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mq6_m4 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8ulp/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8ulp/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8ulp/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx91/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx91/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx91/Kconfig.defconfig.mimx91 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx91/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig.mimx93.a55 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig.mimx93.m33 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig.mimx94398.a55 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig.mimx94398.m33 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig.mimx94398.m7_0 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig.mimx94398.m7_1 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig.mimx95.a55 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig.mimx95.m7 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/cm33/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/cm33/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/hifi1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/hifi1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/hifi4/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/hifi4/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k2x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k2x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k2x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k32lx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k32lx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k32lx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k6x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k6x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k6x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k8x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k8x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k8x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/ke1xf/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/ke1xf/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/ke1xf/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/ke1xz/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/ke1xz/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/ke1xz/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kl2x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kl2x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kl2x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kv5x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kv5x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kv5x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kwx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kwx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kwx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/ls1046a/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/ls1046a/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/ls1046a/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc51u68/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc51u68/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc51u68/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxa/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxa/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxa/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxc/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxc/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxc/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe24x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe24x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe24x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe31x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe31x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe31x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxl/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxl/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxl/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxn/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxn/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxn/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw2xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw2xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw2xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw7xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw7xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw7xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/rw/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/rw/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/rw/Kconfig.defconfig.wifi /Users/wijnand/zephyrproject/zephyr/soc/nxp/rw/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k5/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k5/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k5/Kconfig.defconfig.s32k566.m7 /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k5/Kconfig.defconfig.s32k566.r52 /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k5/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32ze/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32ze/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32ze/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/cv32a6/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/cv32a6/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/cv64a6/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/cv64a6/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/qemu/malta/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/qemu/malta/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/qemu/malta/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/qemu/or1k/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/qemu/or1k/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/qemu/or1k/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32e/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32e/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv64/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv64/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/common/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/common/Kconfig.binary_info /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.defconfig.rp2040 /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebad/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebad/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebad/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebadplus/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebadplus/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebadplus/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebag2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebag2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebag2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/rtl8752h/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/rtl8752h/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/rtl8752h/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/rtl87x2g/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/rtl87x2g/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/rtl87x2g/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/rts5912/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/rts5912/Kconfig.defconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/rts5912/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/rts5912/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/rts5817/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/rts5817/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/rts5817/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra0e1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra0e1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra0e1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra2a1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra2a1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra2a1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra2l1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra2l1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra2l1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4c1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4c1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4c1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4e1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4e1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4e1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4e2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4e2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4e2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4l1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4l1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4l1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4t1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4t1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4t1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4w1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4w1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4w1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6e1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6e1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6e1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6e2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6e2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6e2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m4/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m4/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m4/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m5/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m5/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m5/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8d1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8d1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8d1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8d2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8d2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8d2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8e1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8e1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8e1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8m1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8m1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8m1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8m2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8m2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8m2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8p1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8p1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8p1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8t1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8t1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8t1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8t2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8t2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8t2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.defconfig.r8a779f0 /Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.defconfig.r8a779g0 /Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx130/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx130/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx130/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx140/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx140/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx140/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx14t/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx14t/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx14t/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx261/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx261/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx261/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx26t/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx26t/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx26t/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx62n/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx62n/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx62n/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rza2m/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rza2m/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rza2m/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rza3ul/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rza3ul/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rza3ul/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg2l/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg2l/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg2l/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg2ul/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg2ul/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg2ul/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg3e/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg3e/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg3e/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg3s/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg3s/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg3s/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzn2h/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzn2h/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzn2h/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzn2l/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzn2l/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzn2l/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2h/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2h/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2h/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2l/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2l/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2l/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2m/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2m/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2m/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig.defconfig.rzv2h_cm33 /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig.defconfig.rzv2h_cr8 /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2l/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2l/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2l/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2n/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2n/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2n/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/da1469x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/da1469x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/da1469x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/rockchip/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk3399/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk3399/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk3399/Kconfig.defconfig.rk3399 /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk3399/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3568/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3568/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3568/Kconfig.defconfig.rk3568 /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3568/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588/Kconfig.defconfig.rk3588 /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588s/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588s/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588s/Kconfig.defconfig.rk3588s /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588s/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/sensry/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/sensry/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/sensry/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/sensry/ganymed/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/sensry/ganymed/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/sensry/ganymed/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/sensry/ganymed/sy1xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/sensry/ganymed/sy1xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/sensry/ganymed/sy1xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/sf32lb52x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/sf32lb52x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/sf32lb52x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32tg/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32tg/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32tg/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg21/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg21/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg21/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg22/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg22/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg22/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg23/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg23/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg23/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg24/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg24/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg24/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg26/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg26/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg26/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg27/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg27/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg27/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg28/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg28/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg28/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg29/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg29/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg29/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_sim3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_sim3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_sim3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/siwg917/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/siwg917/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/siwg917/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em11d /Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em4 /Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em5d /Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em6 /Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em7d /Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em7d_esp /Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em9d /Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig.em11d /Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig.em7d /Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig.em9d /Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em11d /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em7d_v22 /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs5x /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs5x_smp /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs6x /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs6x_smp /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs_mpuv6 /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs_smp /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/rhx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/rhx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/rhx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/common/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32c5x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32c5x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32c5x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f2x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f2x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f2x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f302xc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f303x(b-c) /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f303xe /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f373xc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f765xx /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f767xx /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f769xx /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g0b1xx /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h745xx /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h747xx /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h755xx /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h757xx /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l5x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l5x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l5x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp13x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp13x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp13x/Kconfig.defconfig.stm32mp13_a7 /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp13x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp1x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp1x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp1x/Kconfig.defconfig.stm32mp15_m4 /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp1x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig.defconfig.stm32mp215fxx /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig.defconfig.stm32mp257fxx /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32n6x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32n6x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32n6x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32n6x/npu/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u0x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u0x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u3x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u3x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u3x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wb0x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wb0x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wb0x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig.stm32wba65xx /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wbx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wbx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wbx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/synaptics/sr100/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/synaptics/sr100/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/synaptics/sr100/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/tlsr951x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/tlsr951x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/tlsr951x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/k3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/k3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/k3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/k3/am6x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/k3/am6x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/k3/am6x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/mspm0g/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/mspm0g/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/mspm0g/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/mspm0l/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/mspm0l/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/mspm0l/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc23x0/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc23x0/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc23x0/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig.cc3220sf /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig.cc3235sf /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.defconfig.msp432p401r /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig.defconfig.ch32v006 /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig.soc.ch32v006 /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig.defconfig.ch32v003 /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig.soc.ch32v003 /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig.defconfig.ch32v203 /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig.soc.ch32v203 /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig.defconfig.ch32v208 /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig.soc.ch32v208 /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.defconfig.ch32v303 /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.defconfig.ch32v307 /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.soc.ch32v303 /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.soc.ch32v307 /Users/wijnand/zephyrproject/zephyr/soc/xen/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/xen/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/xen/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bindesc/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bindesc/Kconfig.build_time /Users/wijnand/zephyrproject/zephyr/subsys/bindesc/Kconfig.host_info /Users/wijnand/zephyrproject/zephyr/subsys/bindesc/Kconfig.version /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/Kconfig.adv /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/Kconfig.logging /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.aics /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.ascs /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.bap /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.cap /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.ccp /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.csip /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.gmap /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.has /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.mcs /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.mctl /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.micp /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.mpl /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.pacs /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.pbp /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.tbs /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.tmap /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.vcp /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.vocs /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/common/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/controller/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/controller/Kconfig.df /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/controller/Kconfig.dtm /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/controller/Kconfig.ll_sw_split /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/controller/coex/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/crypto/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/host/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/host/Kconfig.gatt /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/host/Kconfig.l2cap /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/host/classic/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/lib/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/mesh/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/mesh/shell/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.ans /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.cts /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.dis /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.ets /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.gap_svc /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.hrs /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.tps /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/bas/Kconfig.bas /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/ias/Kconfig.ias /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/nus/Kconfig.nus /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/ots/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/canbus/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/canbus/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/canbus/Kconfig.canopen /Users/wijnand/zephyrproject/zephyr/subsys/canbus/isotp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/console/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/cpu_freq/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/crc/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/dap/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/debug/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/debug/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/debug/coredump/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/debug/gdbstub/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/debug/symtab/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/debug/thread_analyzer/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/demand_paging/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/demand_paging/backing_store/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/demand_paging/eviction/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/dfu/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/disk/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/dsp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/emul/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/emul/espi/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/fb/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/fb/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/fs/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/fs/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/fs/Kconfig.fatfs /Users/wijnand/zephyrproject/zephyr/subsys/fs/Kconfig.littlefs /Users/wijnand/zephyrproject/zephyr/subsys/fs/ext2/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/fs/fcb/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/fs/fuse_client/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/fs/virtiofs/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/gnss/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/gnss/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/gnss/rtk/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/gnss/rtk/protocol/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/gnss/rtk/serial/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/input/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/instrumentation/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/instrumentation/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/ipc/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/ipc/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig.icbmsg /Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig.icmsg_me /Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig.intel_adsp /Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig.rpmsg /Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/lib/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/lib/Kconfig.icmsg /Users/wijnand/zephyrproject/zephyr/subsys/ipc/open-amp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/ipc/rpmsg_service/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/jwt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/kvss/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/kvss/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/kvss/nvs/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/kvss/zms/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/llext/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/logging/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.filtering /Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.formatting /Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.links /Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.misc /Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.mode /Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.processing /Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config /Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config_inherit /Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_format_config /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.adsp /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.adsp_mtrace /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.ble /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.efi_console /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.fs /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.mqtt /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.multidomain /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.native_posix /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.net /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.rtt /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.semihost /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.spinel /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.swo /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.uart /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.ws /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.xtensa_sim /Users/wijnand/zephyrproject/zephyr/subsys/logging/frontends/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/logging/frontends/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/lorawan/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/lorawan/emul/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/lorawan/loramac-node/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/lorawan/nvm/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/lorawan/services/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mem_mgmt/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/mem_mgmt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/ec_host_cmd/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/ec_host_cmd/Kconfig.logging /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/ec_host_cmd/backends/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/hawkbit/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/enum_mgmt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/fs_mgmt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/img_mgmt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/img_mgmt_client/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/os_mgmt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/os_mgmt_client/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/settings_mgmt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/shell_mgmt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/stat_mgmt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/zephyr_basic/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/mgmt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/smp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/smp_client/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.bluetooth /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.common /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.dummy /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.lorawan /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.raw_dummy /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.raw_uart /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.shell /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.uart /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.udp /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/osdp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/osdp/Kconfig.cp /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/osdp/Kconfig.pd /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/updatehub/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/modbus/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/modbus/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/modem/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/modem/backends/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/Kconfig.hostname /Users/wijnand/zephyrproject/zephyr/subsys/net/Kconfig.template.log_config.net /Users/wijnand/zephyrproject/zephyr/subsys/net/conn_mgr/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig.debug /Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig.ipv4 /Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig.ipv6 /Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig.mgmt /Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig.stack /Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig.stats /Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig.tcp /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/canbus/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/dummy/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/dummy/any/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ethernet/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ethernet/bridge/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ethernet/dsa/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ethernet/gptp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ethernet/lldp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ieee802154/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ieee802154/Kconfig.radio /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/openthread/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ppp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/virtual/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/virtual/ipip/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/wifi/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/capture/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/coap/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/config/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/dhcpv4/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/dhcpv6/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/dns/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/ftp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/http/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/latmon/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/lwm2m/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/lwm2m/Kconfig.ipso /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/lwm2m/Kconfig.ucifi /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/midi2/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/mqtt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/mqtt_sn/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/ocpp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/prometheus/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/ptp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/shell/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/sntp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/sockets/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/socks/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/tftp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/tls_credentials/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/tls_credentials/Kconfig.shell /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/trickle/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/websocket/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/wifi_credentials/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/wireguard/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/zperf/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/pkt_filter/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/nvmem/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/pm/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/pm/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/pm/policy/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/pm/policy/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/pmci/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/pmci/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/pmci/mctp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/pmci/mctp/Kconfig.usb /Users/wijnand/zephyrproject/zephyr/subsys/portability/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/portability/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/portability/cmsis_rtos_v1/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/portability/cmsis_rtos_v2/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/profiling/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/profiling/perf/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/profiling/perf/backends/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/random/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/random/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/retention/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/retention/Kconfig.blinfo /Users/wijnand/zephyrproject/zephyr/subsys/rtio/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/rtio/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/rtio/Kconfig.workq /Users/wijnand/zephyrproject/zephyr/subsys/sd/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/sd/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/secure_storage/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/secure_storage/Kconfig.its_store /Users/wijnand/zephyrproject/zephyr/subsys/secure_storage/Kconfig.its_transform /Users/wijnand/zephyrproject/zephyr/subsys/sensing/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/sensing/sensor/hinge_angle/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/sensing/sensor/phy_3d_sensor/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/settings/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/shell/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/shell/Kconfig.template.shell_log_queue_size /Users/wijnand/zephyrproject/zephyr/subsys/shell/Kconfig.template.shell_log_queue_timeout /Users/wijnand/zephyrproject/zephyr/subsys/shell/backends/Kconfig.backends /Users/wijnand/zephyrproject/zephyr/subsys/shell/modules/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/shell/modules/kernel_service/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/shell/modules/kernel_service/thread/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/sip_svc/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/stats/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/stats/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/storage/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/storage/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/storage/flash_map/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/storage/stream/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/task_wdt/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/task_wdt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/testsuite/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/testsuite/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/testsuite/Kconfig.coverage /Users/wijnand/zephyrproject/zephyr/subsys/testsuite/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/subsys/testsuite/ztest/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/testsuite/ztest/benchmark/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/timing/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/tracing/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/tracing/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/tracing/sysview/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/usb/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/usb/common/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/usb/common/Kconfig.template.instances_count /Users/wijnand/zephyrproject/zephyr/subsys/usb/device/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/Kconfig.bt /Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/Kconfig.cdc /Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/Kconfig.msc /Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/Kconfig.template.composite_device_number /Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/audio/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/dfu/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/hid/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/netusb/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/app/Kconfig.cdc_acm_serial /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.bt /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.cdc_acm /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.cdc_ecm /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.cdc_ncm /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.dfu /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.hid /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.loopback /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.midi2 /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.msc /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.uac2 /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.uvc /Users/wijnand/zephyrproject/zephyr/subsys/usb/host/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/usb/host/Kconfig.usbip /Users/wijnand/zephyrproject/zephyr/subsys/usb/host/class/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/usb/host/class/Kconfig.uvc /Users/wijnand/zephyrproject/zephyr/subsys/usb/usb_c/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/zbus/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/zbus/proxy_agent/Kconfig /Volumes/External/Work/radio/loramodem/app/CMakeLists.txt /Volumes/External/Work/radio/loramodem/app/Kconfig /Volumes/External/Work/radio/loramodem/app/prj.conf /Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay /opt/homebrew/share/cmake/Modules/CMakeASMCompiler.cmake.in /opt/homebrew/share/cmake/Modules/CMakeASMInformation.cmake /opt/homebrew/share/cmake/Modules/CMakeCCompiler.cmake.in /opt/homebrew/share/cmake/Modules/CMakeCInformation.cmake /opt/homebrew/share/cmake/Modules/CMakeCXXCompiler.cmake.in /opt/homebrew/share/cmake/Modules/CMakeCXXInformation.cmake /opt/homebrew/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake /opt/homebrew/share/cmake/Modules/CMakeCommonLanguageInclude.cmake /opt/homebrew/share/cmake/Modules/CMakeCompilerIdDetection.cmake /opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake /opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake /opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake /opt/homebrew/share/cmake/Modules/CMakeDetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake /opt/homebrew/share/cmake/Modules/CMakeDetermineSystem.cmake /opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake /opt/homebrew/share/cmake/Modules/CMakeGenericSystem.cmake /opt/homebrew/share/cmake/Modules/CMakeInitializeConfigs.cmake /opt/homebrew/share/cmake/Modules/CMakeLanguageInformation.cmake /opt/homebrew/share/cmake/Modules/CMakeNinjaFindMake.cmake /opt/homebrew/share/cmake/Modules/CMakeSystem.cmake.in /opt/homebrew/share/cmake/Modules/CMakeSystemSpecificInformation.cmake /opt/homebrew/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake /opt/homebrew/share/cmake/Modules/CMakeTestASMCompiler.cmake /opt/homebrew/share/cmake/Modules/CMakeTestCCompiler.cmake /opt/homebrew/share/cmake/Modules/CMakeTestCXXCompiler.cmake /opt/homebrew/share/cmake/Modules/CheckCCompilerFlag.cmake /opt/homebrew/share/cmake/Modules/CheckCSourceCompiles.cmake /opt/homebrew/share/cmake/Modules/CheckCXXCompilerFlag.cmake /opt/homebrew/share/cmake/Modules/CheckCXXSourceCompiles.cmake /opt/homebrew/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake /opt/homebrew/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /opt/homebrew/share/cmake/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Diab-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/GNU-ASM.cmake /opt/homebrew/share/cmake/Modules/Compiler/GNU-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/GNU-C.cmake /opt/homebrew/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/GNU-CXX.cmake /opt/homebrew/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake /opt/homebrew/share/cmake/Modules/Compiler/GNU.cmake /opt/homebrew/share/cmake/Modules/Compiler/HP-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /opt/homebrew/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /opt/homebrew/share/cmake/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/LCC-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Renesas-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/XL-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/zOS-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/ExternalProject.cmake /opt/homebrew/share/cmake/Modules/ExternalProject/shared_internal_commands.cmake /opt/homebrew/share/cmake/Modules/FindPackageHandleStandardArgs.cmake /opt/homebrew/share/cmake/Modules/FindPackageMessage.cmake /opt/homebrew/share/cmake/Modules/FindPython/Support.cmake /opt/homebrew/share/cmake/Modules/FindPython3.cmake /opt/homebrew/share/cmake/Modules/Internal/CMakeASMLinkerInformation.cmake /opt/homebrew/share/cmake/Modules/Internal/CMakeCLinkerInformation.cmake /opt/homebrew/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake /opt/homebrew/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake /opt/homebrew/share/cmake/Modules/Internal/CMakeInspectASMLinker.cmake /opt/homebrew/share/cmake/Modules/Internal/CMakeInspectCLinker.cmake /opt/homebrew/share/cmake/Modules/Internal/CMakeInspectCXXLinker.cmake /opt/homebrew/share/cmake/Modules/Internal/CheckCompilerFlag.cmake /opt/homebrew/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake /opt/homebrew/share/cmake/Modules/Internal/CheckSourceCompiles.cmake /opt/homebrew/share/cmake/Modules/Platform/Generic.cmake CMakeCache.txt CMakeFiles/4.3.0/CMakeASMCompiler.cmake CMakeFiles/4.3.0/CMakeCCompiler.cmake CMakeFiles/4.3.0/CMakeCXXCompiler.cmake CMakeFiles/4.3.0/CMakeSystem.cmake Kconfig/Kconfig.dts Kconfig/Kconfig.modules Kconfig/Kconfig.shield Kconfig/Kconfig.shield.defconfig Kconfig/arch/Kconfig Kconfig/boards/Kconfig Kconfig/boards/Kconfig.defconfig Kconfig/boards/Kconfig.xiao_esp32s3 Kconfig/kconfig_module_dirs.cmake Kconfig/soc/Kconfig Kconfig/soc/Kconfig.defconfig Kconfig/soc/Kconfig.soc zephyr/.config zephyr/edt.pickle.cmake zephyr/include/generated/zephyr/autoconf.h zephyr/misc/generated/syscalls_subdirs.txt zephyr/snippets_generated.cmake + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build /Users/wijnand/zephyr-sdk-1.0.0/cmake/Zephyr-sdkConfig.cmake /Users/wijnand/zephyr-sdk-1.0.0/cmake/Zephyr-sdkConfigVersion.cmake /Users/wijnand/zephyr-sdk-1.0.0/cmake/zephyr/Kconfig /Users/wijnand/zephyr-sdk-1.0.0/cmake/zephyr/gnu/generic.cmake /Users/wijnand/zephyr-sdk-1.0.0/cmake/zephyr/gnu/target.cmake /Users/wijnand/zephyr-sdk-1.0.0/cmake/zephyr/host-tools.cmake /Users/wijnand/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/CMakeLists.txt /Users/wijnand/zephyrproject/modules/bsim_hw_models/nrf_hw_models/CMakeLists.txt /Users/wijnand/zephyrproject/modules/debug/mipi-sys-t/CMakeLists.txt /Users/wijnand/zephyrproject/modules/debug/percepio/DFM/kernelports/Zephyr/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/DFM/kernelports/Zephyr/storageports/Filesystem/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/DFM/kernelports/Zephyr/storageports/Flash/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.BufferAllocation /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.Debug /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.EntryTable /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.ISR /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.InternalBuffer /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.StackMonitor /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.StartMode /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.StreamPort /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.TraceControl /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.TraceCoverage /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/kernelports/ESP-IDF_FreeRTOS/streamports/ESP_IDF_APPTRACE/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/kernelports/Zephyr/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/kernelports/Zephyr/streamports/Semihost/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/ARM_ITM/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/File/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/Jlink_RTT/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/RingBuffer/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/STM32_USB_CDC/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/TCPIP/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/UDP/Kconfig /Users/wijnand/zephyrproject/modules/debug/percepio/zephyr/Kconfig /Users/wijnand/zephyrproject/modules/hal/adi/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/ambiq/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/atmel/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/atmel/asf/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/atmel/asf/common/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/atmel/asf/common/components/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/atmel/asf/common/components/wifi/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32/include/soc/Kconfig.soc_caps.in /Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32c2/include/soc/Kconfig.soc_caps.in /Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32c3/include/soc/Kconfig.soc_caps.in /Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32c5/include/soc/Kconfig.soc_caps.in /Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32c6/include/soc/Kconfig.soc_caps.in /Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32h2/include/soc/Kconfig.soc_caps.in /Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32s2/include/soc/Kconfig.soc_caps.in /Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32s3/include/soc/Kconfig.soc_caps.in /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/intel/zephyr/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/intel/zephyr/Kconfig /Users/wijnand/zephyrproject/modules/hal/intel/zephyr/bsp_sedi/Kconfig /Users/wijnand/zephyrproject/modules/hal/intel/zephyr/subsys/logging/backends/Kconfig.i2c /Users/wijnand/zephyrproject/modules/hal/libmetal/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/microchip/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/nuvoton/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/nxp/zephyr/src/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/openisa/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/quicklogic/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/realtek/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/realtek/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/ameba/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/ameba/amebad/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/ameba/amebadplus/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/ameba/amebag2/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/adc/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/bluetooth/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/can/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/codec/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/dma/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/gpio/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/i2c/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/i2s/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/ir/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/keyscan/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/mac_802154/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/nvic/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/pinmux/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/qdec/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/rcc/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/rtc/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/sdhc/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/spi/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/tim/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/uart/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/usb/Kconfig /Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/wdt/Kconfig /Users/wijnand/zephyrproject/modules/hal/renesas/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/renesas/drivers/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/renesas/zephyr/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/st/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/stm32/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/tdk/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/telink/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/telink/Kconfig /Users/wijnand/zephyrproject/modules/hal/telink/tlsr9/Kconfig /Users/wijnand/zephyrproject/modules/hal/ti/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/ti/mspm0/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/ti/simplelink/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/ti/simplelink/source/ti/devices/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/ti/simplelink_lpf3/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/ti/simplelink_lpf3/source/ti/boards/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/ti/simplelink_lpf3/source/ti/devices/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/wurthelektronik/CMakeLists.txt /Users/wijnand/zephyrproject/modules/hal/xtensa/CMakeLists.txt /Users/wijnand/zephyrproject/modules/lib/gui/lvgl/Kconfig /Users/wijnand/zephyrproject/modules/lib/gui/lvgl/zephyr/Kconfig /Users/wijnand/zephyrproject/modules/lib/libmctp/zephyr/CMakeLists.txt /Users/wijnand/zephyrproject/modules/lib/open-amp/CMakeLists.txt /Users/wijnand/zephyrproject/modules/lib/picolibc/CMakeLists.txt /Users/wijnand/zephyrproject/modules/lib/picolibc/zephyr/Kconfig /Users/wijnand/zephyrproject/zephyr/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/Kconfig.constants /Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr /Users/wijnand/zephyrproject/zephyr/VERSION /Users/wijnand/zephyrproject/zephyr/arch/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/arch/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arc/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arc/core/dsp/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arc/core/mpu/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm/core/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm/core/Kconfig.vfp /Users/wijnand/zephyrproject/zephyr/arch/arm/core/arm9/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm/core/cortex_a_r/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm/core/cortex_m/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm/core/cortex_m/tz/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm/core/mmu/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm/core/mpu/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm64/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm64/core/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm64/core/cortex_r/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/arm64/core/xen/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/common/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/arch/common/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/mips/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/openrisc/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/posix/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/posix/Kconfig.natsim_optional /Users/wijnand/zephyrproject/zephyr/arch/riscv/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/riscv/Kconfig.isa /Users/wijnand/zephyrproject/zephyr/arch/riscv/custom/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/riscv/custom/andes/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/riscv/custom/thead/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/riscv/custom/thead/Kconfig.core /Users/wijnand/zephyrproject/zephyr/arch/riscv/custom/vexriscv/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/rx/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/sparc/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/x86/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/x86/core/Kconfig.ia32 /Users/wijnand/zephyrproject/zephyr/arch/x86/core/Kconfig.intel64 /Users/wijnand/zephyrproject/zephyr/arch/xtensa/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/arch/xtensa/Kconfig /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/startup/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/boards/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/boards/Kconfig /Users/wijnand/zephyrproject/zephyr/boards/Kconfig.v2 /Users/wijnand/zephyrproject/zephyr/boards/Kconfig.whisper /Users/wijnand/zephyrproject/zephyr/boards/common/esp32.board.cmake /Users/wijnand/zephyrproject/zephyr/boards/common/openocd.board.cmake /Users/wijnand/zephyrproject/zephyr/boards/deprecated.cmake /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig.xiao_esp32s3 /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/board.cmake /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/board.yml /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/seeed_xiao_connector.dtsi /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu.dts /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/boards/shields/abrobot_esp32c3_oled/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_24lc32/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_2_8_tft_touch_v2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_2_8_tft_touch_v2/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_8chan_solenoid/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ad5693r/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_adalogger_featherwing/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_aht20/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_apds9960/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_aw9523/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_data_logger/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_dps310/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_drv2605l/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ds2484/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_featherwing_128x32_oled/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_featherwing_128x32_oled/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_featherwing_128x64_oled/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_featherwing_128x64_oled/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ht16k33/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_hts221/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ina219/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ina228/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ina237/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ina3221/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_lis2mdl/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_lis3dh/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_lis3mdl/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_lps22/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ltr329/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_max17048/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_mcp4728/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_mcp9808/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_neopixel_grid_bff/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_neopixel_grid_bff/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_pca9685/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_pcf8523/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_sht4x/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_tsl2591/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_vcnl4040/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_veml7700/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_winc1500/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_winc1500/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/amg88xx/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/arceli_eth_w5500/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/arceli_eth_w5500/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/arducam_cu450_ov5640/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_giga_display_shield/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_giga_display_shield/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_modulino_buttons/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_modulino_latch_relay/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_modulino_movement/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_modulino_pixels/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_modulino_thermo/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_uno_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/atmel_rf2xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/atmel_rf2xx/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/boostxl_ulpsense/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/buydisplay_2_8_tft_touch_arduino/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/buydisplay_2_8_tft_touch_arduino/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/buydisplay_3_5_tft_touch_arduino/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/buydisplay_3_5_tft_touch_arduino/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/canis_canpico/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/dac80508_evm/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/dvp_20pin_ov7670/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/dvp_fpc24_mt9m114/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/ek_ra8d1_rtk7eka6m3b00001bu/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/esp_8266/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/esp_8266/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/esp_8266/boards/disco_l475_iot1.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/esp_8266/boards/sam4e_xpro.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/esp_threadbr_ethernet/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/esp_threadbr_ethernet/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/eval_ad4052_ardz/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/eval_adxl362_ardz/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/eval_adxl367_ardz/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/eval_adxl372_ardz/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/eval_cn0391_ardz/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/frdm_cr20a/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/frdm_cr20a/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/frdm_cr20a/boards/frdm_k64f.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/frdm_kw41z/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/frdm_stbc_agm01/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/ftdi_vm800c/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/g1120b0mipi/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/g1120b0mipi/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/inventek_eswifi/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/inventek_eswifi/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/inventek_eswifi/boards/frdm_k64f.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/inventek_eswifi/boards/nucleo_f767zi.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/lcd_par_s035/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/lcd_par_s035/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/link_board_eth/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/link_board_eth/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/lmp90100_evb/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/lmp90100_evb/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/ls0xx_generic/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/ls0xx_generic/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/m5stack_cardputer/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/m5stack_cardputer/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/m5stack_core2_ext/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/max3421e/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/max7219/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mchp_rnbd451_bt/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/mchp_rnbd451_bt/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mcp2515/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_3d_hall_3_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_accel13_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_accel4_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_adc_click/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_adc_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_air_quality_3_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_ambient_2_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_ble_tiny_click/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_ble_tiny_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_can_fd_6_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_eeprom_13_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_eth3_click/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_eth3_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_eth_click/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_eth_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_flash_5_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_flash_6_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_flash_8_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_h_bridge_4_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_illuminance_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_ir_gesture_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_lsm6dsl_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_lte_iot10_click/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_lte_iot10_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_lte_iot7_click/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_lte_iot7_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_mcp251x_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_mcp251xfd_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_pressure_3_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_proximity_9_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_rs485_isolator_5_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_rtc_18_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_stepper_18_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_stepper_19_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_temp_hum_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_weather_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_wifi_bt_click/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_wifi_bt_click/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/npm1100_ek/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/npm1300_ek/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/npm1304_ek/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/npm2100_ek/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/npm6001_ek/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/nrf7002eb/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/nrf7002eb2/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/nrf7002ek/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/nxp_adtja1101/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/nxp_btb44_ov5640/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/nxp_m2_wifi_bt/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/nxp_m2_wifi_bt/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/nxp_s32k5xx_mb/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/olimex_shield_midi/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/openthread_rcp_arduino/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/openthread_rcp_arduino/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/p3t1755dp_ard_i2c/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/p3t1755dp_ard_i3c/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/pmod_acl/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/pmod_sd/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/raspberry_pi_camera_module_2/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/renesas_aik_ov2640_cam/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/renesas_us159_da14531evz/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/reyax_lora/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/rk043fn02h_ct/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rk043fn02h_ct/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/rk043fn66hs_ctg/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rk043fn66hs_ctg/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/rk055hdmipi4m/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rk055hdmipi4m/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/rk055hdmipi4ma0/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rk055hdmipi4ma0/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/rpi_pico_uno_flexypin/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/rtk0eg0019b01002bj/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rtk0eg0019b01002bj/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/rtk7eka6m3b00001bu/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rtk7eka6m3b00001bu/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/rtk7eka6m3b00001bu/boards/ek_ra8d1.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rtklcdpar1s00001be/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rtklcdpar1s00001be/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/rtklcdpar1s00001be/boards/ek_ra8d2_r7ka8d2kflcac_cm85.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rtklcdpar1s00001be/boards/ek_ra8p1_r7ka8p1kflcac_cm85.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rtkmipilcdb00000be/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rtkmipilcdb00000be/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/rtkmipilcdb00000be/boards/aik_ra8d1.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rtkmipilcdb00000be/boards/ek_ra8d1.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/rtkmipilcdb00000be/boards/ek_ra8p1_r7ka8p1kflcac_cm85.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/seeed_w5500/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/seeed_w5500/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/seeed_xiao_expansion_board/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/seeed_xiao_expansion_board/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/seeed_xiao_hsp24/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/seeed_xiao_round_display/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/seeed_xiao_round_display/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/semtech_sx1261mb2bas/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/semtech_sx1262mb2das/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/semtech_sx1272mb2das/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/semtech_sx1276mb1mas/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/sparkfun_carrier_asset_tracker/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/sparkfun_environmental_combo/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/sparkfun_rv8803/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/sparkfun_sara_r4/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/sparkfun_sara_r4/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/sparkfun_shtc3/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/ssd1306/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/ssd1306/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/st7735r/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/st7735r/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/st7789v_generic/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/st7789v_generic/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/st87mxx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/st87mxx/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_cams_imx_mb1854/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_cams_imx_mb1854/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_cams_omv_mb1683/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_dsi_mb1314/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/boards/stm32h747i_disco_stm32h747xx_m7.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/boards/stm32h757i_eval_stm32h757xx_m7.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/st_lcd_dsi_mb1835/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/st_mb1897_cam/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/st_stm32f4dis_cam/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/swir_hl78xx_ev_kit/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/tcan4550evm/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/ti_bp_bassensorsmkii/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/v2c_daplink/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_dsi_lcd/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_dsi_lcd/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_epaper/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_epaper/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_pico_lcd_1_14/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_pico_lcd_1_14/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_pico_oled_1_3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_pico_oled_1_3/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_ups/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/weact_ov2640_cam_module/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/wiznet_w5500/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/wiznet_w5500/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/wnc_m14a2a/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/wnc_m14a2a/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_53l0a1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_53l0a1/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_bnrg2a1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_bnrg2a1/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_eeprma2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_eeprma2/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_gfx01m2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_gfx01m2/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_idb05a1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_idb05a1/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_iks01a1/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_iks01a2/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_iks01a3/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_iks02a1/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_iks4a1/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_iks5a1/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_wb05kn1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_wb05kn1/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/zc143ac72mipi/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/boards/shields/zc143ac72mipi/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/boards/shields/zhaw_lumamatrix/Kconfig.shield /Users/wijnand/zephyrproject/zephyr/cmake/bintools/bintools_template.cmake /Users/wijnand/zephyrproject/zephyr/cmake/bintools/gnu/target.cmake /Users/wijnand/zephyrproject/zephyr/cmake/bintools/gnu/target_bintools.cmake /Users/wijnand/zephyrproject/zephyr/cmake/compiler/compiler_features.cmake /Users/wijnand/zephyrproject/zephyr/cmake/compiler/compiler_flags_template.cmake /Users/wijnand/zephyrproject/zephyr/cmake/compiler/gcc/compiler_flags.cmake /Users/wijnand/zephyrproject/zephyr/cmake/compiler/gcc/generic.cmake /Users/wijnand/zephyrproject/zephyr/cmake/compiler/gcc/target.cmake /Users/wijnand/zephyrproject/zephyr/cmake/compiler/gcc/target_xtensa.cmake /Users/wijnand/zephyrproject/zephyr/cmake/compiler/target_template.cmake /Users/wijnand/zephyrproject/zephyr/cmake/extra_flags.cmake /Users/wijnand/zephyrproject/zephyr/cmake/flash/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/cmake/gcc-m-cpu.cmake /Users/wijnand/zephyrproject/zephyr/cmake/gcc-m-fpu.cmake /Users/wijnand/zephyrproject/zephyr/cmake/kobj.cmake /Users/wijnand/zephyrproject/zephyr/cmake/linker/ld/gcc/linker_flags.cmake /Users/wijnand/zephyrproject/zephyr/cmake/linker/ld/linker_flags.cmake /Users/wijnand/zephyrproject/zephyr/cmake/linker/ld/linker_libraries.cmake /Users/wijnand/zephyrproject/zephyr/cmake/linker/ld/target.cmake /Users/wijnand/zephyrproject/zephyr/cmake/linker/ld/target_configure.cmake /Users/wijnand/zephyrproject/zephyr/cmake/linker/ld/target_relocation.cmake /Users/wijnand/zephyrproject/zephyr/cmake/linker/linker_flags_template.cmake /Users/wijnand/zephyrproject/zephyr/cmake/linker/linker_libraries_template.cmake /Users/wijnand/zephyrproject/zephyr/cmake/linker/target_template.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/FindDtc.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/FindGnuLd.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/FindHostTools.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/FindScaTools.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/FindTargetTools.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/FindZephyr-sdk.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/arch.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/basic_settings.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/boards.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/ccache.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/configuration_files.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/dts.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/extensions.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/generated_file_directories.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/hwm_v2.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/kconfig.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/kernel.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/pre_dt.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/python.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/root.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/shields.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/snippets.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/soc.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/user_cache.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/version.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/west.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/yaml.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_default.cmake /Users/wijnand/zephyrproject/zephyr/cmake/modules/zephyr_module.cmake /Users/wijnand/zephyrproject/zephyr/cmake/reports/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/cmake/target_toolchain_flags.cmake /Users/wijnand/zephyrproject/zephyr/cmake/toolchain/zephyr/generic.cmake /Users/wijnand/zephyrproject/zephyr/cmake/toolchain/zephyr/target.cmake /Users/wijnand/zephyrproject/zephyr/cmake/usage/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ad405x /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ad4114 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ad4130 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ad4170 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ad559x /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ad7124 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.adc_emul /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ads1112 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ads1119 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ads131m02 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ads1x1x /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ads1x4s0x /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ads7052 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ads79xx /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.b91 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.cc13xx_cc26xx /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.cc32xx /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ch32v00x /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ene /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.infineon_autanalog_sar /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.infineon_hppass_sar /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.infineon_sar /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.lmp90xxx /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ltc2451 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.max11102_17 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.max1125x /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.max2253x /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.mcp320x /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.mcp3221 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.mcp356xr /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.nrfx /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.nxp_s32 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.renesas_rx /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.sam_afec /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ti_am335x /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.tla202x /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.vf610 /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.aw88298 /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.cs43l22 /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.da7212 /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_ambiq_pdm /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_infineon /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_mcux /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_nxp_micfil /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_pdm_nrfx /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.max98091 /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.mpxxdtyy /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.pcm1681 /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.tas6422dac /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.tlv320aic3110 /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.tlv320dac /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.wm8904 /Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.wm8962 /Users/wijnand/zephyrproject/zephyr/drivers/audio/mic_privacy/intel/Kconfig.mic_privacy /Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.gpio /Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.hd44780 /Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.itron /Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.jhd1313 /Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.pt6314 /Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.serlcd /Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.tm1637 /Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.bbram_emul /Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.mc146818 /Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.microchip /Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/biometrics/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/biometrics/Kconfig.emul /Users/wijnand/zephyrproject/zephyr/drivers/biometrics/Kconfig.gt5x /Users/wijnand/zephyrproject/zephyr/drivers/biometrics/Kconfig.zfm_x0 /Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.bee /Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.nxp /Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.andes /Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.aspeed /Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.nrf /Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.nxp_lmem_cache /Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.nxp_syscon_lpcac /Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.nxp_xcache /Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.fake /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.kvaser /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.loopback /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.mcan /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.mcp2515 /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.mcp251xfd /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.native_linux /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.nrf /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.nxp_lpc_mcan /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.nxp_s32 /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.rcar /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.sja1000 /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.tcan4x5x /Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/can/transceiver/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.axp2101 /Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.bq24190 /Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.bq2518x /Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.bq25713 /Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.gpio /Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.max20335 /Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.npm10xx /Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.pca9422 /Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.pf1550 /Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.sbs_charger /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.agilex5 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.alif /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.ameba /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.arm_scmi /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.aspeed /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.bee /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.beetle /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.cavs /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.fixed /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.focaltech /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.lpc11u6x /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.mspm0 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.npcm /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.nrf /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.nxp /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.pwm /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.rcar /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.renesas_ra_cgc /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.renesas_rx_cgc /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.renesas_rz_cgc /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.renesas_rz_cpg /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.rts5817 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.rv32m1 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.sf32lb_hxt48 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.sf32lb_rcc /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.si32 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.syna_sr100 /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.tisci /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.wch_rcc /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.fake_comp /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.it51xxx_vcmp /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.mcux_acmp /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.nrf_comp /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.nrf_lpcomp /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.nxp_acomp /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.nxp_cmp /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.nxp_hscmp /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.nxp_lpcmp /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.renesas_rx /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.shell /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.silabs_acmp /Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.stm32_comp /Users/wijnand/zephyrproject/zephyr/drivers/console/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/console/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/coredump/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.ace /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.andes_atcpit100 /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.bee_timer /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.cc23x0_lgpt /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.cc23x0_rtc /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.cmos /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.dtmr_cmsdk_apb /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.dw /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.esp32_rtc /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.esp32_tmr /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.imx_epit /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.infineon_tcpwm /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.ite_it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.ite_it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.max32_rtc /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.max32_timer /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.max32_wut /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.maxim_ds3231 /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mchp_sam_pit64b /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcp7940n /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_ctimer /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_ftm /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_gpt /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_lpc_rtc /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_lpit /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_lptmr /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_qtmr /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_rtc /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_rtc_jdp /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_snvs /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_stm /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_tpm /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mspm0 /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.native_sim /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.neorv32 /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.nrfx /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.nxp_mrt /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.nxp_pit /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.nxp_s32 /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.rpi_pico_pit /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.rts5912_slwtmr /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.rv3032_counter /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.smartbond_timer /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.stm32_rtc /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.stm32_timer /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.tmr_cmsdk_apb /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.xlnx /Users/wijnand/zephyrproject/zephyr/drivers/crc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/crc/Kconfig.nxp /Users/wijnand/zephyrproject/zephyr/drivers/crc/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/crc/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/crc/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/crc/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.ataes132a /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.intel /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.mcux_dcp /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.nrf_ecb /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.nxp_s32_hse /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.si32 /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.ad559x /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.ad569x /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.ad56x1 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.ad56xx /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.dac161s997 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.dac_emul /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.dacx0501 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.dacx0508 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.dacx311 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.dacx3608 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.ltc166x /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.max22017 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.mcp4725 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.mcp4728 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.samd5x /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/dai/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/dai/intel/alh/Kconfig.alh /Users/wijnand/zephyrproject/zephyr/drivers/dai/intel/dmic/Kconfig.dmic /Users/wijnand/zephyrproject/zephyr/drivers/dai/intel/hda/Kconfig.hda /Users/wijnand/zephyrproject/zephyr/drivers/dai/intel/ssp/Kconfig.ssp /Users/wijnand/zephyrproject/zephyr/drivers/dai/intel/uaol/Kconfig.uaol /Users/wijnand/zephyrproject/zephyr/drivers/dai/nxp/esai/Kconfig.esai /Users/wijnand/zephyrproject/zephyr/drivers/dai/nxp/micfil/Kconfig.micfil /Users/wijnand/zephyrproject/zephyr/drivers/dai/nxp/sai/Kconfig.sai /Users/wijnand/zephyrproject/zephyr/drivers/debug/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/debug/Kconfig.nrf /Users/wijnand/zephyrproject/zephyr/drivers/debug/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/disk/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/disk/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/disk/Kconfig.flash /Users/wijnand/zephyrproject/zephyr/drivers/disk/Kconfig.ftl /Users/wijnand/zephyrproject/zephyr/drivers/disk/Kconfig.loopback /Users/wijnand/zephyrproject/zephyr/drivers/disk/Kconfig.mmc /Users/wijnand/zephyrproject/zephyr/drivers/disk/Kconfig.ram /Users/wijnand/zephyrproject/zephyr/drivers/disk/Kconfig.sdmmc /Users/wijnand/zephyrproject/zephyr/drivers/disk/nvme/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ac057tc1 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.co5300 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.dummy /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.gc9x01x /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.hub12 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.hx8379c /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.hx8394 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ili9806e_dsi /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ili9xxx /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.intel_multibootfb /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ist3931 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.led_strip_matrix /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.lpm013m126 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ls0xx /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.max7219 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.mcux_dcnano_lcdif /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.mcux_elcdif /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.mcux_lcdifv2 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.mcux_lcdifv3 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.microbit /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.nrf_led_matrix /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.nt35510 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.otm8009a /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.qemu_ramfb /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.renesas_lcdc /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.rm67162 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.rm68200 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.sdl /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.sh1122 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd1306 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd1320 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd1322 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd1327_5 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd1331 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd135x /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd1363 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd16xx /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st730x /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st75256 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st7567 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st7586s /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st7701 /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st7735r /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st7789v /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st7796s /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.stm32_ltdc /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.uc81xx /Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.waveshare_dsi2dpi /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.andes_atcdmacx00 /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.dma_pl330 /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.dw /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.dw_axi_dmac /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.dw_common /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.emul /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.intel_adsp_gpdma /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.intel_adsp_hda /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.intel_lpss /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.iproc_pax /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.mcux_edma /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.mcux_lpc /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.mcux_pxp /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.mcux_smartdma /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.nios2_msgdma /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.nxp_4ch_dma /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.nxp_edma /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.nxp_sdma /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.nxp_sof_host_dma /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.sam_xdmac /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.sedi /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.si32 /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.ti_cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.wch /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.xilinx_axi_dma /Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/dp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/edac/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/edac/Kconfig.mcux_erm /Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.eeprom_emu /Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.fm25xxx /Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.lpc11u6x /Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.mb85rcxx /Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.mb85rsxx /Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.tmp11x /Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.b91 /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.bt_hci /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.cc13xx_cc26xx /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.gecko /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.iproc /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.maxq10xx /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.mspm0_trng /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.native_sim /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.neorv32 /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.nrf5 /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.nrf_cracen /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.nxp /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.psa_crypto /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.rv32m1 /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.sy1xx /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.virtio /Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.wch /Users/wijnand/zephyrproject/zephyr/drivers/espi/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/espi/Kconfig.espi_emul /Users/wijnand/zephyrproject/zephyr/drivers/espi/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/espi/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/espi/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/espi/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.adin2111 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.cyclonev /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.dm9051 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.dwmac /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.e1000 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.enc28j60 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.enc424j600 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.gecko /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.ivshmem /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.lan865x /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.lan9250 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.native_tap /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.nxp_enet /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.nxp_s32_gmac /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.nxp_s32_netc /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.renesas_ra_rmac /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.sam_gmac /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.smsc911x /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.smsc91x /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.stellaris /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.stm32_hal /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.sy1xx_mac /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.virtio_net /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.w5500 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.w6100 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.wch /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.xilinx_axi_ethernet_lite /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.xilinx_axienet /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.xlnx_gem /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/dsa/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/dwc_xgmac/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/eth_nxp_enet_qos/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/intel/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/intel/Kconfig.intel_igc /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.adin2111 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.dwcxgmac /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.gpio /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.intel_igc /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.lan865x /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.nxp_enet /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.nxp_enet_qos /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.nxp_imx_netc /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.nxp_s32_gmac /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.nxp_s32_netc /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.stm32_hal /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.sy1xx /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.wch /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.xilinx_axi_ethernet_lite /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.xilinx_axienet /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/nxp_imx_netc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.dm8806 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.microchip_t1s /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.nxp_t1s /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.tja1103 /Users/wijnand/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.tja11xx /Users/wijnand/zephyrproject/zephyr/drivers/firmware/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/firmware/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/firmware/qemu_fwcfg/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/firmware/scmi/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/firmware/scmi/nxp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/firmware/scmi/shell/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/firmware/tisci/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.adi_max32_spixf /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.andes /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.at25xv021a /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.at45 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.b91 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.cadence_nand /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.cadence_qspi_nor /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.cc13xx_cc26xx /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.gecko /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.it51xxx_m1k /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.lpc /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.mspi /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nand /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nor /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nordic_qspi_nor /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.npcx_fiu /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nrf /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nrf_mram /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nrf_mramc /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nrf_rram /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.numaker_rmc /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nxp_s32_qspi /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nxp_s32_xspi /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_ra_ospi /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_ra_qspi /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_rx /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_rz_qspi /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.rv32m1 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.s3axx04 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.sf32lb_mpi_qspi_nor /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.si32 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.simulator /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.stm32_ospi /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.stm32_qspi /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.stm32_xspi /Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/fpga/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/fpga/Kconfig.altera_agilex_bridge /Users/wijnand/zephyrproject/zephyr/drivers/fpga/Kconfig.eos_s3 /Users/wijnand/zephyrproject/zephyr/drivers/fpga/Kconfig.ice40 /Users/wijnand/zephyrproject/zephyr/drivers/fpga/Kconfig.mpfs /Users/wijnand/zephyrproject/zephyr/drivers/fpga/Kconfig.slg471x5 /Users/wijnand/zephyrproject/zephyr/drivers/fpga/Kconfig.zynqmp /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/axp2101/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/bq27z746/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/bq40z50/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/composite/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/hy4245/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/lc709203f/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/ltc2959/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/max17048/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/sbs_gauge/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/sbs_gauge/Kconfig.emul_sbs_gauge /Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/sy24561/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/gnss/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/gnss/Kconfig.emul /Users/wijnand/zephyrproject/zephyr/drivers/gnss/Kconfig.generic /Users/wijnand/zephyrproject/zephyr/drivers/gnss/Kconfig.globaltop_pa6h /Users/wijnand/zephyrproject/zephyr/drivers/gnss/Kconfig.luatos_air530z /Users/wijnand/zephyrproject/zephyr/drivers/gnss/Kconfig.quectel_lcx6g /Users/wijnand/zephyrproject/zephyr/drivers/gnss/u_blox/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/gnss/u_blox/Kconfig.u_blox_common /Users/wijnand/zephyrproject/zephyr/drivers/gnss/u_blox/Kconfig.u_blox_f9p /Users/wijnand/zephyrproject/zephyr/drivers/gnss/u_blox/Kconfig.u_blox_m8 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.ad559x /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.adp5585 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.ads1x4s0x /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.aesc /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.altera /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.ameba /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.andes_atcgpio100 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.aw9523b /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.axp192 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.b91 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.bcm2711 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.bd8lb600fs /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.bee /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.brcmstb /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.cc13xx_cc26xx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.cc32xx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.cmsdk_ahb /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.creg_gpio /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.cy8c95xx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.cyw43 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.davinci /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.dw /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.efinix_sapphire /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.emul /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.emul_sdl /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.ene /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.eos_s3 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.fxl6408 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.gecko /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.grgpio /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.imx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.intel /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.iproc /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.it8801 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.lmp90xxx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.lpc11u6x /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.max14906 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.max14916 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.max14917 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.max22017 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.max2219x /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mchp_mss /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mcp23xxx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mcux_igpio /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mcux_lpc /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mcux_rgpio /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mfxstm32l152 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mmio32 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mspm0 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.nct38xx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.neorv32 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.npm13xx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.npm2100 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.npm6001 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.nrfx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.numicro /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.nxp_siul2 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.pca953x /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.pca95xx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.pca_series /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.pcal64xxa /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.pcal9722 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.pcf857x /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.psoc6 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.rcar /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.renesas_ra_ioport /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.renesas_rx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.renesas_rza2m /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.rp1 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.rt1718s /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.rv32m1 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.rzt2m /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sc18im704 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sc18is606 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sedi /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.si32 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sifive /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sn74hc595 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.stellaris /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.stmpe1600 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sx1509b /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sy1xx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.tca6424a /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.tle9104 /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.wch_ch32v00x /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.xlnx /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.xlnx_ps /Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/haptics/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/haptics/cirrus/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/haptics/cirrus/Kconfig.cs40l5x /Users/wijnand/zephyrproject/zephyr/drivers/haptics/ti/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/haptics/ti/Kconfig.drv2605 /Users/wijnand/zephyrproject/zephyr/drivers/hdlc_rcp_if/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/hdlc_rcp_if/Kconfig.nxp /Users/wijnand/zephyrproject/zephyr/drivers/hdlc_rcp_if/Kconfig.spi /Users/wijnand/zephyrproject/zephyr/drivers/hdlc_rcp_if/Kconfig.uart /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.andes /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.cc13xx_cc26xx /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.gecko /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.imxrt /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_mcx_cmc /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_rcm /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_rstctl /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_sim /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_src /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_src_rev2 /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_syscon /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mspm0 /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.native /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.nrf /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.numaker_rmc /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.psoc6 /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.rw61x /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.sam4l /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.sam_rstc /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.silabs_series2 /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/hwspinlock/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/hwspinlock/Kconfig.nxp_sema42 /Users/wijnand/zephyrproject/zephyr/drivers/hwspinlock/Kconfig.sqn /Users/wijnand/zephyrproject/zephyr/drivers/hwspinlock/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.andes_atciic100 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.b91 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.bcm_iproc /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.cc13xx_cc26xx /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.cdns /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.dw /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.ene /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.gpio /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.i2c_emul /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.infineon_xmc4 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.lpc11u6x /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.mchp_mss /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.mchp_xec /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.nrfx /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.omap /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.rcar /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.renesas_rx /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sam_twihs /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sbcon /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sc18im704 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sedi /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sifive /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sy1xx /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.tca954x /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.wch /Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.xilinx_axi /Users/wijnand/zephyrproject/zephyr/drivers/i2c/target/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/i2c/target/Kconfig.eeprom /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.mcux_flexcomm /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.nrfx /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.sam_ssc /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.cdns /Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.dw /Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.nxp /Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.renesas /Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.b91 /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.cc1200 /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.cc13xx_cc26xx /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.cc2520 /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.dw1000 /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.kw41z /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.mcr20a /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.mcxw /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.nrf5 /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.rf2xx /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.stm32wba /Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.uart_pipe /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.adafruit_seesaw_gamepad /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.adc_keys /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.analog_axis /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.bee_keyscan /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.cap12xx /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.cf1133 /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.ch9350l /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.chsc5x /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.chsc6x /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.cst8xx /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.cy8cmbr3xxx /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.evdev /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.ft5336 /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.ft6146 /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.gpio_kbd_matrix /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.gpio_keys /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.gpio_qdec /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.gt911 /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.ili2132a /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.it8801 /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.kbd_matrix /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.mcux_kpp /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.mcux_tsi /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.modulino /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.nunchuk /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.pat912x /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.paw32xx /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.pinnacle /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.pmw3610 /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.renesas_rx /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.sbus /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.sdl /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.stmpe811 /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.tma525b /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.touch /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.tsc_keys /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.vs1838b /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.xpt2046 /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.cavs /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.clic /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.dw /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.gd32_exti /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.gic /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.intel_vtd /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.loapic /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.max32_rv32 /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.mtk_adsp /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.multilevel /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.multilevel.aggregator_template /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_gint /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_irqsteer /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_pint /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_s32 /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_siul2 /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.plic /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.renesas_rx /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.riscv_aia /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.rv32m1 /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.shared_irq /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.swerv /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.vim /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.wch_exti /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.wch_pfic /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/ipm/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ipm/Kconfig.imx /Users/wijnand/zephyrproject/zephyr/drivers/ipm/Kconfig.ivshmem /Users/wijnand/zephyrproject/zephyr/drivers/ipm/Kconfig.nrfx /Users/wijnand/zephyrproject/zephyr/drivers/ipm/Kconfig.nrfx_ipc_channel /Users/wijnand/zephyrproject/zephyr/drivers/ipm/Kconfig.sedi /Users/wijnand/zephyrproject/zephyr/drivers/ipm/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.axp192 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.dac /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.gpio /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.ht16k33 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.is31fl319x /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.is31fl3216a /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.is31fl3733 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.leds-group-multicolor /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.lp3943 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.lp50xx /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.lp5562 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.lp5569 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.modulino /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.ncp5623 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.npm13xx /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.pca9533 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.pca9633 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.pwm /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.sct2024 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.tlc59108 /Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/led_strip/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/led_strip/Kconfig.apa102 /Users/wijnand/zephyrproject/zephyr/drivers/led_strip/Kconfig.lpd880x /Users/wijnand/zephyrproject/zephyr/drivers/led_strip/Kconfig.modulino /Users/wijnand/zephyrproject/zephyr/drivers/led_strip/Kconfig.tlc5971 /Users/wijnand/zephyrproject/zephyr/drivers/led_strip/Kconfig.tlc59731 /Users/wijnand/zephyrproject/zephyr/drivers/led_strip/Kconfig.ws2812 /Users/wijnand/zephyrproject/zephyr/drivers/lora/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/lora/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/lora/Kconfig.rylrxxx /Users/wijnand/zephyrproject/zephyr/drivers/lora/Kconfig.sx12xx /Users/wijnand/zephyrproject/zephyr/drivers/lora/lora-basics-modem/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/lora/loramac-node/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/lora/native/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/lora/native/sx126x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.adi_max32 /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.andes /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.ivshmem /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.mhuv3 /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.nrf_bellboard /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.nrf_vevif_event /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.nrf_vevif_task /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.nrfx /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.nxp_imx /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.nxp_mailbox /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.nxp_s32 /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.stm32_hsem /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.ti_omap /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.ti_secproxy /Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.xlnx /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.max32_hpb /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.mspi /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.nxp_s32_qspi /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.nxp_s32_xspi /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.sifive /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.siwx91x_qspi /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.ad559x /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.adp5585 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.aw9523b /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.axp192 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.axp2101 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.bd8lb600fs /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.ds3231 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.it8801 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.lpflexcomm /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.max20335 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.max22017 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.max2221x /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.max31790 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.maxq10xx /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.mc146818 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.mchp_sam /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.nct38xx /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.npm10xx /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.npm13xx /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.npm2100 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.npm6001 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.pca9422 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.pf1550 /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.rv3032_mfd /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.sc18is606_mfd /Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.tle9104 /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.bitbang /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.nxp_dcnano_lcdif /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.nxp_flexio_lcdif /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.nxp_lcdic /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.sf32lb_lcdc /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.spi /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.stm32_fmc /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/misc/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/misc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/devmux/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/ethos_u/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/ft8xx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/grove_lcd_rgb/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/interconn/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/misc/interconn/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/interconn/renesas_elc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/interconn/renesas_elc/Kconfig.renesas_ra_elc /Users/wijnand/zephyrproject/zephyr/drivers/misc/max2221x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/mcux_flexio/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/nordic_vpr_launcher/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/nxp_flexram/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/nxp_imx93_mediamix/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/nxp_inputmux/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/nxp_rtxxx_dsp_ctrl/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/nxp_s32_emios/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/pio_rpi_pico/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/renesas_drw/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/renesas_drw/Kconfig.renesas_ra_drw /Users/wijnand/zephyrproject/zephyr/drivers/misc/renesas_ra_external_interrupt/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/renesas_rx_dtc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/renesas_rx_external_interrupt/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/stm32n6_axisram/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/timeaware_gpio/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/misc/timeaware_gpio/Kconfig.timeaware_gpio_intel /Users/wijnand/zephyrproject/zephyr/drivers/mm/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig.at_shell /Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig.cellular /Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig.hl7800 /Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig.quectel-bg9x /Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig.st87mxx /Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig.ublox-sara-r4 /Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig.wncm14a2a /Users/wijnand/zephyrproject/zephyr/drivers/modem/hl78xx/Kconfig.hl78xx /Users/wijnand/zephyrproject/zephyr/drivers/modem/hl78xx/hl78xx_evt_monitor/Kconfig.hl78xx_evt_monitor /Users/wijnand/zephyrproject/zephyr/drivers/modem/simcom/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/modem/simcom/sim7080/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/mspi/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/mspi/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/mspi/Kconfig.dw /Users/wijnand/zephyrproject/zephyr/drivers/mspi/Kconfig.mspi_emul /Users/wijnand/zephyrproject/zephyr/drivers/mspi/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/net/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/opamp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/opamp/Kconfig.mcux_opamp /Users/wijnand/zephyrproject/zephyr/drivers/opamp/Kconfig.mcux_opamp_fast /Users/wijnand/zephyrproject/zephyr/drivers/opamp/Kconfig.stm32_opamp /Users/wijnand/zephyrproject/zephyr/drivers/otp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/otp/Kconfig.emu /Users/wijnand/zephyrproject/zephyr/drivers/otp/Kconfig.mcux_ocotp /Users/wijnand/zephyrproject/zephyr/drivers/otp/Kconfig.sifli /Users/wijnand/zephyrproject/zephyr/drivers/otp/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/pcie/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/pcie/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/pcie/controller/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/pcie/controller/Kconfig.brcmstb /Users/wijnand/zephyrproject/zephyr/drivers/pcie/endpoint/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/pcie/endpoint/Kconfig.iproc /Users/wijnand/zephyrproject/zephyr/drivers/pcie/host/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/peci/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/peci/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/peci/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/peci/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.alif /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ameba /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.arm_mps2 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.arm_mps3 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.arm_mps4 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.arm_v2m_beetle /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.b91 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.bcm2711 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.bee /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.cc13xx_cc26xx /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.emsdp /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ene /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.eos_s3 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.gecko /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.imx /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.lpc_iocon /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.mci_io_mux /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.mspm0 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.nrf /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.numicro /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.nxp_port /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.nxp_siul2 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.realtek_rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.rts5817 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.rv32m1 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sf32lb52x /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sifive /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.silabs_dbus /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sy1xx /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.syna_sr100 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ti_cc32xx /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ti_k3 /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.wch_00x_afio /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.wch_20x_30x_afio /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.wch_afio /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.xlnx /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.zynqmp /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/renesas/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/renesas/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/renesas/ra/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/renesas/rcar/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/renesas/rx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/renesas/rz/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/renesas/smartbond/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/pm_cpu_ops/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/power_domain/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/power_domain/Kconfig.nrfs_gdpwr /Users/wijnand/zephyrproject/zephyr/drivers/power_domain/Kconfig.nrfs_swext /Users/wijnand/zephyrproject/zephyr/drivers/power_domain/Kconfig.silabs_siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/ps2/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ps2/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/ps2/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/ps2/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/psi5/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/psi5/Kconfig.nxp_s32 /Users/wijnand/zephyrproject/zephyr/drivers/ptp_clock/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/ptp_clock/Kconfig.nxp_enet /Users/wijnand/zephyrproject/zephyr/drivers/ptp_clock/Kconfig.nxp_netc /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.ambiq_timer /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.b91 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.cc13xx_cc26xx_timer /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.cc23x0_timer /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.ene /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.fake /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.gecko /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.imx /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.infineon_tcpwm /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.intel_blinky /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.it8801 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.max2221x /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.max31790 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_ctimer /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_ftm /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_pwt /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_qtmr /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_sctimer /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_tpm /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mspm0 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.neorv32 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.nrf_sw /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.nrfx /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.nxp_flexio /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.nxp_s32_emios /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.pca9685 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.rcar /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.renesas_rx_mtu /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.rv32m1_tpm /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.sam0_tc /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.sifive /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.wch /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.xlnx /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.xmc4xxx_ccu4 /Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.xmc4xxx_ccu8 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.adp5360 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.axp192 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.cp9314 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.da1469x /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.fake /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.fixed /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.gpio /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.max20335 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.modulino_latch_relay /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.mpm54304 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.npm10xx /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.npm1100 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.npm13xx /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.npm2100 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.npm6001 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.nrf_vregusb /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.nxp_vref /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.nxp_vrefv1 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.pca9420 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.pca9422 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.pf1550 /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.stm32_vrefbuf /Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.tps55287 /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.aspeed /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.focaltech /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.intel_socfpga /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.lpc_syscon /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.mchp_mss /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.mmio /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.nxp_mrcc /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.nxp_rstctl /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.rts5817 /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.syna_sr100 /Users/wijnand/zephyrproject/zephyr/drivers/retained_mem/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/retained_mem/Kconfig.nrf /Users/wijnand/zephyrproject/zephyr/drivers/retained_mem/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/retained_mem/Kconfig.zephyr /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.am1805 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.bq32002 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.counter /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.ds1302 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.ds1307 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.ds1337 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.ds3231 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.emul /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.fake /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.max31331 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.mc146818 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.nxp_irtc /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.pcf2123 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.pcf85063a /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.pcf8523 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.pcf8563 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.rv3028 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.rv3032 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.rv8263 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.rv8803 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.rx8130ce /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.ti_mspm0 /Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.imx /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.intel /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.mcux_sdif /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.rcar /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.sam_hsmci /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.sam_sdmmc /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.sdhc_cdns /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.spi /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.xlnx /Users/wijnand/zephyrproject/zephyr/drivers/sensor/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/Kconfig.sensor_clock /Users/wijnand/zephyrproject/zephyr/drivers/sensor/Kconfig.trigger_template /Users/wijnand/zephyrproject/zephyr/drivers/sensor/a01nyub/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/ad2s1210/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/ade7978/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adltc2990/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adt7310/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adt7420/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adxl345/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adxl355/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adxl362/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adxl367/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adxl372/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/max30210/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/max32664c/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/als31300/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/amd_sb_tsi/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/amg88xx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/ams_as5048/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/ams_as5600/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/ams_iAQcore/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/ccs811/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/ens210/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/tcs3400/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/tmd2620/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/tsl2540/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/tsl2561/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/tsl2591/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/aosong/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/aosong/ags10/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/aosong/dht/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/aosong/dht20/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/apds9253/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/apds9306/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/apds9960/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/asahi_kasei/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/asahi_kasei/ak8975/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/asahi_kasei/akm09918c/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bma280/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bma4xx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmc150_magn/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bme280/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bme680/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmg160/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmi08x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmi160/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmi270/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmi323/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmm150/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmm350/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmp180/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmp388/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmp581/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/broadcom/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/broadcom/afbr_s50/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/current_amp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ene_tach_kb1200/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ens160/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/espressif/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/espressif/esp32_temp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/espressif/pcnt_esp32/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/everlight/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/everlight/als_pt19/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/explorir_m/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/f75303/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/fcx_mldx5/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/grow_r502a/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/hc_sr04/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/honeywell/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/honeywell/hmc5883l/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/honeywell/mpr/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/honeywell/sm351lt/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/hp206c/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/hx711_spi/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/iclegend/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/iclegend/s3km1110/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/infineon/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/infineon/dps310/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/infineon/tle9104/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/infineon/xmc4xxx_temp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ist8310/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ite/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ite/ite_tach_it51xxx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ite/ite_tach_it8xxx2/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ite/ite_vcmp_it8xxx2/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/jedec/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/jedec/jc42/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/liteon/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/liteon/ltr55x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/liteon/ltrf216a/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/lm35/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/lm75/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/lm77/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/ds18b20/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/ds3231/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max17055/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max17262/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max30101/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max31790/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max31855/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max31865/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max31875/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max44009/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max6675/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/mb7040/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/meas/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/meas/ms5607/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/meas/ms5837/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/melexis/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/melexis/mlx90394/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/memsic/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/memsic/mc3419/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/memsic/mmc56x3/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/mhz19b/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/microchip/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/microchip/mchp_tach_xec/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/microchip/mcp9600/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/microchip/mcp970x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/microchip/mtch9010/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/microchip/tcn75a/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nct75/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nordic/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nordic/npm10xx_adc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nordic/npm13xx_charger/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nordic/npm2100_vbat/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nordic/qdec_nrfx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nordic/temp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ntc_thermistor/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nuvoton/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nuvoton/nuvoton_adc_cmp_npcx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nuvoton/nuvoton_adc_v2t_npcx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nuvoton/nuvoton_tach_npcx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/fxas21002/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/fxls8974/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/fxos8700/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/mcux_acmp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/mcux_lpcmp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/nxp_kinetis_temp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/nxp_lpadc_temp40/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/nxp_pmc_tmpsns/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/nxp_tempmon/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/nxp_tempsense/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/nxp_tmpsns/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/p3t1755/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/qdc_mcux/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/qdec_mcux/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/qdec_nxp_s32/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/qdec_tpm/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/omron/2smpb_02e/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/omron/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/omron/d6f/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/pixart/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/pixart/paa3905/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/pixart/paj7620/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/pixart/pat9136/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/pms7003/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/pni/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/pni/rm3100/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/pzem004t/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/qdec_sam/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/qst/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/qst/qmi8658a/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/realtek/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/realtek/rts5912/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/renesas/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/renesas/hs300x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/renesas/hs400x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/renesas/isl29035/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/rohm/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/rohm/bd8lb600fs/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/rohm/bh1730/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/rohm/bh1750/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/rohm/bh1790/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/rpi_pico_temp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/rv3032_temp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/s11059/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sbs_gauge/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/seeed/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/seeed/grove/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/seeed/hm330x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/scd4x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/sgp40/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/sht3xd/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/sht4x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/shtcx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/stcc4/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/sts4x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sifli/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sifli/sf32lb_tsen/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/silabs/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/silabs/si7006/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/silabs/si7055/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/silabs/si7060/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/silabs/si7210/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/hts221/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/i3g4250d/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/iis2dh/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/iis2dlpc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/iis2iclx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/iis2mdc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/iis328dq/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/iis3dhhc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/iis3dwb/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/ism330dhcx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis2de12/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis2dh/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis2ds12/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis2du12/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis2dux12/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis2dw12/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis2mdl/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis3mdl/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lps22hb/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lps22hh/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lps25hb/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lps2xdf/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm303dlhc_magn/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm6ds0/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm6dsl/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm6dso/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm6dso16is/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm6dsv16x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm6dsvxxx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm9ds0_gyro/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm9ds0_mfd/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm9ds1/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm9ds1_mag/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/qdec_stm32/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/stm32_digi_temp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/stm32_temp/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/stm32_vbat/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/stm32_vref/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/stmemsc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/stts22h/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/stts751/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/vl53l0x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/vl53l1x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/sx9500/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tach_gpio/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/icm40627/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/icm42605/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/icm4268x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/icm42x70/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/icm45686/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/icp101xx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/icp201xx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/mpu6050/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/mpu9250/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/th02/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/bq274xx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/fdc2x1x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/ina219/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/ina2xx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/ina3221/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/ina7xx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/lm95234/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/opt300x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/ti_hdc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/ti_hdc20xx/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/ti_hdc302x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmag5170/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmag5273/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmp007/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmp1075/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmp108/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmp112/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmp114/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmp11x/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmp435/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/tsic_xx6/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/veaa_x_3/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/vishay/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/vishay/vcnl36825t/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/vishay/vcnl4040/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/vishay/veml6031/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/vishay/veml6046/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/vishay/veml7700/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/voltage_divider/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/wsen_hids_2525020210002/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/wsen_isds_2536030320001/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/wsen_itds_2533020201601/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/wsen_pads_2511020213301/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/wsen_pdms_25131308XXX05/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/wsen_pdus_25131308XXXXX/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/wsen_tids_2521020222501/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sensor/xbr818/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sent/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sent/Kconfig.nxp_s32 /Users/wijnand/zephyrproject/zephyr/drivers/serial/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.aesc /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.altera /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.altera_jtag /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.ameba_loguart /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.apbuart /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.b91 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.bcm2711 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.bee /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.bitbang /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.bridge /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.bt /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.cc13xx_cc26xx /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.cc32xx /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.cdns /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.cmsdk_apb /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.efinix_sapphire /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.emul /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.ene /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.focaltech /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.gecko /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.hostlink /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.imx /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.intel_lw /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.leuart_gecko /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.lpc11u6x /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.mcux_flexcomm /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.mcux_iuart /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.mcux_lpsci /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.mcux_lpuart /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.miv /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.msp432p4xx /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.mspm0 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.native_pty /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.native_tty /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.neorv32 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.nrfx /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.nrfx_uart_instance /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.ns16550 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.numicro /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.nxp_s32 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.opentitan /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.pl011 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.psoc6 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.ql_usbserialport_s3b /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.rcar /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.realtek_rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_ra8 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_rx /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_rx_qemu /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.rpmsg /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.rtt /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.rv32m1_lpuart /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.rzt2m /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.sedi /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.si32 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.sifive /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.silabs_eusart /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.silabs_usart /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.stellaris /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.sy1xx /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.uart_sam /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.usart_sam /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.virtio_console /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.wch_usart /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.xen /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.xlnx /Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/sip_svc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/sip_svc/Kconfig.sip_smc_agilex /Users/wijnand/zephyrproject/zephyr/drivers/smbus/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/spi/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.andes_atcspi200 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.b91 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.bitbang /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.cc13xx_cc26xx /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.cdns /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.dw /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.egis_et171 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.grlib_spimctrl /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.mchp_mss /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.mchp_mss_qspi /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.mcux_dspi /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.mcux_ecspi /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.mcux_flexcomm /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.mcux_flexio /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.nrfx /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.nxp_s32 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.oc_simple /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.omap /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.opentitan /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.pl022 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.psoc6 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.pw /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.renesas_ra8 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.renesas_rx /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.rv32m1_lpspi /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.sc18is606 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.sedi /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.sifive /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.silabs_eusart /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.silabs_siwx91x_gspi /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.silabs_usart /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.spi_emul /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.sy1xx /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.wch /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.xec_qmspi /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.xlnx /Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/spi/spi_nxp_lpspi/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/spi/spi_nxp_lpspi/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/stepper/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/stepper/Kconfig.fake /Users/wijnand/zephyrproject/zephyr/drivers/stepper/adi_tmc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/stepper/adi_tmc/Kconfig.tmc_rampgen_template /Users/wijnand/zephyrproject/zephyr/drivers/stepper/adi_tmc/bus/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/stepper/adi_tmc/tmc22xx/Kconfig.tmc22xx /Users/wijnand/zephyrproject/zephyr/drivers/stepper/adi_tmc/tmc50xx/Kconfig.tmc50xx /Users/wijnand/zephyrproject/zephyr/drivers/stepper/adi_tmc/tmc51xx/Kconfig.tmc51xx /Users/wijnand/zephyrproject/zephyr/drivers/stepper/adi_tmc/tmcm3216/Kconfig.tmcm3216 /Users/wijnand/zephyrproject/zephyr/drivers/stepper/allegro/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/stepper/allegro/Kconfig.a4979 /Users/wijnand/zephyrproject/zephyr/drivers/stepper/event_handler/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/stepper/gpio_stepper/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/stepper/gpio_stepper/Kconfig.gpio_step_dir /Users/wijnand/zephyrproject/zephyr/drivers/stepper/gpio_stepper/Kconfig.h_bridge /Users/wijnand/zephyrproject/zephyr/drivers/stepper/gpio_stepper/common/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/stepper/step_dir/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/stepper/ti/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/stepper/ti/Kconfig.drv84xx /Users/wijnand/zephyrproject/zephyr/drivers/syscon/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/syscon/Kconfig.bflb_efuse /Users/wijnand/zephyrproject/zephyr/drivers/tee/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/tee/optee/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/timer/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.arcv2 /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.arm_arch /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.cavs /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.cc13xx_cc26xx_rtc /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.cortex_m_systick /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.gecko /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.infineon_lp /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.ite_it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.leon_gptimer /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.max32_rv32_sys_timer /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.max32_wut /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.mchp_sam /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.mchp_xec_rtos /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.mcux_gpt /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.mcux_lptmr /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.mcux_os /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.mips_cp0 /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.mtk_adsp /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.native_sim /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.npcx_itim /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.nrf_grtc /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.nrf_rtc /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.nrf_xrtc /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.openrisc_tick /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.rcar_cmt /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.realtek_rts5912_rtmr /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.renesas_ra_ulpt /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.renesas_rx /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.renesas_rza2m /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.riscv_machine /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.rv32m1_lptmr /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.sam0_rtc /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.silabs /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.stm32_lptim /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.stm32wb0_radio_timer /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.sy1xx_sys_timer /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.system_timer_lpm /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.ti_dm_timer /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.wch_ch32v00x /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.x86 /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.xlnx_psttc /Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.xtensa /Users/wijnand/zephyrproject/zephyr/drivers/uaol/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/usb/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb/bc12/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb/bc12/Kconfig.pi3usb9201 /Users/wijnand/zephyrproject/zephyr/drivers/usb/common/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/usb/common/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb/common/buf/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/usb/common/nrf_usbd_common/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb/common/stm32/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb/device/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.bflb_v1 /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.dwc2 /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.it82xx2 /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.kinetis /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.nrf /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.sam_udp /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.sam_usbc /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.sam_usbhs /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.skeleton /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.virtual /Users/wijnand/zephyrproject/zephyr/drivers/usb/uhc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb/uhc/Kconfig.max3421e /Users/wijnand/zephyrproject/zephyr/drivers/usb/uhc/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/usb/uhc/Kconfig.virtual /Users/wijnand/zephyrproject/zephyr/drivers/usb/uvb/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/ppc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/ppc/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/ppc/Kconfig.nxp /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_fusb307 /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_numaker /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_ps8xxx /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_rt1715 /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_stm32 /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_tcpci /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/vbus/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/vbus/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/vbus/Kconfig.usbc_vbus_adc /Users/wijnand/zephyrproject/zephyr/drivers/usb_c/vbus/Kconfig.usbc_vbus_tcpci /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.arducam_mega /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.emul_imager /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.emul_rx /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.esp32_dvp /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.gc2145 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.hm01b0 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.hm0360 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.imx219 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.imx335 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.mcux_csi /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.mcux_mipi_csi2rx /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.mcux_sdma /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.mt9m114 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.ov2640 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.ov5640 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.ov5642 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.ov767x /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.ov7725 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.ov9655 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.renesas_ra_ceu /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.shell /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.st_mipid02 /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.stm32_dcmi /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.stm32_dcmipp /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.stm32_jpeg /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.stm32_venc /Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.sw_generator /Users/wijnand/zephyrproject/zephyr/drivers/virtio/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/virtualization/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.ds2477_85 /Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.ds2482-800 /Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.ds2484 /Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.ds2485 /Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.test /Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.zephyr_gpio /Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.zephyr_serial /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.adi_max42500 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.ambiq /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.andes_atcwdt200 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.bflb /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.cc13xx_cc26xx /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.cc23x0 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.cc32xx /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.cmsdk_apb /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.dw /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.ene /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.gd32 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.gecko /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.intel_adsp /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.it51xxx /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.it8xxx2 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.litex /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.max32 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.mchp /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.mcux_imx /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.npcx /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.npm13xx /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.npm2100 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.npm6001 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.nrfx /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.numaker /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.nxp_ewm /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.nxp_fs26 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.nxp_s32 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.opentitan /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.renesas_ra /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.renesas_rx /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.renesas_rz /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.rpi_pico /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.rts5817 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.sam /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.sam0 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.sam4l /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.sf32lb /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.shell /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.sifive /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.smartbond /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.tco /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.ti_rti /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.ti_tps382x /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.wch /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.xec /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.xilinx_wwdt /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.xlnx /Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.xmc4xxx /Users/wijnand/zephyrproject/zephyr/drivers/wifi/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/wifi/esp32/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/drivers/wifi/esp_at/Kconfig.esp_at /Users/wijnand/zephyrproject/zephyr/drivers/wifi/esp_hosted/Kconfig.esp_hosted /Users/wijnand/zephyrproject/zephyr/drivers/wifi/eswifi/Kconfig.eswifi /Users/wijnand/zephyrproject/zephyr/drivers/wifi/infineon/Kconfig.airoc /Users/wijnand/zephyrproject/zephyr/drivers/wifi/nrf_wifi/Kconfig.nrfwifi /Users/wijnand/zephyrproject/zephyr/drivers/wifi/nxp/Kconfig.nxp /Users/wijnand/zephyrproject/zephyr/drivers/wifi/simplelink/Kconfig.simplelink /Users/wijnand/zephyrproject/zephyr/drivers/wifi/siwx91x/Kconfig.siwx91x /Users/wijnand/zephyrproject/zephyr/drivers/wifi/winc1500/Kconfig.winc1500 /Users/wijnand/zephyrproject/zephyr/drivers/wuc/Kconfig /Users/wijnand/zephyrproject/zephyr/drivers/wuc/Kconfig.mcux_wuc /Users/wijnand/zephyrproject/zephyr/drivers/xen/Kconfig /Users/wijnand/zephyrproject/zephyr/dts/Kconfig /Users/wijnand/zephyrproject/zephyr/dts/common/freq.h /Users/wijnand/zephyrproject/zephyr/dts/common/mem.h /Users/wijnand/zephyrproject/zephyr/dts/common/skeleton.dtsi /Users/wijnand/zephyrproject/zephyr/dts/vendor/espressif/partitions_0x0_amp.dtsi /Users/wijnand/zephyrproject/zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi /Users/wijnand/zephyrproject/zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi /Users/wijnand/zephyrproject/zephyr/dts/xtensa/espressif/esp32s3/esp32s3_wroom_n8r8.dtsi /Users/wijnand/zephyrproject/zephyr/dts/xtensa/xtensa.dtsi /Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/common/app_data_alignment.ld /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/adc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/esp32s3_clock.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dt-util.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/gpio.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/i2c/i2c.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/esp32s3-xtensa-intmux.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp-pinctrl-common.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32s3-gpio-sigmap.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32s3-pinctrl.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/app_smem.ld /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/app_smem_aligned.ld /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/app_smem_unaligned.ld /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_is_eq.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_dec.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_inc.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_x2.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_listify.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_loops.h /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_macro.h /Users/wijnand/zephyrproject/zephyr/kernel/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/kernel/Kconfig /Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.device /Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.init /Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.mem_domain /Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.obj_core /Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.smp /Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.vm /Users/wijnand/zephyrproject/zephyr/lib/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/acpi/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/cpp/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/hash/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/hash/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/hash/Kconfig.hash_func /Users/wijnand/zephyrproject/zephyr/lib/hash/Kconfig.hash_map /Users/wijnand/zephyrproject/zephyr/lib/heap/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/heap/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/libc/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/libc/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/libc/common/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/libc/common/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/libc/minimal/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/libc/newlib/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/mem_blocks/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/mem_blocks/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/midi2/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/midi2/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/min_heap/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/net_buf/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/os/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/os/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/os/Kconfig.cbprintf /Users/wijnand/zephyrproject/zephyr/lib/os/cpu_load/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/os/zvfs/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/posix/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/posix/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/posix/Kconfig.profile /Users/wijnand/zephyrproject/zephyr/lib/posix/Kconfig.toolchain /Users/wijnand/zephyrproject/zephyr/lib/posix/c_lang_support_r/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/posix/c_lang_support_r/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/posix/eventfd/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.aio /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.barrier /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.device_io /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.fd_mgmt /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.file_system_r /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.fs /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.mem /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.mqueue /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.net /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.proc1 /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.procN /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.pthread /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.rwlock /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.sched /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.semaphore /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.signal /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.spinlock /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.sync_io /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.timer /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_realtime /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_single_process /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_streams /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_system_logging /Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_threads_ext /Users/wijnand/zephyrproject/zephyr/lib/posix/shell/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/posix/shell/Kconfig.env /Users/wijnand/zephyrproject/zephyr/lib/posix/shell/Kconfig.uname /Users/wijnand/zephyrproject/zephyr/lib/runtime/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/smf/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/utils/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/utils/Kconfig /Users/wijnand/zephyrproject/zephyr/lib/uuid/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/lib/uuid/Kconfig /Users/wijnand/zephyrproject/zephyr/misc/empty_file.c /Users/wijnand/zephyrproject/zephyr/misc/generated/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/misc/generated/configs.c.in /Users/wijnand/zephyrproject/zephyr/modules/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.atmel /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.chre /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.cypress /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.eos_s3 /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.esp32 /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.infineon /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.intel /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.libmetal /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.mcuboot /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.microchip /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.mspm0 /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.nuvoton /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.open-amp /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.picolibc /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.renesas /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.rust /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.simplelink /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.stm32 /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.syst /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.telink /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.vega /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.wurthelektronik /Users/wijnand/zephyrproject/zephyr/modules/Kconfig.xtensa /Users/wijnand/zephyrproject/zephyr/modules/acpica/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/acpica/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/canopennode/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/cmsis-dsp/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/cmsis-dsp/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/cmsis-nn/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/cmsis-nn/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/cmsis/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/cmsis/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/cmsis_6/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/cmsis_6/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/dhara/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/dhara/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/fatfs/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/fatfs/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_afbr/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_afbr/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_ambiq/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_ambiq/Kconfig.components /Users/wijnand/zephyrproject/zephyr/modules/hal_ambiq/Kconfig.hal /Users/wijnand/zephyrproject/zephyr/modules/hal_bouffalolab/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_bouffalolab/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_espressif/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_espressif/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_ethos_u/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_ethos_u/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_gigadevice/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_gigadevice/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_infineon/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_infineon/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/Kconfig.nrf_regtool /Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/ironside/se/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/nrfs/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/nrfs/backends/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/nrfs/dvfs/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/nrfx/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/nrfx/Kconfig.logging /Users/wijnand/zephyrproject/zephyr/modules/hal_nxp/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_nxp/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_nxp/imx/Kconfig.imx /Users/wijnand/zephyrproject/zephyr/modules/hal_nxp/mcux/Kconfig.mcux /Users/wijnand/zephyrproject/zephyr/modules/hal_nxp/s32/Kconfig.nxp_s32 /Users/wijnand/zephyrproject/zephyr/modules/hal_realtek/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_realtek/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_realtek/bee/Kconfig.bee /Users/wijnand/zephyrproject/zephyr/modules/hal_rpi_pico/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_rpi_pico/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_sifli/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_sifli/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_silabs/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_silabs/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_silabs/gecko/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_silabs/simplicity_sdk/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_silabs/wiseconnect/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_st/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_tdk/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hal_wch/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hal_wch/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/hostap/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/hostap/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/liblc3/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/liblc3/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/libsbc/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/libsbc/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/littlefs/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/littlefs/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/lora-basics-modem/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/lora-basics-modem/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/loramac-node/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/loramac-node/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/lvgl/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/lvgl/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/lvgl/Kconfig.input /Users/wijnand/zephyrproject/zephyr/modules/lvgl/Kconfig.memory /Users/wijnand/zephyrproject/zephyr/modules/lvgl/Kconfig.shell /Users/wijnand/zephyrproject/zephyr/modules/mbedtls/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig.ciphersuites /Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig.deprecated /Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig.mbedtls /Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig.psa.auto /Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig.psa.logic /Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig.tf-psa-crypto /Users/wijnand/zephyrproject/zephyr/modules/modules.cmake /Users/wijnand/zephyrproject/zephyr/modules/nanopb/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/nanopb/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/nrf_wifi/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/nrf_wifi/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/nrf_wifi/bus/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/openthread/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/openthread/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/openthread/Kconfig.features /Users/wijnand/zephyrproject/zephyr/modules/openthread/Kconfig.thread /Users/wijnand/zephyrproject/zephyr/modules/percepio/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/percepio/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/segger/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/segger/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/tflite-micro/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/thrift/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-a/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-a/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-m/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig.tfm /Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig.tfm.crypto_modules /Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig.tfm.partitions /Users/wijnand/zephyrproject/zephyr/modules/uoscore-uedhoc/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/uoscore-uedhoc/Kconfig /Users/wijnand/zephyrproject/zephyr/modules/zcbor/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/modules/zcbor/Kconfig /Users/wijnand/zephyrproject/zephyr/scripts/dts/gen_defines.py /Users/wijnand/zephyrproject/zephyr/scripts/dts/gen_driver_kconfig_dts.py /Users/wijnand/zephyrproject/zephyr/scripts/dts/gen_dts_cmake.py /Users/wijnand/zephyrproject/zephyr/scripts/dts/gen_edt.py /Users/wijnand/zephyrproject/zephyr/scripts/snippets.py /Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake /Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/ZephyrConfigVersion.cmake /Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake/zephyr_package_search.cmake /Users/wijnand/zephyrproject/zephyr/snippets/bt-ll-sw-split/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/cdc-acm-console/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/flash-128M/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/flash-16M/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/flash-2M/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/flash-32M/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/flash-4M/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/flash-64M/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/flash-8M/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/psram-2M/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/psram-4M/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/psram-8M/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/psram-reloc/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/espressif/psram-wifi/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/hci-uart-native-sim/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/nordic/nordic-flpr-xip/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/nordic/nordic-flpr/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/nordic/nordic-log-stm-dict/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/nordic/nordic-log-stm-tpiu-dict/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/nordic/nordic-log-stm/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/nordic/nordic-ppr-xip/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/nordic/nordic-ppr/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/nus-console/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/ram-console/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/ram-tracing/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/rp2-boot-mode-retention/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/rtt-console/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/rtt-tracing/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/semihost-tracing/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/serial-console/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/silabs-pti/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/slot1-partition/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/socketcan-native-sim/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/usbip-native-sim/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/video-sw-generator/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/wifi/wifi-credentials/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/wifi/wifi-enterprise/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/wifi/wifi-ip/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/wifi/wifi-ipv4/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/wifi/wifi-ipv6/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/xen_dom0/snippet.yml /Users/wijnand/zephyrproject/zephyr/snippets/xiao-serial-console/snippet.yml /Users/wijnand/zephyrproject/zephyr/soc/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/soc/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/Kconfig.v2 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32650 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32655 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32657 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32660 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32662 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32666 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32670 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32672 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32675 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32680 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32690 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max78000 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max78002 /Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/aesc/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/aesc/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/aesc/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/aesc/nitrogen/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/aesc/nitrogen/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/aesc/nitrogen/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e1c/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e1c/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e1c/Kconfig.defconfig.ae1c1f4051920ph0_rtss_he /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e1c/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e4/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e4/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e4/Kconfig.defconfig.ae402fa0e5597le0_rtss_he /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e4/Kconfig.defconfig.ae402fa0e5597le0_rtss_hp /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e4/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e6/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e6/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e6/Kconfig.defconfig.ae612fa0e5597ls0_rtss_he /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e6/Kconfig.defconfig.ae612fa0e5597ls0_rtss_hp /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e6/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e8/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e8/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e8/Kconfig.defconfig.ae822fa0e5597ls0_rtss_he /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e8/Kconfig.defconfig.ae822fa0e5597ls0_rtss_hp /Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e8/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/allwinner/sun8i_h3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/allwinner/sun8i_h3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/allwinner/sun8i_h3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ambiq/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ambiq/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ambiq/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo2x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo2x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo2x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig.apollo3_blue /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig.apollo3p_blue /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig.apollo4p /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig.apollo4p_blue /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo5x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo5x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo5x/Kconfig.defconfig.apollo510 /Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo5x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/andestech/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/andestech/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/andestech/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/andestech/ae350/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/andestech/ae350/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/andestech/ae350/Kconfig.defconfig.ae350 /Users/wijnand/zephyrproject/zephyr/soc/andestech/ae350/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/antmicro/myra/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/antmicro/myra/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/arm/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/arm/beetle/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/beetle/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/beetle/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/arm/designstart/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/designstart/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/arm/fvp_aem/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/fvp_aem/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/fvp_aem/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/arm/fvp_aemv8r/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/fvp_aemv8r/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/fvp_aemv8r/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an383 /Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an385 /Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an386 /Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an500 /Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an521 /Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/arm/mps3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/mps3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/mps3/Kconfig.defconfig.mps3_corstone300 /Users/wijnand/zephyrproject/zephyr/soc/arm/mps3/Kconfig.defconfig.mps3_corstone310 /Users/wijnand/zephyrproject/zephyr/soc/arm/mps3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/arm/mps4/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/mps4/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/mps4/Kconfig.defconfig.mps4_corstone315 /Users/wijnand/zephyrproject/zephyr/soc/arm/mps4/Kconfig.defconfig.mps4_corstone320 /Users/wijnand/zephyrproject/zephyr/soc/arm/mps4/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/arm/musca/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/musca/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/musca/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/arm/qemu_cortex_a53/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/qemu_cortex_a53/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/qemu_cortex_a53/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/arm/qemu_virt_arm64/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/qemu_virt_arm64/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/arm/qemu_virt_arm64/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/aspeed/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/aspeed/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/aspeed/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/aspeed/ast10x0/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/aspeed/ast10x0/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/aspeed/ast10x0/Kconfig.defconfig.ast1030 /Users/wijnand/zephyrproject/zephyr/soc/aspeed/ast10x0/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/common/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam3x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam3x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam3x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4e/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4e/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4e/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4l/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4l/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4l/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4s/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4s/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4s/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig.soc.same70 /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig.soc.samv71 /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/common/Kconfig.samd2x /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/common/Kconfig.samd5x /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/common/Kconfig.saml2x /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samc20/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samc20/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samc20/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samc21/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samc21/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samc21/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd20/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd20/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd20/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd21/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd21/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd21/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd51/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd51/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd51/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same51/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same51/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same51/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same53/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same53/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same53/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same54/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same54/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same54/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/saml21/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/saml21/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/saml21/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr21/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr21/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr21/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr34/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr34/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr34/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr35/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr35/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr35/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/bflb/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/bflb/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/bflb/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl60x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl60x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl60x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl61x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl61x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl61x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl70x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl70x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl70x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl70xl/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl70xl/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/bflb/bl70xl/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/blackberry/qnxhv_vm/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/blackberry/qnxhv_vm/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/blackberry/qnxhv_vm/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig.viper_bcm58402_a72 /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig.viper_bcm58402_m7 /Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/s400/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/s400/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/s420/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/s420/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/s420/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/common/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/soc/common/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/common/riscv-privileged/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/egis/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/egis/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/egis/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/egis/et171/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/egis/et171/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/egis/et171/Kconfig.defconfig.et171 /Users/wijnand/zephyrproject/zephyr/soc/egis/et171/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/elan/em32f967/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/elan/em32f967/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/elan/em32f967/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/kb106x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/kb106x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/kb106x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ene/kb1200/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ene/kb1200/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ene/kb1200/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/espressif/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig.ulp /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.amp /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.console /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.efuse /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.esptool /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.flash /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.lcd_cam /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.spiram /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32/Kconfig.mac /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c2/Kconfig.mac /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c3/Kconfig.mac /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c5/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c5/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c5/Kconfig.mac /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c5/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c6/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c6/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c6/Kconfig.mac /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c6/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32h2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32h2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32h2/Kconfig.mac /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32h2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s2/Kconfig.mac /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.mac /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/espressif/soc.yml /Users/wijnand/zephyrproject/zephyr/soc/focaltech/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/focaltech/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/focaltech/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/focaltech/ft9001/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/focaltech/ft9001/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/focaltech/ft9001/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gaisler/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gaisler/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32a50x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32a50x/Kconfig.defconfig.gd32a503 /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32a50x/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32a50x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e10x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e10x/Kconfig.defconfig.gd32e103 /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e10x/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e10x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e50x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e50x/Kconfig.defconfig.gd32e507 /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e50x/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e50x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f3x0/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.defconfig.gd32f350 /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f403/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f403/Kconfig.defconfig.gd32f403 /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f403/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f403/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f405 /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f407 /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f450 /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f470 /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32l23x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32l23x/Kconfig.defconfig.gd32l233 /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32l23x/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32l23x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32vf103/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32vf103/Kconfig.defconfig.gd32vf103 /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32vf103/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32vf103/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_01/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_01/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_02/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_02/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_03/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_03/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_04/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_04/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_legacy/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_legacy/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/cyw20829/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/cyw20829/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/cyw20829/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/psc3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/psc3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/psc3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/xmc7200/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/xmc7200/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/xmc7200/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig.xmc4500 /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig.xmc4700 /Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/pse84/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/pse84/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/pse84/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/psoc4100smax/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/psoc4100smax/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/psoc4100smax/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/psoc4100tp/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/psoc4100tp/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/psoc4100tp/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/atom/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/atom/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/atom/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace15_mtpm /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace20_lnl /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace30 /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace40 /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/cavs/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/cavs/Kconfig.defconfig.cavs_v25 /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/cavs/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/cavs/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/intel_ish5/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/intel_ish5/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/intel_ish5/pm/Kconfig.pm /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/niosv/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/niosv/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/niosv/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.defconfig.agilex /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.defconfig.agilex5 /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.defconfig.cyclonev /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/lakemont/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/lakemont/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/lakemont/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/intel/wildcat_lake/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/wildcat_lake/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/intel/wildcat_lake/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it51xxx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it51xxx/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it51xxx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202bx /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202cx /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202dx /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302bx /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302cx /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302dx /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82000bw /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82002aw /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82002bw /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82202ax /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82202bw /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82302ax /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82302bw /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8186/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8188/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8195/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8196/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8365/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec15xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec15xx/Kconfig.defconfig.mec1501hsz /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec15xx/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec15xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec165xb/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec165xb/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec165xb/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.mec172xnlj /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.mec172xnsz /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec174x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec174x/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec174x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec175x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec175x/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec175x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/miv/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/miv/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/miv/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/polarfire/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/polarfire/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/polarfire/Kconfig.defconfig.polarfire_u54 /Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/polarfire/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/pic32cm_jh00/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/pic32cm_jh01/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/pic32cm_pl10/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/pic32cx_sg41/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/pic32cx_sg60/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/pic32cx_sg61/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/pic32cz_ca80/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/pic32cz_ca90/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/pic32cz_ca91/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/pic64gx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/pic64gx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/pic64gx/Kconfig.defconfig.pic64gx1000_u54 /Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/pic64gx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/atsamd51/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/atsame51/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/atsame53/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/atsame54/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/sama7d6/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/sama7d6/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/sama7g5/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/sama7g5/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/native/inf_clock/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/native/inf_clock/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/neorv32/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/neorv32/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/neorv32/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nordic/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nordic/common/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/common/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/common/Kconfig.peripherals /Users/wijnand/zephyrproject/zephyr/soc/nordic/common/Kconfig.tfm /Users/wijnand/zephyrproject/zephyr/soc/nordic/common/uicr/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/common/uicr/Kconfig.gen_uicr /Users/wijnand/zephyrproject/zephyr/soc/nordic/common/vpr/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/common/vpr/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf51/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf51/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf51/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52805_CAAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52810_QFAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52811_QFAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52820_QDAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_CIAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_QFAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_QFAB /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52833_QDAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52833_QIAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52840_QFAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52840_QIAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.defconfig.nrf5340_CPUAPP_QKAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.defconfig.nrf5340_CPUNET_QKAA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.sync_rtc /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.sync_rtc_ipm /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuapp /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuflpr /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuppr /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpurad /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/bicr/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l_05_10_15_cpuapp /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l_05_10_15_cpuflpr /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54lm20_a_b_cpuapp /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54lm20_a_b_cpuflpr /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf71/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf71/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf71/Kconfig.defconfig.nrf7120_enga_cpuapp /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf71/Kconfig.defconfig.nrf7120_enga_cpuflpr /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf71/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9131_LACA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9151_LACA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9160_SICA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9161_LACA /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpuapp /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpuppr /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpurad /Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/npcm4/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/npcm4/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/npcm4/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npck3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npck3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npck3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx4/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx4/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx4/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx7/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx7/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx7/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx9/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx9/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx9/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.defconfig.m2l31xxx /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m333x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m333x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m333x/Kconfig.defconfig.m333xxx /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m333x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m335x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m335x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m335x/Kconfig.defconfig.m335xxx /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m335x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m46x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m46x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m46x/Kconfig.defconfig.m467 /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m46x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m55m1x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m55m1x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m55m1x/Kconfig.defconfig.m55m1xxx /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m55m1x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/m48x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/m48x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/m48x/Kconfig.defconfig.m487 /Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/m48x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/common/Kconfig.flexspi_xip /Users/wijnand/zephyrproject/zephyr/soc/nxp/common/Kconfig.nbu /Users/wijnand/zephyrproject/zephyr/soc/nxp/common/Kconfig.rom_loader /Users/wijnand/zephyrproject/zephyr/soc/nxp/common/Kconfig.xspi_xip /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx6sx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx6sx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx6sx/Kconfig.defconfig.mcimx6x_m4 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx6sx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx7d/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx7d/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx7d/Kconfig.defconfig.mcimx7d_m4 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx7d/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_a53 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_adsp /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_m7 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mm6_a53 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mm6_m4 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mn6_a53 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mq6_m4 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8ulp/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8ulp/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8ulp/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx91/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx91/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx91/Kconfig.defconfig.mimx91 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx91/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig.mimx93.a55 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig.mimx93.m33 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig.mimx94398.a55 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig.mimx94398.m33 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig.mimx94398.m7_0 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig.mimx94398.m7_1 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig.mimx95.a55 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig.mimx95.m7 /Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/cm33/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/cm33/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/hifi1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/hifi1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/hifi4/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/hifi4/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k2x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k2x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k2x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k32lx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k32lx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k32lx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k6x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k6x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k6x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k8x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k8x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k8x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/ke1xf/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/ke1xf/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/ke1xf/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/ke1xz/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/ke1xz/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/ke1xz/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kl2x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kl2x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kl2x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kv5x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kv5x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kv5x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kwx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kwx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kwx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/ls1046a/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/ls1046a/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/ls1046a/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc51u68/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc51u68/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc51u68/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxa/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxa/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxa/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxc/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxc/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxc/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe24x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe24x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe24x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe31x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe31x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe31x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxl/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxl/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxl/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxn/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxn/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxn/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw2xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw2xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw2xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw7xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw7xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw7xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/rw/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/rw/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/rw/Kconfig.defconfig.wifi /Users/wijnand/zephyrproject/zephyr/soc/nxp/rw/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k5/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k5/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k5/Kconfig.defconfig.s32k566.m7 /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k5/Kconfig.defconfig.s32k566.r52 /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k5/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32ze/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32ze/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32ze/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/cv32a6/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/cv32a6/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/cv64a6/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/cv64a6/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/qemu/malta/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/qemu/malta/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/qemu/malta/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/qemu/or1k/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/qemu/or1k/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/qemu/or1k/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32e/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32e/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv64/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv64/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/common/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/common/Kconfig.binary_info /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.defconfig.rp2040 /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebad/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebad/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebad/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebadplus/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebadplus/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebadplus/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebag2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebag2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebag2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/rtl8752h/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/rtl8752h/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/rtl8752h/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/rtl87x2g/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/rtl87x2g/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/rtl87x2g/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/rts5912/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/rts5912/Kconfig.defconfig.rts5912 /Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/rts5912/Kconfig.defconfig.series /Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/rts5912/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/rts5817/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/rts5817/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/rts5817/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra0e1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra0e1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra0e1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra2a1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra2a1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra2a1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra2l1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra2l1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra2l1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4c1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4c1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4c1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4e1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4e1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4e1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4e2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4e2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4e2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4l1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4l1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4l1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4t1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4t1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4t1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4w1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4w1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4w1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6e1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6e1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6e1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6e2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6e2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6e2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m4/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m4/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m4/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m5/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m5/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m5/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8d1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8d1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8d1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8d2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8d2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8d2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8e1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8e1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8e1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8m1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8m1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8m1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8m2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8m2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8m2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8p1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8p1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8p1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8t1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8t1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8t1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8t2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8t2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8t2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.defconfig.r8a779f0 /Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.defconfig.r8a779g0 /Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx130/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx130/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx130/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx140/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx140/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx140/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx14t/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx14t/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx14t/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx261/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx261/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx261/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx26t/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx26t/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx26t/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx62n/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx62n/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx62n/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rza2m/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rza2m/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rza2m/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rza3ul/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rza3ul/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rza3ul/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg2l/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg2l/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg2l/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg2ul/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg2ul/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg2ul/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg3e/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg3e/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg3e/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg3s/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg3s/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg3s/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzn2h/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzn2h/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzn2h/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzn2l/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzn2l/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzn2l/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2h/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2h/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2h/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2l/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2l/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2l/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2m/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2m/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2m/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig.defconfig.rzv2h_cm33 /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig.defconfig.rzv2h_cr8 /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2l/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2l/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2l/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2n/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2n/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2n/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/da1469x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/da1469x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/da1469x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/rockchip/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk3399/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk3399/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk3399/Kconfig.defconfig.rk3399 /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk3399/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3568/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3568/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3568/Kconfig.defconfig.rk3568 /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3568/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588/Kconfig.defconfig.rk3588 /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588s/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588s/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588s/Kconfig.defconfig.rk3588s /Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588s/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/sensry/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/sensry/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/sensry/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/sensry/ganymed/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/sensry/ganymed/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/sensry/ganymed/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/sensry/ganymed/sy1xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/sensry/ganymed/sy1xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/sensry/ganymed/sy1xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/sf32lb52x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/sf32lb52x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/sf32lb52x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32tg/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32tg/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32tg/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg21/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg21/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg21/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg22/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg22/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg22/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg23/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg23/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg23/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg24/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg24/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg24/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg26/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg26/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg26/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg27/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg27/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg27/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg28/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg28/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg28/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg29/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg29/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg29/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_sim3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_sim3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_sim3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/siwg917/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/siwg917/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/siwg917/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em11d /Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em4 /Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em5d /Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em6 /Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em7d /Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em7d_esp /Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em9d /Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig.em11d /Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig.em7d /Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig.em9d /Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em11d /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em7d_v22 /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs5x /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs5x_smp /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs6x /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs6x_smp /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs_mpuv6 /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs_smp /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/rhx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/rhx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/rhx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/common/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32c5x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32c5x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32c5x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f2x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f2x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f2x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f302xc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f303x(b-c) /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f303xe /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f373xc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f765xx /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f767xx /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f769xx /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g0b1xx /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h745xx /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h747xx /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h755xx /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h757xx /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l5x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l5x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l5x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp13x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp13x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp13x/Kconfig.defconfig.stm32mp13_a7 /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp13x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp1x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp1x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp1x/Kconfig.defconfig.stm32mp15_m4 /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp1x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig.defconfig.stm32mp215fxx /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig.defconfig.stm32mp257fxx /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32n6x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32n6x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32n6x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32n6x/npu/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u0x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u0x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u3x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u3x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u3x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wb0x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wb0x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wb0x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig.stm32wba65xx /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wbx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wbx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wbx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/synaptics/sr100/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/synaptics/sr100/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/synaptics/sr100/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/tlsr951x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/tlsr951x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/tlsr951x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/k3/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/k3/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/k3/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/k3/am6x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/k3/am6x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/k3/am6x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/mspm0g/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/mspm0g/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/mspm0g/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/mspm0l/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/mspm0l/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/mspm0l/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc23x0/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc23x0/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc23x0/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig.cc3220sf /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig.cc3235sf /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.defconfig.msp432p401r /Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig.defconfig.ch32v006 /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig.soc.ch32v006 /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig.defconfig.ch32v003 /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig.soc.ch32v003 /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig.defconfig.ch32v203 /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig.soc.ch32v203 /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig.defconfig.ch32v208 /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig.soc.ch32v208 /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.defconfig.ch32v303 /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.defconfig.ch32v307 /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.soc.ch32v303 /Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.soc.ch32v307 /Users/wijnand/zephyrproject/zephyr/soc/xen/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/xen/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/xen/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig.soc /Users/wijnand/zephyrproject/zephyr/subsys/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bindesc/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bindesc/Kconfig.build_time /Users/wijnand/zephyrproject/zephyr/subsys/bindesc/Kconfig.host_info /Users/wijnand/zephyrproject/zephyr/subsys/bindesc/Kconfig.version /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/Kconfig.adv /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/Kconfig.logging /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.aics /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.ascs /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.bap /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.cap /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.ccp /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.csip /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.gmap /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.has /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.mcs /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.mctl /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.micp /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.mpl /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.pacs /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.pbp /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.tbs /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.tmap /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.vcp /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.vocs /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/common/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/controller/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/controller/Kconfig.df /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/controller/Kconfig.dtm /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/controller/Kconfig.ll_sw_split /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/controller/coex/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/crypto/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/host/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/host/Kconfig.gatt /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/host/Kconfig.l2cap /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/host/classic/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/lib/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/mesh/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/mesh/shell/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.ans /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.cts /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.dis /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.ets /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.gap_svc /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.hrs /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.tps /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/bas/Kconfig.bas /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/ias/Kconfig.ias /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/nus/Kconfig.nus /Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/ots/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/canbus/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/canbus/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/canbus/Kconfig.canopen /Users/wijnand/zephyrproject/zephyr/subsys/canbus/isotp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/console/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/cpu_freq/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/crc/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/dap/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/debug/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/debug/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/debug/coredump/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/debug/gdbstub/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/debug/symtab/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/debug/thread_analyzer/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/demand_paging/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/demand_paging/backing_store/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/demand_paging/eviction/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/dfu/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/disk/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/dsp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/emul/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/emul/espi/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/fb/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/fb/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/fs/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/fs/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/fs/Kconfig.fatfs /Users/wijnand/zephyrproject/zephyr/subsys/fs/Kconfig.littlefs /Users/wijnand/zephyrproject/zephyr/subsys/fs/ext2/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/fs/fcb/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/fs/fuse_client/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/fs/virtiofs/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/gnss/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/gnss/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/gnss/rtk/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/gnss/rtk/protocol/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/gnss/rtk/serial/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/input/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/instrumentation/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/instrumentation/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/ipc/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/ipc/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig.icbmsg /Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig.icmsg_me /Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig.intel_adsp /Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig.rpmsg /Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/lib/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/lib/Kconfig.icmsg /Users/wijnand/zephyrproject/zephyr/subsys/ipc/open-amp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/ipc/rpmsg_service/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/jwt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/kvss/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/kvss/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/kvss/nvs/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/kvss/zms/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/llext/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/logging/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.filtering /Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.formatting /Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.links /Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.misc /Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.mode /Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.processing /Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config /Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config_inherit /Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_format_config /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.adsp /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.adsp_mtrace /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.ble /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.efi_console /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.fs /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.mqtt /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.multidomain /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.native_posix /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.net /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.rtt /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.semihost /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.spinel /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.swo /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.uart /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.ws /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.xtensa_sim /Users/wijnand/zephyrproject/zephyr/subsys/logging/frontends/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/logging/frontends/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/lorawan/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/lorawan/emul/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/lorawan/loramac-node/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/lorawan/nvm/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/lorawan/services/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mem_mgmt/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/mem_mgmt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/ec_host_cmd/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/ec_host_cmd/Kconfig.logging /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/ec_host_cmd/backends/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/hawkbit/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/enum_mgmt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/fs_mgmt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/img_mgmt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/img_mgmt_client/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/os_mgmt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/os_mgmt_client/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/settings_mgmt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/shell_mgmt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/stat_mgmt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/zephyr_basic/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/mgmt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/smp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/smp_client/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.bluetooth /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.common /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.dummy /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.lorawan /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.raw_dummy /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.raw_uart /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.shell /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.uart /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.udp /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/osdp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/osdp/Kconfig.cp /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/osdp/Kconfig.pd /Users/wijnand/zephyrproject/zephyr/subsys/mgmt/updatehub/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/modbus/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/modbus/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/modem/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/modem/backends/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/Kconfig.hostname /Users/wijnand/zephyrproject/zephyr/subsys/net/Kconfig.template.log_config.net /Users/wijnand/zephyrproject/zephyr/subsys/net/conn_mgr/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig.debug /Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig.ipv4 /Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig.ipv6 /Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig.mgmt /Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig.stack /Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig.stats /Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig.tcp /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/canbus/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/dummy/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/dummy/any/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ethernet/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ethernet/bridge/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ethernet/dsa/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ethernet/gptp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ethernet/lldp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ieee802154/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ieee802154/Kconfig.radio /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/openthread/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ppp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/virtual/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/virtual/ipip/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/l2/wifi/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/capture/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/coap/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/config/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/dhcpv4/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/dhcpv6/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/dns/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/ftp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/http/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/latmon/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/lwm2m/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/lwm2m/Kconfig.ipso /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/lwm2m/Kconfig.ucifi /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/midi2/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/mqtt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/mqtt_sn/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/ocpp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/prometheus/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/ptp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/shell/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/sntp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/sockets/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/socks/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/tftp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/tls_credentials/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/tls_credentials/Kconfig.shell /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/trickle/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/websocket/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/wifi_credentials/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/wireguard/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/lib/zperf/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/net/pkt_filter/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/nvmem/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/pm/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/pm/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/pm/policy/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/pm/policy/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/pmci/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/pmci/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/pmci/mctp/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/pmci/mctp/Kconfig.usb /Users/wijnand/zephyrproject/zephyr/subsys/portability/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/portability/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/portability/cmsis_rtos_v1/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/portability/cmsis_rtos_v2/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/profiling/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/profiling/perf/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/profiling/perf/backends/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/random/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/random/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/retention/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/retention/Kconfig.blinfo /Users/wijnand/zephyrproject/zephyr/subsys/rtio/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/rtio/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/rtio/Kconfig.workq /Users/wijnand/zephyrproject/zephyr/subsys/sd/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/sd/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/secure_storage/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/secure_storage/Kconfig.its_store /Users/wijnand/zephyrproject/zephyr/subsys/secure_storage/Kconfig.its_transform /Users/wijnand/zephyrproject/zephyr/subsys/sensing/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/sensing/sensor/hinge_angle/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/sensing/sensor/phy_3d_sensor/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/settings/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/shell/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/shell/Kconfig.template.shell_log_queue_size /Users/wijnand/zephyrproject/zephyr/subsys/shell/Kconfig.template.shell_log_queue_timeout /Users/wijnand/zephyrproject/zephyr/subsys/shell/backends/Kconfig.backends /Users/wijnand/zephyrproject/zephyr/subsys/shell/modules/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/shell/modules/kernel_service/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/shell/modules/kernel_service/thread/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/sip_svc/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/stats/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/stats/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/storage/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/storage/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/storage/flash_map/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/storage/stream/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/task_wdt/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/task_wdt/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/testsuite/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/testsuite/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/testsuite/Kconfig.coverage /Users/wijnand/zephyrproject/zephyr/subsys/testsuite/Kconfig.defconfig /Users/wijnand/zephyrproject/zephyr/subsys/testsuite/ztest/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/testsuite/ztest/benchmark/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/timing/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/tracing/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/tracing/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/tracing/sysview/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/usb/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/usb/common/CMakeLists.txt /Users/wijnand/zephyrproject/zephyr/subsys/usb/common/Kconfig.template.instances_count /Users/wijnand/zephyrproject/zephyr/subsys/usb/device/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/Kconfig.bt /Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/Kconfig.cdc /Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/Kconfig.msc /Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/Kconfig.template.composite_device_number /Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/audio/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/dfu/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/hid/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/netusb/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/app/Kconfig.cdc_acm_serial /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.bt /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.cdc_acm /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.cdc_ecm /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.cdc_ncm /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.dfu /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.hid /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.loopback /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.midi2 /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.msc /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.uac2 /Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.uvc /Users/wijnand/zephyrproject/zephyr/subsys/usb/host/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/usb/host/Kconfig.usbip /Users/wijnand/zephyrproject/zephyr/subsys/usb/host/class/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/usb/host/class/Kconfig.uvc /Users/wijnand/zephyrproject/zephyr/subsys/usb/usb_c/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/zbus/Kconfig /Users/wijnand/zephyrproject/zephyr/subsys/zbus/proxy_agent/Kconfig /Volumes/External/Work/radio/loramodem/app/CMakeLists.txt /Volumes/External/Work/radio/loramodem/app/Kconfig /Volumes/External/Work/radio/loramodem/app/prj.conf /Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay /opt/homebrew/share/cmake/Modules/CMakeASMCompiler.cmake.in /opt/homebrew/share/cmake/Modules/CMakeASMInformation.cmake /opt/homebrew/share/cmake/Modules/CMakeCCompiler.cmake.in /opt/homebrew/share/cmake/Modules/CMakeCInformation.cmake /opt/homebrew/share/cmake/Modules/CMakeCXXCompiler.cmake.in /opt/homebrew/share/cmake/Modules/CMakeCXXInformation.cmake /opt/homebrew/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake /opt/homebrew/share/cmake/Modules/CMakeCommonLanguageInclude.cmake /opt/homebrew/share/cmake/Modules/CMakeCompilerIdDetection.cmake /opt/homebrew/share/cmake/Modules/CMakeDetermineASMCompiler.cmake /opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake /opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake /opt/homebrew/share/cmake/Modules/CMakeDetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake /opt/homebrew/share/cmake/Modules/CMakeDetermineSystem.cmake /opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake /opt/homebrew/share/cmake/Modules/CMakeGenericSystem.cmake /opt/homebrew/share/cmake/Modules/CMakeInitializeConfigs.cmake /opt/homebrew/share/cmake/Modules/CMakeLanguageInformation.cmake /opt/homebrew/share/cmake/Modules/CMakeNinjaFindMake.cmake /opt/homebrew/share/cmake/Modules/CMakeSystem.cmake.in /opt/homebrew/share/cmake/Modules/CMakeSystemSpecificInformation.cmake /opt/homebrew/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake /opt/homebrew/share/cmake/Modules/CMakeTestASMCompiler.cmake /opt/homebrew/share/cmake/Modules/CMakeTestCCompiler.cmake /opt/homebrew/share/cmake/Modules/CMakeTestCXXCompiler.cmake /opt/homebrew/share/cmake/Modules/CheckCCompilerFlag.cmake /opt/homebrew/share/cmake/Modules/CheckCSourceCompiles.cmake /opt/homebrew/share/cmake/Modules/CheckCXXCompilerFlag.cmake /opt/homebrew/share/cmake/Modules/CheckCXXSourceCompiles.cmake /opt/homebrew/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake /opt/homebrew/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /opt/homebrew/share/cmake/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Diab-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/GNU-ASM.cmake /opt/homebrew/share/cmake/Modules/Compiler/GNU-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/GNU-C.cmake /opt/homebrew/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/GNU-CXX.cmake /opt/homebrew/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake /opt/homebrew/share/cmake/Modules/Compiler/GNU.cmake /opt/homebrew/share/cmake/Modules/Compiler/HP-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /opt/homebrew/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /opt/homebrew/share/cmake/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/LCC-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Renesas-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/XL-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/zOS-C-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /opt/homebrew/share/cmake/Modules/ExternalProject.cmake /opt/homebrew/share/cmake/Modules/ExternalProject/shared_internal_commands.cmake /opt/homebrew/share/cmake/Modules/FindPackageHandleStandardArgs.cmake /opt/homebrew/share/cmake/Modules/FindPackageMessage.cmake /opt/homebrew/share/cmake/Modules/FindPython/Support.cmake /opt/homebrew/share/cmake/Modules/FindPython3.cmake /opt/homebrew/share/cmake/Modules/Internal/CMakeASMLinkerInformation.cmake /opt/homebrew/share/cmake/Modules/Internal/CMakeCLinkerInformation.cmake /opt/homebrew/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake /opt/homebrew/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake /opt/homebrew/share/cmake/Modules/Internal/CMakeInspectASMLinker.cmake /opt/homebrew/share/cmake/Modules/Internal/CMakeInspectCLinker.cmake /opt/homebrew/share/cmake/Modules/Internal/CMakeInspectCXXLinker.cmake /opt/homebrew/share/cmake/Modules/Internal/CheckCompilerFlag.cmake /opt/homebrew/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake /opt/homebrew/share/cmake/Modules/Internal/CheckSourceCompiles.cmake /opt/homebrew/share/cmake/Modules/Platform/Generic.cmake CMakeCache.txt CMakeFiles/4.3.0/CMakeASMCompiler.cmake CMakeFiles/4.3.0/CMakeCCompiler.cmake CMakeFiles/4.3.0/CMakeCXXCompiler.cmake CMakeFiles/4.3.0/CMakeSystem.cmake Kconfig/Kconfig.dts Kconfig/Kconfig.modules Kconfig/Kconfig.shield Kconfig/Kconfig.shield.defconfig Kconfig/arch/Kconfig Kconfig/boards/Kconfig Kconfig/boards/Kconfig.defconfig Kconfig/boards/Kconfig.xiao_esp32s3 Kconfig/kconfig_module_dirs.cmake Kconfig/soc/Kconfig Kconfig/soc/Kconfig.defconfig Kconfig/soc/Kconfig.soc zephyr/.config zephyr/edt.pickle.cmake zephyr/include/generated/zephyr/autoconf.h zephyr/misc/generated/syscalls_subdirs.txt zephyr/snippets_generated.cmake: phony + + +############################################# +# Clean additional files. + +build CMakeFiles/clean.additional: CLEAN_ADDITIONAL + + +############################################# +# Clean all the built files. + +build clean: CLEAN CMakeFiles/clean.additional + + +############################################# +# Print all primary targets available. + +build help: HELP + + +############################################# +# Make the all target the default. + +default all diff --git a/build/build_info.yml b/build/build_info.yml new file mode 100644 index 0000000..2677420 --- /dev/null +++ b/build/build_info.yml @@ -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' diff --git a/build/build_info.yml.bak b/build/build_info.yml.bak new file mode 100644 index 0000000..c4c81f7 --- /dev/null +++ b/build/build_info.yml.bak @@ -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 diff --git a/build/cmake_install.cmake b/build/cmake_install.cmake new file mode 100644 index 0000000..4876b31 --- /dev/null +++ b/build/cmake_install.cmake @@ -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() diff --git a/build/compile_commands.json b/build/compile_commands.json new file mode 100644 index 0000000..fd6f8e3 --- /dev/null +++ b/build/compile_commands.json @@ -0,0 +1,1388 @@ +[ +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/app/src -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o CMakeFiles/app.dir/src/main.c.obj -c /Volumes/External/Work/radio/loramodem/app/src/main.c", + "file": "/Volumes/External/Work/radio/loramodem/app/src/main.c", + "output": "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/app.dir/src/main.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/app/src -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o CMakeFiles/app.dir/src/kiss.c.obj -c /Volumes/External/Work/radio/loramodem/app/src/kiss.c", + "file": "/Volumes/External/Work/radio/loramodem/app/src/kiss.c", + "output": "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/app.dir/src/kiss.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/app/src -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o CMakeFiles/app.dir/src/lora_modem.c.obj -c /Volumes/External/Work/radio/loramodem/app/src/lora_modem.c", + "file": "/Volumes/External/Work/radio/loramodem/app/src/lora_modem.c", + "output": "/Volumes/External/Work/radio/loramodem/build/CMakeFiles/app.dir/src/lora_modem.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/libc/validate_libc.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/libc/validate_libc.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/libc/validate_libc.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/lib/libc/validate_libc.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/heap/heap.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/heap/heap.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/os/cbprintf_packaged.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/os/cbprintf_packaged.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/os/clock.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/os/clock.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/os/clock.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/lib/os/clock.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/os/printk.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/os/printk.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/os/sem.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/os/sem.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/os/thread_entry.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/os/thread_entry.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/os/cbprintf_complete.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/os/cbprintf_complete.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/os/assert.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/os/assert.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/os/mpsc_pbuf.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/os/mpsc_pbuf.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/os/mpsc_pbuf.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/lib/os/mpsc_pbuf.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/utils/dec.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/utils/dec.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/utils/hex.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/utils/hex.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/utils/rb.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/utils/rb.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/set.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/utils/set.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/utils/set.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/set.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/utils/timeutil.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/utils/timeutil.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/utils/bitarray.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/utils/bitarray.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/bitmask.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/utils/bitmask.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/utils/bitmask.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/bitmask.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt/getopt.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/utils/getopt/getopt.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/utils/getopt/getopt.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt/getopt.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt/getopt_common.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/utils/getopt/getopt_common.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/utils/getopt/getopt_common.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt/getopt_common.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/utils/ring_buffer.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/utils/ring_buffer.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj -c /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/configs.c", + "file": "/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/configs.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/soc.c.obj -c /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/soc.c", + "file": "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/soc.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/soc.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/esp32s3-mp.c.obj -c /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/esp32s3-mp.c", + "file": "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/esp32s3-mp.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/esp32s3-mp.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/soc/espressif/common/loader.c.obj -c /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/loader.c", + "file": "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/loader.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/soc/espressif/common/loader.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/hw_init.c.obj -c /Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/hw_init.c", + "file": "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/hw_init.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/hw_init.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_core.c.obj -c /Users/wijnand/zephyrproject/zephyr/subsys/logging/log_core.c", + "file": "/Users/wijnand/zephyrproject/zephyr/subsys/logging/log_core.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_core.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_mgmt.c.obj -c /Users/wijnand/zephyrproject/zephyr/subsys/logging/log_mgmt.c", + "file": "/Users/wijnand/zephyrproject/zephyr/subsys/logging/log_mgmt.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_mgmt.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_cache.c.obj -c /Users/wijnand/zephyrproject/zephyr/subsys/logging/log_cache.c", + "file": "/Users/wijnand/zephyrproject/zephyr/subsys/logging/log_cache.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_cache.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_msg.c.obj -c /Users/wijnand/zephyrproject/zephyr/subsys/logging/log_msg.c", + "file": "/Users/wijnand/zephyrproject/zephyr/subsys/logging/log_msg.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_msg.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_output.c.obj -c /Users/wijnand/zephyrproject/zephyr/subsys/logging/log_output.c", + "file": "/Users/wijnand/zephyrproject/zephyr/subsys/logging/log_output.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_output.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/subsys/logging/backends/log_backend_uart.c.obj -c /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/log_backend_uart.c", + "file": "/Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/log_backend_uart.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/backends/log_backend_uart.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj -c /Users/wijnand/zephyrproject/zephyr/subsys/tracing/tracing_none.c", + "file": "/Users/wijnand/zephyrproject/zephyr/subsys/tracing/tracing_none.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_api.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_api.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_api.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_api.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_fields.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_fields.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_fields.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_fields.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_utility.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_utility.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_utility.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_utility.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_table.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_table.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_table.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_table.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_fields.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_fields.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_fields.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_fields.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_utility.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_utility.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_utility.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_utility.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o 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 -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c", + "output": "/Volumes/External/Work/radio/loramodem/build/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" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/flash_encrypt.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/flash_encrypt.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/flash_encrypt.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/flash_encrypt.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_gpio_reserve.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_gpio_reserve.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_gpio_reserve.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_gpio_reserve.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_encrypt_hal_iram.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_encrypt_hal_iram.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_encrypt_hal_iram.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_encrypt_hal_iram.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_iram.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_iram.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_iram.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_iram.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_gpspi.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_gpspi.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_gpspi.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_gpspi.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp32s3/spi_flash_oct_flash_init.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp32s3/spi_flash_oct_flash_init.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp32s3/spi_flash_oct_flash_init.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp32s3/spi_flash_oct_flash_init.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_api.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_api.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_api.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_api.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_spi_init.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_spi_init.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_spi_init.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_spi_init.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_mmap.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_mmap.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_mmap.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_mmap.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_ops.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_ops.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_ops.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_ops.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/memspi_host_driver.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/memspi_host_driver.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/memspi_host_driver.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/memspi_host_driver.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_boya.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_boya.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_boya.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_boya.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_drivers.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_drivers.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_drivers.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_drivers.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_gd.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_gd.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_gd.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_gd.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_generic.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_generic.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_generic.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_generic.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_issi.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_issi.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_issi.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_issi.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic_opi.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic_opi.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic_opi.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic_opi.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_th.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_th.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_th.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_th.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_winbond.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_winbond.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_winbond.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_winbond.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_hpm_enable.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_hpm_enable.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_hpm_enable.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_hpm_enable.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_noos.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_noos.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_noos.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_noos.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_app.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_app.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_app.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_app.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_wrap.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_wrap.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_wrap.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_wrap.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/cache_utils.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/cache_utils.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/cache_utils.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/cache_utils.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal_iram.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal_iram.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal_iram.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal_iram.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal_iram.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal_iram.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal_iram.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal_iram.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/lldesc.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/lldesc.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/lldesc.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/lldesc.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_top.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_top.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_top.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_top.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_ahb_v1.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_ahb_v1.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_ahb_v1.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_ahb_v1.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/bootloader_clock_init.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/bootloader_clock_init.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/bootloader_clock_init.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/bootloader_clock_init.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_security/mpu_hal.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_security/mpu_hal.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_security/mpu_hal.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_security/mpu_hal.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/console_init.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/console_init.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/console_init.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/console_init.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/soc_init.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/soc_init.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/soc_init.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/soc_init.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_driver_gpio/src/rtc_io.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_driver_gpio/src/rtc_io.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_driver_gpio/src/rtc_io.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_driver_gpio/src/rtc_io.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/esp32s3/temperature_sensor_periph.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/esp32s3/temperature_sensor_periph.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/esp32s3/temperature_sensor_periph.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/esp32s3/temperature_sensor_periph.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/temperature_sensor_hal.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/temperature_sensor_hal.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/temperature_sensor_hal.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/temperature_sensor_hal.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_clock/esp32s3/clk_tree_hal.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_clock/esp32s3/clk_tree_hal.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_clock/esp32s3/clk_tree_hal.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_clock/esp32s3/clk_tree_hal.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/esp32s3/rtc_io_periph.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/esp32s3/rtc_io_periph.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/esp32s3/rtc_io_periph.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/esp32s3/rtc_io_periph.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/rtc_io_hal.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/rtc_io_hal.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/rtc_io_hal.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/rtc_io_hal.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_systimer/systimer_hal.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_systimer/systimer_hal.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_systimer/systimer_hal.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_systimer/systimer_hal.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/wdt_hal_iram.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/wdt_hal_iram.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/wdt_hal_iram.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/wdt_hal_iram.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/xt_wdt_hal.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/xt_wdt_hal.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/xt_wdt_hal.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/xt_wdt_hal.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/adc_share_hw_ctrl.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/adc_share_hw_ctrl.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/adc_share_hw_ctrl.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/adc_share_hw_ctrl.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/clk_ctrl_os.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/clk_ctrl_os.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/clk_ctrl_os.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/clk_ctrl_os.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/cpu.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/cpu.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/cpu.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/cpu.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_clk.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_clk.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_clk.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_clk.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/hw_random.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/hw_random.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/hw_random.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/hw_random.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mac_addr.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mac_addr.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mac_addr.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mac_addr.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mspi/mspi_timing_tuning/mspi_timing_tuning.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mspi/mspi_timing_tuning/mspi_timing_tuning.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mspi/mspi_timing_tuning/mspi_timing_tuning.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mspi/mspi_timing_tuning/mspi_timing_tuning.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o 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 -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3/mspi_timing_config.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3/mspi_timing_config.c", + "output": "/Volumes/External/Work/radio/loramodem/build/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" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/periph_ctrl.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/periph_ctrl.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/periph_ctrl.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/periph_ctrl.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/cpu_region_protect.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/cpu_region_protect.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/cpu_region_protect.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/cpu_region_protect.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_clk_tree.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_clk_tree.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_clk_tree.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_clk_tree.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_cpu_intr.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_cpu_intr.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_cpu_intr.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_cpu_intr.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/io_mux.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/io_mux.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/io_mux.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/io_mux.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk_init.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk_init.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk_init.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk_init.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_init.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_init.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_init.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_init.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_sleep.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_sleep.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_sleep.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_sleep.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_time.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_time.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_time.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_time.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/sar_periph_ctrl.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/sar_periph_ctrl.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/sar_periph_ctrl.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/sar_periph_ctrl.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/systimer.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/systimer.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/systimer.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/systimer.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp_clk_tree_common.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp_clk_tree_common.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp_clk_tree_common.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp_clk_tree_common.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/regi2c_ctrl.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/regi2c_ctrl.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/regi2c_ctrl.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/regi2c_ctrl.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/rtc_module.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/rtc_module.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/rtc_module.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/rtc_module.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sar_tsens_ctrl.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sar_tsens_ctrl.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sar_tsens_ctrl.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sar_tsens_ctrl.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sleep_modes.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sleep_modes.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sleep_modes.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sleep_modes.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_msync.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_msync.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_msync.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_msync.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_utils.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_utils.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_utils.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_utils.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_mmu_map.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_mmu_map.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_mmu_map.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_mmu_map.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/port/esp32s3/ext_mem_layout.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/port/esp32s3/ext_mem_layout.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/port/esp32s3/ext_mem_layout.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/port/esp32s3/ext_mem_layout.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -xassembler-with-cpp -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_crc.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_crc.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_crc.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_crc.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_efuse.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_efuse.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_efuse.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_efuse.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_gpio.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_gpio.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_gpio.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_gpio.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -xassembler-with-cpp -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_longjmp.S.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_longjmp.S", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_longjmp.S", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_longjmp.S.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_print.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_print.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_print.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_print.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_serial_output.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_serial_output.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_serial_output.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_serial_output.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_spiflash.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_spiflash.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_spiflash.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_spiflash.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_sys.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_sys.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_sys.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_sys.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/esp_err.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/esp_err.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/esp_err.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/esp_err.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/clk.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/clk.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/clk.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/clk.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/reset_reason.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/reset_reason.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/reset_reason.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/reset_reason.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/system_internal.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/system_internal.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/system_internal.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/system_internal.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_common.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_common.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_common.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_common.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_systimer.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_systimer.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_systimer.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_systimer.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_init.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_init.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_init.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_init.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/ets_timer_legacy.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/ets_timer_legacy.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/ets_timer_legacy.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/ets_timer_legacy.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/esp32s3/efuse_hal.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/esp32s3/efuse_hal.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/esp32s3/efuse_hal.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/esp32s3/efuse_hal.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/cache_hal.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/cache_hal.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/cache_hal.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/cache_hal.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/efuse_hal.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/efuse_hal.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/efuse_hal.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/efuse_hal.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/mmu_hal.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/mmu_hal.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/mmu_hal.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/mmu_hal.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32s3/gpio_periph.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32s3/gpio_periph.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32s3/gpio_periph.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32s3/gpio_periph.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/esp_restart.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/esp_restart.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/esp_restart.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/esp_restart.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/flash_init.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/flash_init.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/flash_init.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/flash_init.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/bootloader/bootloader_flash.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/bootloader/bootloader_flash.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/bootloader/bootloader_flash.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/bootloader/bootloader_flash.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/heap/heap_caps_zephyr.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/heap/heap_caps_zephyr.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/heap/heap_caps_zephyr.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/heap/heap_caps_zephyr.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_flash_init.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_flash_init.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_flash_init.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_flash_init.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_init.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_init.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_init.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_init.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_random.c.obj -c /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_random.c", + "file": "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_random.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_random.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-lto -o zephyr/CMakeFiles/offsets.dir/arch/xtensa/core/offsets/offsets.c.obj -c /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/offsets/offsets.c", + "file": "/Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/offsets/offsets.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/offsets.dir/arch/xtensa/core/offsets/offsets.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj -c /Users/wijnand/zephyrproject/zephyr/misc/empty_file.c", + "file": "/Users/wijnand/zephyrproject/zephyr/misc/empty_file.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj -c /Users/wijnand/zephyrproject/zephyr/misc/empty_file.c", + "file": "/Users/wijnand/zephyrproject/zephyr/misc/empty_file.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj -c /Volumes/External/Work/radio/loramodem/build/zephyr/isr_tables.c", + "file": "/Volumes/External/Work/radio/loramodem/build/zephyr/isr_tables.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Users/wijnand/zephyrproject/zephyr/arch/common/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj -c /Users/wijnand/zephyrproject/zephyr/arch/common/sw_isr_common.c", + "file": "/Users/wijnand/zephyrproject/zephyr/arch/common/sw_isr_common.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Users/wijnand/zephyrproject/zephyr/arch/common/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/arch/common/CMakeFiles/arch__common.dir/dynamic_isr.c.obj -c /Users/wijnand/zephyrproject/zephyr/arch/common/dynamic_isr.c", + "file": "/Users/wijnand/zephyrproject/zephyr/arch/common/dynamic_isr.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/arch/common/CMakeFiles/arch__common.dir/dynamic_isr.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Users/wijnand/zephyrproject/zephyr/arch/common/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/arch/common/CMakeFiles/arch__common.dir/init.c.obj -c /Users/wijnand/zephyrproject/zephyr/arch/common/init.c", + "file": "/Users/wijnand/zephyrproject/zephyr/arch/common/init.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/arch/common/CMakeFiles/arch__common.dir/init.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj -c /Users/wijnand/zephyrproject/zephyr/arch/common/isr_tables.c", + "file": "/Users/wijnand/zephyrproject/zephyr/arch/common/isr_tables.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/cpu_idle.c.obj -c /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/cpu_idle.c", + "file": "/Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/cpu_idle.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/cpu_idle.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/fatal.c.obj -c /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/fatal.c", + "file": "/Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/fatal.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/fatal.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -xassembler-with-cpp -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -o zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/window_vectors.S.obj -c /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/window_vectors.S", + "file": "/Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/window_vectors.S", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/window_vectors.S.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -xassembler-with-cpp -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -o zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/xtensa_asm2_util.S.obj -c /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/xtensa_asm2_util.S", + "file": "/Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/xtensa_asm2_util.S", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/xtensa_asm2_util.S.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/irq_manage.c.obj -c /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/irq_manage.c", + "file": "/Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/irq_manage.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/irq_manage.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/thread.c.obj -c /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/thread.c", + "file": "/Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/thread.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/thread.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/vector_handlers.c.obj -c /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/vector_handlers.c", + "file": "/Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/vector_handlers.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/vector_handlers.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/prep_c.c.obj -c /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/prep_c.c", + "file": "/Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/prep_c.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/prep_c.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-lto -o zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/assert.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/assert.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-lto -o zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/cbprintf.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/cbprintf.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-lto -o zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/chk_fail.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/chk_fail.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-lto -o zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/errno_wrap.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/errno_wrap.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-lto -o zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/exit.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/exit.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-lto -o zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/locks.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/locks.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-lto -o zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/stdio.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/stdio.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-builtin-malloc -o zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/libc/common/source/stdlib/abort.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/libc/common/source/stdlib/abort.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-builtin-malloc -o zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/time/time.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/libc/common/source/time/time.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/libc/common/source/time/time.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/time/time.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-builtin-malloc -o zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/libc/common/source/stdlib/malloc.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/libc/common/source/stdlib/malloc.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/fnmatch.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/fnmatch.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/fnmatch.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/fnmatch.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getentropy.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getentropy.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getentropy.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getentropy.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt_shim.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt_shim.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt_shim.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt_shim.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -fno-lto -o zephyr/lib/heap/CMakeFiles/heap_constants.dir/heap_constants.c.obj -c /Users/wijnand/zephyrproject/zephyr/lib/heap/heap_constants.c", + "file": "/Users/wijnand/zephyrproject/zephyr/lib/heap/heap_constants.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/lib/heap/CMakeFiles/heap_constants.dir/heap_constants.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/arch/common/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_esp32.c.obj -c /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/intc_esp32.c", + "file": "/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/intc_esp32.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_esp32.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_control_esp32.c.obj -c /Users/wijnand/zephyrproject/zephyr/drivers/clock_control/clock_control_esp32.c", + "file": "/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/clock_control_esp32.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_control_esp32.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj -c /Users/wijnand/zephyrproject/zephyr/drivers/console/uart_console.c", + "file": "/Users/wijnand/zephyrproject/zephyr/drivers/console/uart_console.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_esp32.c.obj -c /Users/wijnand/zephyrproject/zephyr/drivers/gpio/gpio_esp32.c", + "file": "/Users/wijnand/zephyrproject/zephyr/drivers/gpio/gpio_esp32.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_esp32.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx126x.c.obj -c /Users/wijnand/zephyrproject/zephyr/drivers/lora/loramac-node/sx126x.c", + "file": "/Users/wijnand/zephyrproject/zephyr/drivers/lora/loramac-node/sx126x.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx126x.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/hal_common.c.obj -c /Users/wijnand/zephyrproject/zephyr/drivers/lora/loramac-node/hal_common.c", + "file": "/Users/wijnand/zephyrproject/zephyr/drivers/lora/loramac-node/hal_common.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/hal_common.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx12xx_common.c.obj -c /Users/wijnand/zephyrproject/zephyr/drivers/lora/loramac-node/sx12xx_common.c", + "file": "/Users/wijnand/zephyrproject/zephyr/drivers/lora/loramac-node/sx12xx_common.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx12xx_common.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx126x_standalone.c.obj -c /Users/wijnand/zephyrproject/zephyr/drivers/lora/loramac-node/sx126x_standalone.c", + "file": "/Users/wijnand/zephyrproject/zephyr/drivers/lora/loramac-node/sx126x_standalone.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx126x_standalone.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards/mcu/utilities.c.obj -c /Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards/mcu/utilities.c", + "file": "/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards/mcu/utilities.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards/mcu/utilities.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/systime.c.obj -c /Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/systime.c", + "file": "/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/systime.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/systime.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/timer.c.obj -c /Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/timer.c", + "file": "/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/timer.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/timer.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/delay.c.obj -c /Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/delay.c", + "file": "/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/delay.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/delay.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/sx126x.c.obj -c /Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/sx126x.c", + "file": "/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/sx126x.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/sx126x.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system -I/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/radio.c.obj -c /Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/radio.c", + "file": "/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/radio.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/radio.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj -c /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/common.c", + "file": "/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/common.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_esp32.c.obj -c /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/pinctrl_esp32.c", + "file": "/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/pinctrl_esp32.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_esp32.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/serial_esp32_usb.c.obj -c /Users/wijnand/zephyrproject/zephyr/drivers/serial/serial_esp32_usb.c", + "file": "/Users/wijnand/zephyrproject/zephyr/drivers/serial/serial_esp32_usb.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/serial_esp32_usb.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/uart_esp32.c.obj -c /Users/wijnand/zephyrproject/zephyr/drivers/serial/uart_esp32.c", + "file": "/Users/wijnand/zephyrproject/zephyr/drivers/serial/uart_esp32.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/uart_esp32.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/drivers/spi/CMakeFiles/drivers__spi.dir/spi_esp32_spim.c.obj -c /Users/wijnand/zephyrproject/zephyr/drivers/spi/spi_esp32_spim.c", + "file": "/Users/wijnand/zephyrproject/zephyr/drivers/spi/spi_esp32_spim.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/spi/CMakeFiles/drivers__spi.dir/spi_esp32_spim.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj -c /Users/wijnand/zephyrproject/zephyr/drivers/timer/sys_clock_init.c", + "file": "/Users/wijnand/zephyrproject/zephyr/drivers/timer/sys_clock_init.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/xtensa_sys_timer.c.obj -c /Users/wijnand/zephyrproject/zephyr/drivers/timer/xtensa_sys_timer.c", + "file": "/Users/wijnand/zephyrproject/zephyr/drivers/timer/xtensa_sys_timer.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/xtensa_sys_timer.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/main_weak.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/main_weak.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/banner.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/banner.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/busy_wait.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/busy_wait.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/device.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/device.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/errno.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/errno.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/fatal.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/fatal.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/init.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/init.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/kheap.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/kheap.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/mem_slab.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/mem_slab.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/float.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/float.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/version.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/version.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/idle.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/idle.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/mailbox.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/mailbox.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/msg_q.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/msg_q.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/mutex.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/mutex.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/queue.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/queue.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/sem.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/sem.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/stack.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/stack.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/system_work_q.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/system_work_q.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/work.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/work.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/condvar.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/condvar.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/thread.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/thread.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/sched.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/sched.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/pipe.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/pipe.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/pipe.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/pipe.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/timeslicing.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/timeslicing.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/timeout.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/timeout.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/timer.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/timer.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/poll.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/poll.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/poll.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/poll.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/mempool.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/mempool.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj" +}, +{ + "directory": "/Volumes/External/Work/radio/loramodem/build", + "command": "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc -DCONFIG_APP_BUILD_USE_FLASH_SECTIONS -DCONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=1 -DESP_PLATFORM -DKERNEL -DK_HEAP_MEM_POOL_SIZE=4096 -DPICOLIBC_LONG_LONG_PRINTF_SCANF -DSOC_MMU_PAGE_SIZE=0x10000 -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__DECLARE_RCC_ATOMIC_ENV -D__DECLARE_RCC_RC_ATOMIC_ENV -D__LINUX_ERRNO_EXTENSIONS__ -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -Dasm=__asm__ -Dtypeof=__typeof__ -I/Users/wijnand/zephyrproject/zephyr/kernel/include -I/Users/wijnand/zephyrproject/zephyr/arch/xtensa/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr -I/Users/wijnand/zephyrproject/zephyr/include -I/Volumes/External/Work/radio/loramodem/build/zephyr/include/generated -I/Users/wijnand/zephyrproject/zephyr/soc/espressif -I/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/include -I/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/getopt -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/include -I/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/. -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/include/bt -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/components/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../esp_shared/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../port/include/boot -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/bootloader_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/bootloader_support/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/deprecated -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/spi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/driver/uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/efuse/esp32s3/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_coex/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_common/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/hw_ver2/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_driver_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_event/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ana_conv/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_cam/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_clock/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_dma/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpio/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_gpspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2c/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_i2s/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_lcd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_ledc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mcpwm/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_mspi/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pcnt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_pmu/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_rtc_timer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_sd/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_security/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_systimer/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_timg/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_touch_sens/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_twai/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_uart/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_usb/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hal_wdt/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/dma -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/etm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/include/soc/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/ldo/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_intr/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/mspi/mspi_timing_tuning/tuning_scheme_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_hw_support/power_supply/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_mm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_netif/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_phy/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_pm/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/device/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_psram/xip_impl/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_rom/esp32s3/include/esp32s3 -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_system/port/include/private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_timer/private_include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/esp_wifi/include/local -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/include/hal -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/hal/platform_port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/heap/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/mbedtls/port/psa_driver/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/ld -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/soc/esp32s3/register -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/spi_flash/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/esp_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/include/esp_supplicant -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/port/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/crypto -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/eap_peer -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/wpa_supplicant/src/utils -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/esp32s3/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/esp_private -I/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/../../components/xtensa/include/xtensa -isystem /Users/wijnand/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always --sysroot=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf -imacros /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/Volumes/External/Work/radio/loramodem/app=CMAKE_SOURCE_DIR -fmacro-prefix-map=/Users/wijnand/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/Users/wijnand/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -mlongcalls -specs=picolibc.specs -fstrict-volatile-bitfields -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj -c /Users/wijnand/zephyrproject/zephyr/kernel/dynamic_disabled.c", + "file": "/Users/wijnand/zephyrproject/zephyr/kernel/dynamic_disabled.c", + "output": "/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj" +} +] diff --git a/build/modules/acpica/cmake_install.cmake b/build/modules/acpica/cmake_install.cmake new file mode 100644 index 0000000..7cd1fe5 --- /dev/null +++ b/build/modules/acpica/cmake_install.cmake @@ -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() diff --git a/build/modules/adi/cmake_install.cmake b/build/modules/adi/cmake_install.cmake new file mode 100644 index 0000000..ed53a0f --- /dev/null +++ b/build/modules/adi/cmake_install.cmake @@ -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() diff --git a/build/modules/atmel/asf/cmake_install.cmake b/build/modules/atmel/asf/cmake_install.cmake new file mode 100644 index 0000000..2fa5955 --- /dev/null +++ b/build/modules/atmel/asf/cmake_install.cmake @@ -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() diff --git a/build/modules/atmel/asf/common/cmake_install.cmake b/build/modules/atmel/asf/common/cmake_install.cmake new file mode 100644 index 0000000..b47a0d1 --- /dev/null +++ b/build/modules/atmel/asf/common/cmake_install.cmake @@ -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() diff --git a/build/modules/atmel/asf/common/components/cmake_install.cmake b/build/modules/atmel/asf/common/components/cmake_install.cmake new file mode 100644 index 0000000..6a88f1e --- /dev/null +++ b/build/modules/atmel/asf/common/components/cmake_install.cmake @@ -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() diff --git a/build/modules/atmel/asf/common/components/wifi/cmake_install.cmake b/build/modules/atmel/asf/common/components/wifi/cmake_install.cmake new file mode 100644 index 0000000..b3cf4a8 --- /dev/null +++ b/build/modules/atmel/asf/common/components/wifi/cmake_install.cmake @@ -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() diff --git a/build/modules/atmel/cmake_install.cmake b/build/modules/atmel/cmake_install.cmake new file mode 100644 index 0000000..671afea --- /dev/null +++ b/build/modules/atmel/cmake_install.cmake @@ -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() diff --git a/build/modules/cmsis-dsp/cmake_install.cmake b/build/modules/cmsis-dsp/cmake_install.cmake new file mode 100644 index 0000000..d82262a --- /dev/null +++ b/build/modules/cmsis-dsp/cmake_install.cmake @@ -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() diff --git a/build/modules/cmsis-nn/cmake_install.cmake b/build/modules/cmsis-nn/cmake_install.cmake new file mode 100644 index 0000000..3226e85 --- /dev/null +++ b/build/modules/cmsis-nn/cmake_install.cmake @@ -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() diff --git a/build/modules/cmsis/cmake_install.cmake b/build/modules/cmsis/cmake_install.cmake new file mode 100644 index 0000000..4e5280c --- /dev/null +++ b/build/modules/cmsis/cmake_install.cmake @@ -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() diff --git a/build/modules/cmsis_6/cmake_install.cmake b/build/modules/cmsis_6/cmake_install.cmake new file mode 100644 index 0000000..82861b8 --- /dev/null +++ b/build/modules/cmsis_6/cmake_install.cmake @@ -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() diff --git a/build/modules/dhara/cmake_install.cmake b/build/modules/dhara/cmake_install.cmake new file mode 100644 index 0000000..9aa5f74 --- /dev/null +++ b/build/modules/dhara/cmake_install.cmake @@ -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() diff --git a/build/modules/fatfs/cmake_install.cmake b/build/modules/fatfs/cmake_install.cmake new file mode 100644 index 0000000..821f6e4 --- /dev/null +++ b/build/modules/fatfs/cmake_install.cmake @@ -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() diff --git a/build/modules/hal_afbr/cmake_install.cmake b/build/modules/hal_afbr/cmake_install.cmake new file mode 100644 index 0000000..f70ef2e --- /dev/null +++ b/build/modules/hal_afbr/cmake_install.cmake @@ -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() diff --git a/build/modules/hal_ambiq/cmake_install.cmake b/build/modules/hal_ambiq/cmake_install.cmake new file mode 100644 index 0000000..f91684f --- /dev/null +++ b/build/modules/hal_ambiq/cmake_install.cmake @@ -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() diff --git a/build/modules/hal_bouffalolab/cmake_install.cmake b/build/modules/hal_bouffalolab/cmake_install.cmake new file mode 100644 index 0000000..e2f58f2 --- /dev/null +++ b/build/modules/hal_bouffalolab/cmake_install.cmake @@ -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() diff --git a/build/modules/hal_espressif/cmake_install.cmake b/build/modules/hal_espressif/cmake_install.cmake new file mode 100644 index 0000000..244d5fa --- /dev/null +++ b/build/modules/hal_espressif/cmake_install.cmake @@ -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() diff --git a/build/modules/hal_espressif/hal_espressif/cmake_install.cmake b/build/modules/hal_espressif/hal_espressif/cmake_install.cmake new file mode 100644 index 0000000..aee823e --- /dev/null +++ b/build/modules/hal_espressif/hal_espressif/cmake_install.cmake @@ -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() diff --git a/build/modules/hal_espressif/hal_espressif/esp32s3/cmake_install.cmake b/build/modules/hal_espressif/hal_espressif/esp32s3/cmake_install.cmake new file mode 100644 index 0000000..835a63e --- /dev/null +++ b/build/modules/hal_espressif/hal_espressif/esp32s3/cmake_install.cmake @@ -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() diff --git a/build/modules/hal_ethos_u/cmake_install.cmake b/build/modules/hal_ethos_u/cmake_install.cmake new file mode 100644 index 0000000..04893da --- /dev/null +++ b/build/modules/hal_ethos_u/cmake_install.cmake @@ -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() diff --git a/build/modules/hal_gigadevice/cmake_install.cmake b/build/modules/hal_gigadevice/cmake_install.cmake new file mode 100644 index 0000000..fef9bda --- /dev/null +++ b/build/modules/hal_gigadevice/cmake_install.cmake @@ -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() diff --git a/build/modules/hal_infineon/cmake_install.cmake b/build/modules/hal_infineon/cmake_install.cmake new file mode 100644 index 0000000..f9e6c1f --- /dev/null +++ b/build/modules/hal_infineon/cmake_install.cmake @@ -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() diff --git a/build/modules/hal_intel/cmake_install.cmake b/build/modules/hal_intel/cmake_install.cmake new file mode 100644 index 0000000..3eba59e --- /dev/null +++ b/build/modules/hal_intel/cmake_install.cmake @@ -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() diff --git a/build/modules/hal_nordic/cmake_install.cmake b/build/modules/hal_nordic/cmake_install.cmake new file mode 100644 index 0000000..96e49f4 --- /dev/null +++ b/build/modules/hal_nordic/cmake_install.cmake @@ -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() diff --git a/build/modules/hal_nxp/cmake_install.cmake b/build/modules/hal_nxp/cmake_install.cmake new file mode 100644 index 0000000..a9d30ec --- /dev/null +++ b/build/modules/hal_nxp/cmake_install.cmake @@ -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() diff --git a/build/modules/hal_nxp/hal_nxp/cmake_install.cmake b/build/modules/hal_nxp/hal_nxp/cmake_install.cmake new file mode 100644 index 0000000..db5a183 --- /dev/null +++ b/build/modules/hal_nxp/hal_nxp/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/nxp/zephyr/src + +# 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_nxp/hal_nxp/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/hal_realtek/cmake_install.cmake b/build/modules/hal_realtek/cmake_install.cmake new file mode 100644 index 0000000..b0b2003 --- /dev/null +++ b/build/modules/hal_realtek/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/hal_realtek + +# 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_realtek/hal_realtek/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_realtek/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/hal_realtek/hal_realtek/cmake_install.cmake b/build/modules/hal_realtek/hal_realtek/cmake_install.cmake new file mode 100644 index 0000000..64cbce0 --- /dev/null +++ b/build/modules/hal_realtek/hal_realtek/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/realtek + +# 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_realtek/hal_realtek/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/hal_renesas/cmake_install.cmake b/build/modules/hal_renesas/cmake_install.cmake new file mode 100644 index 0000000..7958b28 --- /dev/null +++ b/build/modules/hal_renesas/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/renesas + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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_renesas/zephyr/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hal_renesas/drivers/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_renesas/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/hal_renesas/drivers/cmake_install.cmake b/build/modules/hal_renesas/drivers/cmake_install.cmake new file mode 100644 index 0000000..7293e46 --- /dev/null +++ b/build/modules/hal_renesas/drivers/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/renesas/drivers + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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_renesas/drivers/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/hal_renesas/zephyr/cmake_install.cmake b/build/modules/hal_renesas/zephyr/cmake_install.cmake new file mode 100644 index 0000000..16e68cf --- /dev/null +++ b/build/modules/hal_renesas/zephyr/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/renesas/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_renesas/zephyr/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/hal_rpi_pico/cmake_install.cmake b/build/modules/hal_rpi_pico/cmake_install.cmake new file mode 100644 index 0000000..00dfa03 --- /dev/null +++ b/build/modules/hal_rpi_pico/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/hal_rpi_pico + +# 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_rpi_pico/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/hal_sifli/cmake_install.cmake b/build/modules/hal_sifli/cmake_install.cmake new file mode 100644 index 0000000..56966bb --- /dev/null +++ b/build/modules/hal_sifli/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/hal_sifli + +# 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_sifli/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/hal_silabs/cmake_install.cmake b/build/modules/hal_silabs/cmake_install.cmake new file mode 100644 index 0000000..7e0abdc --- /dev/null +++ b/build/modules/hal_silabs/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/hal_silabs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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_silabs/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/hal_st/cmake_install.cmake b/build/modules/hal_st/cmake_install.cmake new file mode 100644 index 0000000..13bd042 --- /dev/null +++ b/build/modules/hal_st/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/st + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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_st/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/hal_stm32/cmake_install.cmake b/build/modules/hal_stm32/cmake_install.cmake new file mode 100644 index 0000000..bb871b8 --- /dev/null +++ b/build/modules/hal_stm32/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/stm32 + +# 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_stm32/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/hal_tdk/cmake_install.cmake b/build/modules/hal_tdk/cmake_install.cmake new file mode 100644 index 0000000..3aad00b --- /dev/null +++ b/build/modules/hal_tdk/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/tdk + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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_tdk/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/hal_telink/cmake_install.cmake b/build/modules/hal_telink/cmake_install.cmake new file mode 100644 index 0000000..027dba4 --- /dev/null +++ b/build/modules/hal_telink/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/telink + +# 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_telink/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/hal_wch/cmake_install.cmake b/build/modules/hal_wch/cmake_install.cmake new file mode 100644 index 0000000..052d5aa --- /dev/null +++ b/build/modules/hal_wch/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/hal_wch + +# 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_wch/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/hal_wurthelektronik/cmake_install.cmake b/build/modules/hal_wurthelektronik/cmake_install.cmake new file mode 100644 index 0000000..4af6e14 --- /dev/null +++ b/build/modules/hal_wurthelektronik/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/wurthelektronik + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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_wurthelektronik/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/hostap/cmake_install.cmake b/build/modules/hostap/cmake_install.cmake new file mode 100644 index 0000000..2e2894f --- /dev/null +++ b/build/modules/hostap/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/hostap + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/hostap/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/liblc3/cmake_install.cmake b/build/modules/liblc3/cmake_install.cmake new file mode 100644 index 0000000..0ca5698 --- /dev/null +++ b/build/modules/liblc3/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/liblc3 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/liblc3/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/libmctp/cmake_install.cmake b/build/modules/libmctp/cmake_install.cmake new file mode 100644 index 0000000..29e0894 --- /dev/null +++ b/build/modules/libmctp/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/lib/libmctp/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/libmctp/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/libmetal/cmake_install.cmake b/build/modules/libmetal/cmake_install.cmake new file mode 100644 index 0000000..bb4e26e --- /dev/null +++ b/build/modules/libmetal/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/libmetal + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/libmetal/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/libsbc/cmake_install.cmake b/build/modules/libsbc/cmake_install.cmake new file mode 100644 index 0000000..aac2f23 --- /dev/null +++ b/build/modules/libsbc/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/libsbc + +# 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/libsbc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/littlefs/cmake_install.cmake b/build/modules/littlefs/cmake_install.cmake new file mode 100644 index 0000000..ab7f8fd --- /dev/null +++ b/build/modules/littlefs/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/littlefs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/littlefs/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/lora-basics-modem/cmake_install.cmake b/build/modules/lora-basics-modem/cmake_install.cmake new file mode 100644 index 0000000..5f080f1 --- /dev/null +++ b/build/modules/lora-basics-modem/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/lora-basics-modem + +# 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/lora-basics-modem/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/loramac-node/cmake_install.cmake b/build/modules/loramac-node/cmake_install.cmake new file mode 100644 index 0000000..359389f --- /dev/null +++ b/build/modules/loramac-node/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/loramac-node + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/loramac-node/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/lvgl/cmake_install.cmake b/build/modules/lvgl/cmake_install.cmake new file mode 100644 index 0000000..664698f --- /dev/null +++ b/build/modules/lvgl/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/lvgl + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/lvgl/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/mbedtls/cmake_install.cmake b/build/modules/mbedtls/cmake_install.cmake new file mode 100644 index 0000000..ff718d9 --- /dev/null +++ b/build/modules/mbedtls/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/mbedtls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/mbedtls/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/mcuboot/cmake_install.cmake b/build/modules/mcuboot/cmake_install.cmake new file mode 100644 index 0000000..cf6f16a --- /dev/null +++ b/build/modules/mcuboot/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/mcuboot/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/microchip/cmake_install.cmake b/build/modules/microchip/cmake_install.cmake new file mode 100644 index 0000000..98756d8 --- /dev/null +++ b/build/modules/microchip/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/microchip + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/microchip/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/mipi-sys-t/cmake_install.cmake b/build/modules/mipi-sys-t/cmake_install.cmake new file mode 100644 index 0000000..8c2eb6e --- /dev/null +++ b/build/modules/mipi-sys-t/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/debug/mipi-sys-t + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/mipi-sys-t/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/nanopb/cmake_install.cmake b/build/modules/nanopb/cmake_install.cmake new file mode 100644 index 0000000..3eea2b7 --- /dev/null +++ b/build/modules/nanopb/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/nanopb + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/nanopb/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/nrf_hw_models/cmake_install.cmake b/build/modules/nrf_hw_models/cmake_install.cmake new file mode 100644 index 0000000..1773e16 --- /dev/null +++ b/build/modules/nrf_hw_models/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/bsim_hw_models/nrf_hw_models + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/nrf_hw_models/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/nrf_wifi/cmake_install.cmake b/build/modules/nrf_wifi/cmake_install.cmake new file mode 100644 index 0000000..895b035 --- /dev/null +++ b/build/modules/nrf_wifi/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/nrf_wifi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/nrf_wifi/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/nuvoton/cmake_install.cmake b/build/modules/nuvoton/cmake_install.cmake new file mode 100644 index 0000000..b1d47f5 --- /dev/null +++ b/build/modules/nuvoton/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/nuvoton + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/nuvoton/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/open-amp/cmake_install.cmake b/build/modules/open-amp/cmake_install.cmake new file mode 100644 index 0000000..92c38b3 --- /dev/null +++ b/build/modules/open-amp/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/lib/open-amp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/open-amp/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/openisa/cmake_install.cmake b/build/modules/openisa/cmake_install.cmake new file mode 100644 index 0000000..7d00b22 --- /dev/null +++ b/build/modules/openisa/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/openisa + +# 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/openisa/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/openthread/cmake_install.cmake b/build/modules/openthread/cmake_install.cmake new file mode 100644 index 0000000..3862f8a --- /dev/null +++ b/build/modules/openthread/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/openthread + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/openthread/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/percepio/cmake_install.cmake b/build/modules/percepio/cmake_install.cmake new file mode 100644 index 0000000..f95e888 --- /dev/null +++ b/build/modules/percepio/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/percepio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/percepio/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/picolibc/cmake_install.cmake b/build/modules/picolibc/cmake_install.cmake new file mode 100644 index 0000000..6f64687 --- /dev/null +++ b/build/modules/picolibc/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/lib/picolibc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/picolibc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/quicklogic/cmake_install.cmake b/build/modules/quicklogic/cmake_install.cmake new file mode 100644 index 0000000..cc61ff5 --- /dev/null +++ b/build/modules/quicklogic/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/quicklogic + +# 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/quicklogic/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/segger/cmake_install.cmake b/build/modules/segger/cmake_install.cmake new file mode 100644 index 0000000..cf74bc2 --- /dev/null +++ b/build/modules/segger/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/segger + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/segger/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/ti/cmake_install.cmake b/build/modules/ti/cmake_install.cmake new file mode 100644 index 0000000..2ac3307 --- /dev/null +++ b/build/modules/ti/cmake_install.cmake @@ -0,0 +1,60 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/ti + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/ti/simplelink/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink_lpf3/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/ti/mspm0/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/ti/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/ti/mspm0/cmake_install.cmake b/build/modules/ti/mspm0/cmake_install.cmake new file mode 100644 index 0000000..b93611b --- /dev/null +++ b/build/modules/ti/mspm0/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/ti/mspm0 + +# 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/ti/mspm0/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/ti/simplelink/cmake_install.cmake b/build/modules/ti/simplelink/cmake_install.cmake new file mode 100644 index 0000000..3bffbe9 --- /dev/null +++ b/build/modules/ti/simplelink/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/ti/simplelink + +# 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/ti/simplelink/source/ti/devices/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/ti/simplelink/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/ti/simplelink/source/ti/devices/cmake_install.cmake b/build/modules/ti/simplelink/source/ti/devices/cmake_install.cmake new file mode 100644 index 0000000..6d743d9 --- /dev/null +++ b/build/modules/ti/simplelink/source/ti/devices/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/ti/simplelink/source/ti/devices + +# 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/ti/simplelink/source/ti/devices/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/ti/simplelink_lpf3/cmake_install.cmake b/build/modules/ti/simplelink_lpf3/cmake_install.cmake new file mode 100644 index 0000000..5f1fec0 --- /dev/null +++ b/build/modules/ti/simplelink_lpf3/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/ti/simplelink_lpf3 + +# 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/ti/simplelink_lpf3/source/ti/devices/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink_lpf3/source/ti/boards/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/ti/simplelink_lpf3/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/ti/simplelink_lpf3/source/ti/boards/cmake_install.cmake b/build/modules/ti/simplelink_lpf3/source/ti/boards/cmake_install.cmake new file mode 100644 index 0000000..4c0b015 --- /dev/null +++ b/build/modules/ti/simplelink_lpf3/source/ti/boards/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/ti/simplelink_lpf3/source/ti/boards + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/ti/simplelink_lpf3/source/ti/boards/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/ti/simplelink_lpf3/source/ti/devices/cmake_install.cmake b/build/modules/ti/simplelink_lpf3/source/ti/devices/cmake_install.cmake new file mode 100644 index 0000000..811bdd4 --- /dev/null +++ b/build/modules/ti/simplelink_lpf3/source/ti/devices/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/ti/simplelink_lpf3/source/ti/devices + +# 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/ti/simplelink_lpf3/source/ti/devices/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/trusted-firmware-a/cmake_install.cmake b/build/modules/trusted-firmware-a/cmake_install.cmake new file mode 100644 index 0000000..44845f2 --- /dev/null +++ b/build/modules/trusted-firmware-a/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-a + +# 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/trusted-firmware-a/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/trusted-firmware-m/cmake_install.cmake b/build/modules/trusted-firmware-m/cmake_install.cmake new file mode 100644 index 0000000..b8c9c17 --- /dev/null +++ b/build/modules/trusted-firmware-m/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-m + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/trusted-firmware-m/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/uoscore-uedhoc/cmake_install.cmake b/build/modules/uoscore-uedhoc/cmake_install.cmake new file mode 100644 index 0000000..64df739 --- /dev/null +++ b/build/modules/uoscore-uedhoc/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/uoscore-uedhoc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/uoscore-uedhoc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/xtensa/cmake_install.cmake b/build/modules/xtensa/cmake_install.cmake new file mode 100644 index 0000000..0de1cc4 --- /dev/null +++ b/build/modules/xtensa/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/xtensa + +# 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/xtensa/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/modules/zcbor/cmake_install.cmake b/build/modules/zcbor/cmake_install.cmake new file mode 100644 index 0000000..3a223ec --- /dev/null +++ b/build/modules/zcbor/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/zcbor + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zcbor/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/sysbuild_modules.txt b/build/sysbuild_modules.txt new file mode 100644 index 0000000..4d333a5 --- /dev/null +++ b/build/sysbuild_modules.txt @@ -0,0 +1 @@ +"mcuboot":"/Users/wijnand/zephyrproject/bootloader/mcuboot":"/Users/wijnand/zephyrproject/bootloader/mcuboot/boot/zephyr/sysbuild" diff --git a/build/zephyr/.cmake.dotconfig.checksum b/build/zephyr/.cmake.dotconfig.checksum new file mode 100644 index 0000000..3bc8dd6 --- /dev/null +++ b/build/zephyr/.cmake.dotconfig.checksum @@ -0,0 +1 @@ +3a76b9865da32742c177e56f945991902a4bf5e37441edbb73f8c748e5d273fdc84dbe16ce087a6e98a1ea38f9be6df2f93c5930170d8558c3266abb749304d1e882d52b51700af23d2b197455e043a9dbd7b840a5bd87f10f7ff64d994557ccdcfeae88309be191333a70d9de4fe70011b3f3b0d95738534631d6e9e83d1a10e5e53af6f68c2122d801c9bdddd083f3e0f2932b2b447fac7843c471c31fcf6b0b52426f0baedf8558266054d8ae802929703c2cca72cda2413901d4c9b13efdf1e3be1bc81eb9bff577e60dc1d34c79505c30b07d072e923274e4e8e7aa4687256f07fb284bcfbfe06b92802751026544f9891480441f7ab6395924a3e57817974fbf3f26bc8fd1ed45e407cddc336aa3dfc050e81b5a7d7ffe8a114908e79702d659ff928ddcef626c815348c8f74128221b2a0d58bcaa8bae00d8284e4c07507548fb9733fd730f9f6363dbde3fb6dd7307723a69667b7892c0d8aabd2a7915689c1e44d59c4079f812e0f2b017993b8e818f390e8fc751bb0681b17224821ee114612fbf6ddfcfa733db70a1b13ff7b4a061b096372273f9ee1ba4bb7e1eea69a62acda38e05b96facec0da4ebed4513724cc393b298e326327d243b53d27c4100a1a6f588b209edeaf24569f6ddaceffc8aa812e8678f0196b2c99be5a5b06dbfa157c1bf362c43942c8f1c04e153075f68800625c0cf6e3002d3912b72275996d796526be5016ccfc860f70e6d4611516f63c1993df160c32861e6752199f38b20100500c58f86e82fcbcde3b097973507311e13451a5cdf4cc638e56362a5ec90d090dd068b76a6aa637a68059a231a523548522fa48092e95753b3831623f41c4d77aa4c5b1ca793e0428ae0ae905cd6b12ee7bc47d42e94f0c07a10e7d3e571d89a38c44f4ac5fa4a641402b4597370786e4184fa6df41400d420358bf7d5b116a80a999468351b533dd3d3a768d7be7bacd2ce50070f48d1a20057bc1848770402fd92a1f2c04596c50e33ad4ecf185b40b658a3095265beec923989f798897ebf24e5be2e5af94d1c2e16a95abc49e9aa943a753467c901dc732690a187685e2e5d1e3a99c5753407b6de67a7e74fd2f075979367b1f670e2380162a48fe82384d7cef87f165102eb96305f1217e4ed3f1542a2bcd398891991415d6c1758c090822d8749ec8f21ff01c737d36b4645c3479bb97186513b18535bf355298137405b754563e3936e0ba4229571e5ddd5eb92f8394f6e17590a5d728b58f8db0d159cfccc91e884938d5660e96ff2742720a44f76f1a97ea3b7836dd2abf17d8b2db7a255910a032075cc8bf5727e23955092120cd84809a5e7d5a91ba4ec1993abda4edebbe9ed69adb029ab2a896588de2cdf5bab898e29e769d9bf0894afc261b1f9fcaadc8180beb0ae22f50808ffc2c2c0d855d213bf622b8e8ef95565f20589045d3652a151e17365be08c71d02b4a6de3d73bcc2933c9847e20f1c58fcc91498962cdc8623e9f1dba6076d9f59f6ce62fa74a1391aa2f8b96eaeb42b8c2c81b4679ae967c2f1f1820b3f53a524d49b4960227020185a34ed3381d88b767017f740847ab58982c52ef1bf0b36440f39e6251e9ea32db1dbe671d177e4944edc307348c92b6035c2549583a66dfd227a94f24128e8355b95c5bf54a6a887ba33c82cd0505638a000a0dd1786c317db5b3b337ff52a64bdf4d6ce68f41d0e0f3f28fc819702f79e150640ae4f02e5a52334e5f3f8000a0c4c0223f612555ccfdb7fd08661d39ec194b2bf3e66dfcf2dcf991441cf8ee6fae32d6abae564097303a2bb73552ad22b4b737525fc9b54620b98c1c3563948ff344d871bae466f97df099a5bb13ec540ea04893806c555012978c8a9e7ca5804ba5d014ae844963fa4c84d0941dae096d960ba29e0540bb93359a556d62839cf50c83b398d87861d25bbc6e59b771329bba8983979d29cc70b295573a9d85327db685b9ce1f2b65775436655847111351b43b39e9a6cc4c8360d22b4487feac8f6227aff69b6605eda114067863ddac5d00c122a827251b1fee759c021b9d5751e881f0a8f59e3e0c6dea8bd94b91bcf030a87532e555d1718ca19c2594b365bab9db9e933a5688c811a0eca204741ee8bb6bc77baa7fb2a3c88bfb64e554022181d46c9e5698e4b80b162544f290f00aca61316ac947ed907a03bc13b1e0c648513390d074bf71845eb741f69460e974a1da93d232cca25e1aaf5e5261aa3e7b1f90e68e269dd1865b1220af3f7db3f29fb34853185c685807f0025c87f313fd15e7fd8ce6c37af9f9279a1f9c68ec6a272f0191a76421fce7d7545877482ac46efbf984d8db9439ded7922eeb10b61be13f6c1a3d1bbf1edb9433538361c706335d302b4448d09bcc50dc7579fcd9562436b2d194d44a56bc53604d4aec0d5bc272bc3683711d3f407b4dcca0cda5fdbd29b2d24b37613abf1aa29aa12174709e03c57157ea20c55b1aa84dd5c5e339bbff6245500be2724b1ac7f802c6e701d3b1e0ce52f1f672ca90a5e83cd171fe736857cf7a4aa2734812e230d22eff5a0ed239bfccbc0ddfa8b4a072d16b3f72ff572a95a49e8f0fc8abe90cb3c7ccc3c85a8e85670709214585e81d71b597c8d798be5c39fbee764e7b4880633c560e14518d6749d880c75a22dea3f854903decdb779e33593375a4fc62da1649ed6fe1005c80be21189440e6f2be42437933eac766f444103c57331ff6deb854997d841d3ac3b3fe843cb551dd93217741af8e4add881bc6eb5acb4216bbad916427b6ceab8f5ca421dec9c611d8fbc591e2a2db94fd41643f8453e20b0f777e53ebb2503a445133a626f202066c04eafbab32e905b98a574950803eddbf412a0d4ba26dcd8993ac8c37d60fe9c857171e6a12a4ff40974b2c32949e3655cc4ee9d2937c0158e1c575fc07613057105536b01bbf1bdd5429cdbbe3045f2aa58c9864e1cf4b074fc29fd2b64d2cd1a8b8da416ac5843703fe2773e74fa02ebf8fdc201cf44b595a00b015b9b100baea3bf1e76bff96ae730d8894c19122f48158e44e385e8a3424ac0095737f00717e9abc884483f50f8606857a1e8e8ff0e8a1136e16f484a533cafaa269cb5f9ba0615f892d8865b73d946c67117af23a4a7b5c4434a16413037f16dd524455e595d68912b237ab343a376d3ae1adba61eb860f75ff5e97d9028b4b236bef81c14860b10afbc4781541dfd9e8153eecfc7ceffc2c331a9f4b6bb55455883f24b015b983dbaa4c451d67564c7044c5b50d2e6e92174e7b430a96a3af4caed0bf14acda9ada426cace212226fd07a6aa13ebabe84954d82ac28ea3ba580c16a3a913400141f3914695f251e711d057dc1bb9d8be6663e0e2688c4d6f422b34c14a3f317814dd5f29f9bc04919b2568257287f396987732a9bdf42c6af490fb4b0f3167b7e7b86e2860038f5ec7efcda22b3a61b0b79eff4a07cbd295d307476dfd69e9e1e276d98a1636e8eb528398ca11210837f762ca705cff1f8ce982ef999c35edefe82e90064c478ff61f89a09e8d66ba00b5423143fa0baa2087b7516b6d9e238c6bc6969170fb88452252830c7c06b93fdcf7cd0bfe96bfe5a0a5731e173fdd66f59a7a1e4f7638dbf9804849e2f886f073b21598b92a6cce81aad36f27d6f683d38a34189cf7652e09b5f5f1d1fea2f5c422427230b84c4a675c38e7bb609de891aeb84d9e199ba01c98c841e30340926693d744639cc1f4032b86f9001c8cb4db7c3a70d07422e64e12596ca69c77bbdaa996068c7656716411d0a49e95d40114cd4096ef0305b6b9ba77ea750574ca5a64ee77022fea4ad9d97841b529ca8fc82ec4a3965078eae0fb27c392068286796bec22d845e29cb4a71850f5d289bc3ef39e2584013a5218e82f3d3b86c0cd806c371fbf606854e522658fe28b7a5723756c3bc92c87098df15e5fab66853cb2ce86f175509d5970296d0e051b15e8b6b7a9882226e50574221411dc507fbb3081b1198da4989cf62619b3c64e7b918c7d8d34f0539a1c8c153ebf5d9d9f69e5f1801652afef050dc6b9f09d3c757dfd5356ebf8b3cb39233123a0bfc87b80af5a73b60d487d92978524bf262c04d5f00727535d3ed9ee38709160bc4152d1c1c6e83db7e0586229abad8bad2e40c2b6fae3dbe475ceece76d25780f27ffc59e94f33884fd7328251b9b61bfd1bc31b06bff975db3063ae973191e907e2f84b19fd5ab590843c910813ff4c41fa3f9390ca064c700c1f434891a589b5d8607ffcbc9d3db6cdb200a8adc3e54a1a7361ea3a55d28e014c02bb6d17954c9e0b06f5fa34150e365a2e3d9c40f9d3b9cfd7e165d7f389fe00551bfe44109a2c3b9b23361a5067600fb8e55cf4222974a83d09bb4c32fdcadcbfd45bf71fb459561728bd62cee7cbaeb64356c46797714fc829a9856146de84bd4568027d5c0d69d44e9134f93d46042669d9e47ee6f7de82a81ffff2d38538a3ef839806144d52fac502e4450fbfb65ef10b0c313062c08011ab10f8392cc55706e3071a0d9b42793a791d3775792e23f9dadec39f7add9ca316582eedb0fe25ae5c1f142de4ab838255d7b1de22e5f1938ad925ffd6f03d776f00fe34f8f8a81b29505d517ea9e6297a2f00a0697edf757881e0550c32f0518d26242ea08e19bfdb6cd2d234aa8d238a3093a790e423c07726c7223895bee7c26286f04cfc7b85916bb92b1b05c4c9dc4611f8f773a1a62254cb46b3a74dc97620dff80f7e77bc84aaa0bf134e581792e5263a1ffda54817286dc6107f795bfc1d00b6456a1372f7c77e1d42c7106c7f66440cec21f1b1629566163896e8cf94d986132221e4cd54ade94fd50613c8012a178fb35425b45c7c16bcb4cf15713822f1d043e7c1d94122e688251741f140250d3e207e5435045c34dd28257f00ba97ccff2a3681c7c6b4fa2d0b7ac7c23a1600dfd193fe1b0a9e878ca820742b0cade9e6da99756a5e18027dccb5bce4b096b70b5bcdcf3b2d3fd9486ada49f5c753fd5333340114da21f95386763cd8c0bfe2759cf5342e6953acac12f1e3a0de5a0cfeea386ddccad297cb91701db50fef1a312eede8c49ad9c40d40c9a19b35a5262ceff4d53a2be1e1b4bcf7a1451f45e084f45c781a99b1fe1a6e560fd3c1e57ce3b5b120400f1014239832c8b3a26bf1efc62b6a298b6a89ab92da56d725280ad7a2aed59e27163dac8bb3f2a4524d95c75e5f6cde773481dbcbd9dcb864e6f9d97b6e39f3c63f80d49edf35f378f4c115ca7686871af6878334c434f66a492eaac43fe5fa061ad57497b3ee65b1c583a1a5d73143f862a65407856da571db5118864c9e818206d84d428becb6a3d07cf69a3975cd6f4c295a8176d1b18c4a357777e104111c326fb7685c0638db4536b89d796af19bd1849bc41b6940dd58e99cb1ead36e95412149f0d5901a714a1d1b9476d25852aab0730ef9283419f71462d86ab1e7c35c8e33475cd4ece6a138e364d16a9c8e2508e8a7412a7f8fc9c801c6a29933ccc78ddabd84c46906786502f30ba9494d69665d30d9d8c64e49416f67ddf76d93b0f4daf30f9faed8c2eaa8b8bcbf852edb0e43d38f033519b4a58fc831fdd19786ea524af24c4a6afe125bae1fd144e8bb3c3ad14d9797951adf5b1c036013a7ee25dc50af47a232c1c3078dd61809a5ec19db9987475bfe13832f79d29967b7ef5970f4eba871f30c27c6c17ece6ceec9f85ecc80b56648360295efc3dfd655f449aaad3179caf22ae8a6bae8469afc8074ef8041807c16446904bfaf18d80e10a413d3aad7d35b7641dbe1c150f8c99f97fdc098725d7679dec45b9747d585eee0d36bf1698938ef5b11777bb71e3ea1c453978fb74dcbfdab79fb6bf8eb597e883a135eff6e753635ce580068cacc9e46a7c9820ad16fb777d793b284ed913fa3890705b73bfb41627668e98c32d01b7b77664c1ca07a9105c4000234e7e55d937f1683990fbd2ffe001e75bd2ccb27384ce2e52b8566b8859bbb1577a4cee79ae175d12f435229bafd34c4947af197e9a36239de1498130a2d4389c891903d5e21fd882e4c95ab345ab6d8429668d9dd5b3093b387b18de646526334385b1e6f170fe442aae77a5a24a2867f41807d1653923e4f892791ac3da5b16ad428b115bbe6567c6dec8cc87320ff926e10b2df2d068e9f7535d59555cb12a938194916bb8a81253edfa59555cb12a938194916bb8a81253edfaa735f56dc61d7ec38231f27d24225805de2fa523f11eba35f66a86f1ce294fb0d4d680291e454146584c22fb8f92045a648580edc6967237d607fd9d224fd0ecb41b3b5dab63683ec529370028c4126fafb5885ef20e3f0759dfd8e56e22c520efc4305bd3dd88192f2b9bf2bd9d134510c2d6ec2b2dcc03ba5c5753d435acd573bc4063022e748d2a6378243a9f8eb60ea6d0049e5f9b63e99f05db4e8dd788109bfb312383f88e984e30d996bfd996fa2e0ac274d10850d1f0e8ed0a79e5dccb2b2a110536bfc0f8fc470b8ee77e1b64a6131bb2b5167179f314bced2335d309900dddd322d85652aa6425f63f9b27a4f8ec6177a31a8daae8541fdab75b47d68dd90be41ac4828c667973b427d7840cc27772ae818812a32e9107edba9b0d3d2faf1bfe564bc456aeb9cbea86f920f8e5ecb8a4ed7f10a5f26bb122d502c8a15b7bde29369f12ee6497de36c037f00f4faaa0cab2be8d2fbcdc0c867fd87cb019712c5a2b5063835435ef209eca04605d1cb94d81b5067b166a1ea0aa1490958a5d51c33c6536873617e331b0d485078eabac838f7be71de7b6377ea0406a9feb99f2ad1b8697b32f22ca64ae05bef8e5ecb8a4ed7f10a5f26bb122d502c8605d1cb94d81b5067b166a1ea0aa1490235fca5479c4cd494d39eecf1150c7b8e66b8f15a292bffc5f487bd24e7150fa11cc6845a637653786577192bcd6d259cf6e604350de7ed464b10a984da98ce89e13f92d69d82d4f6df73bfb6a286215358376566c7725f2c1cb541e9630c96fd6994f55986f58b8111f0fa05c279d750f99633474e3feed44dea18d0bdb5f4ee06ff0f69b25d38cb1541b722f7438d45115cb32b49b56bbe6adfb9f06baa9607c71f7d3d6a9aedeb7265547fa6e19952dded8e2826692f669e832ab0aa3385244f954b45a097d07d635a8f5abd460f628b67e9c16eff8dff26268b9efb466a928cf5fbffe918d15a371cd99ef2705e8ba525b0504728001ad913d2a942955d1f67c947f57eff188b79cad34a65050afa859f93413f83295f305bf0cfcd4de8fbc8a9c0b5cd34444a84ba09a7e821823b06036b1868e09a577552731e817fe69e48fde85021b8e0dc464d583a9c9239dce6038f584583195a47819dacebaf1db09d39c0687d1d1cbf3e439e7359250e26286ac84dc28eb42f89a3d67652508203be398d3b99cc127c9ede7cd639a3cec6637545eaa9679e0d888b3e9d0b270342ef5325305a5b655c4f868b606b9d233a43fbbc9ca7f3295c1df3df9476126f5d3db016d8306cfa6110998ddc7b503806a45c258e4a1e516df43d2a93ce9730c6bb31b003374f36fcab2fba0ea47f746c8f2716e3b94d347b38d77937d0d34f3ee7f587d7a775f57f99d003c7af6bd7d0b15632ea6ecb336d9a373eac9026ec9bbd1bdd647f3e2721ab97269d7e77fa5689222d97cecfeb2a5030d71b5fca9d9fdb70dc55243ae28010fbb4226c2b637c1d4b2297600608c98f93261d6d008d4b0995a8271de31aff3a87df923313e037f591cc561ac3d455a0eda78b5ebfa66d08db19bd81e98e13760db403476a6d67856ba609aaa3bad6aca565c12aca2ae579765a0e5c9a9d1940873f405427cac73b0d4de9cb9a24209d18542bee6d30055375786546cbc47e078733acd6813043562fa5e1770eb55e4dfdf85cdef6fc611edb492c0a1a566ad987a1b9311116f618158d2a2c79e97960a3646b244cdb3b55e7475d726660a9be31d6c14a2ecfaacb4ca1cc7470f654abf4810283dca76cde0c92e770a448ff8e51d37ebd9e3553e8133db32e10622328fc164429e4f9e9183b6129d730f258891b6e113c6ff150481317be8f6bc33903b34676ca8c20e24fb7c47245ff0afd3b56f095bb2607f21bfddde6d64110beca732a431bf5d571be7194928b3699b5ce7cb7315109936cdebf52e0234c566c06ea95f96cf321504033b7b5a25e2b41eadde0bf52c8603c116f55a8e38638da7298a6624b2ad21745dd40629d4805d9210c2fd0386d2fa05763768674dc7c18680f4bbea130ab20859f0fa5198fb39cae0ac630f5f4b8bbf2359d837a59cd136324be9afcac3363591493e397619426d426f72dabc3911d5917cd3f49a221b623a4d9a1400ede77f8dcf2964199a27fa2927e6504547a23602cd10917286cfe6cffd1f93e4dd1a7de0a9f4bcb735dcad7ba27a5c3a432bece352cc01b458f71905ccbbc9a4b7dce19977926777fd839a92c46c247722e84d8ad8cd44f59038376dd4e8be7dac926fd36af82a4d82866f74d76597c11a813f8196dc65c9dfdddcb43623ca0961dc674958f913b974c59d7678e8aff42f686426048a326cc2aa4625cd8668dcb654f28a97544f8b9f3c39eab4c957b8d7db165ac40c64ac86210e50a2f59cb96a655d3321748dd479fe961ac360959145234c6d20ff797c7ba1d8e6eba26490b314a03155fec3f417b0d7a8d8fe3323f281ce3e2e398d93f9e88c9edcd32c024e4dd310b33a17ea51cb697b7f8dadaeb822122ee0b67365d8d5428ca862749440ba6fea163422a8a18209c504afcde4c8b511516fc500aa29fafcca1a597e0206486b4da5add1c91926cfcde6627263fc5fc97fa94b89076f707bc28dddbd3eb75808af6fd878c786fbad030344de110e1bf76f0f64ddbc0c043e2382767f0d38f8a115a5d9cbaa8202668e255ef956e935116cef833b494395c274c45f61690b2ac6870401d03a497794ab4462dc0861ced1d770d428e7624fcbb9b38884fc7026f299a2425bb423061d2abc1391310902930ac5cec965d31b7e24ead857131963ad33c6c0e4ee3e5dba1424be1f30378e6bd076d75398e855252fbd5065928b92dc33f27fc2499a2a26aa0a90e700cbb6986e7c1ac695660e8fddc41a583474160d3299eae21646e4548a0f2bd5eae02f188fc193dc9ac1104a2a2c4e8428d2371e15fd3953c5c99d2ff77f577696e7025d109dc86c357b1204ef00d83593f9614020163e3fc80d248aed9f75522c85edb3847b9f9f30f699eefc5daaeff0849d5daefccda2097b5efd1907dd3c2109fb9e6d1a290c4ef1d1e046e8fed3da078c8c497ed4f305b72f0d5e9351dbb6c72c5f6312cf2fa071bcfda76b0c637865c1c7e04bc85105440a550d6565b0891e19b753fbcd22e700466ff6a6d003709eaf6ec24d45b4fdfab088dd639070faee91092e70a5fb19e87a0b30b4c29d3ddc3a98dadf647adb2a59faef4e692f0da75f1c2ee4980084f72995642e1b6c027064d60b1da5ac86355adb2f07adc5edd3c25c2a0ff2fc0ccc53edaa61b9524992b99b9a4ab09edf08df6cab42b4324039c7baacff1c311e7e66c1bc5d9cbaf0201dc4f92c60c4dc853cd58af0dddc1dedb0f4f4deb46ea9853ce16c306dd5784bbb9277a8f44391122389a8bcebf971b266383e50fd796a89d1b69a73b3532b7ee391cd148a5578023fd5afbe78cbdfce901ecd94e24530e3f1f4562c0a0187b0baaecf1303c2e67a32f2d3ace996c9a3a4c21d921e1bae6ee08f08d9e80009fea2e2e33e5fe147d9cd1a8b606c27997f299e7ef566e404876267146961190a19e59f823501ff2892b3ed50f331bb73bc7e3df020a6d46a3e3fa1e7f071332fde36977531bc1dba73f06cb6fd8d570d0e7912b47cf6a2c4ea86cc83a2913536ad445ed7ce465ca4e1a3e4e81eff3d49aac42623339e2e5c429d037bb260f5ac63e4add181436ad2cbe42f5c1324dc25611b12d2a4b4f74c0e5b3cc8b1ccb88716776e7fe4a8758105252de4d0a42b33fc2feae422bfca223871caa5160c29a7af77dd8be2eaf3401d172de8e32fa1e02c2349ed2ae40690311b820330f504d9ea4ea491dfc6e69bc63d2146975e19daa0b4c292bd1d6b9e603531928606b48b0c2e518fea2514fbba927b74c7971e585a7be23da924158f4398fa8e841ac0818b98062db736f0d7ad6325ac5f3f598d9fa3741604bf5fdf561443331c20c24a29f5dca56a4702dfbd0ac0d9c0c6fbe2174b1a6d59dafba65d38e22add6d52d980f077a1bfb27e91ad4f24af6db52a465220f952a088752246320e6ae5109142f2668f517ceb677e5a10d8b6291f4606c4d5d100778dc5ae5d74c495d4677f0c348615a244e325670db6e7ca3afc66862b78499c88ead05a6d4720b15f97f6d62164a677d56ed28493aac6eea2f0855d6dcf2cda7a953a05a3ab987abdab0907c624b7d50c1c793abc12955e3b3aee53d6fb12370b32b5240bc2228c6849e00c8b82105d10f9422e31d8c2b54d65248301ed654e1162e822d3d6775f33dbdb9eb7288703ba3a4791bd05a0d63823c9ceaf2ca000e389644313427b1fa4896c209795882ddeae32efd1696fa13b2b7fb927771e86507ffded382f74af36395b4c3f037e7ded6a1c1a31b103e5b57cefbdc22b05230d55b4fddc0b71696aa2496a63fa9bebf70cb06a6b9e012f6b375da086749f66e1d06053498eb03ded0daf6f64b751865a04a514bf97b65bb3da5f56781d589f39a36f55c0d93fd27bd325edab2563b9c91d6848dcf0e17a61b6abc2bfdb240b4c05f0942d9f74c611b3e2aed2d0551d8ed3ec541ec7e57a25c86e0568327add0f52f2264754f65d06d61da1014fc93d09e195a82646d4b6347cd96c3f1c9e4831087482c90f7a1ead75dc1d2bd80e1d6cb243571f6a0792f5bacbd80c66d954279d598bea4896f178f369d3392f9faa5f2ca2d2629a35bf7799564cf096057ff2993095aad229467169f317373c08dbf3d76fbb35a66b467508653b24ed67035ac2389ead7749b2b2a165a4aa430eaf549414a6c977371c4f1cc8f7c2dc345ac42b4ac43b50ae2e91d4a9f7e42d8e35e489df43e518c6821b627897dfc345d6abaf40b2230f10cbd7504bb047074d0c81a29108f518c928efac93dafb566db7303e0f895c78937bfd73317892569d1534489ce5521c5884534beffa9154811a51c4081e2e5908a6c86ee6d40162a60441a7cdbae39b09813ccf453988321705fe9faf83b8a840f7202f49d8312775f6f409cf229512dfffb60a6c239531c4b43dadd7d502f1356ffa7010763797586647d6f03f9c6090c6a19afd1f153e77bfb1f5a940cc51770469c67c3b7dafebfd5423cd064873193643b94c69114e12f2958b570cf9f863e54f5cfbe88b4d023be78e116667f6a8f3a12441ea7a12322a234b7cdb7a5bb4dfa96d318610142ca715efebb84b073634fde2504d343b7577dfd44a576218413c0d303a59149784a204ccbe50bf981267aec8850b2f4748988a459707c2c326e20e9a6011a87e46fd2c61c3944046686e61e1f2bfb5d09229671f48ba6786677896a1502edad2297174473c64f48837bb90ec1e194e7f76ede8b2d6586e89f69c9edaae0860c531df0678ecf12d0de0358a12ee0f0b1bb4660345b5184e5a875425a29903cc05366805c428097f9b868daf89c61f74b89731ede77485811f92a07ab0f608ceb8a7fd8299c73582f7f1df5038f6773114faf0a6531a397144443452528959ebcfd9d786ce5d4ea90dc795dcdfccc16c5579e5ee10ffa1aa9b1548fb804d048633ed69d904a39d88df4ddbcad47b9cc88e7e320db8495166818e1ca86c81231ce7f722235f9a93c99551fbb80e1685de8f3e8cc8c852d913e0ab1c7d9d9b4d1a2861552d87ab280d9216ee6afacdc22f7ba213bb65e74dbbb214c7727cae2bbf40abffdb8bdb612a32b64827a8bb87a9ae64376ebcbd8d79bf12871af3c6dbd6e7af603b0cf16637340405ddd90342eb5f2b7796294d2ba75ba6bcb4ded4f7058d6dc365ab8173693c846425edfaf2846abf77a9530ab5d397c7525f7d9ce17679832d659d32eb3bd4b5f965917b77a8cb1b23a6a261c163bfdcabef834b9e0086b73d2bafa931bc2a2913654db8d92ebcb2af7fdaabac18f76d9d8a319775ef41a014aa71dc73b9957d0133e0eb94c68c294be585eeba5b1c83d68f7e469178b28719f3da22337b8e0800cf717dcab43c397717e809a1df56ee6097635b7c29cb6fa7d48a8832db9a4bacbce04309cb46af91129f3e4c82ad911d4b968cb1f39fca75880eec12e8a59856e46a5b1c0e44c1181093163b6b8c4a958921159536af5a54e83f462e91d674821c34d54debfe6add07518245a5eed300e54499609c298d39b2c916bdacd2d994d0ccb1116c80b51e751f1a1df50f62ab83263609e406ef283c2034c8096fe044d48baae29bba25ae072ffd57dbac18c820d284cbf34608ae35357ddbbb2449978aa327ce8ffbe38588fbc2ebbce60d00877194960809bc4f02175077e093b17492023146a2e1b972606cfbc887463a56ad6a3157b9bab986766e771dc3fdc9a79a49abfef4d1288cf77c5bad43e27231785e6e10f4a3f28a76ca1bda56b200ee9a389746b256778dcf19a3b6d86b9fc95eeefe46096e9433df8a6d570f094699b5a776c5d155829d5de458ff487cc0a68c12f1a0209921b3a3d77719eeba513bb5ba6b92515a803dba6fb47447e1b314c8f27ab113812b52488f5dbbceadc0baa7ab7723aaaaf4b4f512501a9fde037e324d8e9016c983f46b07e6df195815e59b03ca88d44ea869e15b5f21102cc30ff8df5bdd2acfeb94b71277c0328026ca0ef386a8ac26fc1101a9486abb10348db7691a81fa43b9ce96bb2e38d19afef300617628f1426ff3e494d180c353bc855961ebab1cdaaedffd95f6b61c3cc24871e06e2dc89b62c0f4d2637954d6b027fb9c9c3d993ff3f67d1f7bddf9f76255be4d1480cf97697f31928417ac541b95cb76f425efd425288db3627f78dd2a69aa8c19ceaea5acf93651f4fd4e31b900536c3c2a3fd5dc2ab15c52220ba23bb57171dc4b9ead86ad83e9dba63e246dc49752d1ecc128147f9c7739fc915a8bbf232e28de68db3914a86802cf1d4bb5229dbb52ec63aca30898814018af6ea8f3fe1e3555411e90edc1c348524a8dbd1520091e91e45b552b6e20ddddfdff2225452fef171abedb9e160c46be71dc6108c9211e9c5acdb40d6a1d247c38256eef4c243dfa7837d269f2169254b31bba384338d1c6aecf3d7ca7beaeb36eed75e4cdb5fed91b9abea9bab02bd52cdfce811725adef2aaebe54e3e16581eee809351b550f3451679688f0eee47343b1f878074fecf2130a83cec00126e9bc7f2da567775b5e1f4b7a20b211fd7f75cee773e52b2e77307ecf4f86b068333f2e9714183bba5ede49bee8f5420f863a67c8fb3d7dc0c666a0370844d7911b5caa5771d024065a617961d086b6ca220631bb32e5a89c9d894df7dea4496eb11e0aaaf2eb9da4d5e8ad518779d97393e696341aef14d1aa8ebd9c69e1574a04d8649b705b5af6d233aecb74f2de8effb7ce59c26c207dc4c1247d49bc5b5412cab7f0bd07ab777368ebe7a84d474b5a6a1c3bb2a4ce7902c65ca7ea09636e9ae52a694bcca7f4fcd15ed7de8499b09294e8aa4ede9bfdcd6b43c91a916c4d6640a8f91cd0b034ee8d21224051787b9d1e9ffe3cfbff4a5755d5d1b24ddc453240f7ae7bcd446adc8d9833e61bbcf8f523160657fbecc4f3ebfbc269eec5fba5b57ffcb252078795a0f1d2d986390cdacc559fed19bbccbb0cc00f9c6179b4ede6053624a587b7f5a83b41f63be99f6589b87fc35406ed3947457e88e0792a3f93a1e33a93fb9f7741d52472324d32a0276bf83f1f2b7104148a703a3f9449a28d626345aa77fb9fdf16793478a62c64b89381b777dde05c3294f5e7578015968e037e15ee05a6b4b12d58dcfb36617b7cee99787d6e5bd158410e55785b3045c6b5077c6afb2d1f6b777baad6d33f586c6b208b84af147049b739029e3aa2e81c4d37d9c94a42d88ad632ad3efd325fe80cad8c460ccb7c36a6391680a95de850eea1de2e5f6a5ed3bccbf3bdd84034eccdaca1d1ba226841f9ba12dd003d993ba4e44a6aafbfae9dbbdac7db59e5d4099510c3a828b8143a0b86bb7d89edc085743916805b2e4d3aec954f9bcb4d2ce224a9199b6274027c614fa8b558a6789b24008fb3e22f68768bc427203e0953f8bb398164310a8489805467e5e82b3383f67e2709b3d4dc720424affde11f6d5a9fa1d4ab661f2a76318ef84efd01c900e996c987a250a29ec5062f5dc1b1528065f003d94c5c2a30989c6567fb462d93c693f9d0dc8ae75bb2d363af095047628b67153fbc9c626f5da74ccdcaae342f6895d61da8c4927a41612391ba547da13ed473f9b1c1fa6e4ac8f91fe67a8cff33b4d71b3ce9cae2093775ab351e3ea3a4de5693ce0fcb0681821b8543546a670afdd9588833ec3051d83732b6c2ea0ae1499ba6acd1990c16fdf99992aab814f2a6dc985a857914e570204af86ae798a9fd3b3396d7cc3dd10925bea6840667f540eb2db65f2e181f7729b11a633785ca764a35298c070b68e54f293ef3558600222e505cb7ff70bbb91d54f5e9ed4f5fa619a28f5c6c839373616982c0ba68225716b54e166ce58d84a0c3eac7415d18053639959a4551a60e4d71c8feab490b0d3a7cf0c879f7f8f8a4a47d8cecf6e53d12d43ce9ecf2fecac432b5bc311eb9827240f3ca1973f19dd2067f51b110700d885fdfe1ae1e490c5e4bafd115dc56cdbb32ebfb47eb14d55381250e5b4bb895c59cfea578f0d2ab3dda6d040ba03ed924c343ae44caafb0bcdff12bdbe5e54a0ef532cb0ad6c1f4915be2660c10b6dd637ba3d9cc911200682632b6509300326cf106fcb73080f6760da1807468a6036f24436ef28fcbf336ba4a6bd0d64e3d7eef975979e69ebafcf9891717023ec892d0d1f275640f704b122a13f09b8f6ac681f20818551fecdc73d1fe67411822dbbd93fe4f55a4bd6ac4bfeb452877ac351806467f66fe0d45cf9012e0ec9291be114c70990ef924492338a800e2cad408039cb60adbe42db2c6cf483ab5e27e067ae8450a3420811dfee6f6d7af980a9924e4b8db50abe6f13afbfe410b04fdedd3047f0353655f37bf229fb414af7f8d4f2e469b8211bc60a880be737af8a427b0838f1f18233990bff90b0550aac99dd3370b7c3e0471c46962f67bbabd84089d758352efc92c2c75b4f9382b4872100a65ad8bca251b61ee6d207e81df41abdb2c0208e6dab762d0c5045c06b7644987337655509bf61732c578565339fc52996f7e0c3b94f2b27dee2a1ee9006012c7711a3e4d1cb415270f56d7ffc429d802fe6061eb8df2f96d2fb87be815e660d1613d720f5beccecf79cbc86be38f0274f514a8b74d55d8bbac71f29d0d5b3e480c19f4f62d8849ea4a8af1efa416138ea4a61e340a905fb4243c99cbe153932bd25cf5b1a9a901c065ff6fdeaeeb517c0206c5321aa7cbb91a0e3d9692c614b0aa4f470f7e1ce6be3bc9b94c694520fdbcbb9f22d262a833b76ffde4844564610da4eb318aa7c48df6b4444bb8ed359852ec7147c207dd348df54b462f187a5dd0b0af129ad979b835705736f4a6cf96236a90a995e73e0c6711aafde232b085495024d9b782aabec8b071bbd9b920e364a45da7d59974dba93d0263422551a089923b991e6cb690843188cefa3206303844c1f7e1af1fdecf23ebf47cd69826bd9f711c78f522908e2d05ba158878dd2e2c98eb0666b1776fab831305f983fa2c0741a5c6bee1857edcfcb096d4b93896c9a4142867657b1594cd28e71adf788112ca9f9d356ad7cab649a7a72ba60854820f6fb28b426b8c4d689a8d6c37d838e6a1ce4ae7718401c431330e9194bede215a03f90ad8e68fdc7d661bffbcd076662cad56f66d2f7fa7af870c3e3f1c52bb05216feea41e4e180bae035dc2c1b870189dc046814a64d0cc5cc6e21fa5aec68890c91683b257f0c24aa97bb2bc536b06ba9b76b8934e829e707a68b0ac1775571e782f54808080712540a077e369861bd1d879d5283f8f70f41595055cabbc0905a25ac3bb4e136dafc400323d37362dda86469786b88a1a9535ac781b8a1e6da5d7fcddea15fa4c8dc70ef53dd52549d72a84b183425693c4429a16fa5fb71ac41e0604ecfc8fb7c60ec441df28f4551bfaa06ce06b5cfd48ff1fd41c8e55063e772b46c3ea1bb28d60852ee78acb7c65d8ff4cd9cb7537d3f06d9599ad12fbb17cb3067e8f3e8a2a7b3f13cb708742346ed4f3e8677b9b8164c2fbc4d314a6b5af9053e0d75cb012622924658be2ab1205befcdf8f00170ffa8f85a98ef4ddfb670920bcc2cd1cd8de100bebf865ef562bf0d10bb8073a0b8b20a7dba884486a202d0762aacb480c7d62b5830eabc2c15fe5044ff289c3589ed6e1581c4ce7c853fd12b88643c4d2058df559cfd0a6bd37c349f322fcacd8c852dd8fb47b670d453f88823fc87ddad9810abd59356eb67a662d74edc4a76fa0fc83f692d4ab9ea8b3cffcb8d76c2c81b4e655120000c575c1a86c6b34d499a84f960c29f9ac27eb9ec9646ef24281750e014cd7d8206f9a961cf906cefe408b0138d9e873559ab2929dcafc932ac8bc29137b0d87a0ba3e26db7b96264ee5810824d2497ced9ab95a213012e4962f183abe5e72e2138142b26a07b697702bf78b5ff7f337ce13e71382fef2eee8440dcf8c47c43e3d1ba2ff393bce17acce5e311aacf0843472ac414c79ca3f97107d18bcb1fe954e7ce35a96c9b4d957abe3f5d494c0b1c7362b8effac52981955ff928ca9aa6c18f944c01a2a7ebb1c96fa891c54255ef715a79b90d604dce731d77b9f2e756efcc24b1b1405eb12000e4157a67386389806895081a88eaaca9d9e156c41a39bfc676ec094942696a99886a634f3536d1856bae2a19152fe1522b297fc5d07fc9df955a4749f39785f8aa439dd264f815d758ee0ab086aea851eeb5f3ee525ee3b8fe2f0e575b30c97d3ca34b126ae4315e8f7be6c1f3ddc399633bcd37003bca8df1ee1cb2b3b3c113d49fa12cd5d67adca368f588b158d521b8ca7740c960dd29290cf29f90d830c8a038954372c4ec4a0c7b3a7ea6a6a988be9204311b7a9e1f583d698cc1d0ec89f889281286ed37e4411b70250dc7a3cb92a7d21bf79ef5994de460fbe02ed18d09fba87f02bde7cffe447ce82e4519a31b53f20be6720dbb652b7e844545538179d8efe2fd22f1d1a123c82d5270a79eb680dada7a638cdfb98a863c05fd873351262f5c9e961acb1ed3f94701974141b5e42083db241d5f4b3d695a6d6f3279d8a4e847a2475fbc75b7393f0371b36abb506493dbf55d3ca891bfdaaca3a3fee28164add159f3b1d908b2d072375964feb886493a2bfe8f0ca7dc892d9ef7671cb5e26596b7023aa282365da1056edde9290ddfb2b4201619705668b8d700db5430bd2aa93debbb6780423258dbcfe564a2d5c1d45483b969ce91599843dae0b15628698308210640cc28fbebf3fa68140961dd9018862aeacdc3b301e4425ed6970d74c6db2af3e03f5eae9da9c5c13c6069002f2223579c3ef4017619c1c32a9aae17ff8b8f9efe84fe69d2e410b3f8eac1779d140370c5f904417f82976e37003746a4937023e46618dfc80a66f3d8d67654def7651aa50a0bbc135d380060b8f6e92cf33707a14769bb00b09d601f5f9b9b430b3f04186d71cd27a2680758ea34a181ea579ed59b477f0683df349627989e187a548ac0d536fa0353b3f389d413cf26abdc4544d54243faee89cfd5917df5064c2621447a63c6ff73e3335f8f719b19d21ea1281aee3661ca03dd0a4a0eb2902cbbd8f481730461865f2b7afc57efa1504f7d292103f7cd4d28a9a6e3c8780483eda87a3db9a243b0eb6b656c5ff05c93bcb8dd98cd460e865fc6621d5285dca707f7dcb782efa81a181303ba7c8c2e09c04d2ff6474805a0b43785882ee1cd0ca96433e2a7d65b4590d950bba4ad41b78d482a19e0748059ce99a1895647cfc4013ad3c1f8dc50670be978e3fe1e38be0e641dd1a312b2fa5ef1dbdee39de51e20528c2a15d352e87124e546f5672d623734220bd155340d8a65bfdfc8b8f9084232b83d95f6a4f3329ccb1f37f2ca58cdefca6a442ba82e8e39fab874e44500459072510638ff5b3db3b5682513908a467959f1084c51c460e4af2ec1b825729680da617f3318d55e059cd07b96375d7b0805d4980e5046324387a9f9270f382040a1c4f9ca70b9641d720a21331b1a974d87d339ff17d7fb10d2591e78b4004fb1dceaee425819b31eb49091e6eb2c1b3ad3e5f5246f314dc2a70bc559f779f2685da1e235b9b362a102a102cdfc6d31a349b4bb965013604607675dd513bf06838030d1b5b27b1ec0018a5d97c07f1df4afa9bafca2f9eaaa99cf858c6c8ea7e341d7bd7c6ad8d134527b5ce36a6db8beb4a6d4d18f760c4465cbc8fbbabdf475036decf3b6fc0d3b2a5e2cb6f2e1daeb30f35f7beb33707149644ba80b997240c94cb782bc640718f6dbee4077272aa87fa83691948a827a26bdf173c30c08b7c56729f778c70937c148d33a4fcb17d6035b843ef1ce6c0724297c2dd1a75565365b8a85ca44f26325507502aa6927b6a920f49e3cc62d4e9fdc9883b9c7e8012720cd42d1e449c2e66dbe9ebbe6dcf23e25de63d1be107bd70e41faa35d76c2233d5da73b8723e9b71fe3b87b0886d17b6d40de6453f52c4929dd4d1fb6985aaf72c3b2003ca3d782b3c01ecdd19256a9f0e057bff64ef8ea1ae0558b2dbc4217c3db7a4bb6f8277e04f076d14e320aa7f45415c224a3a6bdf121e5cd6dea817a0a97be467c0484662e6014a19f4944314c9de9f4bd6096cd5f58e66b025bdc08e7308a5d4beaf6aadb96838082164795c0164ee34aa52d06195067a4172dfbf3323da128b1a0c3bbd4636dd24fd77344f8fd27f35e42c888736000a4988a43a8df17956a867a4f37eaa34270c09bc9f834facd3c1be58599c162c9b80e2d2af5d423987a3c247e63d29c6e433816a3acedf33a959d8d1d2272f8d2bdfd401c5e16b019e3dc42f946d613136480a2cac037cd5fa52ecfd111700df50fe8a19157674a16caa190f86d2d240a9545f0e31c8e885b992cb866c3a306c358484b9e39a4cd09be7734f30c130ddce1c2ec046bf43d6ff0399e5bfc259a62b841b4da3a02e4fa091a14b675fe1d327169e4197841e675b19e0a1de35b3786636828fa6996c709771028cfaab11dd8b3ddb01ac81d83862db47d1bd47c1dc91224cb98c6fe5c8766c5b7d165a73330c4ed58e1263e9ac05f8f8c8cf31b4888dcb24e3c6282c6676bb35ccddbcb468ad36e833b246826761304c4ab7a20dd9da8e226c663d602b07c4daf3b3eb005404bdb3c968aa2f49764ae51790f58188249817985ebe167c49c7f3c6d61dc1e8975545eb512d72c041cc637e3847f696352a571bc5bd775d837154b5edcaa2e4b4adb8b2a67d72314c4f174aeb3a4ddb77b646ca4500ecbe9da93bd152b780939200c0e1d4093e6e25e25bd314fc674baba3c9735466655a36792053817fa7ce5f9fc06e9c46c393f6de1f78a3a51220e51274d246963d118a32b4267fe77437e5dad940154f380c6aa43705fae652508278946912df5ca2fe114581be0d96ab8acd25eb3f1d92ee37d6dae33d3aa194c1991a60fc5481c7ad222838e9a3f112ba0639e13d0b659fe04ff367f967a4078d76ccc44d815357cdd2561a9b4203d379667d057140e34c96aeb96b982b63aa4c840c021dfe89f93a8e5c993bee84593273542f53d235d5d20c3c569d371a30a6754401709e4c625045adf21721085d457331791af0860eda89fcd72b5c8d567f61f09d7960fdc0ff17aeba023d67d00b003550545139e636d2bf0a5419d411e743f1bdde14727fa1d8c9b84022d051f3daea7fc8b7cb7ac97b1f3f460a04d3d03a7fcf8eeddf0172f388cefff2c3bd2eb13e9b82f23aad76bebbc296877a331465e8b502bb68bc18aa664173203fa218de3d0ae3688baea019c8cac36b6edccb1647a4e62514857de25219ca01f1b71ab22ead6057057b5fbfba4af54b953ed94c7131cf8fed6a1de8399285e8373b8966f3b2e0a6908be5275a725db650a0f78a5088b7a2ec10310964face4428a3b3ae35acc92f754d884ce3a4e395611e956f3bd6a37614c6a44897a5017d96fc62d0481b81268d6c210d17b089ce2dc7aa560e9eed19571a4ba7ed4ccba9176c55e6a07f5cc1e79eb3281221c5977d69512944f9055191cba9bbc2b9291d3ee883c117d3a3e5f5521cc00fd35f02b655f91ed5488028224244f216207407d0a50ac039dc91ee7eeb9c4e0714952d076d7c7e44dc1bcd1dd3128c7dffaebc9937e84860e63e23182fa0760c8a2795db1d4f2f899a6565d86994574a1fa2396b75da9bc026d3e3297ff79ffa64018040a9ca1ec2d7c59be0d0ac7d67149e59e797cfc9c2e1112ab242699400568f9d39116404da67b74190a28def678182663e5d4314d23d4df76fedb9498b51bcbf352b23d00d8adfd1efb5a96c9a0df47acc6186fa6295f81ac2682ecb5cca72219084970de9c46cef270be32a63e13f07c506e7a3a404b3285b7bfdac0b41e1ae925a1cf5538571f722e60fe4d06b8e343b84e42b8682236585666d528013fc96e23fdc2ec24115738e2f1eeec2f1555558f4c9a6233e26ce524161fd0bb6c4e3d1c56c3c58d2df25e2dad82fe4144d9edd4694e48b80d19b5df2c993888e846558a08e6587f224f6335a894e05731e98f5f2ce1c7801f4bb7220071e1fd3d1c3670f786db6ef474ab4f7deb4e0ec19687ae3f4378bed57d90c24ee034ffa69cccc91cf7925e81fa458ea4235b7638b0bdb69b74a5fc99ef5c6e633b81bd628a1870706e2767598200ba649a7735aa667ba44c12d4112604b1324808734e015dfeeb0423235fb24b14fdc869e68b9152a868698f8d2c322ff6b826722f7e4cee501a45ce557aa8feca66aef0ec4f3c8bb6194a04f53d352af30452fde28491d55898e190d6a26a20ccaf77eaa63dbea8f13446c2fd582eae1c40d65a4c0ad91eb4f51c5c8745e76a46158662b720c294bc87b7b00f8499b84fd0c1bee15d355957075fb8056b8dc659d0b9782b876221da1a8c6972328170ef9922c1b9e7fa23b059f7c7ec0d2d2466f0506ce22faaf715b55d51d47c9dee6fa689197c9b99ebdfd876ac22892c5af31c936a0662c9e996b632e2818f78ce556bf21ae8d90e92d0b1f8ea793567cfd79ef7a664eac266ab3ff0576a8ad89a10c120c7a774a2d9f82c0a9fb942076d9b0d0b4c43fe5cb486963b4790a64e80e802467475db1a7dd7b7538cd66dc250d8c8a7a4b31f598a70b9c26b6a64da660f716599cbfba072b8c78a22e8d9af703df54662bd60439825d1dcf1bfa70300a9f4defb7d1158ed4f319e8f4937457a95f646186e13e137ca0e1a07205b700174bfc8df01b8bedf56945c4b8694e452251b744d6eb08c20fa026bc2100f5514d7633c2200812e769bccf55018a1084a2d368cb63017d7f26b66d7884354bb23557a0b1fe88f80fb933d393a6bbb72684259663697313f9ed38701ea3de1bd39556b6b74678b7579fafbcf533b3b14a86361f817eb079fd77ef8ce93448fb6947ce3aee0abf2499e2208542db0c116c61df6148a745beff4bca4e5786e91f15f1a19c7d79f6081c6c23a0b54b41baab38f19db7b68ed1712d41341e48b4db0055f09988608741ea1b0a0a8852578f5d771cde1cc2108e5df59be9c71ed92e8c0172e94cdc7b59fd9accf3620321eb6d53c463a06c061761f0a4b7a8a6774a58e44e5405a92eb6f182bc475749bc5b32d3d4a75f210240d3f1fe65c3a6a2296a81120bfea9f75f275ade7355a5918f2dcced6f419f406bb3a09907f51c0d871e9b9e480ce66dd2c98b09a6bfcb20a488cb3b80386e0ade029040e6af1ec59a65baba4cd446e020bc6a36cd9ce62a90ec8b0357d72c6da2b7b05401ede99401084209b31cec476fd55ca8dcf7874e2f8bccc054c49253bf5505cf16cf925ff268f5eb6d61fbfdeaf95b2d6b57f5f6b754293d387d498268dcabf7af7b34ab91276ad3c5b1aebd41df8b885c46fee6430880a24c5202b15029076452f86ed9b2e90bbd567c3d0f3f0c519b5942f343e55e72643ddde23a8137be8437f7393fcc6f0ce3487066b161e97fb4bacfffff14d4616f005606ddc677f115365c7abc65a9dae6c59d46dcedc29393d1ef777c4febfc7acd087004adb12a99ade59a58739a4eebb7121b83661c11c8c0df312fe28a83d81ca17ff867ef3261892a6af1fa672742f3aee8399dce8b24a310b651464357fcffda60cd0bda1770d57f2c42b23693b0e8773ed25508930b8060e2d552dba9b1759e4c3798fb702c267aff2520b3366428dc15c94b590ab11b9fe2b72ef19807952fd18fedbea0150eb9c802dc4289892eb305fbac9646e8e17297a3a2bd357a5a7ee8b492931b980d4b7f742ac918850e0df76ee957604b0d5ea5d68fa959be84cc1bb054c804752306ac97459ceb9c521e609abf6ed00f5d4dbd47e5364f96b8ac29440b9ef5c9954575339bf7a5d524af4f801117adc35feb38d2a431798288689aa5c0b5697285aa2c76e2c0cde2e1614c8d33837cd15a00a0771585cc5c5007afc6c59c225909f07363a47e095aa0efca0e626db2c7b73e5eb87f5774ff7e65f00bc1798ee4c7880ea08ad5b8a0a8dd844c96060f2648fe12902019087080c4bb396cddafb1b26aaaca2243e8d9e6f2dd0a490268c37abadf41dd27fa85458860a002253eb5803e97036d612c6475d996d9c30104ac5758357f0127e4fc53b332924ef5eba0f68935f3ea66c0623c6efe6a4b9bf1d329d52655cdaacfda7f4a42fc15263b4c7b09b11a2c5d76d537c14a203166208a5126445d3283a504724ec4005f29a31303abb099bba5c726e64f5b9d5f9f29c3360404cae385d5426c70560e343bf4b5d3f9f83a152c17873e010bec878a1b7c4ec749de3f254c32ab82a69ff47dde07f4c38dad9228a083162e5cb52dd277ebbd1266e5183f980db6bfb9d30ce29b0e303f491eb60d8e1d8e5ba0e69251f0b23930df51640cfefff2db4a1cae3780a4fe93c7037a518e1a47335b41dc3862a338338776f4b07735ddac09bc23bf57013d5326dfdb0860a0cfa14f35de6669f45219389c798780413263bc0f4230f67080d29c0cf30b960836b2e69991ee5e50e4ca3fdfff8c61e3b3eaa8138daf9481d7f56feac5ae503711004c322320cd3c58440ff0e66634b1174cf0fc65e2e40f8367149162f05bc6e1db2e34ecfa23e99413a4e0e0bbaf44021a9b0863945ef6fce9985b7608dd40b1b4aca430039ae96f6bd1f3bfc596430eeb8557a93d4cfa9cf99ed432c47634da70d766cc8e2c952519126c52eed95affe79eba4ab072ecdabf81a9591ccc171a1dc494b00c2bfa55a88c85996795b24c57ca2864f8d0ad4a5a33844d153663aa3c9d7a8e5e403f30f87c7b375ca0efa0107533569b2b3ab45c0d541815882d26c6c86251c320650af4ff69202cc67558a501b35003c1de1ef6306f9935187bad5b18995faac32c3c2bd455132778f61c195044c1b4d12159babfdca864cb1608bf64907d2205f2dfbb641349347f6fa5a00d9976e1d6f6e8cdaf77cea64080990fceec48f127463bbe64ff5504bef53d6b5e7d3585f25333b0d8b94da7fa3bdb4a01ce7dfd7697cdb0f410efa2ffedda4ba4b3378e4a69de726d6e7b1959cc46eeea20d24a48214c448fdf27b92aa89265c036b4e35e24d95c7576056ff6e9c7c3b55bf2a0143d973ff58c1813b529bb50cba2478c8776c413c1f4679585f81986347253ed903e793f45642a6504f59be5f0a11c786f2edd485eee96b905292042cb39cce1b636c7bf86cd2ad245379f246170dcf485f55e8196a64851be98ee148af7a664c2b5d470a315e4d20d2cf6d35dfecc2651b525b84ddf45c1b6119affd37dc12007ed2665ba6ba79e199e78fe42f8840e56c0a613d417ad0ee91a06aa0815cd9412aa2829b12415b6d066993985217e605966240b4817b9536ced1a8c5f2d6eeb6a8e957a5858781c3e7f0283366f4869f069fec5551b285991ec7d44cddcdbeec8a0a47bc5bd888c61eed8fd4cb3d918ce30cdaa4b11152edb45b3d7d6a59afa1da8c53c0ea255f03e54a2373dee3cf3df5094ce27f22757955d0ffc5780d99ca295b51701f3da97cef2efbf1a59848a2926a2fc466f125351d1fb0610032e45968d20ecc30d834de5a192131bcfb2555891d5ef57b16e22040e00380aceed5c7128158a214b9d22f6030bd1cf024f58f5169cdde8e1068a0c155c5cbae217dcb868ae7365216c1ec4e02c12b2a66d8ba0f4d5b8e2bbfa6fd9753a2096a0894ec88670b9467b9347c41f2bfe7917a20e90e4cc50f805a731e8206de1a49a0288f62a781c7103760feaa6e14d73965362f3f24cf62040786b1f40eec034ebdfa25ea88aa78dd4ecd123e7b44e9ac7f8a587060da8b9e21cd357b7932a7945cb97356f32eafbdaf6889a221190e1d2e5b892e233546f287136fd19756705784571bb5d0a20e9f866001b873a3c40ce4b8b57e2aff244165d1a1cf9a919acb2500eab1fc98b67995d2c8d4753626c79d9f6671f5fed2f3d39ad4259b9dcc1e779d55d155b7ade7791aa1b8169cb633d58760985cff25ec423a82c752e6567cc100fce34cffe444c7813a3594d4db5a5eb8df73a81359653e21c5170e427c7830a24abefcc52aa82e5950e65e66b5f84fff8b37841bb336ff6d8c6b28a594cd3d6b3bf2ed80c39e94cd0d0cfd10e32b9031f660f0ab1b40c5b4bf63efe7ceaddff5b24728e66f9a2bdfdfb62681ca0f178af3b03892091fd7f95dcfde70fcb94cad64c879c7f259ff4a4dffcef8e70b8801007c8e68575d94d1830bd2fdeac22f1b01d133fb578cbf8b195ac590a781b7c558e563d4b0253aa483406259fe2ff1c6110769d0bd920643bc87e6ced102a7508db8ba50de86aeee2086afeab5ee038f246fa26d7d55c2499339c91e48e64fba96b82d9677e02aff5689306fac8c9a1fc8f5a88de9cfa3669e38b47bc7caeb122d6271774ea0d859f0e1835731d7c549b7730112a27655a1cc6cc5206b5c1bbaac00911ca1b4e2348044f7412f8c99631a30543dc159de9f711261229db0c4a54194026c29e752c5f0a03a90e8bff7d0653f2523bc3a37553589cc8e4db6ef0d337abbbdaddbe37962d8104d0c8b3e59408a73442306dc295500c60b6076cc0ee35bf41d4807f4afaae19c0c215d5a4811ae05b200db2852aab2ea0336be0ca1e66ec2c228545b1631a7aca639cd4097a559ca55abcdc55a5b6814af9f23c6b01bf51312ebfd75bc5b775c9565e7d2751397dafbc4c6fd283b90899ee6e243eafa2eae73932f4920d1e0cc043de4f93d92bab3e2ad5fe91308b5ee2c6e5c09d97e5e82235742ed5a8df6105ad2fa68194765a2225188572d06e39b644908cbcddd7961d28462c62e0aa105b84afd71b243f57667bd3ed1bbe895caa112e7f82f095954ce73113f2ecc56ce6de2daa87fe2a223e9abda67e113cace50328ef105bc1c714f23cb0e94f249a33d763814fce4433313864c4c7f92a50a629dbda739429baacdb173b2ea26ddddf79ba41ea31073ad3b7aa99ee1efa2331c55749fe02e517ab51ad6bcea13be71381845b337dacb1c61206c9f7a332f203a8a77d1b2724194ecd1489809329c2ddf17f4d38ff3d6448760033f13bf81ec5203906d79a5674772d585f0f73b00dc7ef6d5958252e903e7442e91376fcb0dbd83931680042d2ccf9b2591c0a56d7bf333c812a6d87f0db22c39d41658cbd7f3d0b218135c835add6b239bbabf12842e6a6796b79af1adc787aaf44f8ea24a57755d6879fc8c5c4755d7b93592c6352fc08339af5132b54b2aba6c1d5decdf52f8deb2a5f1491419499f1b9db278d60faa612aff891ad22630c3976477486360ed7fa6944b4a0d7a86f0a110e6de9f597bc4e138a73d482c8199beca78c5699d6353da9e633c04aade1658bf0f110d199d29436f7e42c49eab531027ce2ed9d1c1d746055947e550ba2ac50dc3b68f94cb2a0ad16c8576b5c4a2eab4ce676342d6cc56ce57200d870adc227f997b041dbec7b8072acc8a00bc97b6a5045082ed7846227bc2105523892b78a150fc580b301f6eddd57084d2a817f6c2828192037f6e4f8df0d5d8781bfd84cb57de4548ac70a7580d6983cee51b84ae247e48d2630eca8c3682fc4fbcfe72fa5f60a7e9a24bf252ee39ce7586c958afe695302e6d002ef1f1696b2f0eeaec3bac0db52b71d9375464b8bdfa446a84a07c450d67ad3f17990da6f182c9b4f71a985a4f65f37c0fb27436b9a344d4d3474a4396b2268ab946dcbde8214c1852d6b2177eb36d6fef97ae2c8eeaba376102b1d38b5931cf3477c34b28e39e3ee84877d493d0f6f7380cdbeabb1df90893a1b94d7c2501e15e3f77a465107ebb64727fb8e1070ed8bccb764b5cd654b158e7aa693693d49fa87ef36db499239cda036540d35a5b1dad1602884a5e946d18e76d94b1b0d57f45f4342f3dd2b2311f1384dcbef57a1f18075eb2cacfb16ade5e7d6373dde7a8e33f5e9d36350d05411a6ae7e7bcb14e74246a88ea42fbb793a1a8ff7cea4f09006127ae7689e2ae7efcf099207d3e5b15e73cdf2cad1c7e64eccb9d1d6d299f1ee37d70ac92319a426a36c03f33ce4fd8fae322999b4945df15b517b12e7b3078caea4400867b93f16158bb09fd498e52eebfe7f8a2774b3bbb4ef7dea7ffbe2005e79a7d42b5c82b0381f52ca7e78afe5c0fa34040eebee2ff6aff71277ee9ce48130b7a3f6ad3052ac6de0131867362dcd76b1d721fa1c6234fa33419259524b2c5fa2089a6067fdde1a87bae79d5c97fdf63b958485559108d331dfa2ea5a5f91d954377589edc7707d5700c14a9749d502b4c3efe9c1a49eb432d6ca25e74cd98c5b2ce9575badff44ecd1451df0519a60dd4494485e59f825ad27397f03710328efc466c21fef559431870a78af339acef71118d4a3e0178485a5400c7ca0a79489c7934770c120f9607c64862cf4520adcf5c84dec32e1aec4521d775e91b281d17037804c8901d1a8d079e24c8e435bf6f2ec5b78427bb719c3f5113cd82ca14823ca1cff93fdfb01a6f73a80a63ad42fa8df99f8235f6becb275cfdf15538202257e703f70234848c01ab8453c9dfa95a6d81d661fa1431e6c0ad963a8cdbb32fb345f8ffc02c230a1b05b23556ab2b54e38dcfe528dc23c0a32259a610d3168c3d26681be80ffc975d8a975dd449517ad5b5e2e1ae9785728b64d680384ae92f58289c76ed56f4707fa0328a517ff41c87df58bf39c073d7255c1d6f33f2544098051340d6a87e406bededd80b086ba4c5e92eeb4416a81403660ab8a0437805b79eff9e9e77723e468feb4449b9547f37e963da2839d38763513b7cee42589f5f2a7843e12818a5094c45fd35c9a754f6c6861cb24abd71699e4f1d5d64dd14fc8cab940ab26f4dd1be93e17cc3885196f8130040fb846c2be3f27211277a36723f96210cb0fc7a824f149a5a2431ca6e4c99f144c535792472f55570e270cd009ee0db9d31f5b76c7cc55cffaf989d8957a85596233c9dd77323a170e5857e2f0d923db2c49054e9bab4ff88fa00ad4814163dcaab299a69c9aa4512bca845c114db0aa612646eaf4e6d2b3e018838b14dac0ac11b400fe918c61146a3406e72b0a2cb20407c3efb298b7d34c2076a8ebf3d33516253749d830abe3a8109f5a33ef60cae5fe4e3e23703cb62074361d4767056050b470d7f002d1407840d16a7d87552ffa3e893468ac7be58741bf90c7c227541e37250a290849fb7fac49efa955075ecf2a1c606c9fb0fa64c701c285a4003da335d5ee359f701c8b9452fa8b47d38955cf3e95308c4ba645340e15a652148e519f345c5d286b60ddf00ab6611a05407cd223295af4db09bf482c156ed0527105a00dee18f91bde5fb6b152660490039c5c5ecbe77b4f35e5000607948452d92a5fa12d7ffe81ea19c9aaa5e2868d9ddc0b83a6929e3c566d1d1b33bdb5c0695d1f592af69934c7aa6001af9add83ee9287290c9ad3289f0641b280a4b9ae87f81eab04a57f85ac3b654c207db9e7f1321c10674043649355b8201ece8a2582d4d34959df1435963262b7568fb1001cf1b6bd90f2c0fdf080a0d4e0d62b25b405c97cb288638623560ecf5d3530c34f0fdd4b0dd66aaf64eb904608db31552302ab051f1eb2fe6edcb85208a0edebdf45f67146d8ac35c0b283f28a0f6d05eade8bc9e86c45fd0d2079fd8f16418366375ce6db5c23d250f82ab4534d0143ef40fd9417d72904f997d76d362bce8c073f11789f045f3b4f9d7a794fb35ab97d39135a993d65c55706870ed4d35d9a40124f3c820ea6dbd1574f82c57baf8d48e8b27617b58c3d78ffd1769ad8f6cff2cb5c5b38f72099ef0ddfe56f09c70a7c45b51c0ffc28e94217930da0767b20dfe37ef9935b388d7729314312019992ece1748fc1e1dc9def8c98a55d3628ef3a4f792f38adc16fcc87ce593639ba438fdfad9d74b10f2a6d6d2d9195b175e861b1af2e2b39c321edf87de76373c3bfd84ad097f787e4e84a439454bdf02e9b64497ec87e072336d5bee2138cef6886aeb8015c3b6a4c4d6c28f65ba077bb53b008bac66e14878f56d3584d4e90e97cbf8a35d803d4e338bb9c9d16038cd340c9d583801a97bd3242c52fe5e4a58c67bfada2555056be18c02509036d5de9d212a0acd62be19a505bacebb69d90b611e4fa83638d438f51751957b21d395d5514a11f55b55991ecd3c671ffa722f3ebaad5052aff84160f0579cdc818d67e2b0df3c3dec1b0e83e84cd57a37572a2bcd7cc109a00ff0161e755fc5d3fe287fa50fe8af1fd4fba2186b82d958fbdbf1dbdb6e2db47eb94e23b8be795e22a05d0e60ff13df16872980c18b843bc951a02616e0aa9697a77f10c52d49aac4f0c9ddd522a94b28a22320d7bbd8992e53caed6e0945e8911dba0d058343899841c36707d16654fb84ab1a320719328dd7804653b38fdd081f71300531d166681f509e3e9a55d74093859063b157020eee51b37c86307d3307bfe2ce1dcba1dc07aa4abd526f5ce61a416fb5705ea2a7a598c34eaa9390e08d58e4223d23d1bb5481dbeea65ee597a8881091940c32d56fff09213ed34de10c89d85bf14c3937db6738e9bcb3b4e9ce8feaa4e72e24a9af90db5eed1c3d8776b121904cb04c032a72b55bdcdf76b2f93ad66163b2d454e655dd7c159853b9bb1eb4d395695e2b965184be1b41b047929e70e815f3da01f98bb5ef7d55cee0b79b8b35fca32a57441e93dcc5f7674da3791f459c924d3b99ecee525c67e716d23405f91649e66a40f64d98632ef74e31b70a9062c824a9e0014995405ddaa52eedcd3dbb9a93c6612ca641c8267756e20e5d387a04a50398ddcbe89918f7347c00baf3dca7cedbbc4e8628614e804e0cfdbcc6004bb4c659c92a8dcd6cad299aa92736272f29e8dacc967d76ff5cbd4fbf30f414b5b003cba1f2aecd83cff77a018c3fefc5b62ed72111e026691d6b46810949e7c7c5634b31011d35d03d3181c724c74fd36d3dc4e4be5d6dd7815a863b449aceffd95b52df419d165d9273540406db13514f90c6c454c2031b3c0ed81377c7853d528d76711e916736649dd97436347472f237ddbb9960d1dcad7a5993b5632e08d95ef80ecdd4ef855f1d3784fb1ba7c85ce9c6e3792e3eea42cf10f996deca95e3e404c8106c88642bdeefbf9be8f9c4bb7903e5727211edd36c9ea2e264d4675850eed598b94fb92e4fcacf86085fe986ce536f9d4ed96af29d912d4bc2946f0c0f0ff0cd1410ca5e50f4a4764bb82f8bccfb89f7e734292f42caee0160db1078d3aa216f7fdec129b16b9d4fcb4ab75e31aa2f23805b10f55f68bf91c01d60553d658e3c1eba741ec785caf83e66ccf9cd728f8772f0f9d25f97419a5f82a84f8c92b337a4544b9f85e266583b922f3e0537c2f46273bdb3774cf85c7e8b0ca8a2b1572e9f0acb60661af86720c5938b8ee3e7ba5ae239d2f13323f7ef067101a5f0c994eee34aed5954d475f21beac5a5b18ea663b0995371ca9fae7b389f3a627b64e0b41efeae0604dffdebcce74537fcf50649e6879fdd3ccdf0ddf24d62bc0a31e78b54fb59b0a9104589dfecfc126e7acf6131b1f3cfd82a9af76c777f15ce34ea13edc6e6779a3521b9f8e20b5b3bdde31c4094a7b167ed04f169c625cfa06d68db3d1fb8a56803fd06bda91a3b67631dc2b2014087678883a4feb9772099c65e051ed46e9bfb0eaade2ee552c26503807dc3e5c2dd0f05ede56cda9e36d8cdd78246961c5edae4642c9295bad6d86982e8661e579bbc9e7d4598c5fb4ea2daafbcbfd438009ce394868528cd4532934a7b2a6fa10da86c4a80ba8f3390a2301bd7a4f60970c1d01b5f9cb6156190134c720db50dd4ef47ebac9222b80699cd3009d238e4620a214e756b43dae570e4a022ae5599c0f41dfd670bd46897bf42bd472d22631a9ce1a6fcd4f664d4ec43fc4585d06baf0f71042e92e733b5d7e47f77df251c54b720dcbcf6892759a31fb949fda5e7cdcda8c8d1e437b29cc61c39d838378538ebaa700d5a84f7d16ddc7645da2259e87108d40b28a194c0ed80c89256a658cfa6dda57a7582025fb1d9171ca6d692bd1d9271721ad8d0ea7135fa64d869d544fd49301044722ee0da1e145595ec9a89146997f88393a5af8bd14ca0fa14b9ec2d91b9544c070623d44402dbe095030e849b10098f1223799cdcfcca6258ef517d6cff62f3a4b19852bf388a8ccc50b0ae4ec63da5e1e8589dac7b11001d6168849759707623c4eb8c3116474cf44ee21bac2eae3eddc4f80aa32b2114be368456fa03b4002160d259e37463409036b18e19e08d8f323e912e0c593da9c76ffefedbc8e0e25f86b81912c48cf02467c1c50609fdcd7bc697e25f8adcc4ca1e6dfb9432f5e1b0541dd374a99153b52b89e52eafb71d3b404a02c22e52498478bd2f4437a887fc56af1f6c58c679888881a4c1ecaf810ecac05e72face3c40885a040cb98b16f13bae133256ddc5109beab00142facacb7bbfce4bc7af2d7022ebb0e4776a55a174c5326fb2500237be61af25201e324d3f01fe68b002ee4427f38f1221393237387f1ae3059148fab028dbcbde6a62eff7546ed565f2f3172d2c7b10f437672d1a007c9bd0a6cf400e94791445c147164fbbb0625103dacfe380ef9ed27b6521a530ffef10d981aaebbad8a0ddc5c2a3ec7efb562cf2338735c3b640425293d72066426a13fde3c68a2828bff068c03ac24e918e98ffbdf7bd9ea42820e06b8743d567c5c492f84df1b489f05ba3175e790517ed5f79271683b0dab7741ff83d55cf380366d59720f69c208d4460ba1849bda41ad0127725754f4a443facd2a94e259bf335c928e9c483d74d4ac10890ff524bff57b1aebb3389c01ed0e09a3fcd95f1e2fa24478d49949a8791192233a940348b4d6e452628e94a23f598f0cc2afbecc3cfbb490f05673b177d4c8f5209ed04f5488132928eae2d31d19f0a8aa95f67e59558a2939bd3a4b4a6b23b0a364d0290b0e82d5ab869e035d49ee03c6ce7c60fcaa4239aad034fd04bed9c95ebf8df6d6bdcb46e9cfd6f16d1696d91dd44c77ce5611538268a185f262907a79caa05a0ede6592a5e3c7c35f8a857a82872b1d1cbb2cf1ced83b7aaf790785851580b1dd322a74a8c3e824faa4448d98cabad224d3ac4f5f32d62b9a51d3e54a8b555de3570ce201c72b3dbbf7845a779e63a2979792fc3a8bf07515463a615a9d23c0164fa7490a61cfd06471c6b909ec260e007b40d7dbfcd73877e7b82afb63a010892b46b1eab14ea78f0e76c4c1a5ccd8b0968ae326d90d0d8d9563b48b231673e14fa6d3f157d2d8a320a2a5ac397da7bab8ce5bf9b7027bd137f779eb42c28602210fa9f8855ac044d82be48a1b08320b599dbed5310c1ef7fcfb72b4cf3206a6ea11eb4bda9ed9451d18af00480f2aa41ff5efb7c01fae2c7ba1203ae915e86702253544981a20bd6d74e8e95f9a9b9beabc45db54dee461bdd0bc8bcf8f723e6b72f0db604cc77644a54d1c32d74ab0dee507c7df25f817649d7949ed10b8be195eb23ee3afeb35de20977d47f197206fc82f6f607a76a20c8b74665c495f5e089558722c7091bc82d1b9fe3e6a14f230ce925e607c5e5d37145738e585341f49b9e1c8c8732c15579f1e9101d656e50bb114d21eb1970fc67b41e16afc56ed7577bc96961a678f2ea888e63abdebaf665686adbc1ba13b5e44de10346d49b570c652808431a815e403a9d76948367f2992a02130d27acade32665603db23bacc7df7bd2891cce45f13b2d70f57f30d172809de864201da19f5b8c8d898e17b10772d0e3e9b7a6a9aef3e3a960e1f8978305aca12d9248b1bdc6707fdfe5c0c147ca855355e7efcde0fc537114b2dc1f881753a80ef832ad5c5afebba00fa957c186906f7ee677a8d1a2334843b07382457f57916438e2c1bbfb810098913f9fc6807ac39e32fccd06e5013c1c77d7aab1bd7d196c862171dbf98d301b1f47e730ecdf911b8c4eaeb7263c77e145f1b1218348fdef4563b2dc886e6c46095e68a58cf97aa21f2193975cc1575738c7a796cfd2ecf3f4642f9b72409ca49c74fa94d5f6a6984fbbf6dd3e97ae0ff92fda42896ca3e495aea1ec47ecf411ce5e7ee1b10eb7e7401e913ead68dfd47007ef7e7747dc34f5b1c358ad09fbbed74f95446c4b8b9b0f3322426a22431106434da84743d95a22c371986a5096c1b3559e466959025fe7dcdb970d899ffc4fe4326381655a970d85b93988a2d070d1e8cfcad766dd84a9a2e48daed0f36a8cad5855a7c7e2d9deef9bbae9dd9a2b193afa3c0c8b54d4ae9d21da8a385d60e3fa6cd20234799042d27ccc8af589fc7cb0c7f917916cde1db16b2c870113f686fdce67ffe9cd4854c227cb533f492e089234eab5984598fb4b45cd1abbc27c87d9aaa12cdfb9962cfe08b72b7cddfbd5d381cec4a51d5c0e06fe794cd5e62d405b8867ca9cbb686d534a708d3a0485b2fe3538dc356119704a829b338f1c939e4eecd292cdd99e85b9a0808c79dd1878788e9d61418708911958aba3ce14ebd0d54257146fb40ac7d782c5750be12ccea845a8f8e34f6a897be0d890f7f90f262b37823119255aaa7c53728ce05c7ed1e557140c4c8f446d41b095d0ad865f26919f9ce34972a18f05c2a8040c21229f4fc69a0eb818da8cee3aef0fd03d16a9faa74745ec7d15a590c88e05c804e0d97c99880c4d4b9c8473fea675914cb7a95e38d5ede7c3367264e5efeb6e1fa00b4e9e58c332a0b1b3de704884f354781c49e220fd2a3bf0ffd0ee40d22592af68facf9df392712e96d36c5c7db30a734e1fb571c07848b2d0f6dbb9deb2109c86af2c0769f89d7ee9954321bd2802ca104aceaccfafbff5d49a5c69f395af0853a57c7666e52344d867c0aa6eb47eb3f35b8129a01d83eec114a85d2af6d60e043f295b37226de6a9f0391a77b03f63a439905053113b198ead7dff4f9f8509e236d4d1ed3eacb59283512b83fd8620c3fdf8ae4b909d73d9a608d3257aa845788064344fb314cf465616777ddfd4e4261a58d2670a2080d0dbaa1c4e6b012f894bbfe79452bdddf47238f43bbf8475696fb9a28ae9cf629dd58010a0ffe47e3f6b9138d07b7cd9f0999fe0401d699b0f7298a9e2c02973f70444fa335ff6e5b2dae2647915c346cd2809aae5e97b1e979b55ddcfa92e9508916a51816a038ddf420a761d89aadfd33b580b02153ec799a696e1288128506aabe9ccf06a145af2a8909067a7ea392738cf9485d1c801c8995ad9322f7905d41f80f377c3a5cda7d3cd2d819a89b1d07345241967552cfccb85d19fd5b47fcb8bc0450d6fe1005fc91930c92f873ce9b50380cc99f0187334c01ade8e6b85fe208273e2190b7bca76de01f3b16f4a7f2f4064ce054bd5b91c4b2b974aa8e13cbc784262b291fa287cced13dc9cc48ec96005a13ef95e34b6f5597b7d796538ba4e3b41620fd42a688b806f61e4785ec8e64e84635eee99d1619c1d7be1620022224c60145ef523193db8e01395c1b83378bae3da6a45b0834bcf551d0361b140184fc50e5f6a7cbee8b5146bbff4063074082f77f5b12187b0803304d8a70447600f2f56d7bb2313b49d2f05b61c52262c814cf3d43eab595f9e1730b3eaa7490b05e3c286a964258fd63ca611ab39f6361aa7e118cecceb45aa64d936c24df7ebe1d1691616ad326177f15568777949e0e0ae05f53502773f8524a5237b94b175e786142cccc813794a608d38be0e561d9435c3e3ce0e71990011c545913236c7fc4a8f651dd152d679111ef37b6afe5a26c09e70d4d484cab73ca82efcf124bc36b2c0754738b16db61f27a2f5e7931bff0a59a592c4ea9197bbf88f2cca591ec54585cbbba76a2ca947e92876dc3d997eef3c546d4f5bf3659f6623a21b6086bd23d647569ec76db6adbb6a4d156e878da676d0ed9e456772c50721fd76aecd1715e41d74e87e6545ea3c9e726fd0efcfccd0076dc1acc42e7850772924e3bca29c5f018702fb2f64f886ad8f8efa1e1296c6717e05647cb481aa3b71898b15f3d739739d1c8ff63d9e91e575969052d1518b2cb1344d6154040bab49cf869bf2ddd34ca8c673ab253ba74e1b2de9cf367455b71bd3a7d7f8e9250628175a5c7a750f5bfa4df19b35a3080fd763a15364ae8b09630c577af768a7aab4a81927f4a342c953b003157948fa8286e6116ab9a5bce403e3ff422ffd615474b451dcf93b382d9ab11969fa5fd6819f863c4d840ade18d19a8033139eee0695b97fd982c84336c1b07c30c1cf24e496dfb058f6f4288968980436564da9b227bc5cbb389ff38ad4f9dc473e97cc7f51ee416565e527b304415049a58e362f509313babbb1f6c10cf49206d636cfb89025e9a250df98957503d777f8518f16de19e72c4b5ed08c790cc1a2e682e23ba03969d40089dad9ddba108385512e8262b30e2752c872087300be8239d77c5ca4944664fbff713bc5e89520883e10d0885f3f8e73ccd68a2600ef4dd31bc35f98c84f4c290c2d74655d9add9f93bd4468542333502476c8ce7078efbd8f809e6110cd8508617cc21550db9487c571cec1065332ba429231eb0047d12393b66a4260eb2d770c441779afa586b743b2b69b0f7719da22cf80a971513cc09c968fd4d004fc93ebe247bcf1961a42d90c0e6b0185eb5c5a2470ea8abf31cac7b1fecbc0e8f4f7248ca1228bb0bf95081cc6ea883d744dfc986d91f859db6828c9fdd7fe764fb48cec74f85d8c7f12d3acd99320fde66a7eb11dabd32bb62de3b60b83da2051c7b01b9e81015262df0b5e8891e2f55468213840d062f51ac72974e8d6436f1b6537affa52e16a3472c156dabd5d93c20174346e53f493fcae08b988611cc862971b281fa18961dcc3b8b871928f04d6a7dccdaefe4901f8a90d83d747a709059e60256a244799f1c0366f74f93ad3ddfbc093d4218dfc627b1633b0cb2346198a1354218db0c73347248e67c01ed3efe395e2ab6314601fd1aa3b19c66abf33f118156f525f0a0005bd7f816de19a328e0f85088d57b4261f6590287954c43bf6e0fe28fc0572696071d1f1bf6f0ceb0899d3ac74fc434da7d8ae3992a6ae099a21b7d5c98426d5f91b36e10699eb43a7259c8cb58883303bcd4df031da758c6e1fd5b582c4e69827171b8052e6b72f5d6a5f4c96eb77d75fe0821124a4feb02a414027576adaad5b783bd22704a818fe6e04593106b182552ec928eb7547922721654f36357204f371c4a6d557a895aded69e0e3f65f0a6baddd05a442996b3b98a1042ce8c0a35a4e0a09f84c84174328f18202f09cfc5d7837fff2bc4de2c7d15021ab128dac75bca0ab44b027cff3515a8c64232e0f543d2a5f6be3fcdcd747fe549b971032b6c52433d3e02f6e9f7c7de724eab4d372429fc873e2ba984b49f4300f728fac075eeae78495151e29618818a6750d410032167b9f438dc835e6a32eefd8add338f78a46c3185e79246247ed2d7e1c013fcbb54b352119c6ed7d26e285a92d0e8e28beaac1dabd50f91843af4a47da911c40ffe731b7daeca26471b5c339b780aa53cb6a8f0f1caa8701ec85dcf51030b9c778a90f035636fa54c164cd86f619bf4964e407da507a34fa8d68f853dbddcca9b7700e0ba3d5eda7fe82382fd1d4f2a9dcea6f67284ec0152e0b349e0b6ff4fa46358af045df703000dcd64817be31fe4ea7020d2da0f8cdac205645e585176cc8cb90cc568cd7dca647c4e4813ac24736ce93da8daf22a865270aa16e813b544cefedb7841f8314f9ab85f88fea1a5667db45c7cee7b6cfc8e83b5156098c5658cbe175a2419200c0e3ebd5601e6f8099647cd17876bcfd05587ee0e0fc3228095a1283738e6a4fa1b6d384fc84693c5ad2c13c9c6a76994c4ffb3de29ddc8d8c1b6ccb021449cd68d5986ac96da75a65251db7d1a7ed68e322d3fea250a38ab2336c92ad86e7bd5f704633450ebc1439db105ba0597248dbe17c0ad2d48f0504c12b416fea49632f89ad14f121a68a7061cd6754d3f688d87ff6f1765cdcb3400004fa75889f0c392eb47fd99929aedcb1963e3bd11166b06cba8aebc0df394c6ce622a8ae2ef8e65bb8d05f7a3f48396e5b5b6f55ba1af50b29709b57e1f4c2dd515353d79695b97160dc846eb98eadd31e0e0f9a27088b2ef1730c8f6f095df8d4661db711777226a31bb4afbc28fd95d569d293f6e262a3063d1f7978e7c768c900a3224d9e35423acf41d01c702bad60e268ce08a723913ccd3a729504e2eaf3a43274fd4f4dc1de8a359e12946e8f139695926bfd6d93344a0bf297042f9c2dfbe19eee8a71bcaae33cf01eee0f4a623b6ea82908c860291d6d91d0f030cdc21291f78e9e47d3fd18bf839f8e1271ae289c25dcbadd9855dc362d196cfa6a6157089a2825c6cba647dfb547987aa25d689ddd41ccf6a8e09af966baac7bf44696f409eff32112c5f1f42c3fde71c122ad897edf65660f8bcb9500293a91727ea9973538dfea9f6bc45b184450e859c6b6e7130e8f9b9599716ee373887c6b07e6a1a2c114bf164f5a7cca2656646834e771af793caa059ce9e739d4e8bdb61247019923ace00440ab7c232a36a5c758a3aa96449b09f8eb15c569f538d00e69bc811b3d01e5da935aa567c5fa0b64c051fb83ddff56e589ba76947bf1322606c374a0362f2bb04fea09582a3e1afdba4e529a6c9413df06d60c3c83cedb25388e76a6ca60e281cf2ffc12243f668289379a4251cd5086b2f6b2933c93ff424050fa5079bb49b77cd414d3a75cbcc955bd4ce3a308a0287f40bc1df8c2a66a854853e84994674fa04a62918d9101c4689b3a577751c28375cf20a0837016b7bff2432b78631ab2eedb148b325269a8cc75ea2ea8a93e0b10cb54871bd2b991ec0271926f257ac12e6c9bfbabd89b332ecd7f91ab65d68192eaf942353a4561d81e0b8c27aeb94df53a921ead36bafc42d37c9053b7c5a3dc9cd2533ba59e320e538c23c8973fed4a504096d519b7d0d69b036610c8869ed767df843b2dd9b239d26a359503334dc7b6bdae92a4befeaa587d3025f60336784f3f8e3480040d99324507c68c9a556277c1d52c66df79240d38e2742192a7bef87215f01f86eaf4e7a2523a8876d447772a08a92759e73d074e10a9c5c3fb3952028595974dff5227ffa7dff18f80c39be0ecaaa2ac21055828d2d2e142e57ac8d4f81e98c8ef7058b345b3147b96e980d13ab02e764382077943aa39794010c41651696697e21c6c18dfbc99f77af8b8a12204af3298a3b64a5420e45afccdc484641d2c827ad61a9b1494317717e917c523f87b08bbbb460008cbc62f87e9e6a31bd0638c80e0f097f7f1d63bfc1da8c1dbaca238013d873a856c2e75d1ec7621f17c596554015fd508f6aa9247d23b5868df1ad45ab9cee3197afae8630b524aceaf8c5c6c0792fb0a66f6d1a19b812e8b7d93bb0f5de409073c497e506e452b990509a99a63a8317c2dfb74ad7691bcb5feb15e1fa8dec62cfc63dcf2481c78954e9054fcefcd99ca2c93c15ac3c6331272576b40aa61718190aa63f113b6e37f43f8154ecc2c3762927a337d21a03c6a9c3033784d8b0181869b09eca4cb9e7c7b0d0e48ff20060790e0525da2be6290e5bf285b86892a2751d1428c8cc5d877fa4977d63137d3cd71248d7861f67f4c9b640368454ef9ac1034e3f9e3564b3964dd5f59c1859fef181e7d305ea21d402ef122ac74c2ee55b1d1a67937f6da8bb7ec656e8af54d00d948ff13fecb021ff065650a0dc3d51ce36c6cde0440c33f542c91543a029629855fbf2a76310c9142c3a556d04d5c0c3e2d60d5ec880f5ec0445f7de9ef05d999274267d91fe9e78012cb6ef5d7f57d117a78c25bf8429befe0909904882bc291798ac89a260c9d163874f91d3a8b62ed8be36455dba1711352cb47fbbcd891ae6959de9190f63db9e82c79f2a7077eb5375d19857d4a6a4f4a36c3718e0618198659a5fae3514c1371ad7821dcece644638684815ac03071eef102eb880be1668a06a362823a36b336b8df3bbf98c990362293fadca2e5d891fc054151d5768d4a9ac4c33678b2b31c0adb091bc29c0adce5b2cedeec5c60fb1612b415fa5c030a3db23c1ed61a5deeb91475d397adffd920ae3b1d2013bc6921ac4a624d2e7461223337b71fa544205933c4cfdb488cb1cbdd8e0fbbc82788c546a3ac3b4ff0046c801aecfd7fc0ca3ce9cf3bf025c4484bfde3a4213889180b33dfd3857f2fde2e71e26bc7cd4dc8846bc98dc6770c47a1358bb49bb267901a3358a074bad076d3c24a442bedd429bfce42aa92bcb09a2e1eab8c00788768fbc1315ef1c2884a8985091d31e9498964c734fed17df3eac66dad374350d42a2952f1223ca1d6522badb1a03d305db51e1372640053050cea0c4ec6705f9c32a3a8688fed3e22ffba05cdb99ed33cf29a6c10df4b05bea58d7c9f842ad1fb55ea919794fe0ac52c469277828d4d1612a59fd4b4f7182fc5d23bbd897b559de8251d4004312cbb79742bec3fa9bd99aab097f252e2e6abcdbfe14cb7f3291420b510a9e86037fa02242fa14921ea4c7ccc5961c5775b687de16f657fda565a967cba8c829ca6e618bfcfd74e322d987e6a708eefbb4ae3d64a4a9f25460b786d832fa6a47cf0e5c719e95fdf059067676810d1a31ce6158dfb089a06d4700cbfb29726762f26b279604805ddec6e2c89009e7523676db832bfa0784022e7329dfc2acf887e3838eacc299fe70cf8c96cd959223541faff61aa060b301bceef3736283c0fc1bbd0628d5f75e9d08df0486530d1d5e54a46e3a05648cd8ae44a18e02c0bb394c34b5a3b51d4fbe87d0f870c9ec2697b7e13cf125c7a9b37f67147425e87b9d5f22ebaae0180ee309468036a992313f8fa53e65212da6c4164fcf5c0c79da38f547c7e95181a27e109f8c1c35b84345bcc0750ab74ddf010a6713302fc25a8e03fc7d592617650e173cd2eeec7331a060cf4f50bf28ddb3a35f19d6d9670cf65fd22d4bb32b4bd321aa799572235e3e94bf6f16c3db65b26780062d6800cb70499aee42f1008bc0dc2a373f05e29d24b18eaf5ea4680288c164e3250c18cdddd645df46087eb221d819c3373cc745dc60a16403aeb9030e42e991289d37a2cd1f99916fd5ac55ee2557d0f8890a2eb42462bc679a7f019679334a821d4654be9bf20e3eb3fa4928520ff79592e59c2316931f8b1be529103268e02fbf65a91a5a8017b04edbc3f5292a163becc67ad46d5dce0b90b26ef0d5257630062720112e71dd72c1989d41d7d0b3a08f2b521836d41147713963b09214dbea71329f3a104f667235758ec9474f2e760c3bc3fbe55622869fabd25b86fca39467aaed1216a25c8b5a0aaf2330e0e968340e9d1e1b329120cdefd140a8aa67f928a28c4f40513cb0f45f7dd0b3489a033471bfc9eb99d53df5b05a50510ce0a37aad17b642b6171e2e9eed60294a5094f3eb4d2d1ae2b7bc28581495fa5298f843b9e274e6462ad7c53a220d8d43c0a88815967349e2fac625f44c45395a8700261671930bdcfce522e97f32634b1ceb3235da4bb0e7b27f67768b6c0e25df5427ec75fc312fdb81159a605e569c175ba9dea75b8e5e6f2750e67c6b358ec7b17e305212af635e7ff36a7254e052c23adb82a2c80ff6e715a58e9ab0ec13694c344888a17e994c2baa0ab17f2a032017011dced7edb1ce09ff8247a23cb37f6871ca02a68eaae38c5bf750ce86798123a0260e76748efc7554f126bf6c248d66d333ba34550043aee8e42e7f4fb035d524498a12b46921f9773bf27f10753de0e0a46e7974b10e06b828197a7f567b92ca2ff25164bd703aba6c7dfb6c708523129865bef5cc774711551550b88f6ac3b52f36bc8471fea958bc19784c20c8b5a5da23b76bc8fc3a28213fe56ca507c9c96bc4fb9967907d54399e38bda6e6bcf9d0d11065647a0369bf8d3028b32f0a18516bd3160471dceab7801261e749e47b5867954f9dfc66dcd2d5ba7b2c20563800bd89ae0a624f8fc5ec9162984025a06273ff3ca3d21794f126c4a30a464f8702722fac8a4bcbf944965f76815098beca00f7ecc2cd55251c8eeb2452f1baa85a115129ccde0e8a08a684f4e5c8991561c7629f4c6958fd363747a6d684d570d12eb5b7a61521aab866b9eef7b01e59e2c96cce030ac4fb20b69edcbab38b15b37f3c2b0628709b3cf26dfc083592d3d66e5e3e5b19f3bf0b743e43e678d7949f6eca6927001cb8f98c1a7515214e281c83d2913147aae8149f173f99327195221c23c3433873755d71343f16772551f505b6082b5baef1918adb994e61bc08d282cfa001533eea86e9c2e48fd0b49799d578ccd7b7b289ce5ec436e1a5891f69ccea7dc1841c40bbc772322c49ac6d95f4b3e436545b21fd2d46ab7c7e2d59adf775bdc8cc1af1815bf3e8b6f3c2ff8b8dbb03198f98796b52a98ddac6c67fc9b8c925099e4c662e42ebcc985b03df489713c6089f1b0308a2c439b3e7308ddec9236088df646a89eabae4bd15f3951f7613b931b26fd476963c22f93cf3cf804e9bef6d6cfe3f31d2bf7850740131dfd6d71c67ee61757f33da26ee439d50b278627ca7b752ad1a2c7ba55e63e441faa70fb5f3dcd346412d038fd25d264b82cd143798a7a9d7fa6d92f21ae0f7f8d4e123a92699c2156e190b25c1b13b29326ae941703d728b28ce3cca1017f41539552d97ca0a16b6b11c98d328ed68ef2c9ab38a2cb1b2e3457f8ceb89d19c0127ae7df322da2f8b8c704f22d302df19702efce5e820b6823b59eab2b7a7fe6d85f71f81f5e0c2ca97ee8d11f21f331a0449e76ee5ef260ce2946032564fcdd94f21dc889c96c9f557059e15f518c897b4f7e7a1bfafbb67e325bc56e8394730e488979e0de62c08f0e34402fdb877cf917eeea4e1b017127e12c9b4937618f7041b793f80e6ef599e95912901693bfe994e5ee77c95a180bd0d048c8a688bb3987c35a93884f359535c52c016d25e2612f347b23c9b99e5eed2e791ecd06aa86509d9fe53d25eaa4c86e4616d6df392f0e33deb92cc4fd57704c20ad75553dec15a1cbca9f78287e4dbc82fe965a3e725e4173cbf22e526f146e09e05bf6e0fc5d7e466a8fedf77a31cb39ae4b6628a7137474bc7f7c1898352ea45514171272446f61a39702e32306c9f64fe070e61e5fa3c3d001ce3b4a3d417115f2c2e39bb0066aac800a27b07b1c52e122230ee94b038ee314056b36a8cbfdc6092822fc16a482b82a374dc266b783f819f9f7f3d8a8200c86b0ae669ccc48dd41f692e4fe2506b5c10127a840b4984bf779530b567a8fe43872e5c078e13845fccdff81dd19cae301b9e3fcaf705adb65c61d75cb5e1b0f7ff1e092cb57ba378ff3f185135adaea3b1005dbb651e9d39a40ea39065af1e165302368da5333d892b424a0c16e632534ae4944705323e2d3b8c4ae53f8f398b43f9fb41237118df96780cf411fbd11b6628f70edf11d5f5529bc333d489383a23af02663b22e8f1bca348e7cbd8d2cffe0cfe8c00c74457b16a5dc06327c5f9ae432333fbe3771c9a07836979edba89aec86499449b4e17778552b66917c8edee293ba372f58fac4835062fae1f3db431174de4c9a6bc589d4ead6fa43322ff7009be0e44839a24e9e5f8e5edf354eefe9ac4f259af81a0e219b79add522759ec982931e93ec338e94cdf3822c27d00eb25915de49fd443c92b7df5e5c3fef39797169c431c2183e7ce8fe7d4272c915740a5e1e5f8189377079230b0301d4f972692902fab3514afeec64ef93f20d2bd67b1cc52e61b8c7de7b6bbf855c26245a6958c17cd26416e876d90ace5747d4e17ee1233dfa109250cc265ca06a1d9d3a3909e37057592b3df5fc84ea6912344c91907aa208b8955e3a4d8132bea18cb6cd169796255e0b344657661d82ea03efa0a6fef3460f272e71c0510c3109bf2e17566d9c18ba0df9ff32ea21594720942761603306ed977afe7b6fcc0572611a28b8a7a531e172407d07f440ec15a88ec7925f46f943912fc2f1cd684fff3cb907b79780aea62e0361e3d41761e4815e75b85e49f2ac7f064778b5822b05dc6cb400199bfb62475b2e7c7ad0e41d304b3644fafef8254e1c6cdb738ba441bc9254d7d3736976d7339e1f549460025a0be3bd24d8c46dca9754196dee02c318bb861f3ac8eeb9f069bea0de62ca83b8dbff1751b36cb7d169373999f2e4075090736f77692c7068d49c5bbc46882c2a8ad9b13cedb8cea729bc130601121b78a84b20ae53d07a6c1a7db23296909e0227fb74ed841dd4d2374697430c6c683f37259070eb324c9d8a087191b16471eb810a4583a74c291fd8deaa78cd650a8b3b11853d0d4d8ce4ae39135e95f18941bca01dbdb1fe1377115ea36271d8d61d43dc10694bbe877a5cba69eb024cbafb24303d769fd1746024ec47539eaba107cb2c3c1edb736e89bb179c3800e8565fb9560b571c5b6a7070a17dc534af11315763161b86ca9c8d0e5c82ce2e6529e43747c559082628300b1e891a10ed5a0e8b7d19d93b5d5022e9e076b41380d4eb80e5d2a8b465d9b04bed3a2305a8ccf715c68abdb0035a6213493493e162ea5d61a1fd8cadd1f382fa9eb5567dc840636f32b2da014478f63ad8757ef8fef637c4e478a9ba10e657942263e7c3280d91285c2f2c797ac3e852290ab3fa91ba99885adf4bc56588b9a1a10138e7894edc83799abb542f98437c44a618d83fb96c3803ec8e4d5dfb2a6480a1d89c609b4a816aa5b27b736ef8ce1400c6e6c23acc851c990556538586c3a7b0227691b99712f4e5497b9d599d786f630b46422d12cab933af5359c9ac834a059819ba57f53c77017cd2c0659bab48a76973d12165b0052605c157f8ea36a4c28d45f58666e09559a59b2be4265a76cdc00e22d761bf03d3b84d9529aa0c54d21b3a4d1b9f2b8c95963139a9de04184eec3d971bd6917f2626b81a4a4ca94446a7eeeb00d1b7278151ac9a85e044cd777df43dccbd393087c18f8cbf56e2e5e9c04908c97366e72d5e6c4d4a9963aac7d7ee2e2056a438fc83148d71c19b368b13eacd1889dfee4bf67b7943611893fed9a90c009c4afb663a00e43536bd83897575c924e2b771e1c91d956f0d7f2cacc5c97b60b633c7e20451bbfe6f80526042fb1bd8ee3f9a10cfa12de0fbf0c1d38194ff53ee1f863d164b9058f10cee2597a8d5b5e869494269b962906433c8218b72118ca69ba9717adbf211b61c4a69397067b1513244621cb85fb030254d9b3aef721e0778e7d227f1cbc33f9e5bf32f019a839a9867114cd941989b4b93231000e587b10d8a469c955956e20d35defa7ba5c55c365723d9d3ecc0bfef63c0a116cad866f6c1ffaa69a4c63f85478ee6b70152b731ebe99945c3dd2c72703cdf84408a0827878466aefe68bea5209c9af79846a2c16dbb2d25e465c02b4d593056357d418f2098de07c443ca891b2a4ea7fd9315aed57e3cd791891ed980cccc03e035494f2e39684ef71a7488bd1673a95d1bad077c1c9e0814f54c3f6537428d12740d67cab7c7e87107c29bf1882669f280560839498c1604a0a1e947a524555194abe6f69c5d588e95a6275cbfd624c8461aae5ee777a0082a69a38e4967a9e348c27d8ed0a64b39d9138c7e2b5df75e1023c52906e08302713560e0e70403fd9cbf61b4db57c4bf476871614fc8954d289cb448389c33ab6c533f4a6d801ba92ac2e60c7109e3231bcf7df102ad3e0183582ff326beb3566250f43349cfedd44df28d91ca643d19e9cf2a934e1ec43fb1a26e1d7cf8df7f24b9d53a96f66fd3731d5746ba581d03fd3d12d5e99913fa7bb4b4e1b92292f1cfcc3c6b46418aaf0e416be7c1615052c2831f28b5e565560f2febfecfcf1e9e2fe72c8f23e14b68fd3e2b7d0b39e0140b8ca9dec4527d269e2c6de56170943a6fba48c632ccd079dfa4ab6e3ab1beefc9224202765d6f3abf6eaf35e7ae3f3b6bdd9e8246df818575ffbdf0e1ae38fbf4c0658d146e7c72f5c5db337a1db38c57cfac37f2c4a06a262ff61e511663ce5232bd4d3b60ef3d3c7c6aa9e868c7c9b78df4543596598c3c472864c3a4988b2ada5eac01e61bd143a6787326b2ba6b3b52b8aaffb0f71a7c36e0c77f4959fbe9b8a617d8d045cc5b530b478ad7f9a7098a26c60201881b5f8b2ff36740c8a1b35136a73b4190aa89f8f70b02446491e8a26af678f27bee3307cf8f8d9720eaa0fdf1805ee5d97b732cbd7780c4f8e2b09262b46e5ec67e8e30fb7ba7777e3cfbad3a1dcc9b419047d88c221877e0c6805957547d15fe6e18c46e51a767b2ccf578524b91e47c7547302e72f63eab4dc7db664e83163dd791cda0a08a8a2ebc8132d6a8179caa2d218e127a006053a3c740d9f65ec8e670588034b3b1ede8bec5b75726ae3f18fc51912bc9ad160d1b597d9f7045cb6ca5d2c05a4acc641fea376935d3c18f9b94e463524fee286edfcef1e4724d9acbe5a53742f55cc40c93d233f3dc4da3eceb1f750d6f8dce179b12694c3132bcc925ec7c8b5c94e3ceaa5979e8a43f51cd4ae5caf2f3eefdd59598b6993804f8d84a684fb9ac287a50deb2aa431842eaa222c441577999385b5cfd27a6d728fa7273a816b7fc9d6c1c752368e34f140ec01bf0cae58d428b629673f26a286715a11870ae086adc28631c2e56733affaae4c4c3681d1e8970eee97ba9027d6c29c4ed37ea5854bac1787199232d863750589e3dd6c7c1a1dbe6c54dadf8ee07cad6bca173cf229a6966a91492fc9eedf36545c65601dbae0e8b6aee994cd6daa02342db5bf361d30bba8c029d6e1fb45df4f8b5c2241355064d89fe85abf213a07e8fc3eb01582a4e6c414f16112e7ec3fd8f89407f84ee9e2849b524d6ecd8a1627d2b2843b0d3f53c16f9364d971d204d604b4798853b0b491f63c7319f3e5c89687b86fd6e9ac7bef319d85959d91e4b50e06f8e7115d1c1a5f7981c00ce22e0bb2a2452660ddfe98bda1daf24874f48b792876cfc1147a65ca4104186094a0e678f888626327bb5b990d91ac0881f995ded8d5ee4651ba75e59c03e44f972afeeb87f234cb2d16ef69bd4ee14b5c54df68ebefc4a68c8a2f42015ac75229e3cba297afc354f3868d25885058c53fab0680270ce5eed853882f9039ac10a4a029fd946f54d6386f22bf2259832b86ff361925b233aa63ac8428b906a46b3b6429b7c9e6935300ae4767e569945fa10eb0068573367faf04bac2fec7e71052dc6a45ccb8accc93dc069b1061492a9d126f0492ebb4796e5d0969b37fd8210ec61adaa7e3dce5edc20917d29db33443f42e1bed323c3ab488491d9e1bf97586751ea32de33d6862af5210cd71cb9847c02a45a10c565f225faed3ed692df8958c3ef1b9c2b31d6b6fccb11d7fa0078b9ab746e9bcf861dc52cef7f21a5f36b43e0e0f34a448b62f0b4879a7534e7e3a81cec7a123677e9c85b837d51d7256be4ceb0122787a543f98323df09d37f0d07323e092c1d0580be6bf3985f4418f15a8c6dd74eae0013efea3c8be26a31cc550590efacedbba8bfc30c2711a47dc252096641b860c38001a593bc4dee532552cdfdbafe0882b2adac2fd775b35417a5d2b39a2c45b81ad967fd04069f6bb0bc7af5ed17d65219c802c392573757f2da537b8ac24180829b2a38b0fbd73de891231d9d3520049ec86fad45c78ef4b1db65aed6a4a9a046b27575b03a9469261b88330345b6b99326e7d2ee2d661f7c4f7ced00fa4c5f4a3fca6109792bb99a6341fadb79340e51a67bc6668c34299d02a53e55c22479d78a9e51244fbc44420731da8d5e1c2c8a0b87793bdf49bbc79dbbb774e21263e6578dd52ea3a9c212d49fd480bd3eae3c3ee7535c4aa5a0574b593e744d357ed48c2edaf45c623f86861d135a34ab9ba9b2b2e5ff9cb30c35ed867e75f95f1625a01050f9dd621970039f6186dd1b0146623a01374e2e27df774f865444e23025cfae1107a563640c1fb6b2021b34adc34047ce43238d0335467bb5d0e255ffebad7c1dc42f57438d2e39530f8aca33f2669ae3a0d4cc50f8cc4c103b9f78263028cf02439e20b1b4ca3b6027c2843cc3f29645f9d5e96aaf58449c9a505f58b26c367f27b6ca7b44fb7216c6a938e5f869b58edcdefcd3b5ffddc13e2413673c0a8894486d1152447f68a092c8bd8763d372f64e3f1d82c13ae3300cebf067fcd59758aaf470f549251bde7c784121e1e7bf9570fd3dbf8196f07440a7fcd16e75a76987ebf9c359638ac2a33150780d6364da25afe5d5a0165038c6a6479e2e74a07183264638e793a275ce1a93f48c71de1d1530c760c719a7e25b0b530154f3e895819de61eb1dc26bfaad2f4c2ad55616cdb0f27bcd8b9a78fe199e66d855ca4c0ea070c455c1cfd5d2a6b92b517665bb3b1fa91204884960b68b04cf8462015961e1fa5f2b1f61b8967a18380ad04357aa2d74802c4995d9ab8ab2ce0d2bf28a406c06433a12e2ccc8d04266e80f5e4aee2b8d719f6a4c4e857bf012725976947e4289138482fd4b619bd566f33cc3189b4dbeec9856f61f5ecb75de500650366e487db0f31d74b34a048d55e4785d999e39a12155205d527c2feec2aac3e16379e02182fafb0a3b5b23d36fe1f8e6d0c16aa7c1bf13d69b03714e357ad96f6e9bedebaa3c0dbf6a8270e93674cc8171a10e0048c4fe97eb56ce49c0114615bcd4dc1aca48fbfe615052f421b524a5cad4637ee45e2e117e64d35cbf3a5e560fb4f8c7364a7f265ba1a17df49316f6373bbe2b4b4b2682218c0044f960d6b1308bca2ca431ec840190bdb9ac14b5528db5ad8eb421d7f55673aa06e66ed1f39b5c2973cdcf0366f66981617c94e63403a29390496d8b78861a43396ea816a2c65773712285fc7d703cc3fe826d008f68ebf6373fa8a69254cb22d763077482e1e58dc7fec4e51678bdabc2368be0a5dc01c1065ec7c352e9233aaa2087de8ae15a495014c63f2b920175a0392b6568b779f6df470c07407d0983fbfe45595eba48dfee374eea3c219f9c12def63149c57ad9520d2798d282f42348829f200c87dad405badd1821aa447b4ad00eec08f97b74bfcb7d8b463531bc3006e9c4652f120c71c2b9fb9def052700e2cc7b4ce7356781ee14d2029977969bf8955f8ea16bc6e69a760f3e00bbbb123f406a6c5e5d260fee70fde6596382c4eee6de9e73f807c2789a3ffbf71e5e7d648453b31800002960876af1e40b614d076ef01e873fe081b4f21473f25f144f495b3dea8fd47b9adf7be9cbd0973409210a921d9a517260e69e87b1192ab927b844500572addb551aaf02c7d18c4c533c6f61ddb2948b85e2ec1ef1f4f9a08e28f3ae282c7595f9c18f01e8063e46cbf9bef30c5ce6746bf2679ed4c09425228a9d6d29cc67f6d6b3357d0d8cfe55cabd15d42759e4355a8bd7192004442a18df11d77bd5b58f2201f70c10d4a7db35ec3e72d8601b90417dd4b07a388d28b1484b0d99c37a32f9452499d7255a598370e8d4b31d39e93380347d09c2c00a8ea7d58af48dd643f676d20d58d41c4d7b1b57ead77b08e8bb041e1fef5b609f453dac2d40f6879af003b641ddec0a801a9b15a8e3d418ea60e33bccd9ccd99828eeb1f1d2cf5067f0bef24ced3ace745dc0c185e10470894e4d3a41a32e402a92dbb2bbe974cba40649a6de718eadf44a6f6d086da6cea948ccde8f9b586032361c4f9023aa99c03676b0e4052a5cc0fe701e924fe7786decaa73e3fff275b5c0280d4cf4e76b75a96ee50e71a6f8cdd2ca733b90f70d671873ffbaf3c7dd5ccc3e9a6c0c4da543576ffeaa345622a171867285ec675a49599f64852535bdf9840d18cce996256e71a1199030af2598fcbee7a148b36ddbae314d4b5e8abf9493dcb0b99409ffb506777c4221ad5400cd8020d17f8a866765a8dfee7d169f6b1234a02a4f4b8a02d4a7ab09c6fd4cd1b0e303aae290b3a0ca690274af77e922f03737c73892f36405cac9b5e5a73549a81f270ada9e0338ec59a98e88a5bd83aa0db172f7cc4d3f8de32e0e6c80feb6756a21d8a95a09598c30153242954dcb55f2527c69884a8df7c3e7d4d96f644711fa8a4160e7a30f41ab9b81e3d76ce1044fc66e92fbfd7964ccccb7d0553a52eeaf94dc3357592274e9bab5ad0bb85a2fec583c3009ec56c561a1e87580c9528e99c91ba6936687dfdfbb3e7a0bc37084fdebc0b0c6ad5751ea952f4a3b8f574ee3714616a86b5c74b64679d77b51c0237251bf23c8540a61c0a72e78b413271dc7dc88bc4d1f188e4fed7f71a818d3ef715ac10f6165655680f7a8b4f9eac9588b9b66e5298356b005058fa78059801c842155b9ba401bc198a17bc85bcdf3ad11ca580bb1f951ed60ee22fa9c7f5802a734cb3df8473d9f15b03bb260e0e1f4db5bae59a4128e8c2c09154d7b28cd15607c8f642294c2921c28ba79c5544ea16972618e87cee4cc925ebac81d96a39375f9d98935d356c2645145243fccaa0dc9f290d5ba88c2911c3509c480d2d5f5027e6058472e83518fed71da523112950c1b7ecaf658b19011e10b197ca5f9c494e76ea036cbd8b1d586a88fee7aeb8f202cde7bc71e371d9965ecdca863ab07a9810419b5f9271f433753da7c6cb315c78e49dd8d7e5e0237632826defe0acb9a802016e1f61db8b83d18252ee5886aa6a62fe82806b0345ac71c1efe0cca98c7e7b3f635db197d6f432dd3dc125e9b91b075b6fd298aad1cb77d8b466aac3cd07ebdff7ac3c7caa434c5f65c1f028497c1f5a2de8a55a249e40071a0a0b7b80cea0f99bb2752d02cfdc244ebdfe68e2ee7296830caeedd678cbc7d733cd41e8e7911a431c37b4f3f2f95b2ebb0b60c5f78365af3b8e8f97ac64cbed9522c9516cd63fd3e77c966280203965efe38ecc696b9e627f3601298698f30673d5f31d4d47491b5f6bef04442721325dd6d24a2f7ff4a9a220dfd71f06dc18ee5bec83f55ae4a4d7b6e0bd27b2d88f882048eec5c3ebd60475ee947ddb0ae3e0b415e7f796314790b9c34edf5cc00d61080ab454561dab6959b0914a66c8b269f765359b57c954defca94cd8c6a9c606dd99c9ea357f10be16e6a4cfd44255c593894c7e698189c5b690f883aab77cc9d51afdd6dd0f39c99755c65d6483c3975680bba004bbb781adfbc067c9a90810b27c46ffa7afce5fc2139925cc2c13443312a2fc8e8f245238a4805ff1958c8034b2ca9c9db95fbc4a221b4cd5ca0faf07287a6aa5e7e2664024041ac06e842bb6d21935af6258c4be19c8ade55d34dba025c0e25bdd810141063ff46f282c0eff5ebeaa0fe1c672c01e3c25d415ce5317e8d59b75203685ae99a054f30afb8577811b7a8676730c1a4e0ffd82c06b91c0fb61949b073d64eac7a52883ff1f154cc1ffc3a1f587bcea239270707cb23179fefc1ca6f4bb387acf8e7218a747062423b20c022b8a3264758f11135fac99e2e680528f7c74e9d4ad24f4f538426e55809becb803cc23d5c984e3636087370deecd7a4b30fee3f2eb4faed22d716d507c50d7a7917adb90f526d95aac3afee29506a5d11c38afe540027871445e8fe7935114ba2ed2292c64f45bfd137ca732c40f3f20dde0f08b43ff9519a5f53f394a35be69caba464969924b6dfc2f3181b27204971b163b81e706be3bc6c8e5e3dd05a98280434468d2d8911ab648d1e0a2a738a836e323536f29af97dfadb83aa85c76ca5c5cb9cb3059321647fe98d92e4a32389f4641b251dde640ce1be76deaac79f3b894954cfbdf47f1a26b8548fa69cd65835e2d42686588f5f67bc9925fb0070a31b6beacf789cbd8f9404bd9d03f6e2eba3f6dde5088a04f06fdbc14470a3ce08c887094452455489ba0c055024b71c6de74f56a10c0d31253bdf8d3b3812c45b9d223d43fc843bfda6e359a162763c301213f169992191e60622b4689ca63a4b5a4f019396e1e12a217eb151d303a9bcf7e0ff8319fdc9de5fe0b5975724e882fc4e20d6b810ff09b35c1e2383010066221d525210c1c9a02ea9674b87d74092bdda02584fe6e51e5c4107e4c2c7abeef894afa3e345c993b3e6b273dd98fbafcb95f15b326041bca28c2c556bbc0aab7bf4e1355b19a2fdb9deaae76286b06ae86fe1405103e920987a92b992ed8d81e6b7d28ca5135d2f298e121adbaec3c552a42532533873f924220f0046ee07bfd968c5935f3f93897292621e6e472de7b68e00bfb36e051b7d3f924e1325cf052acc725c52558262b216f865f4f9a9de9d291dd7473b6ed7f612fba3cd34012028c3db1018e611df4b43b095f2b78044afa9ea53a25e22ac3edeec8bf397ad5235b1bae7d14ad22e962a78661e4ea963abe382a1bc7101cbb2570d93546f51e07d9330907c4583b2d6047c85a12807570a422c1f7c748a9468718c5cef0b2d9c455684d09da3df70b915e8fb92a5266dcf7112ddd4e4c25281399f866f5d11819b5d50a989b394c17fb89d95cbef53bc9baa9d1bf945a134c323e50e0d891071ab5d2c4a114e3a0972f26c535b6184ce5e5c4c16a1e58d7a956cae711cce09c740ba8d527a9393b4b3bb6cba12db1524e9aecf323f150dc45d764bd742de2be1406f28027e4883b0b3fdac57bd201d1bf08b57fcbf907dfec5661e99e91d19862a4f17e1855d709634f264e510dfc439932eec5854b05b93f7ff39f63d281035e7d0c3d74dc87c89cfc75d61d7e900b4b42a282e4a33e53a9a4e0d1414b9d9079747521e7ebe5382f8f1f74baca11bb0cc7bb0a618a384c92feabc292a484606598868732c93ce6ab14b1558841d61293bbbc21c3bab3e7d1874d30b20d143151df79e362dcd34ff7085a75b58ad785fdb178bd05d8ef6dc4c65a764d9a060f6affc8c353ade001e3c3bd7d99739ef9651f9eb93d009b90e2879c72f88f8ab27542f857e0e7c3ae9e8f8b502aca6ee5a776ef7c4d3f7360825c53cd66254d2aea62023ad68a6563a59537871ac3bdd18e01403245aa308947dd0826b1b97e41f548eaa62a4e8407b590bbd503173a07de2876980c3b35125e85c35b860ebf859c74b817ed26844f2cb88eda64fde1633eb3810b74415a3265446507457d29762a852ca8ba0d4de63ecbba9bdde149983b578f671e49c464453083dde9250a94285a6765b103269c57cbb1bb36a06b5973006e5ffe1f94eff81e601639d8dd249a8536ef3f70e610f9c652db096dd35f1ddd1d269b93ae4b9bef1ab28ff89517d74e081888ea3c4610f918cd9540ed5e87a51adbf6d14b9b2f50d4a3685b6035f2b4d6b3082b5078c20a3d405c6069b8021785b27da46bcdad0ac24ef1a25323d538d046c22b4f3a9183920c17aff66cf019c4cf5ad6b5b1870f8595e0ec4aae600dc604c42155811e5df77cb775bfa0bdbc3909f7b39a25d7b04eed5736fd4523148e9f350545950d1f5fccdbf60f5651a67ed5ae5ae5541d888856c8eb7f26eb5061fa5434a9b2d0f957001e8ca72512e323fd0cc559836dd5f6eac050f0414579565b9fc2277634469f29eff8404b542add1e54f9a1f91697b402ecf27818d244d375c848ba3bdc6d7f077d630e799c67e293180fd4d6cf7e3aefbb934f89b11ff3bd47994831001566ad665764ec7c3fc4094c8152f8869b5a4304361c65ee32de3d95a03eac2c4fe2f7cf20c6e395358136a2aa08fd46f0a370f7f92b418012fbbe76a5aa4bac4eeda9bcea3e9582efaa56302a830c839c7fe523b0a42b227223cc830d28caede513150816d4de0e48d23099ad3ce9928801903c9e353b7e80bbc937183f03798f405fe82de034f6b74d59fdafe8dffd5667b734a87ecbd7835a6f9aebd301e58f4c3bccae38f18e15fa4b54f5098558a21bec49cab05bdb80d15aa219ff0ee599928f5dba651734ec491a0501d33872b932897a084263fc8fec2be48b392c19ae9312c9971ed4e9476c1e2be807d6ed2963c568e9dd624244551e5d89eee6a37627135101dca3046113db6988faeb81529082664628fc886dde208a643b4c468b41b3ec27077840c22d758d51bc065e0746fd7ce56f991bbe8d321cd2f9c6f57f11ec66dfd270ebdcfc87a29dd80b5fb5ca5cd5c3af9d29c3e2ede920701e65a0950b39bfc4c62b245da0e7d30bcdeb1264948118b37f5ee2473c4c08603cd6b23cc7399d8bffd4ba1a5eb8d1b10529150c931ecfeb702756b1bc9c6504b8a94fccf759d6f4349e9b486aa5b12585e6dac224c20e026ea50c225a56eed708ffdc5dc7604824c944cd5b3c1f6a8de85dbd49fcf76db5a133f8efcad85a32d707ec96b043740db51ab93a50d9228b7ee9104d79fcc493afa3cb4f33b98916f0e9c440e4cd71b6f644fdad7d7f9724de1f700d7970a9cd5e100e10333694f5ddba9cafb74cdc465c9144974070a00a606e0a151ba1ff48ecade3c15da1538f048bc70f91a8e653c273cf0341daeac25cc80cc2e40b6ed0d93f0349cc148b4f1d25496d551b7249457e76fec771a41f22fc85c51d8d9f48a1443a25fc03137ba92aa432c55c7d181298eb3010156427f0e59a48814189d4206f7d333a47dfdfeaca6f5a832e8965d5e83c1358af27fbb3cff2e4a0a5de9f5bfc020f5010a3f0f8219a05010d41656db09c101d348ffc2ae9cebb97c9c6d0664555765d75492409bad4fb56cd6a1aa82c8d076046ab664e27f29022ff89e06ff0bea03a9b75f7d3eb392257026dbf526dbae929af81b23a8fbdbe5b8dbad75f60abeceaa7d75853becaf9bc5067ff34e246b5bf2464242601fd6562c7769d37dea89e73af9cba29bd019c354400d32206f76432a87d1073f0427e8ddca166fd0cce7900b46f1ad70c2b02f87b58c8666c379fb934a956fbb69acb825e648ec0d29238c7f4613c15e35bee2081461b0f85f2f17bdc8995eab5874b17200486716dac13eae6ba47e33ad8c8fee5847b469fb8e1da2e4827a86c849a7e1988a09906adbfab9d98a75131b86a1206a693ef54a99aa5f96b5249ab00ed6e63c07f13b116e4b2be7d5c21102e27d9122fa95f96d1179761561614564b1d28dc23986abeeef461356f6f1bbf4957af68c9ed90fb1db0fc5d76a31cd4b09f4bc26d39f0323840ed66594d3163dbd78b71c19a54fe60f67a3732a1de28524d6239548ec3629cd5f775a19f47612edd1ab5567a0b91b8914434530fe7b45914aa9827f18bf3eadb782e87cb9e90c73caa2633477e04e77c31c6d4736c03b62796930acd9557909545fb0e8af655d7bfbe62a13bdd515264c6f2802c6e33fed4fd06527232224692bd075d9a0e0ce6b8b1186942f92bba7c80874aff954abcf47a2b769ca652c1c92e45be3ea3b43fa3f8646747075416742399a08cc2d7481d6568dca69fdf6fb39e5bdd87b7e36bb0bdfad5f3550435864771053397cdd23328cec71cf2cc38e5de037f7d7143201b230b2c54aaad3ebe0a9f9135a7e05da4cdfe4cfce95d3b1ce939b4e4b4053d81eae203eb9a1a73ad3daf91ea1cbaba58075305363e80208bf94f1d987b2583de4b81c0b83effd1fb106c16e57930d872183908f1921ca2e675d04c875c15863c1a60149ce9919488e9344ceacbbb7de0f07681d7db689c1cef4e7e52c99bb30524d9566477316549a18d6f45db0589fa657f1995e7c1a122035b3f8f9894d09d8f73b72ca84264492dbd837008d922cd34ee6a51fc118033a60076765e13d9608953806533a836f1e22d33583f4350c03b3365fd666ae3af2a1ddbd07177de568d4822cd3ea15f4e498428d3dd30e45c36a6313af512fa9be1b9558a2bcf1305233ccefc33c380182b39b9d6c2904904842c4e0e1e73ab9e38de510633969c9572e42c86c29ed6d028823bb4fdae6fc39d1d7f446623d9875b315fcb81535f8c0f51c26ab1b132e48a9324fe1095e1f8f7ee8a4363b93310afaa5aef2f3d5c7e02da57727da050bdc79f858a9d167f3862f350dee52f072fe63b90230f561983a69c0dfb6fe7e7ae595baa22392990cb8b818227092862721fb05df4939445a7491607b29dbee3fbf4f07726ce277575f4a0a6382017ce9afc088d8e95a71d452ac54c3b69f4f7c61718c4e2be060c156364b37a58cb6725d5cb8308b1f39f98481b0c91d1b6905435d881a06d5285a2e1892c98187b8bf9d1072a5d25f35095a63dbcbd4d509333b7d456c526d0952dc28bf11558b19782f2b3c0d25b6e6719f2123d560222b846131d801ea90f10182b03f4cd2b1b45d7ec460d5aa42e6c8cb42b7d4fbb75157c1fda8c78101085b56700a8634ab59fcf5ad0cbdb77d5859a7455eb254de33897e8ec09b13898d2d5d99177fe62c40595559b683a68bf03dd248bd0c61ad2cdc863e660d769b9642cf02abb7efedec606ced5af0ba9c89edf1cd576cf046cd320a42fc17626f7b82b2cab6798fe22334bceac08e238d2f23cd88bbd4851a16b34518f76f85c08dfc7634020758c1f86bf6b02975e4fdfed39d81b6aa34cb1f81aacf056a724b7687d64b0436006247e49b42269b3380236e50fb56ff2da998dfb3868bb313bb19f2dfc47c2dead12570e23373704bbd20b064bbb91f90a87f50584af8c98a190a7aed611b9a14c78bb35323a149350fcb9a7534982d1c12e2e8940e360ccc76407301be426317521c9af60aeb67e14d2fc6833409eae852a35da3e499ae88ff936cd917063f00bdc3a05f1c73caf4a09f4c260caf82697c821a1ceaccadf98205202e4a067f7e86f095eb7e7dc43f3cc4f84d2a70e68d9b388184051e86d51db3cb6fd2a091d1bf33bea38a91ea8085255cf927f3fbc1fc0beacf6d22d9cbf96d113e334570951f4d7c1d95a21357cf5e2b0c0efe70d73feb1ba1396d3374f54e7e79f507f13376cb28f97a115c5323aa7a3f443bd621a3b67ac085dfeb2de05d22aa5937e44cf87bb9bf7ed8cb684f345a00eef0e643dd26f480af18ea5769add28321aeffee18104b133d423e8484fdf1b65d1287b19779037397f7e2a27e211310bf076208f051ae87456138e2180f24ea52e8a965ae0517f8d11cb8121f988ce6413eabbf1cad05b844a11d206a76695df93ff9fc583178636ffb8f00aecbcd19f4d0fd9ba1fd2f841c62c7ec531358b82414ce505221ad164011b4a17f85096c334bc08471384931e8dae300c1639e0ce30ea04bbc61eacbaf3083843626793eb0b3f6d33a1d032e63f2e9ea5dd79e3f6a8cafb88f0e2529f56ad25716601d12ead954a845438fb3b43b6034f588203c31a6f416f3a9ff2a0d901c2cd50c283b46b7f6d7411c0ea25fb4a58888b949f2fcb5a15eb39f8ad54c983acf46b5370a6fc6b1e71370f4006d0cc3e44b6a321c6bae800fe19f4098d719870c4918cc4655034772ae67ac66249f989184e46119f54b36d1177f7c3cf02690cec1dfcae57bec2d67e17b1bf423c765025b51dd715dc28259615f0809a242a75739de168141085f6c7ee55715e7c7c8d09254f9add03291f738e30c1065016936b22c84e4159b6fc38884e8b3fbcc0af614475429af3d7c1dffb0b1633b6eb15f2420aa4b6ab2c056736558cae179f6644466c31d2aaaa6770d3a35f8118b9aa0841aa0a6d8765a1db6315611c95e8d2a5af5b11b6d76907ec56fa6f5bc4d09ef730f62f1ead045adb9a9d7347ae4be3bf9eca2b9bbd13f1dcafbe80752ff79a1f640ca2c29063a03031482fd61c817e669b58557676dcd2aab8efc98662d580f77f80ab3b84b594b3b64bdbb3db645c7491c69926c0166cfb1665c0e093300aceb0edbc2a7fbd7c522443f8694492bdf89a9d4b70934a12fcf5475c4e2b4fa59a0018c916920e302449ca39c360eec04e76afa871c901dd2fc7445a906b57a0d1a0d0865df0dbdfffac3f9cb506f3a3d01b55145e9662947f083ad9ce1c26de536e6bb8f6fbf2392e2dc5673b62308e889bb8ad083193b618f14fc2344866a0a7ac35aae0fc16120b372815961b3540af59821e31f53d2e10b25c5f4d5cf926c261bf84bdc706735337d4706a834e0201d1ab628312cf9c2835501f91161a73f20b74ec47c9e680a70bf1a8d875acc1d6ee6db202f3c1cf467053cec6a787f7752ccf0d27d507f6b5ec96bb1d755c3a15b7996202caba1d43e40ae01216301e6ca91c887e13f3ab6cc54cab8014f9066ad92b402f2b5001a2c5313af3467e30897d5ad81064bc9ad272bc695deb3b82bf44c23cda0106cdd21bbbc6dbd395eef7a4df732357643fc0a004fbe2cd7bd336314e97ad954f187a0be9d6aa05c6a12beaf404f06f65ff6f9a912f89712780dea858b91b4b2e4bf1fda85c6e1a70622a9e41609b564a608a3428388872b9037f3fd0ee9ea2acab82cd569d182e06d741c13112093f178dd189ea0291e561b3a07048f16acff5c150f451809159be00c2dccbf00ab085b790805271254c3b6ab2683c5d84e9af3bcc008184ff3c7552f8dbad7311b61f21c11c6f46228f28584f8e8ea72d53622be7d70480b8d80e568916fde668b68cb006fe5b86dbc13befa5231fe7ff2613088ce5c4fb20e48fa9640aa77aba250538786b0160a7e4a4666e11c075b01d880874ffdf09f0151e71036c76e68b3f9b63f385990816f195d162c233b82034223debc14dfbf38e2a0fffadd00a984c4e0b7f938f1e90f3af2ec7cc2ae9e8a2566131c4128280b541ccd556d36151e0f520f15ad65cda7d98889216ef80946bbf5a3e905b8beceaedae0fd3e6a1d74cbfc3e721a75cedef4ef8882476f7ff22334d4d8b9965ac625e7c07c4350c0071811535010231aa59df3f0e7680bcda32e2942e4899ede9920c5f0ff42762d75d429c32bec7f3e23e4790adcfefbb4455ef35deeddd5a83f310f6dad793162916ec0ecf3ed5f8efb468eef2e295d11304afa9ae1bc173045ad598d776c463a54e641e3c348bea9c43a9ea065ef7890c2e64f1a8d5d9342b27654c1fe5f19534a73850f824c1c98c733c88fac8b0cedc2c4e7b966bb4fac94879543aaf0755871ee77d5468f34f0a318d1a96b08a855d323959dadc53527a517e073fd15be58cf4e5af63f8a1725a4fce1de3697ffd614c5c0f1e82c7e9bed002deec82b18eb0f57f1acf865566383d5e88fff82172cf42940e96e3ea1b5005394a3003d414cf9a4ddfacb75dfa183df3a83ff6ee54ce1119b8c7518117c8e0de62b5de47310aa201098c59394d9ca13772f3d575eb386960f3d9143b8dc64d8b2e9978ff4e89334dad556ffda040f6fd8dedb8a532bcc8c6f4c312c975334904349c68bf79614cb467fe58df71dba217c2a1d88026b33a5ff09a99a114ca9f73accc91be0d1b613036b249ed9ba1d57fcfda1d8c12bf8cc6e4edba33809636e1fb7bb480e65bf9ae9030564e053a0b023e62f0d58880f1fdb5291c2ccc012cbc1ea4588200d8e7bd056f2b52ed4450335650054eeb2cd656b8e518221f09878b8711358669811c1dc661ffda5e201cc85b5790941826dff2d50bb135ead459b735e46ff9a412db73c56039a7dd1de74c862561d8c72b6eccf910f0848054a10140fdadb9f2200fc27255bd61054f0bf4150715bdfd2eecad618e171c9fd3450ee627e6793f5f64e1a196b6b993615021a0da9cd93e600d5d949ca27188b147d2a0e781bd37c0315767c14191a228aa9c0c353fce97687548001046ccad951f00645ac9bc997f1151a2cfc042a62dbb37cca88d1d5cafa4a820629c6a6e296b69ddd0c80d767a75835fa3e3319e8fa02b59b28aa59c17c08431e1ecce21c8f43741ee8c45a8f946300f21156ad22cd8d57baf7254eb2e537f1a05cc9183101880b0f30fe8daa8fc17caaf61836b4abee67fa116208418428e2ff0a027f3ddb9ff384654af2c66fd9c0c75e495fa45f1f6c75a2679301634e3f57b8b06c525bd94fc0728fca547107dd1f9ef2930801f4c3740c38787c97578f23861b0c21bdc371ca43362c0eb743086b0f3a2b2423225c5c5426b3cd6115bdcdeb0b73b68f48a86508b7211202fab40f89d3322683a74692b78884ea79f9e4e872076ab2604880aadd920d27d1cda6dc32cb63618f2ab35cbca15ad732a09d364c6890b1edbded0a8b6f35c998c6e6bade018cbd701d435c7d098e699c3cd4a14d242046915696f8e8a13321822202df9b51ffc8a2db666ee0d819c1c191b29bb27ad099e062fa2a23031f84d25fd70da2ab44560f599976316266611a0a3674566a2b44af4baeed0f244b38fb873a0765e38defda19de0887a8cb77a0c44de025d47c95d90e141790d845e3ec510fe273bf90ffa4030dcf941a1d2cb4828c277a8760af3012459aa0dd5e0710d39b24198074977ac7dc2e0e53f76f004c865324a2ee65fdeacde7729896db90d1cb9c84b97135e09fe639860832ac11449e733d13b63ee247804f0abdfacaa07eb4b0add007d205c974bff7f24bcd2a992a410cfbfcc146619f5b053896ca80af1afc6994d45005b681c9cc2824f7f227a81e7f0b6117422afbdbbf2dd98f1031edde49916b3f0fc79d0117d66a29c5a7f50456bbdd6745328a60bb99eac65883d681506ba3faa0010ee7131a0d5fa99c6efea485235b4fd784b87cd7c8f53c281af4daa338558b30bec7f7aae36e5fa8d3a1ab60204177031b8d2e82633ba8d5c30dc514423b179f898a7c2d9af819ebe367012ef81f62e0fdd333991fbb6e3e8560e5b0b6fbda5b0ed0e9eba241cecf6deb2fc7b8b5e947f813790ed04c6cb2bb3a10bc8fc2de4ad7e29d4d45481a3d5d2d5e6033efefe4041592274a4ad7221ab6745149c18de2a9419820fa0878a7819a0c96fea8b297fc0f5bced705e9169748f73e12e0c81b9c88e3655317c8277f33637b65d13d11ab4041903ae3b70672d269aab0d84a851aa10360f1f213e3f3face74fbe2e52101e9aef3ef0eb9ed57fecb9f18ed128bfe87212fc628a74b23a3a12396fab75f0c157f2275e4c109679137f6248cd68b99f26e5b454b1bdfb3e23c6fca17c2c03e529ac756f5c19cd881382759a3d5ff2399e4305bc44c0e82b627b4fb7d65ee5222f81ca933d8647fd0956452c7fe652d568b6499634066319e5fd55d4dc3bf26371cf188602eefbcdc0cb55c51600681b29f370099b859639513db9b795eaca3195d01e252b236f2596bd0422f2780f7464fd2d1b4b339dd04008fd9b5ac5b9d7fdab45f16698b84e84c74006c0fe9b6b322ad2f38e65f7b6a40c29695354c11e43c493d2ade9739c19fd3ffd3909125c6fe5a43c330763c9c06c84aaf92fb0dbafe13794be65c197485d6f832eef70068589f7ec786b85e13fc503591db0b126d3e1f5ca36070e5e02246cdbf7441a03d016e545a9f63ae30214a69eadb097150896851902ba1c0c4c958ab3b35e2805c7998a4b7b00d4bc148ab6c0e48edeab8153d96e023686dbc96560556eb461f19d6489bb47ef0c7c802fb52bbe302626d144780e02bb3b9adcc01ee1c76345f1ec4e2b6c557243186c70ec994b24ffed8823c24c4ce21249a37195832e1e70ad81de3a683c4294c57efa48d2becd8a4a1d067d2616ab4b56b9dc3819b4d5eccbec60be1c8ca7b92792228e51b3f3122cdceec33ea978b31df30d497a4db998a84ec98253b0ea7e784a02907d6ae7ea5c464d4fb41b6007d7cd1c7bba397c7d901c3b17c2ea25f0f921b92ba9eea09be50ec1b10b320132ffef7e98fbc0fbd42340f16c546d1e97a62b682a20bac3ca1244423114c8ddff0ece9f47cb874070a90e17dfeb888ef14d82781e6ac5f7fed9992d38193fcf0180c13cf1959adfc4a28cc9cef16e4f5d9a44e9d66c53d110947fb8af5caf5d4bb157c76760f24208ad7000af4d0836f882ff0e6a552ecb4f569c960c915672cd13bd550d382b646ffb856e0572d5a0d12f88adf4f80aaa8301bd2c80ea7c32310762f9b634b78466163ccfca1932201cee66486d5406b66bbe13fdff7d71e704d1befe049a6d3d4f4bd383e39b781f3d58a53d62628fbc5814be7f261cf8746c633aa69e6aa33cba679677788344ac62772c0f64d2b59444812b174a16256c114b03f31a327d23ba6e63c369e9c7dacda3bce19ee8b5cec977f2421139c4b9eb10dee8378d74a27c71b934fd22d6f91ad9745f3c791f8e16ac5756c325da07d0288a0c21c03e0e54dd1fe8cc82c2b240864b921ec5159b9b726110fa9a059402794645b5e7c8b75e1efcccd8ced5cdde56abe6fe21c93c61e4789dc08382cb553dd0c9012e4b12d2ca9b05db368d0fdb2921ed2bcd4f837c6eb72c487302c18eba3b19f309740c5280677b56f22cb312f239ce29b6d4bc5e05458fbf64d962f2a2f3993202b3beb312c203982e537c65a6be651e5ddece4dc4e29a568023b373af3cbe77f1428d2a6d659aa79b5c30ccc596cbe2e8961a0056dfca5084de72d66f125cd9045141c9428a2b7ae9fb1aac922bfaad68fc145b59d3803cbcd7f94a6d1350c20ec5a1432ef1cbb0ce6df40d42c227e29c2de71f650eea7d9615cc628c4da0668ee7d7b7d338b1904cbbb2fa63a0973f503abb3ffeee73c986e01a4422f21c4c97197ebf7c40c2e0ca85a0d8c168d85efd62816ca3c26156da3c537a02308a129294fcbdd0fd489992c1fbfd24369f8d8ac4be026dec8fe83137dd220211ac52f374a8c7218fcb2185b29d3e23b158201ee64488e4d439ba97c48b64cc5f510a37088afe633355ae36cd1a67da4ef67f676b96d244a3159c8c68c358a8ecfa86989dd8744aaf560cb101a8d1b9f10bc5cf03806ef637822e8dc1240c12eacdc7c2ef0bc5ccb98547c849cc3653194e63119dd5b22d3ca38204e3a728af3a9c1144a3411655cf5de64cc667d03977402c740eef45df4aba9c611149c302ac35bd17cc9503a8bb9e26270111092360075cb6bf8712044c2444d3fdb45a6606632e3a11b396c0dddc2035f5ac7c213bcfe192f19b27444aa43524c3391a6111dfd4cd2f5fecd00183a39d5090da083c94b6c328627de00664db2a6f3076216a916dea3b342bcd35bd86878be12eb9f483c12c37600980b638086b971523f804d5938a0a7872f5bbdcfdf945f07940f40a043f97344b0fa8670475846cb7b499bc12eb7939eabb387919a02e805a784fc0f2d5c178731e25127904a31f873924f5a11f422f00e43b926c3fa137d7dc96586c5735f5b3aa12a100dc29615245a0647cd77a09ea821163b82354dece678bb60b93d2d530537cc4960fafed6c1baaf9bc128b84b0f8499eab160fb7fbc032a9689d63236cbc8b8c71f1c0ae23f9431e58d3eb9407a482b28585fae2e4cdbafc02dc8a463d5514896c2cf842f2933f1a99edda478906d68794c401204f1851c848523922e96ea630f90145a56f4786200536f42fcd240d5693dcf1da9b5eb373494658f50d455fd8160ae76451a8b87e7a4939b06551ea004cb02399d58480f9923cc1f6930f7fa777a6ff6871ac42f8559f8b0b7fffe8c6f57384e5266d8da04f7686fbb74607dfb1d2ddc61e9651489462e89aff4386083b940313abb1eddb3ea76b2848f2a6c4914ffd004bb8710d505cd38d6195023b41609f72b443af3b4cd2bce54adc7fe46efd574bdc992799bceda8cd8f7851201a34e8ade29ac106814d66ea46a84c2d6bc0594a2e1e3267ec244be7f674de81f77a32986554b1e9c8cd695bb5faf0cad5167ca3f043d45917e828f19f9a0017221b7f8a56a1b90b11a887026fa16388c8e7518ccb3eec990622a56de6b1aaa4874690a7ae6ef40bcb39174ece2aba5b6bed688a85e31949da4189214097bb2e4c795429a47afb5aed8c7e5c25b8cb4e8b04b4181ee2770bc623b90a71721a81bdc0f212abce029c2da9d7a161c8df9ee935b6a073f342d9068720537ad7c798bb0e877a3a1bcddd086e4a58a629998edfbd3eb1c1d4e53ad352387c3ba838772fd7bd5f43790050b9ebe6d03dd421005f70e611ff19de04ec45858ddb8e526064b3da61f818f5fd34baeab91b678d5ec644fae09cab49997fbd81a9a607bb6a5458e5e0c2542ccbf6024630de32bd5161b42c322516ba99132f6d09404aa0c84db9f11d42de18eb40728eddcca719055bee2ce5767dce65ce8037093cb9840f8888182c5fb0bcc9ea45ed60b7a102d23fdb53df0be1bde50fd132af668be9ce429089e0184bb7fe851295db757bdb2639c3f75170c123233cd5ea0e1754ea9e6e4c6bf8d7f4d72c138f8d0dedd480a7e49e271f84797b5502b57398ac6123dad91e1c47ad1f97064cefd3887ff228e4827663a02f3704637f914975cdef37447a220c1cd3b725a05de0dfc3a98cd1a4911ef353cfec6f515aca73019c007ad28cfcbe8c5b9a4bb96321f1f9aa2bcd9f7e7f44f911490ff32eca7298210f42ef04f757754997d50c35677846f4ab277da56abae8528bb65a359fe185cc2ba6a7da2d1d056677012edef2bf77b7e50f748866b3691b78c82892201b07441b91eda0b2567340e848b63fc359f1ca9e511ee8ca375b4116c3c73c65aa636230c3268363018f182161bff6a8ba49a573fc5062f943504c5a77c2a328d8f074f2c0ce59a43a876e2417f0482cdb3d2016af464b60165afbf1f243fb09349cb98ebdc668d5d9494b0df4cfaf994bb702c1064a4fbb7944d67fd274703d31839d9c744807c0a99beef5e3d1d15a970d2cadf3f8291291a642afb4706c1e22534ab27539c0c3e601a5764eb9cb322b983cf44b801615e1df216e94c3de044c0c172f08863077b9a71b5394630d13810d565602697098fcf772960e557885867a41d8f757d0db225644fec57e5444af617e332703c4417344b2a100457df061526300a9b3a207b08bb5281174c6dcaaf4a8ed45a807e77715637db198a5fbb1b4fb2b91f6d7d6b2d7b8f165e7d91c59407c4f484d1a5db591a76457f8393a6fe533c083819c9b2a10fc916589bd859616036f4b2b22ac9867cec709ce767d428438b59c5b185ff141bfd690ecd9a9440d25e723ca9eda4edbadcfe155cafd01f83059d369778a59f6d4a3d815a2732d3dff8612f3a22ba3e1875fa402619c20aa879e17abc39928cbc7e11a2a2a7c69e71e213fadd1a2dc9b9b7e9e3bb60ce12d45e9ca259e1852e075b62fd708ab70c042807bf1ad177400e9caac8fbc9a5ce553e5effb424320784cf3cf9d1c86283035e7ba91b5bbeb3b5d5db83d2aa3c39352441edafb8e10ae1ddaf9b99bd1152098a37d3ab9abcaebebf5c59574fb7efc1bd377c51d1f50c0f361e82eedf13757ae0a4d075e6b68a825644c065430b648cdf13b1ee5ac1430b090a136cbb8cbce70065a48df46726fe24cdca612754f3845e68fa14b3736318e52e5e15dd43f11ecae3f36658ae5e4062b7bbf3820764c50041aa156001a42b0eb77c42090e5e57393af0b30d0c66e8dad2f2a6c69772d188e938824a78ebdc52f4c0fe9555df8c2afeea57ad9e457ee065d03a53e667eb757a6ab47e4b813a3be6dd8f12e7dba0772f90c4552c49fadf9fed94ba59f0059bfa95152e1ff4769292f80a8f5332a45d144fc5fdb72bc932f086700c217f99ded90f826d4e4df49aeb15dc0f6f312ae7abad5f48b8adeb14d7afc6e6c8fcade689459842652ad8669cbae9ce3f01b1d89b004e88fead531561510fc2b6fb1da179ec298d55e2e101c47296fd7db6e41f6a66616688ed7efcfb39ee1a1bf3a4bb55051144f784f904fe9d2d93be4d7264c8f1878a202cbdebb15d57faeb064d6a61610348b9a708fddafcaa2b62746ead6560774ed4d3f62fbce2b37c2606dced8d765ee3a9ef2cab3e69754a47714b76fbba415c2e600d64da703d79961b3ee69ede39c63e6843226603c46b238793242b3e85e1d62cd2671da0607599e0b673af1898ec45667a6bd066586163106de879023a8d44e2392ad4eb6817b76f40f1159e13218ea84d7c6bdd94d2766903e81ddfee0d143e13b3be4a2ac04fec7a0e7741e89d7c9b97067b13c9e675fd45db45480bd5f04ceef909f0791228704f9d8b056370018d6e217f44682bf8de5ca6af12de02f5edc7ec418e656c621d47e103b99acc3878d2b616485af54f6190761404822b08f0120c0004148673bb11c6e86b6f4a05f432c9bff2e50f69f944742eca590c2b81b60d78f1d6f238e2829142321f637a8cc4a81d834ba60c9b34bace1a775d324a5df81e5aeecafb71fb8e47952ccaccd29be13320b3a2f34350767c47f897cc1bb80c526d33368cd65f3a2f66a3939caab6a497cea406a4950849ea5330afac003ffb3ee2e8379291bd8fe488984a076bd9be0f34a69ec5cc78c6a76f341c574858339acc11851109bbdd6e982ba43e78a6114beb2d101849f4e710989d55b13270d910cfbb64f32a6d0db31f4ad53b688220cc7545a782decc008f2c0538fac2e1f1dd0d87ddc720c3c8183d9c7c377a114d32a963911cfe745020b75d26c98e9f65db132844143fbd9f1bb81349f86c692b7761f41cef4e06d2506e2b7203bb7cb993c5fd4b2ca89e339b5f3afd5b8b50d74d4f461b460eeead907f690c3149371fa2f461c9ebeee84fe56b63081ba19b5e26337769eaae029067206e6701b7ca7080f90244b52b94af7165ed6baa975e6787e3b7f23d733e4610f760d17ab5c710027d428d178e13ac73279ffa7f8ddbc9373836f7ee903f5daf36999b1819b84ff0df34211661998cdfcbe54d7b824393242fbd61b52fa9f401260e7412e66d61876880da1ae9c3eef4139cb8350e0f8cfdd5743e43b83d790dcab0fc4b6946394fe9cd56f48938e6603c3aee2b7cb265103e73f6020ea667d498766a724386023398de8382f0a9ae92a4049577503e8b6eec42048e625aaae5e89d06d781b3073f6025bf9a5485bd06f10d1474801d1a84c22c60fe060e58387ce07a5f3d3117aaf88a30ebd9f095c6bdacaf0fb04552d40ed1aa37364d066bc8c55b530d9cab7dcb6432dbb79214cd0dc5c3dcdf82eae36b7152d485f4581f22d45f41b6101c83672fe9c363665e5f1619e3a520583a0ec0e77a5553fff95192d54135279d9f7c2784db9b9738257c96061a0b25a598314b6c6e2a09a05c238769ca055a34995fe3c09fafe4503c356d2a1b0eba6c57f710baf1093709b90bc3cc1333c677258a45625ff331062899861d79943a336b31fdf507425487db43d1f24e496327e3938ea3275b5066c194cdd039b7d5bfb177d1b322f8b30c467f5598b0da4c59a88669055f321242261bcaa4de3e74968416940d85838b42e3f20d4b4aa0d2fb193e1e9f9ebb237ce009d2d528b7e572e18fb188a76580ac2df8c99ec07efeebc7f71555eb5af8d15b50a74fe465f599603664f2faffe714d914247bc93281412498284b0ea7e271a77df7cd5e54db2898cffdac2e686cee934d378b800603db3542dd7338eac5a5d6af7cc287e4fafbe4cfffb9259970cae0a63ca620b461094d0701d5344df61b7a317a6ece30b6523ab1dbca0fe088a248e6532ec59cca4691b89a633d58b6836b220716a139946c7b2b962bfb7d70c46451b487c496ef782de61d4678f77e8224253dcad9259811bd09fc007f1d32c41923c1864e14692ecbca7f4ede4df3ee835d537e87d56a22dfff937fc275c7277dceb58bb002938d5a610e5cc3478ec6ccd4e62127728f38988c7edd708a27b9414f58aca40ad7604a82f743dbd1a59b940287d9ebbb5e42cf86f63bd34feec181463ea5ca00a36fa6ef3d835bbbc135de1093c305f5e9168e4ea0b068d5f7fd76a45ed7f00fbd5c31f4c96190be5492ad455a8151cfcea835cbbfbd6741deff3f156d3c525c5349af5ce87db0475186b1af33f94ca178c72229f9eb44a1f937a9aa0c1a1598a814c0d2f08936a75a4d44277b34bb25ca07f393998cf4e34ee5f79a2fcf24773eebdfa525b97a0785a60b8984c1f3aa883efcbec38f1cfc26af6bf073ac412dcd804593b9120e5599e1b41d135d5de7009821d2524151dc2dc5c8e0cb5a5d441a69c118cb9f71e00cc95fcda6de9e16d39d8fde244cca074d161ddef7f94adc2bfd9fbafe61385cf9a93fbfa5c5235ab456c67d4cfa5fb421c72b038a0fcde049308f587b12dc91a9e8217d685617392c365aaeda9e73845ad8c697426ce9b879935d1b481ef1d2327ebfe20544b53923accbd38fb4d630bf4136d857e17312d196aa23cd13fb71b771d38225eae09003026061e4565eb88d57dfdf46b20daadd1687153602bbb996a6cb4670ec231a5d636855995922df75e337e15b023b770bb0511a8e7379cb719fa393442deeeb358a240ab6ff00f7ad2a0322b90fd0cafb0385b18a1326857312d726f04c10ad7cb4a5d2903dbe36637857c9ed04ce5f2b1421de28b7a9f63695f6f6c93c022f81be0c94bbd3112201ac87d354fdcaafe86e88e5fd38712ad7eaf2308aeefa4fb24551fd2e097c650dbd90744a7cce5e883507e5771322977ef486b2bf7bd44c33f2bbf964174bef205dc5ac2dda06c3167296fda61eb0ddaca23e7ff3fe2dfb2664743087d902c3ec3b170f3aa3e061e43e99dd8f45ba9321d1d6bcb6d577dbcff599c8c6f08aa21dbd8e01179153fa2c76203a30fd0c89f2488e84cc8d99f9ac34c7816a0788618f59398b809421dc973f5387a98735f84f84f8d737cd3521cf253328b529b684349a35619ff891f83eb71322a0a64870a33b9e1d1581bab113d034645239d00adf312ebdabd75b3039d4e340baa0de5ad0892e4434fdb45cfcb60943a41871f976bc1c3d0af64386f4304db2bb9df171d3b2f5da26082944a5731a8df7ea43645147e053bdc5e04d40bf10814cee6692a52f65660c8065706182e3a85487ad5253fba5e0faf473f6ddb7c03fc4d5e504d0b183a005fae9908982803d89b7ba654f67fc0df2554ff76f49052e7e14535be0f16cc9169026935f4fc5a496dc36c7e912d4bcdd53817154b2056f75d0d372b32854bacd2cd5bca943543955a0f58e4a1e4ea2c2bc2d9b02e9a251986330489edc21abeb7c03a73c24f32c4fb54dc25acd27fcb1c6e52009ebf37d859079257fd6361a7b65ebdb69c0b781c4c1a397bab761a120da848e1a66668cbbf194630c9aaac9edad1acf4835dac09283e4e0edf3036afd2ca3df40a599aebd94d8fadea163549eb21bbd219aad8040328f3d4a8e06b161655bc9698368fa6f1bfed72f6213ebaacb63489463643fbb0e0d3602443574b6a0c164d45bab23c311f398aa8fcf4439bbf2a0bdf564ab72e77d7a67ea0e08000c68184fc1f56079d62e51085fbcad556a885dbfc2bde19ffab456ef76761f9518845dc934848f52465463a26146ad63988a2b02a7729415f72000b6ae533d7a64f2401d010e3681b82b4c6bf948cf1ff855147bce8e015c21e42442dbfd81eb5c9d667d9fb27be5189f190f3950f52bfa51673bc4267b2d7b45e3bdb36ed4338ab7e91c164a85707308498f428dbf44cbc455cb5e71a10b3c07de01b3a1ac6e3519a0d41e2cb4f37d404fc519db4d886f7f048160f4651dbaa43920ca6dd1e0f09408e319814a60a6b0d3c9c7dba4b14cca3887caefecde5bede7af468442c832e2db5c4e27eb0d42be01f1dcd2df4b486a46b09407dad522db4ec0320216c988f32f76973f694be41780078e0a879269e2efdf80e7cf4efc8f11d1d63dc5698d0293bc06ff08967eb7849089e3a8c2b9ee5db7ec2b4ca541da01be78b42f6c6a370dc2a883b03b1bd77e49d8ba7e5cfd79d24ab513b1c9efee206445690a18155b734a96f5a81253a28ac71c8e7ee559d9e80dd76083b2c0a6b0a16aeaf36de3ba133810d02bc200e10f72203be6a617ba89004b8c4a5b03bfdce666e70b480c407eadf5178f6a97b43dda184678f6f9149c9647266f74da9cdc5d40a5ea7dab3d08c34b8a598cfa600a0a5fadc9e27e554af4f72bfcba1b71c53ca055b77c1069ba98897bbd4ee30eded520a90deaa8e81ba4a983cda75cdeda389d1b7e9b0ca8564d79148759dd6e045415f833e2ae14750a27b88ccfc14c5f7a3dc040b5d9c34e3d3cc3056f2a4b14b9d0a014199a3954669cfa71c1d77fd4cd0222afbcf8613825c735ccc3caa14314a346e8f79d3936446277d10cb70b18b298ae498e24291c403e14d0bf16bf291e13cd59f472d1c96db022edd0804379b1b80876366037e7457da6ff7ab81e41bef914f2902f6bab6b609a88100d95fd16f106308edc504a601d7403aa0e0f1c78e05e4590e1c36b26080be51f4f6287fe4acf0396d6e6da7c45e64334e4c89b0c790d62aef9c46bddb330cf162c7248e07a1b75d9d1cca36b133273e8e6f97c2b0d901a877d45c90585bdd15112abe25664307d70c6505846283f6eb69514e6d46e1507f3b8eef7bfb8d8bb5871a1dccdeec149b62ee049be46d0fbfdf679386c93e8a2ea6d8f60c54fe62476cc1e7aa35012ad1b80d8159c07d0ed4d1e653a08519a08e16847537e269d0e5d0ae5a2c55b9a0dc6a5633587fd86ac411fc0c89167912e45c62298ffed4993f1e1c960283bba66be6b7af506e59f4325493b9b26f08b738ef096854b7ec77856dbc680aad9ce0976e053f1d1c7c455ae68821f9e5b3eb7c96c43fa62418ec84a2dcfd3a03d024e63ebad69f93b8675c78e797aed96b706994603d9373d67c17861814171fd0b10896340bfdbddcd20d7cfe36ee51098fd0a10182e6ba8f4da0f3c9e0f2431efa8013b35ee8852dbe3eed85425de85b395822ae5ca51bb7fb53bb970dd96f1606bf80f81d7b55aa0b614d9329ccc0091b1f7fc6ce9427261b915ed27b3f243a57beb1da42b6a454cc2381bb88cdf43acd9fce512289a9df687812b1c449b8bdda033c5d53002279737ac76f44de000e60dd71790de5ca053a243c035364838378e8ce87a861f3ec86fa784a845742c8a165b965ce4901dcf5242fa0d02c65b559a9ca9504a3c3c6a0b11697b4376e4e3098642f6f9d781ca871029f7c679bff42617a46af5ae7172b7cc0fc18c67392fc0972685b307f726ff0b44b3f69e42dfa404ecf029b6ea929efbf376cd53a68dc6086a3330f0bc1d2b497ea225445e14cd3ec8ac11050ba7a817eb1fa045afcc5967f3f01a378dac11785c432d80347239ef19cf773150fc571e7f28847551c7153c7fb77f9b782438313fb522c6ddf637fb950562d47d227f23306d47914860dd896cfd67603b4780145fd31cbd090701e608fbf609d560ccb7107f93a7382bee7edf5fd40d9ec9f83424ba57133e590448903f889fdb3108ea6f1408f8ea6eda45cd6b6a8c0bd7ce814ff03239f644fc0616ec6480eeb615561836df81cb5538ea61df1ffcf828fed026204ce75ef4a217f266bc78841fc525f4c4dac38bb5ab8d846d383fc4102fb47ab7fede642f210a7afac2a1af35d2e908c0c4fbd662732bcb5ea2588fe1dc48232716ad50ec48971d2d435dbb5bb3c4dfb9a79d37c5b78b3a9d939705c36377865b80e0b11c0888a9e7c4b20f0a99e7f61c277fec75ef3819e4bae91f3ae4b4581c0acc70028e980434db60c78878fd96117caa1d2e580f7556cc9f3d54eb44468bf993a18435911159f2888df4e8e099b24f060d8c0f08244af589bbd3d564c048d4755ccdfaa7b0be70565adab3ae6eb3d9bb706d4a7eee04b20ea0a84b3aea4fce9915342d838d3a2d66bee579a1cdcff2f04008de1ac0eb79976ca9e1c539c64f627b29d9f84ada774aeeb5825667073548c5732e082f1d91122e810916a68041c94e0eb9a2a664ac4635d294e4ee683a1cbc141c3144edac9ac63ef66d6d3cbd250d4e8e22e83ffc4b47b97751a69a93ce0bd7ee77840d6d9904c262dafffa5180f231731521f85ad37df3df9e5b5a7f6105db0611072c519b4921d583a9b8a9472ffe1d65126c60f8288755acb11f3a75faa2881a7bd18bc64a51e51d6454720872d540f7917a9f831fb2b61b9c8fa771e73d031c9b198c2ee7ee1939e1a6967688885c19cb147334b9c20cc22bfb1cb35f2c3f7f369c36f460386de6ee1db7b2d5efad72b3f145a72db842d16b7f7447c62d2c53ffa874c5c47e098c6a860694c0493564f684611be50fdddc824e93c19be1e7f03d0cb649e3487654892d7278e0319bd47eceb201f90f0131aca1f5166427317935aafc0ab2f9b7f2530490c6f06d17f110c6348bf55a0b69c2141534b71ed7b2a64e358acb0f25a81ca9c4884a78bc254f58bd297aa8df9c973650e2e625c62cfda0292d7c0ecc09fd8a9212ea46cba564e091d1db0fc8a68bc7fff3f8282db50d581c3152587b0017d5ac3d25c00afc1f7c1cd7ae54682afcab14770008582c628e90d2d4f6e571d3206540a1c9fcbc19697cb29f805675102280e470296f144d4f9c8b58cd0adc74b12b61d002f07eab98d6be210f5c962bf265f2884368253994db93a72ea712fb01a4cebdf1156373f3597f205b2f2138b8f494ac0a270ea60842e0f3cabe9ec667fa7364b71c60917ce9b0f38bcd219c18930b15d45b5b4174a200a5f839aa62ad8f799d39e940b73a194d31e3cdce9555c032567fa01611aea5534de7b0ff353f35787890781d8bb632fb1ec16532bea7db2019fb9e27052627fa0ea1a232df47acee644cf1db0faf04b30c728ca0ebdbaba3b61b2734c569d4e5c57b16d887af70cb67259a0f48b03c95944089754b1385b0032ddf6a91b7d8307217c20fc09d73d539e3d9d1e12c310ce6e813b92e08d0715a3d0f31f8becb902a11cf8d176e99639717d41af1a8f2c32132af66369bbb1aafa6df903c62114d378b3b31308e92b17c2d644b604b984560870ae40938c685b888849fe8bb3af24c05072eeff28c079d458c5ab3a8378df4b289dcb878e976f990aa4dd81dd081a19c09386f4f5a61af016d720ba03a121563b824eca3d0642b35a4369116a586d8809e857e107d086d280a64aca950a3a8022d8e8eb74ff7a762950c236850c031938ebded538b6af2b2e8c0d0a291b321668d5ba0e3cc3b7f7efa5d3e660cd20512c364448dc29aad644c6d45529add6cf53bae162c86a4b34a2e998b01124501b6fec82806c65a54b337d854c3fae1bc88db2e12f6d161a51444a46c868a7049c55a3c562f5ca74ffb37c4286cfd807fe6dc0078cdcfe966c098a38f9c5a92b4774ccc183d143258c7e57eb4b30fcdf96acb21e254484d913764cfee6cfaefe8d5797d1148495fc3e070f0654cd55ea2de2cd8ec4426cf0587f5eadca33273155b410c22db5a8b2c3f18ea000e602c0ab859556f318f60d672dd2a73c538dd26f2506c8fa37eadbd80464f51c5ef2da56bb4849c5964952d6a877421be2c1ae118333fbf37bf299234c766bc44331bb0ad9a931a259b12d6a0f4aaede7bb1f5a7826cf5e37f54672c8557e2601535e4574316729da9070890b5d51853f108bc5d5eec8f3580efdf2a172391c40b67b24ffe7e881ab8312348380fed726ee3393d327d7e9b47329654a2ae2c94057075f2386d2ae9ee777449a44d91e1431c65c0a7ebd17f0e3bf2b8709ce84dfb02126d55a344f3c648c8a5e902f97703387ae8493aa17f942784de0f83fc89915317145ca04c164f2111ffe73010f8c6bf42ae44e239b0acbb56c134ac4a91296b9d5eea8a664d910b66783d6fa8e183f0f0f81a45d624adace440dd9ad4c0e14360748c2aaef3440b6b7bbcad09fb32b41d5626150efe57dd0a6486190a781cf861e089d6e81b1f15a6f55a0ca8d78fa3b2f80493a8e77c728a846185e3ca2415ea9b30c998662ce551b2dd395bb578e4cb51f1f41963f3848a3ce25821bba2022718e7ed33740c75525a0d0c7eba2e9a2bd5d90ff26e9cdee93ff848b4970c68fe722e00d77d9de07cf382788556726476b9b06ae06c14215cc62ba4f2a864b5cd251cbb7efae94729f416b9146130178c75d010061b3ffaadeca043bdd6f1b9ba13a4c95cdf957d9b4aee7e779260ec9595395697bc3b704585c9069b4db4cbf38ff2547cb53b9cc7b41f6bd76332bebfd310114baca35c8b083d1e2dff0cd978e0c923f96a163c6fb2d76a293ac48dbf856b2dc5d3700aa82aa878b0e38c19cf5842f6fa84ac43fe8021bda99585c5d3832e171263f0b2b9f77cbed39a68ef2637bf582bfbc209b1d82388a9f4465d06671a2d07736352bd86ae4e2008a538596de3074aaa291281ea937714cbf3ee843971410e180eed317446932ffa12ce9239c59325aeffaed8c9cb7e73616681e49aba46ad0f217932aec16c87684eebb9c40e4d140acba5a01604dbe2617b6b8a36e6ac4d026595fd84ee0b466bab414b07c9c32c62526718462a1184c933fbbecd97fdbbbf999a7dc90add4ea34478469b49f0b319b57b75754f8200d81bbdae05f4fdc624d37f5f8e3a4b7fbbbda7d1da32dcf6aa486aa963edea451e80d9143c595ec73f80ceedf0fdf86f24847cbdebe217ddf3769eeb53db59c9ebb7b18d8335e6b0e89ac6b1b81610ba1dfaf83f4a024615953466239fc11798c43d0a61161846d8de036c524c7a1097d1c09cc603db413405543181f1255260f866227cdc11d03bd1e759ee2bb89fc30a3fdca90f2eae416e5a32981c3859cee962afcced6edf24596d38c657c3d42835dd8f66e865e666ef98e878523735d94fde1c6648970eedfd68c7e905ef1cc4561490f4990e9f8847890bc8f1cc6e488f9d69c437345b358e0a36d564ac0951b2380b94c8190b55faf9daa8528dc507657997a01b7a28b0df6bc34949f7497753f1d96a7d81f3a740fbcbf3ab05d27cc9b6da029cc2d03db66bdb758331f63af9a9b2e46c31fd5da3b29f3640182af7c4fd101c4d77b228e0b448a724fef5e73d9e4daddf0b99cbfa7f7d21f18d2d517356b575a726f52d921492dc1be612f925731bc39cccad4f9b15ff12c74c5b150e308c4aa82f0c0f50d6d244e4df3910382b08367de06952174547e14481745fc9c16fd63cf61778dd57d7a47f9cd9fd0dfd491a31f1ba1372b39c0d270c85b62e0674ded94e4a18862108f8d4e1b29be0279928c399ca4cde82e85487da1f3564bc63662518aec1c4f4655f283b5590cc1429c18daad6fdc3bc7dcf40e04df4394d95a1b5c1b0a7c397d7335827775e571d6a1df5b3e9439af007572f94dc8ed0dc88ab0c2758bedaaf37b15b456434ca6810c2ee19b0e41ddcd076208dc9e5642ec5a445926413ef3fd75efd28cf31ad2d70c27196d313f72bb8cdccb625de312947c0863dcc455296967cff2d4f79924956456b384a52cc10c21aa756de2ebf32a8825344b0640aeb8dfab49cccdf5f741b61cabff80d7ae0e335284f2f2a646ce2d4adc49900c97d5a1e2961643f96a918d0a8fd6608142b54b6a57e6690d127abbc8217f6177c55b130c56da3e047eaa27687a4bd87a98fd6c47847a25cd9cfdd17d888a19564ba9b98b4926800e517cf2216e8a1d235c167f8d34bbb6fc9a52327034ad594f4da6716fb16f0c23c8145bc1c544285a8127c4a1a8763e368054e40b0862afd7acedb99b72ca32ecf8544e0ca8a0f852c0fac43425628453b8a59c2c30c0c5b94de05f17231e471f2c34ffc792f9c9595ddf67c7e321f3fbbbe5690facd3efe3424cb3f1d00da7a8a31b7ec471eb06bb987b66c216a581d12f0806311b33802b91cab0bdfb147fc46f52f161a66a4f25dac48ba94f238482f394df7504c1f396093601f88b75117d82d9a4f319350b6ad51d7b86fe640e8bad1f635a9fdc422670cb087d0b60e0c496b82810de2c9bf10e5cdb6841a0e4eba5d4dd26d078d7c940b0f622b808b67b80aa71718378671f195a5ad98b0b0e79794b1151cd916df91691290be7f28731945cef98209f6cdfb643fb7362b459c05d0b25f337a5d87bdb401315b5b09d73c3a48757ddf4b80a99fce37531990be53a350c0e643b5af6bccd3a63b88a731ccf8a49f7a541a99590b583b83b41f493fa2007a694d9e5f67b660370a6e24c06b08035e25cd4a5e5dfb7d2fa2ca4966d929c6adf8476dba5a6143e5437dbc0ac71b15a9b959b7eaa8f4fc071720f0788836ef04bb2b0cdc1b3c8a7a24f0d44ef0d8c1a02deb87bd3853724c4ee135f8af9f9bd928c2f92b2e28fb95fc26dd56b95e40bf86da48cb47e3cc8dd8a5524519cda274d66523d0a502d3deee76f7d8d21c88aa2e07a579f920905320338ff025b9bea1dcab504356736532b89a7827817c943c5d4689666fa47421002233b3ac68bc8086babf3ca2eb06304ac8030a180994946b44e4a28952111040a5bd1f8a649a3c7c73814177e5e3a17b668781865d97102ad441f5af6c862fbae3bcbff5e306d8891517c811e67763516488da7824a4d761866577239935f37e7bc44c6900fa5487e70c477c6701023fa5ab066732d7c6c640389220bd597a47bb01c14ac5f2d3952b16823242689f1ee48a1b762ab9357241a41438c6b35aa7c502dc3c9b54a5fd484d3df4c03f976a399bcff4872c2fc32effcc78130f67b4e628c9822fae31a5f13febfb84f6d32b8684c4ef720b81e609e50637f3240b3fbb16370555dab522f57fd89b7d2e08ae80783686f0d3c238202165193be3f5fc71c1bc329fd5b56393f0b13822bbbed514f6ce75101c00e8bc0e3c15d6b34fbbc5b551b19c11d8de8b36dfcf51908ff8ed06d37ef24850bfeec5855985851f122e3a5e634e135208fd4c28664d0d4fc9aad666da29fe0c62b629af9d0a9f291fa3d1db1651c0173978e1e7badaa26350e0b2566d73e0dd8790d12bee2b80bdab3db9d54109999ecebf33245594cc7a500e8e25a4937bdd4a569a8d5f3e08950fc43cb4c05158923d36b308f359659bf1dc0215143a56ee7e21d3231d4adc0d8d8063b7f4e6efb7add80476893d2cbe9ca13f59442ae28b5f78643b9ae312afb56a7ce8f7866d91bd1f7add35a5bca88b530c3c51d4005a2e183f525c7a3addc5541ef7a2bf53a34e0448099112c5228f8c5dc3731350150f1a83e556fc38efe8a48cd0607e9b2bdd56a349c76ec073efd6e68937245e2e1dfc5748c184f9f5f968684125b17d0712605fc200ee3cf5520f13ed103f4dfbd427f9c48936098b1e12d501d84ac721896726805ef39cd2eda679148f0f4920850f909502220ac36255b536752d2ade40a8ea04287c548503bcbebec293026d4e451062a6e62915ee1fec688104a560dab5552cfb00045105ba75ef2898395bdc7b88712807bb28aa512eed2cff753e170ec5aaccc62020c0e029c94fc460e39e8f0b886d615197f80c6577e2358b0e9cc07319f08758095ad9d7190a780d8ae4a58e61105d262d1cd669e4ae45de2b513f90a0003890aec65af6e45ea8d632e9163c1c42b1c113ac1f90582d0f6e7c067398d45686e1879772dc23fdde714e1289b2d9c3f1119d79c95fa97c1d137441899793296cd3cc48612ac7ac9221c1cce9e13551f3a37c5cee2ca78c3cf61705ba138537b2471c2f4d1054aa3a1c151b7a654def787eb2a11635b5921b0d6838628325a454531ddcb629bb757dc2fbccc9e8cf09a4525153fc1e950538e08269344d43d50da5e3ddee9532d98f217f6b779673c665caed771361a7ad516ea45217785b958be0c2a77a8b03709ad38b19588a258b11ebce157c751399b54a710c83885522f52087b186e7f3aa34d6be3aea43dce938b2c6fdbd804f7186a91768a5184c84ebc2a24004b3799bb079ad6acfa9d2c39e865fca7e8ecc1f0a5f23c1d72e6e7145bfd9eba5269af2400f2f76a0ad955b1499f1b20d9412ae2aba63c59be2b538479fa161e1f46326fad10662005e8f7f1763c9551ecef41e07c45f6328e6bf8180fdc9723785aeef088417183886e76267e730d4a05a9252f9e7b09486bf2440c30829f415205f06312597fd2cbdd93e64f8a0aa58abce0e09d27d9ae399c536b95878efa4d558af4c0f5bf118ff3e91188e1824199a2b180a0cb338725566136de08069593a4dde780bf6e1273340e68b11e310d37d476554fff8af02e86029f4a7296bb38406878e3410fa85819429212d1ffdc3122befdd600cf33641fbffc381d76351b78a185b013ff32dc23f95d81211c6c43fa8c86b53c58afe1bd7e7c54c183e909b214b7fe0e2e1597555d7b3c9c828aa267b06759dbd1e0ec655f37a1832b26d92f5defdc605ae193d90c60bc3905a3877f044469804e26dffe1b44ff0a53d6efe3b47e5ae2a89fe882982c5631400f5f2ab02b4aa04eab935055bd51100116cce6046de436a3723725bc2808b055eb6d09d35a3365879c654ddbcef7a9e606cf542af783d6bf22f5e1a5642622287a75821a8c0203e7536314d01b0c8478b718e04464d198644ac0a8f5d5b890e61b6e0cd89b9f4e96692f7789e20598a030e77f044469804e26dffe1b44ff0a53d6e76c5081da624599a1ccdcb9cc9fc65118d537b17778e1abd503e9ac05a84f08c1c49e086eb4c7948d255f8283503e4adb5ca25039f17116c0db1e6c99657b9f3b24446b582e17e9febc6bb75f20233ea0a6749c6da792933139232634c3f6b22f72a52c0b4bffd773bfb73f44d6c5dc541f21b351a9d451446362aa44d525d4ecdd9b791ce08e999e47aaa9e98e0d0f406b4387496751a91d3d1815dc98aeb09a1b75e7443d2697a1b7ddb0d3821391bb10bff9957879edd379f10a9863ef27553dcc8b063b85144e3f93dcfc1ea7e67cae6ebcb7dfc0f80d8b6696873e52cbf2502abbd8144e1353b143028ee99b0e489f05c0881f45d9d3750513201d8840dbcd4014c3aa45b2ddb3c2f73833ffb605389cbfba05f4b759b25259219d6a50fce153b27767d1f00904e27174c65c55705b779ed2ba47514453a6db74d4d2481de975482e60b45cf48178fa5563fd504617c0f826ad6872c37648df44f49f40665b46d7ec8ef44502186dcaa67a8756e7404055d36eb0455e340a3865ac9fd9afe496a24dcd7c994b9a640d98aea9c97476895950314eaf01a2325f2b5251bcd6af795cd6ca1037dd4eaf3fe0f1ef86a0a81ba73cd14a5e1328ac98ab3a8faab65d92113914865850cfbf426e9165afc05d4745d4a207ae2be8ae2f18fb3c074eb17bab0faf013ad6618effd9d8e157bcb4c48d6b62e96570cb9372246868a87d1db852597d3884fb8057c44b56aaadd83b9df0ea9bdb71504c99f45fc29e669ae6858a003c7f39de5b212462386909ba553765e8f1e8bdd5a6ce73dffa0771454ac6fa06d6ef42b824c6526cdbc5538eb5acc8debc77e6b9cf8fcaa3a5b901f05e543eab7d78ea9413e2488abf7037e87a546e8ca32b7f8c666b7026ec36fc317a7c9d797cf122e8c81a85062bbca90112a06f835f1254168753d8d52d435e8f6a247c5d5c54fc97e0106d08a131499eed1b7ae7625664013f1806cf84585731cfdcd958abed87f80e48e6f93377d36dd6eec37401865a590728ba171c73c15e815c0572c3067cdcdc13e1a8e71365d2179cb6615db4a6fb1e686cbecfeb0b97c9a42901475196787bda2230760494ea20d37002bae70430bee58322fcef6e5f30bdd61a3fb65fe5d8320b45f87012c25af49e1f9260794249a5f186c675c053c25695ee8df95ba873c7a9632a5bf8e46af70618ea7e51c008c5a1db9c428b9e576bdd752709e037aaf69d800a2ca934015636f095b05d09018374e8863e7a47343fc01718aa3ecf45bb10eef19f95f0b8a93d5ad962ddd586e01f49e0edb7b2b4ed40da16dd9f937c1b058564403867751feb05851570f55463443f4b67a6e77bbce04738c80bc998ac0e54879b517142d5917ee5edd348f786179db6f687d5ef746316513a58c6376ee49226552b6d712de53af2abf5650c6881c99a4141d60792be023eee560b359711745055a9f557f008f12afc5359086b9a917bd20e52f0574ad492407020a6a9bb4f9dd1dfa4ffbba0eb328e5c4f82fae9c157bad178e0d3fb99a700921ee5144088c9814207c0032d838b63e6a83b8a5c2b195304a9564ccbe130680f250e1201087c6c07e6e8d6f595109187cc183d025f17e12d1042b47741db94879ffed05a9957b01225d150c1e7fea353182869e69cf105446c4fe27d8f4c64d841296bea96822fb4393b9116690d574bf6bcc2dfad5313d0049439fd81fff1349c28711500a2df44c7df933e7a3c1d8f36cf2f84756f46e2b14f2ab586e35727478ea6b9b37f6270f3ca3c289baeb3d090f277fcad4a131e84df387869cd3b8f8e5d412b54d37a1f64d10851f79244a927695be53b774a3f60200ef6456d991d87e77a87354631a77e526c3ba7fdc0c611ee3e092e631199d35a90e9fb80186c5be35a9576e3b64f78373257bda7bb8128ed6390238e27ed50e3dca2b483d6cf1e16b19bea2b1c1ff8ab628044eb4502dd6fbe98d4955036731e779fe3d605aac4035b229570bb757d1464f645c0856538f50ca36c5a2d82421dfe9c9a0d317452bb421b0389a48683c24c6d55c6d282007ed61c8970b3dd11323682da99326cd57a7d02bee7d1ebfb4f97038568713968af584ee2d09cf7ce38cf76490351e72a84c1731df086ee58993ab7d33627d7bef8761748568089836e732636432cef8eea891b4b8d7a4225e59669a69a1d84cda716cbb78540fc95e6b34a0dbed316764eeb625ff174f79fdfbacd25a1ce39e5e9c3e466a0f08c7b361e16dd526d9b4cba964360907ba0768c3686630e7ba1042baa1746f63c0063a8af5bff27aa4f994bcf9126542386a87df6b29f9f03495f95ae8cfb8177f4e46c7208a041ef5ad9aaa97d030b45133fca496df29a8f3dccf296f8337b65297f8b53da53d2594ea855b6f0fffca3ef7fef4c67ff60040121d1131ccd8d3061accede1ff2da822b2832b980cebdb8935899a908661d4d2db30ee32e5a949154fbab3d2e8d44ae1c287356e0176818b96cd0fceeb48e783b00daced81c01d3350a807c04fbf6ed7d8fe5d8bee7d9e2b6644f9d458c62e7538d03a85e13f8f28436cbe6c9014208dfc5c44710361e1e944058967ae0873be25a34888432c0105fe9ef38d52f9039b1a07e3ec1c442fb411dc6dcb5e975c9febe537d790c9a13530c8a93e60f476402d8f3a10a698d1760d4b5167c14871a91e4e4b1a36e6a118ca1ac3d928e10ab98e89bf6a044c18ebb7bc1625b0e41ffdd789c159b31e555690da6fdfca576e5629eb06c704eaaa0e842278024feae99d3ec9f2ef70b047dda0264382c008119bc33c6f89c2084d9f05a90d42a9945924b49a9246b92d4692fb5ed32b107aecfa58561d71c1f87df61c3552119ff6c82954262df08acae22d5d1541d029c0d6c1d00f40a488028bc885664bdd77a5330a30aa1db02618ae38345eb470600e3ce2ff6f7aa535e67188e52fa61c61ed81a1add3dd2beeddbb9f88a834604590bdca105c195c2523e4de5767f1c69d1b59aa88d5d0a384677b8d03333a7bfdeff234027f6ff709c7734af0cb9591d8eb794875c7cf76845e19e4285444769f231084731d86865104d47453bb84495b06c8ec820345ca3ba7a589c01d45a4e25e9ef54bed2515f9d3d053444da841b6d6b985bb68867fade1965e603813fe0ba9063f91093caa6eaf151fffc55c0af7dfe7cc2e9600b4ad5c37381d8558ce433bafd8e24dc031418dbfea60a0418b2ae2dec38bea57450097262e4e3285946a585f06713c993b4dca3c2bae183a0a45b92c479bfae86121de9134e0f400631ec4450324ef8f9edc88bd4999902d5cd12c24919e88f6909550c61f02a0b0e76da579fb2c4567adce9e81bef705b2f2a359336acbe0c13754a83d0c573f509eb563cf207ae85d8c1fc5213955841dbc0ed4a71ca62f5f0dec30780ceac953518c7d3d763221cd050ebb46aa9ef217ebe6f9fb4ede7e93c74f74ffa116705874b59973aa9418fa92975519b85d399d2ecc27394e09fdb1800cfd39c12d343d5b7fb180e9cd87c3d7ce769c508e8dfe2011343384a8c188ef74af13d4f5cf1a50602df93cbf29e56cc02c71889c534edc42a7c4aaa70f8a367aafb1ae11d879d9c0a2e09193b2ecc7a8cc1587e26579ab3634a3a4dd08867fd55294b823117321e6ae723001d7d03f773edd3287204d0ebbd19bc04ff111e8a1373de69d1e22c69ae1be0a0e07c2c3812370ad61150639f5b5de84768057e41936e4deafd9ffc43cdea874c6da89a0f1df798d1791246033e24302d70df26efa20cb36c383fc797ac5054889a3b5a627742ffad9e93bc48a57f9a749a1e3f62021143b43162402ce530a9a0a130fd50030c7526c154ba0414d22ee75ed0493b610f6d34559c033d5ffa4033f713e2bbfb291d681adcd5e54d0c7e46870928e95708002dc93440ae25215f3ae6c029e3af3f4ed7339247bdaad1d7884b94c53752a587a234f20fb737078bce23521cd6d44513f348c1e2e3dd3a7bb88c24db008a7baedabc217224d2c4cf443583f270540db1e88f85269538a667dc99cf825ac6d0d39f4d358908b4c53813516220e002c68f9b1345be5c21a73dcedc1876cd58888ebb2fb89280fea48ae34ffad0374ac581f25e911809670a2de8f886cbeb059c83de58680052d2f6f2a6f0d811e1a2bba17a22a0133a909d4f4251f19d9cc4f49731ce24daac93e87ee35be4aee7e4e020a526956c68351e1ac5246acfa6ea7b66900b36e838bb41eba98c51363683c10b8622511ede4649935fb55e34cdf085bfa5175cdd275e74b6f94a904f49a0555d58f8ef54698c55e6fca8935b9975bfb17cf694d4da471fca1c3b7e4609c289defd3e0b38b7ced3e2060d34ed1c32e56cf9a45fc13b47a1689e5ae7ec3f5098b0e83d2f8a0f51d65ff7c944ce7387176cf89de1887252809d3619ec11142634d6587b2f396be53eef71f5d81e805bb3553e1fddf5fc79991183d5caac45842d191c7ab6fd42f535c017ea9b246893dd7d6161d3f7504ce0209dc50db4e6134583572ce9183142bdd77006fe6721140bb2a16229d5a2a7310828e7888a808c2c7f08c25ab3ab363240e84256f19e940ed6d8b0c23028ad76f4f4780c1891f42ff20ba1c10000d26e810cd81ed01e25e6f5eccfa3a4e53fdbf419ff26f2fdae47e51581f5d2abc71ec19880224c24f8f91cd490bc5ebdf26c7357243cf93dc0548c55c699316dac6f0d93d8a0a28763af63e84f8a4961ce56823d91468a6cd771c8d7fb34cf33abc49f97a4d80a5124e5f24aa09d6e015d0e0a195cf6641f453c344444aa218d41f19b1e3f073953d2a8252f3af401a2edda63a9e8cee78393dec5623719209bcaf7c2c8e41653ed63b38ddf42c0429b4cc48e7c1b1117aa31697615423b374b915548d1add264a438df5cf256433158826f1fc84d46b85f40acfa0e2524de67d4687c6d3340745e3091bf289fdfc0df26f9b0ffcef408c49f90d76d7e9806432e815f79b292770aa07e5d645fe962a1f6aa014023955ef95c623c0cdea4577cd322e84b26f27d33b9d55cc9f1a7793f433d1f1c52772c89a5415027e3cea2f8941457a1bcde1393764889df7b6dcd84666e3dbe5bf4d308a3b6d09ca8876456fa19bbfd8e535e7e252750e8d2af6c79f454c760dff634c66be133b2c0f8063c02549b9dc029a0f37809946343e2479d5fa4425eb3a480f5ba0309b7261584aeaf1530698b34011265a28940f1131afac952d3ccb2a80e4244d4b3ffd279fca2331a4b8c4e7233051d55106cd86b284350afb6435296c2b302240db1a280ae11806879665f6b82a985bc5b02db0dee7f86ff41083788babf0b02cdacb92b91b7fa50bf5998a613ed4c240174370bf30b3e879d0dc3744b9ffcc4b704b0098648bf6accff2ae84a0a2af7ab7ae7f83e517bc99e261fbfd281d61e4b9ad513a75ab08e093052529fa9b8f5a28a4f7e21b974c153376360465283c8c1be8313b65d8f076e8c83fe384917a01f2c295c0e8ed4d5461c37f4ba4d46522144c23d69c02debf4c16e329a4910b1f2812dfbbbbab54028dfb97b3c477b83f4b7dae52a5103d8251f7fde08f90ccfb8d6344113a92fa8c54e52bb9e11f7aac507735b22899e1855203fd6ca96e97059c3aff4636265296b120a0b14f2fb1cb93c896eeefd24f5b08848f5effddbb056c9dc25393002a77b6fe27d7e454de3e83f4472ab522f79c3a0abfd5b709300d808e56417558fca3ae84b61029459a690313dff99ed5362dc14338e184571914ee5cc40e33f79fadf40b6d60aa64135a2179c92079c0578c5ac213caadcfbf94011a00c67ec60b24e06eba7a39852ff89d8abac3eefe1d04d76732c4346f243316cb1d7fd0f355dca33521ac20e1c4fa949cc42fe44ba95e62a52b6b5cd2bf85284b7792368504ad975153742b4e26efa21f575c1ccb9c7965db243a6f916cf1f399c80343e32f8f079182cdc8f4a100db7e28c0c86a8cde273c347f8f6d548d2d30c6dc36426cf57fb066de456b1a615a72267e8dbeb6f2312628e3ed3cca23c62e3280698734faece7cd44973b565401288b9a2c66eccf8beb62baac6dca6847b07a47993f9b2ef43a5921c06b98142d417324d2f2972ed7f237879bf7fc456d7b2d86664444688f89b22aa2c144540dd08eb8445ecdbbcb19cf45c7a5e1af7d262b518e99518750dd1de7cfc45c3e0d03ba26ec9b86ca9325604c90ce7ca2fdc3a31aa828d9d5637ecb79bea5334b22bd53682871aa681adf073273e0582563d829a823ee6191d8094a01cf66c0890adfbc576d4802d55ab69a5cd866a99002f5f41fe698055141440abb4307756f3fcf84114fe92ba8fbcc7bfba6a5c4e4252395d794e301fb3fb9604ed4f2acb4916c91b36f3f691696e33e005d436f7a9305153cbd961291cf2d43cdc0a6ba67f3e3d28901d02764d6556323c905668be831b0c6e6ed1dedc2c4511311214007fe7574c390b980b8510f799dd16757ee276220fb96444a86ec70885ff454e3278342551d2c4d7dd96cb3c4b2435bb423ef11465e8c8bd863bd90923c87576e32884356ac30bcff662ab8a5c63604d332810e4495821bfbb0f5c0038a350a5c5651125437d48606414e0ea01be7fd605bc38213169288af09c07dc0044aeba82154e351b6a00eb1a74829761664119aa9a666a03e2d7be558caffc7a589d788ad855ee6dcb98ef1e2c98eda533422a025457e01a065243ee3dda2f2891b5d67ab4662602e21368c3f0b2cddf5c6c196395b1981da54920e73c1c8c18579d10dda5b07eaa42bc751984dab40724eff42acafa6b0a0a532aee11f818bf9bc3412b85c34ae2bb1466b2072f92b99b37dc818893e13b88adde30e8dfcf454e90cb74bb157a7be7d6e2bdb78cb221262a4e3987b951e140ab921e4b6e515e119201cd126d71f30cf150b0154f6ca535eb941466639679c4622899a36a3927d9dd26ca046333ed49370365677143ece45119c57d6bce6563d9fcf98a825c824738d69d7fa4757aa930823beb59fd188b63a835313d4a3cf8be6630d155c63d30837f851d21e1a1376e5839bfdc0f6069bbedf2afe0173322ae828e130ea475e12669b90a6b0688ac911a59ff1409b8dfe689d8d91a6c0c920bc95274a67d16117cf3e346b599fa6e789a500308bf71128df09c137dce775f0c08ad8e16bb44a7e331ccf470505a4a2b83b01356cb4ac4e77379e634ab59340783a73ef31e7a4cf9fb3afefa421d3c816bd3bae2b523fb9401451cc79ecbf707d206f60bc3dde9069643023588bd48081ba9c77406d2fef4a2f6e556f65cd1dc8a1ce6e0a2e7dadb46e34192d2bf9de810237b1adcb5aee4f46b46a1c8e4da482b22ff0e9f3e492480fe69386310caaf4bc6a75ff7812e9d160811a08b714befd7146b8ba4e11d9d0ce162672777cd90eeb2e702c0a4a9fb0095f76bdf9895015e0cd493b1c772ce3390e5754e3e6654f930cfa12a8153774dfd602d3bc303754f490c583c31c3f5fa27c828751e84ddc4ac8c8aba18305004d8b1ad345b95961e3df3b875c07b066f03b8e7c52f8e45c07ad4ef7dc49c7fb1273258055ce4576b66b2887324967a254fc96f84158e43b2a67727d6721e28de9eb97b16f811a3d2c1d2e258132b02d46266f4e1462be3f8b6fc6f99ac4b35b0e579513d08f4fdf77054095b478bda57865e22447b0585948090a6636ed56088d8d6808c4bf44fbcd57b536d5adf3c34aed2fc14945b5bac43b3b9840afcaad1b2e14909886d88b4141b766a1027675475ef1d09e2fb5e7dc23fbabfb0d508bf00f09a7e490847988042218f30841430ba72f130b8c08e03d11d3ba386496b04b519f52ddd5c93025333e951b5b11b6ebbcb36223a53e6e04b494d162ed117309a4a875c988a0f09bc133bf2f73c7272a4cc2708af7134085779e428b9bf7a7110fbca69748c15edfd8853a0d62291980f79901d4b9f312cf363192cf693f675dbe708ee4eab7b954035d240e8b8957f27eb744a1b2dc83967221ea7713b88655d16a69add4a18c715fa8ef5753607bad27d4f8e665e1b66c668f1e9801144161b0be592dbae201586522564e9e20a1e4f96cf41b2c5dc585fb1293dcd8fd4e907ab0f4ec9759fecd9094d9a6acbd4ee79d166a85f43d2a297d67feb4cd3da58a6e04d6976ff5397e6a1052e1c52f6108c59bfafc87ac777ff2b95d5e797640952b4da9ad3a0f5cdf08236fa4cd0268965f590e9bd0dc451fb9162e7536f349f7cf9a4be1aa8c690e80d7754d6372d64bffde24ebd63313fb7cb1df7c7821bd18de855ef6e1d94f5c9ddf793b463e4755a52ba9083689049c2cfaba6420838a441e7d319be73cff2a4123cfee87aae13d8c6c9e43bed38e302a442cc5e8bbc5b68b406343220b1d5f09c6a23e28c9f2b93ee10f7d8bba5d15d2bf5a3da52ce196652a8366640827844e95ce615c22d5fcd2b0c6f62b7fe0c55271222a18e6bfd5231c3ebe5b18f265eb4e027aa8b600c579bfe7f480f102cb2f39c0c3e1c96ceb2e596c32a6d98c8888c7c1b7f674ac2584bf051d75104b8576aac31d4bff01af494af45f811651bad5f30fc6a45f7ebc138b47a1659b7af6aed759026831ebeae435efd55953c30f56083c16e675536bff22b18caf39a59146aa1828cb11008d9906db77a57f4f0ec87babaa5006fdda38697bf1525d856809d587f0ef502ab432351a8f90eb2418bcc2c3b89c14026d84d850eebd2d5f878c4bfb60ecee020e838f07923c300e91e824eaf7940ff501e7e41c17a407c56f671363652edcde218f087850f7d5a539d5b1cea247d7e583e8eb6ca36392cff2aa8d4f4ed0da39a4cf11af4f4c9518847e72a328319e2e93af4afe3797bf8e2cfbe3795cb5ebe1cc8d0dbee04b4b4e9734a7038bb670568a33c6e7611349bb2ef1dd3ebcb804757a6b9acea7de2bc0d44e0ff847d794958eda1f768c974858a08361c7dbfe71875a9afafdeb1591bd6c734b4232b5e7affb8d8a4c817625708fcda14e9a95051e9aa5cf1f3797bf8e2cfbe3795cb5ebe1cc8d0dbee04b4b4e9734a7038bb670568a33c6e71a2da2cac7133c1e0944fd888ac0890e6cc3271bbfed194e7954df3573e134078f044004c24b3e35987783a8262f47b37132e59a3365d407ec5e3d217e8762f4adfb8f958ee38bc5eec30366e11abb7b2817ddf90b0dbb4d76a222573afe04fd9758bb11024d2be2124a7ec10af4763d7b4860eb6bd11eeab1a58e17b0b02cb0fed388805a8c36bcd8380a735ce5aac05723e93b74d639958e144fdc6127a11ca9a2ef90f3a83d79b257cd7ebdfa22d9f47fabdd6f54e9ad946fbe9320f13914065a8b0553348de2493c031636a7aec1cd0bf482532811a878e52b94d1b8d11f918a21f4322b79bdb5d3ad4bdccf5f78177399975d3b4f44337c7ee0506485fbd418a511aa96327a2f87d4ec44a9adac9254c1ba3264983faba380a396b232b3000d39b314c6351e11afeda82b8471a271984144b232a95882488c4ea5edce08e75fc8a771a93a8d7ed0e25debce1a16041609b6f4eb19ca50ee2df67ad8c5ac13be9396fa2e5305fc26f5a1e7a076693006c05843b356061ce88bf6d0e4a06c22c3a8d199678c20d1644d2a5c8530fc15567202888e62d1d1abd5a4e80a9d0970f5c733b413a7c01008473c7f0a118bcf4db3893fc77fb40ebf6f17eec84aa3a159b09d51c82d92ede49b085c6616f8cf1e22c255cd3859ee5147e7e1262160129fc74854bbbdc573edae84489633547a42d8e4f3687c921047bfaa278aa0e576bd849c6ede6ecce6e6ee244a57abf46726a2fb9932dd92bb36cef1ee8e706135d1e8556641e4bd0f65acf68f83f74b796d2e52a53f288798157aa82fb9f65c67e948e4da7fd540f399b6274398ce8ee1108acb0eea07721ed3bad2eaadd91f97343d54ad442ae5e511f4dcd602dc9228070cb31a244d1915e781bb4a60f3cc0729cbe1b9299f28022b2bed50b84bb93fab91e84632d4da207430a2bf198ebaa6a53a660fb4afb9a10fa20c804fb27aade71c0c6bd93c20022bf02e88e56d49d4a14bfdf7d8007666440bb4d4e12cd6f4bcf40b6fa280faa8fc9d07d230fd8e0ff215083fc7c5a9705740a29284d45cd5ad3180719a34001b140fb115fc73fd2958dbdbcdf24403df3348e2781a0cf02987338425ef692eda3aacb24afe7e412c2e354abaa6201bf92f15efa0c9939e1e67f1a210cd50b2a7dfdbc1e0b3d577ff9e8bbda6f0c2d61aa58470cdab30da7600b4b9870536a7f0b6c163c39fb5e84c7bfc92080debce0e76d7ff706064008f0b485586519fb249178e20cc35b21dd4a14bfdf7d8007666440bb4d4e12cd648cbd7901059938bf88a7423de5631faeb0bc1907b5e21fb296ca1aa7172e5c581f1850e61c188771fea08012f8c5fa02c347fd1a2da83bfdb6882fd34ba143a65927909f921ef283e6ef1d3ac807d86c473eca18e49fc78a4882fad32353e3161c7d198882012ce0389ca712e4ce5a229794d7ad901c9b94c9877e2ef597e67d320a4b6d682c9081b100339178de75fc23336028c21259d0ef8cdade6c693c6f2e1330085bb4f1683d9537ffc1bb1834e32d982ad70302c2bd0bb87f42cf43571d00952a0c45b87ebe891c670237ec78f7f84f9a3d4f28479662930c7c3622277414111eef3b8825fca1b0a71a674a9ad881528f96f2603043cb47b6597370a75ae9463ebd71aaa544784b181c907c6e5d636fc0e55232849a2a87f5b2d933b6bba1525dc233e07dbd4b0bfb1013d0d5425ab92fbe0bdd6817e912475f9ad2fd4c0accff80df3313011208eee50a04b3fe12227592f4ffd599c2f7745f54be290f88ad071d05a65f8179eac7ecff2db04418c0e639237184538d47f6dc98b69b9ec997ac321236d52679cd5b43271983b3ba40ac7cd49667a607ae396c4cccb2d59bd39e892e9a3a44f8c825112323901cfdf5320559cc78b3a8b5411c9385a6c0ac033c6af6cd2257bc46f7a3834742a2dde1269390d798c6995f79950ea05f3139dd55e5e99f7e37bc0d81f0df95751888c827ba9e8b3696d66fc127772b33dd0dbf1f65a4d901b0ff1159e9530e2aabf380a17f1f9290e5b8b30807fccf30a5ce8905ab8c94e1f9146009ec602473dd838faaac90832b3c3b4644390f29859079d0d5e39ea9c5fe350bf56e5f187334a325564bde83efd4f6eff5c2eaf9c7ed2abc39f504d5cc0722be3dae00f0eac07563082f4e63551ca4d36ad6acff1680ec717b0af7ec0675959d73413f4b0f24360bb512ba7e933ae23779186df85554eb71268e74fff94ddbcfba5c6b3a66a08e226d4739c45e228d8bcf0ea8a2c204f439e00a818b81dab6f3a8b0f57f2c9b7094604fd114194c1d34a4d6ab78358b0e10fb5e7647750aca7b00e8398afe9477448bccea8a3cfb439c777f7e88c724dbfa0fa87544f5d3fde8b75cd1d605b71e3abdc09c817df56cf2f1c6000347604f0acb1201057c41b3307d7cc9392a9e2923a5f0eb561badc065adf683639809bec02cd1e47acaafe054f340e6544ff67545f79a14cc85a33872d4209d974bece67cf49dea2921e339660d93053af349c5d7959f87a9f55ac874d34a560bed4a14bfdf7d8007666440bb4d4e12cd6e78fd3f18c9e6c580c391502bcd9d87a61c4cfcdff139446e0dd8f64f55931a3f1d2e8213055641093860f62e9d93cb995280e65ff6d29bc471241582691d8a91036a501431bdf1e2f22e07f289448027f2d4f673ade46f6d3a12868e6a83c2ce5225e97d9818b4b9083fb23c8ca19110f15e6f162ffc82c205f09a3f082f46ab949fbc33761455aa5b27d17b659f9fd6fa9b5218770d0be3f8698a317448e11f1963f99e2c77eccb4008f78f6a8e9a89cb187319ee9e97f1caa88ccb6e14bf5ecfe46c854fb96cc65c518eb5a7b1f9de90523d454496879035dec525990059fcba581f05e10cc4f784cd5c9bb2421c152fe6c4b1ea76694b9b1e8b8748bd01fc134b0c8c13c335aac286783f0e4fec3ad8621f18180abdc26a394082e7dd78c52f69ee590c7a2f057d1237700f8ab47c20caa1ae3df1a020f4f71df521d8895883091d5c3802385b08b33b8b6db627b0abdf36990b9b698cfc159514f77adb6195804be79f045f19e3a361303295ad1b6ae512519fd4669aaebff7a17546b13e7240c22ccc91da3faf92ef2905d4dd7316dd394a6e25ec0a5fc1922755b9e41f25e0e3a009cc6a91391938edb16ddfce4c7feed18a72cb63bd793f21b85dd889c81e1e999670f20b49abacb3413e3023bf7584192bcce08854eebc1102d0b17103d3217736e3cdeba0411ad2d7127f09d261a2b09bb6ec8617fd5320b9df6d628e3b6447049f964a61b60ef6b646d7e4d07590f3f4cc0d9b09a2c5656542f4a4d922606a95c4d71f691b796e4b6b5763a66b0b0e323467273372a41406fd1bae96723b7c8d4d4f0a4215404e0c866d4217c84544264f5dc6b7ed555e3411898b18bbdc4284a54887a45c28af02c665932df8b9f33c8b98de12763a0b4be2a4f1b610c582db62d699ee72849d34341fca048f8e5f0aed7c0dc3f1f2bae249d7746727cce0772486e6a3c61a32b0f6ffc559f7bccb04469e457716d074dff4a243218e2e811b3d4326d7978923fb08c032cc6d67bfbf6f8203d02e14c47218e575d0b1e293707fd691c6c5d978dce16d1b99385f24fef6b42a554e4fad4803e433252790e27bc57817021ca6979d3fd9e60b0086e89b21cae55405a13eb57983ef2979b62ccb669fb55d904805e66c3e46df95dbdf640c9c28b46aaf33c6358a788ce3b938c4b96f692096b7cabcc865770c1219a55e336b912b73ff9a90ee3671220f322234c778ff54ac70b77e728468e149de67da05285adbf89f8164cbfd001b7170eeff5584848dbf0273e0994baef7356068ee61bbbffbbeaeb45f45a38cd494db8f843efb59b3336c2fbb94f286d94e3d91359ed307ad79c00cddeeb4e9f40ae830f57f866d506dc7c468ce1c5fd4ea0ef51baa61a391c8af344e0e0dea082e3003773089faa95447cef9105f7584da753f99938717e5f577a56b32ecfbf3aed99ca42f87cc0702e972caad08d069b900d0bd2fc682062142107e42a29d4ee64b87e4b843bbef3698202453291e3f064aae2bc8b8e161596b1edcc15734136ded01383ff2c5ee932cbe8dd8769560e4c75a4f2ba0df0467b90df4e9ed4958723ed2a5306c4fb4444034e5294b3c2b79b4e8747e569d7e523e072ea95812545d1308bfa375cf093917908fc4fc3f434391ceacc79d57519667f0d451b9f7f5913b4dee903419114c414ac8ae9522e3973b07a139823c631ebff7f42ec33b001cb7daa657af72bbafc9c495479623b68b14c6ab8b9abff5dd320edff6812454ff30fbf9f190cc72e03220451be3114b444922031d9ea9a0176cb5d7f12348745aa00165ce9a6b03c742e978e15b24d621864e4e2975dda8dfe67b074e9091bd9989c68e6d303bae7a02f298a3aacc15a565055e51c45ec1f8c5c236199fccdc971c3b8351c599c04f996f10a3c51a158aee861f680821cd8e0a36966bbc86753ddc6f7aff12aa8f6f98d7875618a40846ba391975ee33429177f0a15a6b9ce483c95e4819c7b5ec488e625eb1410c85cfd3f5945d47f77c033dd5d322148619311440cccd867d78dee54f5588bdd4e851b492fad74511692d428297d62b606b5a860ee52118e056499130a0ad3892b4f375a0f96f0c836b805db90a0089fa4aa4ce0f2a68179d0ac885de218b27b9c39520d857c1c53f3e3a0febacb3b76015a7af062facd20af4db1b7d6b41298d803b9c6371d76db38b50591a3ad0254d876dea934600b8d2c47ff7a3eaed3ea7fe98cf220ee364cfed53c7c8e19e4bf7ba0e327a32687bfbec5a924a9676024484d83fe2dae8e79a3b55c01c563221bba5733e5b9c2711d3059686b1650a51f5d173da697bd2fbafc8f20ebbbe7924308dc8ef81d7b39c4c953d9cea21d48d1e412a0990abc69ff329358ed725c35ea1e2d432a24d07af2ce25e892d44ef20680753bea0e6879f629a9ac7dda939271c32526c8b998ab1418cefd81ffeb4c99abbdceb1dc2e815e631dd405c6b16dfa8c5986a58e9f3a0596e4849a2cfdcedc825c86123693a5ed9551cf5c09fb789978f619e4427adbb530ec68776a740a1ea24702c8d04851354a420079df6293f30abbd295951a691c790b8599390ca3ca67fca13dabd3b7d35b5315a0ac49f93d3cc9f6b9a5baa904873140dfda7a0c3c5ebe71b1be9c4996503e6502e6ec3c11c70f9ee03518490e522ce32c510bc7c83179a0138034e5045496ad348e71cd963d693454a725913bfc6ba92b28c361ae8b5895c23091045259abaa1c651018b1abc8d52c98097463aed74f4b0a55613553c362eedaa1125d0c4b973049cd482d3c552296c6033881764cfe7dd13e67ec20cc04ebe3ad6f6c42645b12e8c66c8c5a38df6a8d39a9d67ee8afff04758a1c3bf203dd6e9de1f48df107e262db477af0de7bdd5df40d06d86ad03c8e479867ac1b0ce35388919344c4585123569237f78f76c281c04407b8f72bae73e090c51ed0052cf4a0496d8c121c9da1921921a8e9f50d0cb280d844f076a8336971e4e720a37c520e99e4b9b14382b54cb140f84b8d68c1cf8eab0268fc15df24eeb2c9cbecd1b5de9f807e21942cba922e2c952111fe3815b021dda496f311b2db8a922b3973b39bd17984b85d8837eef6c8e9be537f70850897feb06142cf118c67071406812dea7796b5167bddf50d39ffde3035fe8aab9af24b3c360eb58470b60a14f20d3526081022e7fd3ffce63b5367cb9e8a123afa332528eee28cbba8c43c434ece58d2c62a05907dcdc903513450d2c0bd2d1fd10c0f7c143bba90383105dcb2e4496767c7f602d384f047509f3b3ad82c1d2d2dee1d5b705a13cb8e4705188c21c292d58ff750fb66996dcd1e58d46083ea29290626dda4d220040850513590b04ac1f857a64bbbf760b9a9d119e5f22406983474ed38066cb779c3501be80062275b963235c1979ae7c5459a2511be3d6656ef2ff1facc4a7b75ae851ffbf840aa612d0a43bebf3cacd815926f540444337c055ebe767e8adeab8b2aa5d66d08b42a0379bf330c621bc6e3ddce7b9063e65857532c11ec4340e49a1e51b2843382002d2235447b2de19f4c31f65afd0f1d3e0f4ab2fe9f90a3b8a0103b3d5b79a37cb559dee97b905328e87f4e35041cae5fac712791b0819541d12f5ae2c6f77ab180b86f11e8474ed0aface2b8439e51fbe6607a4d8eba456b1db2a2d65eeb3a379798486347b74c81c8438401fb240b557391e3561cd8f74ac6eeb266716eb4d4a66da548e37a7f7e59b538e5b32079c0c152dc6bbb7b4a21bdec3dbb0596805e824a4a77360a022c592e84d1ba3697cced3f5078baf3307219101362b9bceca21988161de69df60972df9963711676ff094d95eeeec5b418be42623b3f3ae3cd256b53476f405bb2b426688373826701eab0783e5e612ce6813e1b80e307c026ae5a99856692e159b8907ea216a507e6054bed90aaf3bb393c6940fe71726cc923d46f462536494260e474a5cb5d45c77e8926a9948ac90bcfab6cf224c64823d0dcda0f5cfb4484b5271eaf11264fb9cf741363cb3f35fe2afef1e16462c1d49986cb566a719599b3d1581e2b1f72c0908368048f7cce962fd2bea1ff6bf12dcfe17403b20c7a732ec95c6ea28291039b58a181962fd6dfc87ada98921c135301683a25022e64562d229ae92697592f30ae7fbdb0b75260e09751d4c8f8190ad7de5417cdf16aad60b3cff9b217521dcb67ec9850a50c98247669118b44f0b1baea330ad02d77a41c660600bc34815dae9d1c47916f150af26fe9ff1015c32638aa87b270b8350cc59c6e0cc27336ddac50ad81bde879ef58c404fe94589a066ff64b5744fd3b6c1e4d935bb2595fde87105b690f2b11f022f5988a196a5a93277a72970739f4904eabcf6dca22846ae73fede670ff8320e7b350c96c4e32ad66bd4229e53571a187792cf74638151820350bef32da5faf54c3352fa293cde5aa7ca3982308408eaf31e1c9248ef88be1d34f7c64ad7f0ff30233a7dbc9a8b0820436cd37f94a02351350493ac669583a612ecfff2454cbff3acf90b3c649d2b901ada176200c3693cde0ad50dd87d507816ee2ca21dad3af95987f788f19b47b31f67c5386bab72a745a772438df2324de98bf2fa6a2d0f1f5d67f5391969a1f25aed90b9c1b8e89c2b073acb4581a28388e08e3000296c8ba219c46d3b3cc8057b481cd89e8fe184c06efb335012f95b941a316d28349c5dc893017d52e7be8a63dc40cc9d4d72d77f45fb134c1672d8dc8634e4948656a70a5989b0d19d1e29d069e6bb6731805fbd05023ca1eae70c4a5cbcc8b83665ae62be92d1b3ec457169a485014fc1c0dcd49cef95e4b993ed14290124d07fb091278fb81bb6903c954ec961abcc7124b7c765adcf1091926ad948d0945187f887852d5eda0ec8c53a82eae4277914b52e2b07d698095a3ffc5cf9cf7148723761102180e2548058947b52716d1a74036d29c453aff0028cacd73899387156194e386e829b40e24c7019d1698f9a839262590419bcfd7464e0832bca01934b5568fbea00f3d19bf0af21c26ac9ff3a22f5d8ad77eef7ecae2bd1554af3ebf43619c7f7d8de8295778c7021f918453681bc9e3e43e59a6a480e331aacbf5755aa2c70ebe6d4c1cb0d0b9b7a81a98b5e8436acc5d12cd720944d4028ece9ba9788ba33ef029763b3625015c5959c3f3b31fa3819c5453a4c108ecdf89eee59498016abf8c0e8f86233d913a97a775877bef9a941112867412d03c9b46b1a3799b0bb5d6606de8a6d8e9fc1b747e8ed9b66b8fd9ee9c919f30ac53c764bb6b179e345992ac3cda8f2f85e62945d95a9d86f7c6f57fb5247e1478c748fb73852040f8978b47152a47227bcbf9c151b748082467c125e33b62c28906f497c473c47f2cf5c16b4f6bf2c2f505ce7c5208ce81fddb7e059642799fd8039b0e3a76859f2049d734b13b06359a5c9f6b5a1f7a0ee7641fc3fd3ff4a76452a9e5aadb2ca13bb2723f81ebe8965128aa43e01eaca0332884ca2c7f64b220cf7554de5c7bebbfaf8cf4684bfc74cf11256d74edaa77ae08c764ea96b88dc40a0fbdb8354c11f5e3cf2784c69c6bae035e57290dde9293051796133639ce24bd9117bf040f5824a566eb5867481f960a333f9a00a338538485bde677e9afc6ec18b58ba1a7bd2ede1cddc3a92613da967d92f96526ef94be9f1b85174acd964d908e5ec151f0f0f262fe268a56e14ff5124cccad75fae0d33a41bfac2fd52325d579d02e0245a4492ca897400c41354edf61c8d28ea620d5bbc637df2aa8b0afe2a94f62ae6fa13c19d284134b227e56a31ec87c900f48ad629b48f927b81988c0f533154a9c1b8a5fcdfc09fc787fe3ce082956d14ab81f3516ae39abf8f1e82773f621780147595086117bbfa9b2e9e6184f5a51dfb5969fdd2ae41c74d923bf466955034cf60ccdb27d3d3690a5845540937ee12459cf5cd04a72c27c9f98ff532eb03910c0e11b2948b171122a1b6d2195c9d5fe05be263459176819af1c09b825c5b115313a40654250e53f46c3c98f8854e6c290fa56415dfb0fcdb5038d4111f41aab3458a3757fc996afd97a1c04606dfc29b3c177c7b2ead7c8ca8abd88d82cbf8b0b5ffea250c4f92033d296dbbb9f0ae5bbf77ae9d49169a55ae005b3de2bfee63950deb04662cc07981cfefbae49371775d0167cfa0d19d4f6d9d48fd2c322d2162c436cbdab1e8a14f165eba9ad24abf066cd9fd162d7c66fabe49d1748d8777489c2b97094fac6db2693034a214aa60d4c2f97fe4fde5bf7177c5291b6d055e34ea50ebde0e80d1849142e23806e17e1611229a495f3e59f99f380fbe5328135467bf473d2d0cbdd01e5705ac134d16bb0f63cd090ca82e1c415b0f975125bcd719d84453a90b52a9cae5139979b79547ac5ea069f7745c194ef6150d911ef03b81351c5cc68202d5549be46b830fa6bf2782482d2f5542f6e041641f9e291f87f00002a7590761981808b3829ac18dceca88ba511036ed0271e55733dc8d9609b7c71e54cf00325d3c959b5ac471a56176500fa384cc4d07b0b274692c894db43fa0f934e068f811f31ca37a82ff3793ba9bcfa4ead5741c547a438b4fb5a669c51e45cc55fbfc915798807d6e10ab03821aaaa9b6ca7d958acc2b06a2f58e3ad8ca684654ae308809b45b642b6d574ce0aeeaf16627f81aa3a9e665fc2f91efe7b2e72cbf372b1e92a10be62ad2ad1d15655b410f4edc5b2992d83872a6a3136e54e5a363c959fc3faea61908454b728638abe3118ab768dbc4c5950cc210bdcc9e90d2321a1a00fecd64894fa2384d87bfc05e98f072b905667df68a059cf1205a7c6021bedbad68686750017e668684b7ea43869eb31a703808593c7046602c23057d51ddbe6257d83705f326698bc868e31af6d73bd66f52ef6b0aa1d286f64615958161a4e9ba1af3da84549dbcb5e85d46f3079b81e7b5cb160f757f4f24da9af42013eebb20178c1580ea7a7073bea8352c3cea67772090541cc419e5a0e15ad0b3a1afd0cd4c1ffc4b018177577c0c5e2851fb1e82a810e30f0bbd4822fe47ffa0f1d6addb0533714a3e37a5030baf3807302d7f2a77e0b19c6a4e1b0b0704d80b7355b328088bac56faa07634b82ac4cf968f1fa25d317985d98bebeaed1c008d8918bb9c4f81b523c92d491a3b0af76ce0c67bec1025e82eb45862d8b7bba5dd351f8721bea39f1a0881f74874d5b1c9e3df56f9a5ecb84843627d6a5255ef59c1848b67753616e81e7bd807334836dbb45bf9d1fa51fc1b1e4f84aa9ca505ad8680edb3efa098dd89b41aaae2f399384fe1a198497f47ce07297ec0a681108e2b068ea940dc296b962a498158f4a2e3b08281d2ffb9b9eafb17a3a2644f90a9830affaf12c817d1927a043c6479e22f2022505a73402a2bf602a10bd2129109591386d921ff9b4f258cd0bb89ee22bcc093bd4af7040e94224c310380b43d6fccfe8c820b0deb49fdfcb3da6aa8d9093d24ba88d17ef7ff1ececa82d251fc14aa25e1bb3eb4631dbdb0facdafc2c64b75aac685c85bb9197d059f7ab0e66dc8b9fbe871db941ffdd28e71a940c87c59f96790ea1e37d74df11c2e5a3a09f7e782668b562f76711ee7064f77cb903df66ab60c21b3a75b9e0b7e6d1cfbf4c5b968f5804b0055072194cc11e622ab7d15cbe586ac00942c99efec6eab7578c76cdc6628c050f161eb3fe8eefd32b24520924eaa36e3bb3ec8969e7909e39f48b503e9f0ff26c94e1e5dc404edcefc90badb1cb1646c6f5ccf72bc41bd28cce651d32cdf7c924a4ebf192b0ecb6b6f492f58bea1949b5acccc89af67b6968a8215a03b588f70bd392235d14105533580e79f1be74ab8dd10c8e159dab0b47ecbed15e62c65f55211d3e35c9e41051a49728a829d0e368aeec5bdf718fdbb962cf8f7e6bfe55188f5be4142b9f4fbf74fe8ec3d83ecb669f7711fd5586f4b071f289cc557392028ad7d919804c052bb5250d891247ed6b651620f771e26a7ae763bed7a6adf56fb74cb49b47d6185fa9d3f582d0dffdf7ad355f5252e47d65ace48b07e6ab4e4f1b9ed309dc3323b8eae1e2da88a8b167cf57ebb625856a8b7fde30240b72dc13d4c0f03f94803780fba89c117977f7589e4addced403b4e86f5e19ba0c0b80d43764b9d71817ccdb3705a70e03b58fcd95811a52593f76f32a461701a2e4a9c3e0fe19a9bdf13243ffee0903afefb527ffa30a77cb97c70d4072d0793abaec85cf34ac58dbb7655c60e261bceda3f18fd4af3f095dce67aa7e7b95e30efd0c81b59de8299f9e137dcce92cf04da2a67436b52d2f7f1f06b8c28d3078c0d9ed82adc664eacd71eca6cd9b4cbc8019927b723df2ba40ae075cf5356f9de4a8b3723caa8ed8eb24647f6bc956d32db80a0bd694ee3b4d4d27a29d25540780fdde84b20c7a827dacfe5a3d3958bccdc3802dbd897da078161b7fedc2f0426db8481f287c01f9eedc8f1dd1ba039a3eb286b35519044448978e0c3c4ce5536fd803440373bc0ad94040e8c2bad315071751c5ec0eea2809ac8681c5474596088ed85310be91c212bd139528ab47d29f44617796b46b539ab9e3d6515c10f57e7862d7a7b78ad2e5ca35784ab38c8dbbb14f7473c9ca5035c52d258e1e639b87ef6c24b35d49eb5a21cccf7933d825c642ae5aaab8ae5e3c924bf5be76e8f93f6e6da4f64970d337bcc5456fd4fc9883901303fd32cb01918d942771bda64c24a5cbf808b66fe89f801b64fad43b160c083068f73a674ffe0121d90051906ca7a014a6813c1c209be6b9a21d44a286c164f043d1723a7073dc3d362ff140ed788b49b8f25f079badf7438c351f0286d498781eef23036e4bf427e0444c68c35924a1228eaa9fa0bdb65f1a25adb821a8ab687efe1e934cdd9bae8335b0a5d19c88f9bb4dff4776bddf3bb9e84d94954b8dbdd563fd4c7327ab99bdb2b455f2e2baa20226e056d16465cef8b4f8023e875e8630b6d14fe2b8d94118ec3c94f16474cb986b89046c502d1053bfd9e8906f4eb49c0dd66749c1ef02d38233ce56ff75bb83c94e015f71db660b482644685358c4074e8f15af81bb7c3593bd875a5130ba1b8fc6e3e474a699fc7fea9c23ce2ca3262b3b9cdb4d46c44ab9d7d30780f291f387005b6aea096ca801371ef0dbbafe0f2a89fbb2818fdc4b215884fd448f60a354981afa371681d42d3806009ee7977dfca0e8eef30cd4975a690f825fcd1f1a23c12ae9d1d2e4339a63414ef8b4f9ae5250bb887348829118d92fbde0347e0492d831c0ff00885eb8f119e3210d9a0bc72cb71e67b85eec0ee45149f17adaf12164adac2a238e35f3b3b100173a5e60fe664f8e8d157565cb2ff6ab2f66bd82b6ff85ffcc25f921fb1b22fa0fea203b9e5b407601feedd7aad6598cc21f31d5714e8685bbcd63c13fbfbaada5502520a6a164e759ac5542f971c840bf48189533e2670e7292df6a9ee08f97a76a9b6323c4d39d4dd8339c567df6a170036691e7ba9b5b44dcc7ee0702e7fea5235b83af084b4de302807977b87d5c9a6d6a443d016f59fe30bfbb2934a4ab0b1d3bcc6355d48a953ac045ae8c7844626d1a160433f869b84f5a8905591cf188289d9e163bdf9938c738e5c622c36bd80bab0e0f8056efa5cc60d69ca3acee2b9d25d04b2e55807ca41fa011f8e1182c582873930fe04cf8ea823a62f389ff6213a01814344cb37e80681a568ceb4bdabcac1420ca33e3b76e986a9333a1f57253ad55a320df198a93bf9c624eb2361818639270681ef80503b685c350c41755ccaf82d5798dfded45608db8b43aeb807beada684fc4d1e816e751ce37b56fa78cb4fd9c90564f4506bf1f3194ab339d063d88c0ef20731a84d3a94bf903569addf354ec8b5ddf1fa14ab2272e3a1ecf9721a236d2c661304b04e791ef0befca2e69074746b5614ca89ae4feca60741d3cc6c66e852fa1cc6061d8fa44cec74b0f8f3417e565d79041199912fe8bbedeb3bc81863dd34207ad8411a05a14ac5f4ecb0de0abab57c58f81aa8efb447cf6800c3f7c3339f3f83538d1b4164d029de18059574d4bb75996b32361b6828605122aa7378b8b2fbfce769b4cda6537bd68a8d7be85dd32cef562b41cf2317f14bb363769300331575aad52e30d43331393122280759ff690f2b09757cd886d8749b90bc17e73f226732f19caa534cd00ad84d7d765203604fbf68ebc24387de462d200e0abecfbdf9e363ec545fc2f249b60094ec2f7fe5d4848ec66c2de4749cf11a28181671c4fe126f51b721486333c178dac5ede2843711b3b0fe32069ca6e5d54a60380327480bae7f8cfa8a016bfcfa88466f120f6be3b5dd0286ef2ebd32c5bfb72564d7f0d94672b4a9ee66449afdf36b86f8c2d91743c61413a65306a3663b9d22598ac53754107c833e82c8afd453f5fe641ec64ea6b001dd3fc5a92475105cead59ff16a31eb673e9f6bc41190bbad0343f63ee8c1d98b12e316d4959cbc26694cc836624235c3e3154d7fa26481c67fff3a8307aec79827cbbb2151555b1a4feb353c3d646fa03e6e7e10e7a562d304de4c26a33242c474b2027451d2b27bf9dc2586d7d13df09ff6715b24a54edcd6a7232b696a83e64ce9f457c5c7601a18c95c88ba92794c661711c88bf0e0ee0aea37eed62b0743f830f1d0904f31dec0a90fb54efb4196a680263ade052447ba1ee933bc84081b5cbe337177a3b2bf66bca66ef4c430dd2b79762976b0bc61ed07fb63392bbae20e3c073be557e28a81234f18127be4c91ebceb6bd02987c99d7f32b6f0b0724b1c902b73e161dd70caedcd657118fed8401bfbe4be2786fc6cf9dcd9dccb50831d11f503361a6b39fe1ac0e509fb13f16f4f6b7758e49881a3dcb6f09d02316e3e1073af3cf99de8abd6aca7bda18dd9f1e3e4b572277d410c1c4f1286355365356d8a86330de6bbfd91e5b12254663ede924a22697f61d52d20170084e16a168cef0c81b5ad20232265d430a749b5104351586685d435babacaee31b09c070399fdb13cc83b42969667e0bd4cda8e139c0258631d1a9ef7c51f060daea3888f8e351e7017039f0900aab64bdf5efe6f5c996156e629acfa461c84707f691dba3967b3c122c676e6ba7eae8c1873e25533b8311303a0bd9a33102d355b90d0399dbd60a66f66fcea9cfd80e04128e8bc5f9e621ff2d62f7d100220c36c5a23d82cb5316149657172c75fa9d3f7e00148dee90167195e89e43b2efae78674ef02dd6d3ea3680d2bd034cbf5082dd42eac6001cae62ada9312a991d06c569989aa0322b01f66c8384898d178b78a16378ddeca946e8f9353ab1c825af78b494f3a022b4a185bb9bc9790cf8f9fb887a06cc835592d3419cee921f96e419beb8a794f44facb737f4624c314536c3059a743d3200ce1ac2df8179827303bde037254bbe9b791803b2cddcc0cd4292b283349e0fe8e7b1fa65b68d8f48530c57f9f75dac40c2e722bd49704205950019b0f50bf3ee083c0bf434ded192abde8aa452c5eec80dc5e7b7dd772669c1d6268f6772cec107e9c614039652ddee591fa0438d26c88de537764ee53d276d61100e57e3d39c6cce1af92e56f50e0196b60314c91b48fe883487e5387c5a361cd710f74a25adbcf96acd35589b4e26243bae788955ec63bd39eae3cbd91536abd403a92675daab6996187205fb1c27e7c599d166cdd4af1f83098625915db3dc75ecbbdfc7d838a28e24ea3d8d37978660762d602ffafdcc3332cc1bdabc9956916d93effebb7a2cadab55f9a2a0fa1eb1739105b0957d66fa80aa2c5f622393518899a8ed5daa1db629733f7df79418577d9157c62fc5758f743178c991e712c43881007fb7309d8c330f18dbf74a143e95ca075eacf270a14614bf5c9e93fefd39c44359f4f49c6ca039fdcd76f177e45a36f11346f326933d104e99829832a99d43014d903f32addc2bd05944e2077993d0ded53bcc79e91cae7e01b618491d56dad3438eb06c01ead2ca2c669a20b58ecf4aa82859577d059e15dc8d7fb275974d1836915fdd9eb260f476bb67407740e1b8da18c703237adfba4be6ab9acb78a6b95e45aa177eb71d0f4d5859cc76adcd7b67a3b01c67e774d6f9699b717117e8b31bc728e85d53b6f4abe7bff500f16ff4f84cbc3a0ee1a93b2abdc58a6197cdb124622a3930faef26afff8c298e4a86e0540a25a54e49aa7d75b0820d5ce4cba4aa693d380c8669125ecea2884f0f1ae0534aaeaa48326cceb6b63ab257ac13ef737ebfdc5f5bc06e4792fb55e913254a68310f451456ab2a9fe1172c0c7d01d254bf4b2918c018e9142a00d9a8513876e645f02740a4f6ea2c2e1f2b83c577f20567e6b0495a07295fae513ad565c4786dc7c9a20fce03e3c9fcdbcbb27821c02a53b3617d3ed91ce1360b8d1449cc34347c6333dd25b42ba6a18a97824053cce7231670cbe5a048d809ed3d76319e2aca14e4213aca1ad02b0e0519b70358b530c76e7d719f8647639409109ac9813f29863eab66dc9163d21836490e2ad11e4de60e9322c9bc4102b1604dc8b197f2c3e2f6103b3e1715fd04a843d13e26c2721aa520cc7d93f12e374e62156f2a3daad38848a42e18496ce8206364f53f9192fa3c005dfaad5bafc91f9968374f3e03744dc1984fb19e6618ed1be660778b1d2b56fe6f6df496ffec3acf3ecdaefe3a713eb25cdf01f335e995ad4f171ad28410b559aa08b02995ce1d35e934c1e762501dd1151fc25e705e26d7fc76f06a12c0119753d3c71c9acae39654fafb612a4872150e60c84435c98020e242621afafd9ab7be89af696771ab8b3fc486c2efab9ba2a49b74956705cc9d0fd72db26b316a992ee743dae8cdcd69bb0cd7b120a89c9ba6733af4b5d71fe5ce94072b9293c54e1fe549faec674c0349a39f688d70e6a190ac74639f80952d15ea296c635a32392cfce2759b5385806ce171704a4964b273f1c69e70d6f220767152f7949f9b9090bafe34935bfc3eca701ffde38d716e86a933e3a79d22580372437ddc98a1b4374c246a5e21937713dde65ab95035e6ef4b3a5be0012587dd07cd74035b3a514ddefdcc7262e19e2c3cb011f4995bdc66e2ee46131ffebb33f99a423219730e494a86df754d6b5db1c946ca918d33e73855be49f374082e9f0f36a462dd7b70f2df21690f136df6173922bd77c392ae4f8ab3d007f5481e9a9ee14146cc1a497f53744ef08baf9b1273e967a7dcaec9623ab1bfc492c506b699ad80252644d6139871f1953508ee3f2c8bb93f1085c5e73396c8d3fd717f6fb436f9c97e08e756446d2115630f904216fefcf9e6422fd614bf8f5054a5b1f8b3360562b9681eb361fb7ca5d6df3c6cb1bb5ff000140b12788712541113b157861f31819412232a9823ec85bea2f096dfc5a9506c24cce69b32091830bc0c00273c69adb558568982b0bceda7b320f249f941755c522ff18a8ec23a6cd743b815a3b3c461d72f61f3ae4d9174dfc57ba631d9b15ab9749aab348b7641801eea6687c65e4827d65a17853febf2582cb8490490a5c0f8596dba37046bbbe4e9543f4218079b2bb002db2ecd86caf97ac1cb0bee18c7d1fd805ae5887514a3e5a9c814c141e78f5950a14655e0ce09867f5c13b0e6b2a52ca29fb46fcc5e41157c6c9d367b532bdebb39f7a15109d51b \ No newline at end of file diff --git a/build/zephyr/.config b/build/zephyr/.config new file mode 100644 index 0000000..5673423 --- /dev/null +++ b/build/zephyr/.config @@ -0,0 +1,2104 @@ + +# +# Devicetree Info +# +CONFIG_DT_HAS_ESPRESSIF_ESP32_AES_ENABLED=y +CONFIG_DT_HAS_ESPRESSIF_ESP32_BT_HCI_ENABLED=y +CONFIG_DT_HAS_ESPRESSIF_ESP32_CLOCK_ENABLED=y +CONFIG_DT_HAS_ESPRESSIF_ESP32_FLASH_CONTROLLER_ENABLED=y +CONFIG_DT_HAS_ESPRESSIF_ESP32_GPIO_ENABLED=y +CONFIG_DT_HAS_ESPRESSIF_ESP32_I2C_ENABLED=y +CONFIG_DT_HAS_ESPRESSIF_ESP32_INTC_ENABLED=y +CONFIG_DT_HAS_ESPRESSIF_ESP32_LCD_CAM_ENABLED=y +CONFIG_DT_HAS_ESPRESSIF_ESP32_PINCTRL_ENABLED=y +CONFIG_DT_HAS_ESPRESSIF_ESP32_PSRAM_ENABLED=y +CONFIG_DT_HAS_ESPRESSIF_ESP32_SDHC_ENABLED=y +CONFIG_DT_HAS_ESPRESSIF_ESP32_SHA_ENABLED=y +CONFIG_DT_HAS_ESPRESSIF_ESP32_SPI_ENABLED=y +CONFIG_DT_HAS_ESPRESSIF_ESP32_TIMER_ENABLED=y +CONFIG_DT_HAS_ESPRESSIF_ESP32_TRNG_ENABLED=y +CONFIG_DT_HAS_ESPRESSIF_ESP32_UART_ENABLED=y +CONFIG_DT_HAS_ESPRESSIF_ESP32_USB_SERIAL_ENABLED=y +CONFIG_DT_HAS_ESPRESSIF_ESP32_WATCHDOG_ENABLED=y +CONFIG_DT_HAS_ESPRESSIF_ESP32_WIFI_ENABLED=y +CONFIG_DT_HAS_ESPRESSIF_XTENSA_LX7_ENABLED=y +CONFIG_DT_HAS_FIXED_PARTITIONS_ENABLED=y +CONFIG_DT_HAS_GPIO_LEDS_ENABLED=y +CONFIG_DT_HAS_MMIO_SRAM_ENABLED=y +CONFIG_DT_HAS_SEEED_XIAO_GPIO_ENABLED=y +CONFIG_DT_HAS_SEMTECH_SX1262_ENABLED=y +CONFIG_DT_HAS_SOC_NV_FLASH_ENABLED=y +CONFIG_DT_HAS_ZEPHYR_MEMORY_REGION_ENABLED=y +CONFIG_DT_HAS_ZEPHYR_POWER_STATE_ENABLED=y +# end of Devicetree Info + +# CONFIG_INPUT is not set +# CONFIG_WIFI is not set +CONFIG_MAIN_STACK_SIZE=2048 +# CONFIG_REGULATOR is not set +CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=1024 +# CONFIG_FPU is not set +CONFIG_SERIAL=y +CONFIG_SPI=y +# CONFIG_MIPI_DSI is not set +# CONFIG_MEMC is not set +# CONFIG_MODEM is not set +CONFIG_UART_INTERRUPT_DRIVEN=y +# CONFIG_GPIO_HOGS is not set +CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=240000000 +CONFIG_FLASH_SIZE=8388608 +CONFIG_FLASH_BASE_ADDRESS=0x0 +CONFIG_MP_MAX_NUM_CPUS=1 +# CONFIG_SOC_RESET_HOOK is not set +CONFIG_CLOCK_CONTROL=y +CONFIG_IDLE_STACK_SIZE=1024 +CONFIG_ISR_STACK_SIZE=2048 +CONFIG_SYS_CLOCK_TICKS_PER_SEC=10000 +CONFIG_BUILD_OUTPUT_BIN=y +CONFIG_ROM_START_OFFSET=0 +CONFIG_KERNEL_ENTRY="__start" +# CONFIG_XIP is not set +CONFIG_HAS_FLASH_LOAD_OFFSET=y +# CONFIG_COUNTER is not set +# CONFIG_SHARED_INTERRUPTS is not set +# CONFIG_PM_DEVICE is not set +# CONFIG_OTP is not set +# CONFIG_NVMEM is not set +CONFIG_TICKLESS_KERNEL=y +CONFIG_CLOCK_CONTROL_INIT_PRIORITY=30 +# CONFIG_USE_DT_CODE_PARTITION is not set +# CONFIG_MULTI_LEVEL_INTERRUPTS is not set +# CONFIG_PM is not set +CONFIG_NUM_METAIRQ_PRIORITIES=0 +# CONFIG_POWER_DOMAIN is not set +CONFIG_NUM_PREEMPT_PRIORITIES=15 +# CONFIG_BUILD_OUTPUT_HEX is not set +# CONFIG_GEN_IRQ_VECTOR_TABLE is not set +CONFIG_DYNAMIC_INTERRUPTS=y +CONFIG_GEN_ISR_TABLES=y +# CONFIG_INIT_STACKS is not set +CONFIG_TIMESLICE_SIZE=20 +CONFIG_FLASH_LOAD_OFFSET=0x0 +CONFIG_SYS_CLOCK_EXISTS=y +# CONFIG_BUILD_OUTPUT_S19 is not set +# CONFIG_FLASH is not set +# CONFIG_CODE_DATA_RELOCATION is not set +# CONFIG_SYSTEM_TIMER_RESET_BY_LPM is not set +CONFIG_GPIO=y +# CONFIG_SYSTEM_CLOCK_HW_CYCLES_PER_SEC_RUNTIME_UPDATE is not set +# CONFIG_MFD is not set +# CONFIG_SMP is not set +CONFIG_XTENSA_TIMER=y +CONFIG_XTENSA_CCOUNT_HZ=240000000 +# CONFIG_CACHE is not set +CONFIG_LOG=y +# CONFIG_PM_CPU_OPS is not set +# CONFIG_RESET is not set +CONFIG_ARCH_SW_ISR_TABLE_ALIGN=4 +CONFIG_LOG_DOMAIN_NAME="" +# CONFIG_ASSERT is not set +CONFIG_LOG_PROCESS_THREAD_STACK_SIZE=1024 +# CONFIG_DEVICE_DEPS is not set +CONFIG_UART_USE_RUNTIME_CONFIGURE=y +# CONFIG_SYSCON is not set +# CONFIG_SOC_EARLY_INIT_HOOK is not set +# CONFIG_XTENSA_SMALL_VECTOR_TABLE_ENTRY is not set +# CONFIG_XTENSA_USE_CORE_CRT1 is not set +CONFIG_CONSOLE=y +# CONFIG_WINSTREAM is not set +CONFIG_COMMON_LIBC_MALLOC_ARENA_SIZE=-1 +CONFIG_SOC_TOOLCHAIN_NAME="espressif_esp32s3" +# CONFIG_XTENSA_RESET_VECTOR is not set +CONFIG_GEN_SW_ISR_TABLE=y +# CONFIG_REBOOT is not set +CONFIG_GEN_IRQ_START_VECTOR=0 +CONFIG_SRAM_OFFSET=0 +CONFIG_XTENSA_TIMER_ID=0 +CONFIG_XTAL_FREQ_HZ=40000000 +CONFIG_SOC_FLASH_ESP32=y +# CONFIG_BOOTLOADER_MCUBOOT is not set +# CONFIG_SCHED_CPU_MASK is not set +CONFIG_KERNEL_MEM_POOL=y +CONFIG_MULTITHREADING=y +# CONFIG_OUTPUT_DISASSEMBLY is not set +CONFIG_LINKER_USE_RELAX=y +# CONFIG_WATCHDOG is not set + +# +# Modules +# +# CONFIG_BUILD_ONLY_NO_BLOBS is not set + +# +# Available modules. +# + +# +# acpica (/Users/wijnand/zephyrproject/modules/lib/acpica) +# + +# +# ACPI driver support +# +# CONFIG_ACPI is not set +# end of ACPI driver support + +CONFIG_ZEPHYR_ACPICA_MODULE=y +# end of acpica (/Users/wijnand/zephyrproject/modules/lib/acpica) + +# +# cmsis (/Users/wijnand/zephyrproject/modules/hal/cmsis) +# +CONFIG_ZEPHYR_CMSIS_MODULE=y +# end of cmsis (/Users/wijnand/zephyrproject/modules/hal/cmsis) + +# +# cmsis-dsp (/Users/wijnand/zephyrproject/modules/lib/cmsis-dsp) +# +CONFIG_ZEPHYR_CMSIS_DSP_MODULE=y +# CONFIG_CMSIS_DSP is not set +# end of cmsis-dsp (/Users/wijnand/zephyrproject/modules/lib/cmsis-dsp) + +# +# cmsis-nn (/Users/wijnand/zephyrproject/modules/lib/cmsis-nn) +# +CONFIG_ZEPHYR_CMSIS_NN_MODULE=y +# end of cmsis-nn (/Users/wijnand/zephyrproject/modules/lib/cmsis-nn) + +# +# cmsis_6 (/Users/wijnand/zephyrproject/modules/hal/cmsis_6) +# +CONFIG_ZEPHYR_CMSIS_6_MODULE=y +# end of cmsis_6 (/Users/wijnand/zephyrproject/modules/hal/cmsis_6) + +# +# dhara (/Users/wijnand/zephyrproject/modules/lib/dhara) +# +CONFIG_ZEPHYR_DHARA_MODULE=y +# end of dhara (/Users/wijnand/zephyrproject/modules/lib/dhara) + +# +# fatfs (/Users/wijnand/zephyrproject/modules/fs/fatfs) +# +CONFIG_ZEPHYR_FATFS_MODULE=y +# end of fatfs (/Users/wijnand/zephyrproject/modules/fs/fatfs) + +CONFIG_ZEPHYR_ADI_MODULE=y + +# +# hal_afbr (/Users/wijnand/zephyrproject/modules/hal/afbr) +# +CONFIG_ZEPHYR_HAL_AFBR_MODULE=y +# end of hal_afbr (/Users/wijnand/zephyrproject/modules/hal/afbr) + +# +# hal_ambiq (/Users/wijnand/zephyrproject/modules/hal/ambiq) +# +CONFIG_ZEPHYR_HAL_AMBIQ_MODULE=y +# end of hal_ambiq (/Users/wijnand/zephyrproject/modules/hal/ambiq) + +CONFIG_ZEPHYR_ATMEL_MODULE=y + +# +# hal_bouffalolab (/Users/wijnand/zephyrproject/modules/hal/bouffalolab) +# +CONFIG_ZEPHYR_HAL_BOUFFALOLAB_MODULE=y +# end of hal_bouffalolab (/Users/wijnand/zephyrproject/modules/hal/bouffalolab) + +# +# hal_espressif (/Users/wijnand/zephyrproject/modules/hal/espressif) +# +# CONFIG_ESP_HAL_LOG_LEVEL_OFF is not set +# CONFIG_ESP_HAL_LOG_LEVEL_ERR is not set +# CONFIG_ESP_HAL_LOG_LEVEL_WRN is not set +# CONFIG_ESP_HAL_LOG_LEVEL_INF is not set +# CONFIG_ESP_HAL_LOG_LEVEL_DBG is not set +CONFIG_ESP_HAL_LOG_LEVEL_DEFAULT=y +CONFIG_ESP_HAL_LOG_LEVEL=3 +CONFIG_ESP_HAL_EARLY_LOG_LEVEL=3 +CONFIG_ESP_PLATFORM=y +CONFIG_SOC_ADC_SUPPORTED=y +CONFIG_SOC_UART_SUPPORTED=y +CONFIG_SOC_MCPWM_SUPPORTED=y +CONFIG_SOC_GPTIMER_SUPPORTED=y +CONFIG_SOC_SDMMC_HOST_SUPPORTED=y +CONFIG_SOC_BT_SUPPORTED=y +CONFIG_SOC_PCNT_SUPPORTED=y +CONFIG_SOC_PHY_SUPPORTED=y +CONFIG_SOC_WIFI_SUPPORTED=y +CONFIG_SOC_TWAI_SUPPORTED=y +CONFIG_SOC_EFUSE_SUPPORTED=y +CONFIG_SOC_ULP_SUPPORTED=y +CONFIG_SOC_CCOMP_TIMER_SUPPORTED=y +CONFIG_SOC_RTC_FAST_MEM_SUPPORTED=y +CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED=y +CONFIG_SOC_RTC_MEM_SUPPORTED=y +CONFIG_SOC_RTC_TIMER_V1_SUPPORTED=y +CONFIG_SOC_I2S_SUPPORTED=y +CONFIG_SOC_LCD_I80_SUPPORTED=y +CONFIG_SOC_RMT_SUPPORTED=y +CONFIG_SOC_SDM_SUPPORTED=y +CONFIG_SOC_GPSPI_SUPPORTED=y +CONFIG_SOC_LEDC_SUPPORTED=y +CONFIG_SOC_I2C_SUPPORTED=y +CONFIG_SOC_SUPPORT_COEXISTENCE=y +CONFIG_SOC_AES_SUPPORTED=y +CONFIG_SOC_MPI_SUPPORTED=y +CONFIG_SOC_SHA_SUPPORTED=y +CONFIG_SOC_FLASH_ENC_SUPPORTED=y +CONFIG_SOC_SECURE_BOOT_SUPPORTED=y +CONFIG_SOC_TOUCH_SENSOR_SUPPORTED=y +CONFIG_SOC_BOD_SUPPORTED=y +CONFIG_SOC_ULP_FSM_SUPPORTED=y +CONFIG_SOC_CLK_TREE_SUPPORTED=y +CONFIG_SOC_MPU_SUPPORTED=y +CONFIG_SOC_WDT_SUPPORTED=y +CONFIG_SOC_SPI_FLASH_SUPPORTED=y +CONFIG_SOC_RNG_SUPPORTED=y +CONFIG_SOC_LIGHT_SLEEP_SUPPORTED=y +CONFIG_SOC_DEEP_SLEEP_SUPPORTED=y +CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT=y +CONFIG_SOC_PM_SUPPORTED=y +CONFIG_SOC_SPI_EXTERNAL_NOR_FLASH_SUPPORTED=y +CONFIG_SOC_XTAL_SUPPORT_40M=y +CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED=y +CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED=y +CONFIG_SOC_ADC_DMA_SUPPORTED=y +CONFIG_SOC_ADC_PERIPH_NUM=2 +CONFIG_SOC_ADC_MAX_CHANNEL_NUM=10 +CONFIG_SOC_ADC_ATTEN_NUM=4 +CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM=2 +CONFIG_SOC_ADC_PATT_LEN_MAX=24 +CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH=12 +CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH=12 +CONFIG_SOC_ADC_DIGI_RESULT_BYTES=4 +CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV=4 +CONFIG_SOC_ADC_DIGI_MONITOR_NUM=2 +CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH=83333 +CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW=611 +CONFIG_SOC_ADC_RTC_MIN_BITWIDTH=12 +CONFIG_SOC_ADC_RTC_MAX_BITWIDTH=12 +CONFIG_SOC_ADC_SHARED_POWER=y +CONFIG_SOC_BROWNOUT_RESET_SUPPORTED=y +CONFIG_SOC_CPU_CORES_NUM=2 +CONFIG_SOC_CPU_INTR_NUM=32 +CONFIG_SOC_CPU_HAS_FPU=y +CONFIG_SOC_HP_CPU_HAS_MULTIPLE_CORES=y +CONFIG_SOC_CPU_BREAKPOINTS_NUM=2 +CONFIG_SOC_CPU_WATCHPOINTS_NUM=2 +CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE=0x40 +CONFIG_SOC_GPIO_PORT=1 +CONFIG_SOC_GPIO_PIN_COUNT=49 +CONFIG_SOC_GPIO_VALID_GPIO_MASK=0x1FFFFFFFFFFFF +CONFIG_SOC_GPIO_IN_RANGE_MAX=48 +CONFIG_SOC_GPIO_OUT_RANGE_MAX=48 +CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK=0x0001FFFFFC000000 +CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX=y +CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM=3 +CONFIG_SOC_I2C_NUM=2 +CONFIG_SOC_HP_I2C_NUM=2 +CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR=y +CONFIG_SOC_I2C_SUPPORT_SLAVE=y +CONFIG_SOC_I2S_SUPPORTS_PDM=y +CONFIG_SOC_I2S_SUPPORTS_PDM_TX=y +CONFIG_SOC_I2S_SUPPORTS_PCM2PDM=y +CONFIG_SOC_I2S_SUPPORTS_PDM_RX=y +CONFIG_SOC_I2S_SUPPORTS_PDM2PCM=y +CONFIG_SOC_I2S_PDM_MAX_TX_LINES=2 +CONFIG_SOC_I2S_PDM_MAX_RX_LINES=4 +CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK=y +CONFIG_SOC_LEDC_TIMER_NUM=4 +CONFIG_SOC_LEDC_CHANNEL_NUM=8 +CONFIG_SOC_LEDC_TIMER_BIT_WIDTH=14 +CONFIG_SOC_MMU_PERIPH_NUM=1 +CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM=1 +CONFIG_SOC_MPU_MIN_REGION_SIZE=0x20000000 +CONFIG_SOC_MPU_REGIONS_MAX_NUM=8 +CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL=48 +CONFIG_SOC_RTCIO_PIN_COUNT=22 +CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED=y +CONFIG_SOC_RTCIO_HOLD_SUPPORTED=y +CONFIG_SOC_RTCIO_WAKE_SUPPORTED=y +CONFIG_SOC_SPI_PERIPH_NUM=3 +CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE=64 +CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO=32 +CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI=16 +CONFIG_SOC_TOUCH_SENSOR_VERSION=2 +CONFIG_SOC_TOUCH_MIN_CHAN_ID=1 +CONFIG_SOC_TOUCH_MAX_CHAN_ID=14 +CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP=y +CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM=1 +CONFIG_SOC_TWAI_CONTROLLER_NUM=1 +CONFIG_SOC_TWAI_MASK_FILTER_NUM=1 +CONFIG_SOC_UART_NUM=3 +CONFIG_SOC_UART_HP_NUM=3 +CONFIG_SOC_UART_SUPPORT_APB_CLK=y +CONFIG_SOC_UART_FIFO_LEN=128 +CONFIG_SOC_UART_BITRATE_MAX=5000000 +CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE=y +CONFIG_SOC_SPIRAM_SUPPORTED=y +CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE=y +CONFIG_SOC_SHA_SUPPORT_SHA1=y +CONFIG_SOC_SHA_SUPPORT_SHA256=y +CONFIG_SOC_SHA_SUPPORT_SHA384=y +CONFIG_SOC_SHA_SUPPORT_SHA512=y +CONFIG_SOC_MPI_MEM_BLOCKS_NUM=4 +CONFIG_SOC_MPI_OPERATIONS_NUM=3 +CONFIG_SOC_RSA_MAX_BIT_LEN=4096 +CONFIG_SOC_AES_SUPPORT_AES_128=y +CONFIG_SOC_AES_SUPPORT_AES_256=y +CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS=3 +CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX=64 +CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE=21 +CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD=y +CONFIG_SOC_PM_SUPPORT_RC_FAST_PD=y +CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD=y +CONFIG_SOC_PM_SUPPORT_MODEM_PD=y +CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED=y +CONFIG_SOC_PM_MODEM_PD_BY_SW=y +CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED=y +CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256=y +CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION=y +CONFIG_SOC_CLK_XTAL32K_SUPPORTED=y +CONFIG_SOC_SDMMC_NUM_SLOTS=2 +CONFIG_SOC_SDMMC_DATA_WIDTH_MAX=8 +CONFIG_SOC_WIFI_WAPI_SUPPORT=y +CONFIG_SOC_WIFI_CSI_SUPPORT=y +CONFIG_SOC_WIFI_MESH_SUPPORT=y +CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW=y +CONFIG_SOC_BLE_SUPPORTED=y +CONFIG_SOC_BLE_MESH_SUPPORTED=y +CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED=y +CONFIG_SOC_BLUFI_SUPPORTED=y +CONFIG_SOC_ULP_HAS_ADC=y +CONFIG_SOC_PHY_COMBO_MODULE=y +CONFIG_SOC_DEDICATED_GPIO_SUPPORTED=y +CONFIG_SOC_SUPPORTS_SECURE_DL_MODE=y +CONFIG_SOC_RISCV_COPROC_SUPPORTED=y +CONFIG_SOC_USB_OTG_SUPPORTED=y +CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED=y +CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD=y +CONFIG_SOC_TEMP_SENSOR_SUPPORTED=y +CONFIG_SOC_CACHE_SUPPORT_WRAP=y +CONFIG_SOC_PSRAM_DMA_CAPABLE=y +CONFIG_SOC_XT_WDT_SUPPORTED=y +CONFIG_SOC_SYSTIMER_SUPPORTED=y +CONFIG_SOC_HMAC_SUPPORTED=y +CONFIG_SOC_DIG_SIGN_SUPPORTED=y +CONFIG_SOC_MEMPROT_SUPPORTED=y +CONFIG_SOC_ADC_ARBITER_SUPPORTED=y +CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED=y +CONFIG_SOC_ADC_MONITOR_SUPPORTED=y +CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM=2 +CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED=y +CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED=y +CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED=y +CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN=4096 +CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH=16 +CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US=1100 +CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER=y +CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD=y +CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE=y +CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK=y +CONFIG_SOC_LEDC_SUPPORT_FADE_STOP=y +CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT=y +CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT=y +CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2=y +CONFIG_SOC_SPI_SUPPORT_OCT=y +CONFIG_SOC_MEMSPI_SUPPORT_CONTROL_DUMMY_OUT=y +CONFIG_SOC_MEMSPI_IS_INDEPENDENT=y +CONFIG_SOC_TOUCH_SUPPORT_BENCHMARK=y +CONFIG_SOC_TOUCH_SUPPORT_WATERPROOF=y +CONFIG_SOC_TOUCH_SUPPORT_PROX_SENSING=y +CONFIG_SOC_TOUCH_SUPPORT_DENOISE_CHAN=y +CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM=3 +CONFIG_SOC_UART_SUPPORT_WAKEUP_INT=y +CONFIG_SOC_SPIRAM_XIP_SUPPORTED=y +CONFIG_SOC_USB_OTG_PERIPH_NUM=1 +CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE=3968 +CONFIG_SOC_SHA_SUPPORT_DMA=y +CONFIG_SOC_SHA_SUPPORT_RESUME=y +CONFIG_SOC_SHA_SUPPORT_SHA224=y +CONFIG_SOC_SHA_SUPPORT_SHA512_224=y +CONFIG_SOC_SHA_SUPPORT_SHA512_256=y +CONFIG_SOC_SHA_SUPPORT_SHA512_T=y +CONFIG_SOC_AES_SUPPORT_DMA=y +CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE=y +CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE=y +CONFIG_SOC_EFUSE_HARD_DIS_JTAG=y +CONFIG_SOC_EFUSE_SOFT_DIS_JTAG=y +CONFIG_SOC_EFUSE_DIS_ICACHE=y +CONFIG_SOC_EFUSE_XTS_AES_KEY_128=y +CONFIG_SOC_EFUSE_XTS_AES_KEY_256=y +CONFIG_SOC_SECURE_BOOT_V2_RSA=y +CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS=y +CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY=y +CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES=y +CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS=y +CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128=y +CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256=y +CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE=16 +CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE=256 +CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH=12 +CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE=y +CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND=y +CONFIG_SOC_SPI_MEM_SUPPORT_WRAP=y +CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP=y +CONFIG_SOC_COEX_HW_PTI=y +CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE=y +CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC=y +CONFIG_SOC_WIFI_HW_TSF=y +CONFIG_SOC_WIFI_FTM_SUPPORT=y +CONFIG_SOC_GDMA_SUPPORTED=y +CONFIG_SOC_UHCI_SUPPORTED=y +CONFIG_SOC_AHB_GDMA_SUPPORTED=y +CONFIG_SOC_LCDCAM_CAM_SUPPORTED=y +CONFIG_SOC_LCDCAM_I80_LCD_SUPPORTED=y +CONFIG_SOC_LCDCAM_RGB_LCD_SUPPORTED=y +CONFIG_SOC_LCD_RGB_SUPPORTED=y +CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED=y +CONFIG_SOC_SIMD_INSTRUCTION_SUPPORTED=y +CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG=y +CONFIG_SOC_APB_BACKUP_DMA=y +CONFIG_SOC_CACHE_FREEZE_SUPPORTED=y +CONFIG_SOC_CACHE_ACS_INVALID_STATE_ON_PANIC=y +CONFIG_SOC_SIMD_PREFERRED_DATA_ALIGNMENT=16 +CONFIG_SOC_AHB_GDMA_VERSION=1 +CONFIG_SOC_I2C_SUPPORT_XTAL=y +CONFIG_SOC_I2C_SUPPORT_RTC=y +CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST=y +CONFIG_SOC_I2S_HW_VERSION_2=y +CONFIG_SOC_I2S_SUPPORTS_PCM=y +CONFIG_SOC_I2S_SUPPORTS_TDM=y +CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE=y +CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG=y +CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP=y +CONFIG_SOC_RMT_SUPPORT_DMA=y +CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH=128 +CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM=549 +CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH=128 +CONFIG_SOC_UART_SUPPORT_RTC_CLK=y +CONFIG_SOC_UART_SUPPORT_XTAL_CLK=y +CONFIG_SOC_UHCI_NUM=1 +CONFIG_SOC_SHA_GDMA=y +CONFIG_SOC_AES_GDMA=y +CONFIG_SOC_PM_SUPPORT_BT_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_CPU_PD=y +CONFIG_SOC_PM_SUPPORT_TAGMEM_PD=y +CONFIG_SOC_PM_SUPPORT_MAC_BB_PD=y +CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY=y +CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL=y +CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA=y +CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D2=y +CONFIG_SOC_EFUSE_DIS_USB_JTAG=y +CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT=y +CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK=y +CONFIG_SOC_MAC_BB_PD_MEM_SIZE=192 +CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND=y +CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME=y +CONFIG_SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE=y +CONFIG_SOC_SPI_MEM_SUPPORT_TIMING_TUNING=y +CONFIG_SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY=y +CONFIG_SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM=y +CONFIG_SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP=y +CONFIG_SOC_SPI_MEM_FLASH_SUPPORT_HPM=y +CONFIG_SOC_SDMMC_USE_GPIO_MATRIX=y +CONFIG_SOC_SDMMC_DELAY_PHASE_NUM=4 +CONFIG_SOC_WIFI_GCMP_SUPPORT=y +CONFIG_SOC_WIFI_TXOP_SUPPORT=y +CONFIG_SOC_WIFI_PHY_NEEDS_USB_WORKAROUND=y +CONFIG_SOC_BLE_50_SUPPORTED=y +CONFIG_SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV=y +CONFIG_XTAL_FREQ=40 +CONFIG_XTAL_FREQ_40=y +CONFIG_BOOTLOADER_OFFSET_IN_FLASH=0x0 +CONFIG_BOOTLOADER_CPU_CLK_FREQ_MHZ=80 +CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ=240 +CONFIG_ESP_CLK_FREQ_HZ=240000000 +CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM=4 +CONFIG_ESP_TIMER_INTERRUPT_LEVEL=1 +CONFIG_BOOTLOADER_LOG_LEVEL=3 +CONFIG_LOG_TIMESTAMP_SOURCE_RTOS=y +CONFIG_ESP32_DPORT_DIS_INTERRUPT_LVL=5 +CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE=y +CONFIG_IDF_TARGET_ARCH_XTENSA=y +CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM=y +CONFIG_ESP_PHY_ENABLED=y +CONFIG_portNUM_PROCESSORS=2 +CONFIG_IDF_FIRMWARE_CHIP_ID=0x0009 +CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY=y +CONFIG_SPIRAM_ALLOW_NOINIT_SEG_EXTERNAL_MEMORY=y +CONFIG_IDF_TARGET_ESP32S3=y +CONFIG_ESP_TIMER_IMPL_SYSTIMER=y + +# +# Wi-Fi config +# +CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0=y +# CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_1 is not set +# end of Wi-Fi config + +# +# Sleep config +# +CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY=2000 +# end of Sleep config + +CONFIG_ZEPHYR_HAL_ESPRESSIF_MODULE=y +# end of hal_espressif (/Users/wijnand/zephyrproject/modules/hal/espressif) + +# +# hal_ethos_u (/Users/wijnand/zephyrproject/modules/hal/ethos_u) +# +# CONFIG_ETHOS_U is not set +CONFIG_ZEPHYR_HAL_ETHOS_U_MODULE=y +# end of hal_ethos_u (/Users/wijnand/zephyrproject/modules/hal/ethos_u) + +# +# hal_gigadevice (/Users/wijnand/zephyrproject/modules/hal/gigadevice) +# +CONFIG_ZEPHYR_HAL_GIGADEVICE_MODULE=y +# end of hal_gigadevice (/Users/wijnand/zephyrproject/modules/hal/gigadevice) + +# +# hal_infineon (/Users/wijnand/zephyrproject/modules/hal/infineon) +# +CONFIG_ZEPHYR_HAL_INFINEON_MODULE=y +# CONFIG_USE_INFINEON_ABSTRACTION_RTOS is not set +# end of hal_infineon (/Users/wijnand/zephyrproject/modules/hal/infineon) + +# +# hal_intel (/Users/wijnand/zephyrproject/modules/hal/intel) +# +CONFIG_ZEPHYR_HAL_INTEL_MODULE=y +# end of hal_intel (/Users/wijnand/zephyrproject/modules/hal/intel) + +CONFIG_ZEPHYR_MICROCHIP_MODULE=y + +# +# hal_nordic (/Users/wijnand/zephyrproject/modules/hal/nordic) +# +CONFIG_ZEPHYR_HAL_NORDIC_MODULE=y +# end of hal_nordic (/Users/wijnand/zephyrproject/modules/hal/nordic) + +CONFIG_ZEPHYR_NUVOTON_MODULE=y + +# +# hal_nxp (/Users/wijnand/zephyrproject/modules/hal/nxp) +# +CONFIG_ZEPHYR_HAL_NXP_MODULE=y +# end of hal_nxp (/Users/wijnand/zephyrproject/modules/hal/nxp) + +CONFIG_ZEPHYR_OPENISA_MODULE=y +CONFIG_ZEPHYR_QUICKLOGIC_MODULE=y + +# +# hal_realtek (/Users/wijnand/zephyrproject/modules/hal/realtek) +# +CONFIG_ZEPHYR_HAL_REALTEK_MODULE=y + +# +# realtek hal driver +# +# CONFIG_REALTEK_BEE_ADC is not set +# CONFIG_REALTEK_BEE_CAN is not set +# CONFIG_REALTEK_BEE_CODEC is not set +# CONFIG_REALTEK_BEE_DMA is not set +# CONFIG_REALTEK_BEE_GPIO is not set +# CONFIG_REALTEK_BEE_I2C is not set +# CONFIG_REALTEK_BEE_I2S is not set +# CONFIG_REALTEK_BEE_IR is not set +# CONFIG_REALTEK_BEE_KEYSCAN is not set +# CONFIG_REALTEK_BEE_MAC_802154 is not set +# CONFIG_REALTEK_BEE_NVIC is not set +# CONFIG_REALTEK_BEE_PINMUX is not set +# CONFIG_REALTEK_BEE_AON_QDEC is not set +# CONFIG_REALTEK_BEE_QDEC is not set +# CONFIG_REALTEK_BEE_RCC is not set +# CONFIG_REALTEK_BEE_RTC is not set +# CONFIG_REALTEK_BEE_SDHC is not set +# CONFIG_REALTEK_BEE_SPI is not set +# CONFIG_REALTEK_BEE_TIM is not set +# CONFIG_REALTEK_BEE_ENHTIM is not set +# CONFIG_REALTEK_BEE_UART is not set +# CONFIG_REALTEK_BEE_USB is not set +# CONFIG_REALTEK_BEE_USING_USB_HAL is not set +# CONFIG_REALTEK_BEE_AON_WDT is not set +# CONFIG_REALTEK_BEE_CORE_WDT is not set +# end of realtek hal driver + +# CONFIG_USE_REALTEK_BEE_OS_INTERFACE is not set +# end of hal_realtek (/Users/wijnand/zephyrproject/modules/hal/realtek) + +CONFIG_ZEPHYR_HAL_RENESAS_MODULE=y + +# +# hal_rpi_pico (/Users/wijnand/zephyrproject/modules/hal/rpi_pico) +# +CONFIG_ZEPHYR_HAL_RPI_PICO_MODULE=y +# end of hal_rpi_pico (/Users/wijnand/zephyrproject/modules/hal/rpi_pico) + +# +# hal_sifli (/Users/wijnand/zephyrproject/modules/hal/sifli) +# +CONFIG_ZEPHYR_HAL_SIFLI_MODULE=y +# end of hal_sifli (/Users/wijnand/zephyrproject/modules/hal/sifli) + +# +# hal_silabs (/Users/wijnand/zephyrproject/modules/hal/silabs) +# +CONFIG_ZEPHYR_HAL_SILABS_MODULE=y +# end of hal_silabs (/Users/wijnand/zephyrproject/modules/hal/silabs) + +# +# hal_st (/Users/wijnand/zephyrproject/modules/hal/st) +# +CONFIG_ZEPHYR_HAL_ST_MODULE=y +# end of hal_st (/Users/wijnand/zephyrproject/modules/hal/st) + +CONFIG_ZEPHYR_HAL_STM32_MODULE=y + +# +# hal_tdk (/Users/wijnand/zephyrproject/modules/hal/tdk) +# +CONFIG_ZEPHYR_HAL_TDK_MODULE=y + +# +# TDK drivers +# +# CONFIG_TDK_HAL is not set +# end of TDK drivers +# end of hal_tdk (/Users/wijnand/zephyrproject/modules/hal/tdk) + +# +# hal_telink (/Users/wijnand/zephyrproject/modules/hal/telink) +# +CONFIG_ZEPHYR_HAL_TELINK_MODULE=y +# end of hal_telink (/Users/wijnand/zephyrproject/modules/hal/telink) + +CONFIG_ZEPHYR_TI_MODULE=y + +# +# hal_wch (/Users/wijnand/zephyrproject/modules/hal/wch) +# +CONFIG_ZEPHYR_HAL_WCH_MODULE=y +# end of hal_wch (/Users/wijnand/zephyrproject/modules/hal/wch) + +CONFIG_ZEPHYR_HAL_WURTHELEKTRONIK_MODULE=y +CONFIG_ZEPHYR_XTENSA_MODULE=y + +# +# hostap (/Users/wijnand/zephyrproject/modules/lib/hostap) +# +# CONFIG_WIFI_NM_WPA_SUPPLICANT is not set +CONFIG_ZEPHYR_HOSTAP_MODULE=y +# end of hostap (/Users/wijnand/zephyrproject/modules/lib/hostap) + +# +# liblc3 (/Users/wijnand/zephyrproject/modules/lib/liblc3) +# +CONFIG_ZEPHYR_LIBLC3_MODULE=y +# end of liblc3 (/Users/wijnand/zephyrproject/modules/lib/liblc3) + +CONFIG_ZEPHYR_LIBMCTP_MODULE=y +CONFIG_ZEPHYR_LIBMETAL_MODULE=y + +# +# libsbc (/Users/wijnand/zephyrproject/modules/lib/libsbc) +# +CONFIG_ZEPHYR_LIBSBC_MODULE=y +# CONFIG_LIBSBC is not set +# end of libsbc (/Users/wijnand/zephyrproject/modules/lib/libsbc) + +# +# littlefs (/Users/wijnand/zephyrproject/modules/fs/littlefs) +# +CONFIG_ZEPHYR_LITTLEFS_MODULE=y +# end of littlefs (/Users/wijnand/zephyrproject/modules/fs/littlefs) + +# +# lora-basics-modem (/Users/wijnand/zephyrproject/modules/lib/lora-basics-modem) +# +CONFIG_ZEPHYR_LORA_BASICS_MODEM_MODULE=y +# end of lora-basics-modem (/Users/wijnand/zephyrproject/modules/lib/lora-basics-modem) + +# +# loramac-node (/Users/wijnand/zephyrproject/modules/lib/loramac-node) +# +CONFIG_ZEPHYR_LORAMAC_NODE_MODULE=y +CONFIG_HAS_SEMTECH_RADIO_DRIVERS=y +CONFIG_HAS_SEMTECH_SX126X=y +# CONFIG_HAS_SEMTECH_LORAMAC is not set +# end of loramac-node (/Users/wijnand/zephyrproject/modules/lib/loramac-node) + +# +# lvgl (/Users/wijnand/zephyrproject/modules/lib/gui/lvgl) +# +CONFIG_ZEPHYR_LVGL_MODULE=y +# end of lvgl (/Users/wijnand/zephyrproject/modules/lib/gui/lvgl) + +# +# mbedtls (/Users/wijnand/zephyrproject/modules/crypto/mbedtls) +# +CONFIG_ZEPHYR_MBEDTLS_MODULE=y +CONFIG_MBEDTLS_VERSION_4_x=y +# CONFIG_PSA_CRYPTO is not set +# CONFIG_MBEDTLS is not set +# end of mbedtls (/Users/wijnand/zephyrproject/modules/crypto/mbedtls) + +CONFIG_ZEPHYR_MBEDTLS_3_6_MODULE=y +CONFIG_ZEPHYR_MCUBOOT_MODULE=y +CONFIG_ZEPHYR_MIPI_SYS_T_MODULE=y + +# +# nanopb (/Users/wijnand/zephyrproject/modules/lib/nanopb) +# +CONFIG_ZEPHYR_NANOPB_MODULE=y +# CONFIG_NANOPB is not set +# end of nanopb (/Users/wijnand/zephyrproject/modules/lib/nanopb) + +# +# nrf_wifi (/Users/wijnand/zephyrproject/modules/lib/nrf_wifi) +# +CONFIG_ZEPHYR_NRF_WIFI_MODULE=y +# CONFIG_NRF70_BUSLIB is not set +# end of nrf_wifi (/Users/wijnand/zephyrproject/modules/lib/nrf_wifi) + +CONFIG_ZEPHYR_OPEN_AMP_MODULE=y + +# +# openthread (/Users/wijnand/zephyrproject/modules/lib/openthread) +# +# CONFIG_OPENTHREAD is not set +CONFIG_ZEPHYR_OPENTHREAD_MODULE=y +# end of openthread (/Users/wijnand/zephyrproject/modules/lib/openthread) + +# +# percepio (/Users/wijnand/zephyrproject/modules/debug/percepio) +# + +# +# Percepio Tracealyzer support can be enabled from the tracing subsystem +# +# CONFIG_PERCEPIO_DFM is not set +CONFIG_ZEPHYR_PERCEPIO_MODULE=y +# end of percepio (/Users/wijnand/zephyrproject/modules/debug/percepio) + +# +# picolibc (/Users/wijnand/zephyrproject/modules/lib/picolibc) +# +# CONFIG_PICOLIBC_MODULE is not set +CONFIG_ZEPHYR_PICOLIBC_MODULE=y +# end of picolibc (/Users/wijnand/zephyrproject/modules/lib/picolibc) + +CONFIG_ZEPHYR_PSA_ARCH_TESTS_MODULE=y + +# +# segger (/Users/wijnand/zephyrproject/modules/debug/segger) +# +CONFIG_ZEPHYR_SEGGER_MODULE=y +# end of segger (/Users/wijnand/zephyrproject/modules/debug/segger) + +CONFIG_ZEPHYR_TF_M_TESTS_MODULE=y +CONFIG_ZEPHYR_TF_PSA_CRYPTO_MODULE=y + +# +# trusted-firmware-a (/Users/wijnand/zephyrproject/modules/tee/tf-a/trusted-firmware-a) +# +CONFIG_ZEPHYR_TRUSTED_FIRMWARE_A_MODULE=y +# CONFIG_BUILD_WITH_TFA is not set +# end of trusted-firmware-a (/Users/wijnand/zephyrproject/modules/tee/tf-a/trusted-firmware-a) + +# +# trusted-firmware-m (/Users/wijnand/zephyrproject/modules/tee/tf-m/trusted-firmware-m) +# +CONFIG_ZEPHYR_TRUSTED_FIRMWARE_M_MODULE=y +# end of trusted-firmware-m (/Users/wijnand/zephyrproject/modules/tee/tf-m/trusted-firmware-m) + +# +# uoscore-uedhoc (/Users/wijnand/zephyrproject/modules/lib/uoscore-uedhoc) +# +CONFIG_ZEPHYR_UOSCORE_UEDHOC_MODULE=y +# end of uoscore-uedhoc (/Users/wijnand/zephyrproject/modules/lib/uoscore-uedhoc) + +# +# zcbor (/Users/wijnand/zephyrproject/modules/lib/zcbor) +# +CONFIG_ZEPHYR_ZCBOR_MODULE=y +# CONFIG_ZCBOR is not set +# end of zcbor (/Users/wijnand/zephyrproject/modules/lib/zcbor) + +CONFIG_ZEPHYR_NRF_HW_MODELS_MODULE=y +CONFIG_HAS_ESPRESSIF_HAL=y +# CONFIG_LIBMETAL is not set +# CONFIG_LVGL is not set +# CONFIG_HAS_MEC_HAL is not set +# CONFIG_HAS_MPFS_HAL is not set +# CONFIG_HAS_MEC5_HAL is not set +# CONFIG_OPENAMP is not set +# CONFIG_MIPI_SYST_LIB is not set +# CONFIG_HAS_TELINK_DRIVERS is not set +# CONFIG_MCUBOOT_BOOTUTIL_LIB is not set + +# +# Unavailable modules, please install those via the project manifest. +# + +# +# CANopenNode module not available. +# + +# +# CHRE module not available. +# + +# +# THRIFT module not available. +# +# end of Modules + +CONFIG_BOARD="xiao_esp32s3" +CONFIG_BOARD_REVISION="" +CONFIG_BOARD_TARGET="xiao_esp32s3/esp32s3/procpu" +# CONFIG_NET_DRIVERS is not set +CONFIG_BOARD_XIAO_ESP32S3=y +CONFIG_BOARD_XIAO_ESP32S3_ESP32S3_PROCPU=y +CONFIG_BOARD_QUALIFIERS="esp32s3/procpu" + +# +# Board Options +# +CONFIG_HEAP_MEM_POOL_ADD_SIZE_BOARD=4096 +# end of Board Options + +# +# Hardware Configuration +# +CONFIG_SOC="esp32s3" +CONFIG_SOC_SERIES="esp32s3" +CONFIG_SOC_FAMILY="espressif_esp32" +CONFIG_SOC_PART_NUMBER="ESP32S3_WROOM_N8R8" +# CONFIG_SOC_RTL8752HJL is not set +# CONFIG_SOC_RTL8752HMF is not set +# CONFIG_SOC_RTL8752HKF is not set +# CONFIG_SOC_RTL8752HJF is not set +CONFIG_SOC_FAMILY_ESPRESSIF_ESP32=y +CONFIG_SOC_SERIES_ESP32S3=y +CONFIG_SOC_ESP32S3_WROOM_N8R8=y +CONFIG_SOC_ESP32S3=y +CONFIG_SOC_ESP32S3_PROCPU=y +# CONFIG_HWINFO is not set +# CONFIG_BUILD_OUTPUT_INFO_HEADER is not set +CONFIG_GPIO_INIT_PRIORITY=40 +# CONFIG_ESP32_USE_UNSUPPORTED_REVISION is not set +CONFIG_ESP_SIMPLE_BOOT=y +CONFIG_ESP32_TIMER_TASK_STACK_SIZE=4096 +CONFIG_ESP32_TIMER_TASK_PRIO=3 +CONFIG_ESP_CONSOLE_UART_NUM=4 +CONFIG_ESP_CONSOLE_UART_BAUDRATE=1 +CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM=4 +CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG=y +CONFIG_ESP_CONSOLE=y +CONFIG_ESP_USB_SERIAL_JTAG_ENABLED=y +# CONFIG_ESP32_EFUSE_VIRTUAL is not set +CONFIG_ESP32_EFUSE_MAX_BLK_LEN=256 +# CONFIG_ESP_SPIRAM is not set +# CONFIG_ESPTOOLPY_OCT_FLASH is not set +CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT=y +# CONFIG_ESPTOOLPY_FLASHMODE_QIO is not set +# CONFIG_ESPTOOLPY_FLASHMODE_QOUT is not set +CONFIG_ESPTOOLPY_FLASHMODE_DIO=y +# CONFIG_ESPTOOLPY_FLASHMODE_DOUT is not set +CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR=y +CONFIG_ESPTOOLPY_FLASHMODE="dio" +# CONFIG_ESPTOOLPY_FLASHFREQ_120M is not set +CONFIG_ESPTOOLPY_FLASHFREQ_80M=y +# CONFIG_ESPTOOLPY_FLASHFREQ_60M is not set +# CONFIG_ESPTOOLPY_FLASHFREQ_48M is not set +# CONFIG_ESPTOOLPY_FLASHFREQ_40M is not set +# CONFIG_ESPTOOLPY_FLASHFREQ_20M is not set +CONFIG_ESPTOOLPY_FLASHFREQ_80M_DEFAULT=y +CONFIG_ESPTOOLPY_FLASHFREQ="80m" +# CONFIG_ESPTOOLPY_FLASHSIZE_1MB is not set +CONFIG_ESPTOOLPY_FLASHSIZE_2MB=y +# CONFIG_ESPTOOLPY_FLASHSIZE_4MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_8MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_16MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_32MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_64MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_128MB is not set +CONFIG_ESPTOOLPY_FLASHSIZE="2MB" +# CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE is not set +CONFIG_ESPTOOLPY_BEFORE_RESET=y +# CONFIG_ESPTOOLPY_BEFORE_NORESET is not set +CONFIG_ESPTOOLPY_BEFORE="default_reset" +CONFIG_ESPTOOLPY_AFTER_RESET=y +# CONFIG_ESPTOOLPY_AFTER_NORESET is not set +CONFIG_ESPTOOLPY_AFTER="hard_reset" +CONFIG_MMU_PAGE_SIZE=0x10000 +CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED=y +CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_GD_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_TH_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_CHIP=y +CONFIG_SPI_FLASH_ROM_DRIVER_PATCH=y +CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT=y +CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V=y +# CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE is not set +# CONFIG_MAC_BB_PD is not set + +# +# Cache config +# +CONFIG_ESP32S3_INSTRUCTION_CACHE_16KB=y +# CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB is not set +CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE=0x4000 +# CONFIG_ESP32S3_INSTRUCTION_CACHE_4WAYS is not set +CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS=y +CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS=8 +# CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_16B is not set +CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B=y +CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE=32 +# CONFIG_ESP32S3_INSTRUCTION_CACHE_WRAP is not set +# CONFIG_ESP32S3_DATA_CACHE_16KB is not set +CONFIG_ESP32S3_DATA_CACHE_32KB=y +# CONFIG_ESP32S3_DATA_CACHE_64KB is not set +CONFIG_ESP32S3_DATA_CACHE_SIZE=0x8000 +# CONFIG_ESP32S3_DATA_CACHE_4WAYS is not set +CONFIG_ESP32S3_DATA_CACHE_8WAYS=y +CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS=8 +# CONFIG_ESP32S3_DATA_CACHE_LINE_16B is not set +CONFIG_ESP32S3_DATA_CACHE_LINE_32B=y +# CONFIG_ESP32S3_DATA_CACHE_LINE_64B is not set +CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE=32 +# CONFIG_ESP32S3_DATA_CACHE_WRAP is not set +# end of Cache config + +# +# MAC Config +# +CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_BT=y +CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR=y +# CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO is not set +CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR=y +CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES=4 +# end of MAC Config + +CONFIG_RESERVE_RTC_MEM=0 + +# +# Ultra Low Power (ULP) Coprocessor +# +# CONFIG_ESP32_ULP_COPROC_ENABLED is not set + +# +# ULP Debugging Options +# +# end of ULP Debugging Options +# end of Ultra Low Power (ULP) Coprocessor + +# CONFIG_SOC_LOG_LEVEL_OFF is not set +# CONFIG_SOC_LOG_LEVEL_ERR is not set +# CONFIG_SOC_LOG_LEVEL_WRN is not set +# CONFIG_SOC_LOG_LEVEL_INF is not set +# CONFIG_SOC_LOG_LEVEL_DBG is not set +CONFIG_SOC_LOG_LEVEL_DEFAULT=y +CONFIG_SOC_LOG_LEVEL=3 +# end of Hardware Configuration + +CONFIG_ARCH="xtensa" + +# +# XTENSA Options +# +# CONFIG_SIMULATOR_XTENSA is not set +# CONFIG_XTENSA_MORE_SPIN_RELAX_NOPS is not set +# CONFIG_XTENSA_BREAK_ON_UNRECOVERABLE_EXCEPTIONS is not set + +# +# Xtensa HiFi Options +# +# end of Xtensa HiFi Options + +# CONFIG_XTENSA_INTERRUPT_NONPREEMPTABLE is not set +# end of XTENSA Options + +CONFIG_XTENSA=y +CONFIG_ARCH_IS_SET=y + +# +# General Architecture Options +# +# CONFIG_SEMIHOST is not set +# CONFIG_EXCEPTION_DUMP_HOOK is not set +# CONFIG_ARCH_LOG_LEVEL_OFF is not set +# CONFIG_ARCH_LOG_LEVEL_ERR is not set +# CONFIG_ARCH_LOG_LEVEL_WRN is not set +# CONFIG_ARCH_LOG_LEVEL_INF is not set +# CONFIG_ARCH_LOG_LEVEL_DBG is not set +CONFIG_ARCH_LOG_LEVEL_DEFAULT=y +CONFIG_ARCH_LOG_LEVEL=3 +CONFIG_LITTLE_ENDIAN=y +CONFIG_SRAM_SIZE=416 +CONFIG_SRAM_BASE_ADDRESS=0x3fc88000 +# CONFIG_NOINIT_SNIPPET_FIRST is not set +# CONFIG_STACK_GROWS_UP is not set +# CONFIG_FRAME_POINTER is not set + +# +# Interrupt Configuration +# +CONFIG_ARCH_DEVICE_STATE_ALIGN=4 +CONFIG_SRAM_SW_ISR_TABLE=y +CONFIG_EXCEPTION_DEBUG=y +# CONFIG_SIMPLIFIED_EXCEPTION_CODES is not set +# end of Interrupt Configuration +# end of General Architecture Options + +CONFIG_ARCH_HAS_TIMING_FUNCTIONS=y +CONFIG_ARCH_SUPPORTS_COREDUMP=y +CONFIG_ARCH_SUPPORTS_COREDUMP_STACK_PTR=y +CONFIG_ARCH_HAS_CODE_DATA_RELOCATION=y +CONFIG_CPU_HAS_FPU=y +CONFIG_ARCH_HAS_DIRECTED_IPIS=y + +# +# DSP Options +# +# end of DSP Options + +# +# Floating Point Options +# +# end of Floating Point Options + +# +# Cache Options +# +# CONFIG_CACHE_DOUBLEMAP is not set +# end of Cache Options + +CONFIG_TOOLCHAIN_HAS_BUILTIN_FFS=y + +# +# General Kernel Options +# +# CONFIG_KERNEL_LOG_LEVEL_OFF is not set +# CONFIG_KERNEL_LOG_LEVEL_ERR is not set +# CONFIG_KERNEL_LOG_LEVEL_WRN is not set +# CONFIG_KERNEL_LOG_LEVEL_INF is not set +# CONFIG_KERNEL_LOG_LEVEL_DBG is not set +CONFIG_KERNEL_LOG_LEVEL_DEFAULT=y +CONFIG_KERNEL_LOG_LEVEL=3 +CONFIG_NUM_COOP_PRIORITIES=16 +CONFIG_MAIN_THREAD_PRIORITY=0 +CONFIG_COOP_ENABLED=y +CONFIG_PREEMPT_ENABLED=y +CONFIG_PRIORITY_CEILING=-128 +# CONFIG_SCHED_DEADLINE is not set +CONFIG_THREAD_STACK_INFO=y +# CONFIG_THREAD_CUSTOM_DATA is not set +# CONFIG_DYNAMIC_THREAD is not set +CONFIG_SCHED_SIMPLE=y +# CONFIG_SCHED_SCALABLE is not set +# CONFIG_SCHED_MULTIQ is not set +# CONFIG_WAITQ_SCALABLE is not set +CONFIG_WAITQ_SIMPLE=y + +# +# Misc Kernel related options +# +CONFIG_ERRNO=y +# CONFIG_NONZERO_SPINLOCK_SIZE is not set +# end of Misc Kernel related options + +# +# Kernel Debugging and Metrics +# +CONFIG_BOOT_BANNER=y +CONFIG_BOOT_BANNER_STRING="Booting Zephyr OS build" +CONFIG_BOOT_DELAY=0 +# CONFIG_BOOT_CLEAR_SCREEN is not set +# CONFIG_THREAD_MONITOR is not set +# CONFIG_THREAD_NAME is not set +# CONFIG_THREAD_RUNTIME_STATS is not set +# CONFIG_THREAD_RUNTIME_STACK_SAFETY is not set +# end of Kernel Debugging and Metrics + +# CONFIG_OBJ_CORE is not set +# CONFIG_WORKQUEUE_WORK_TIMEOUT is not set + +# +# System Work Queue Options +# +CONFIG_SYSTEM_WORKQUEUE_PRIORITY=-1 +# CONFIG_SYSTEM_WORKQUEUE_NO_YIELD is not set +CONFIG_SYSTEM_WORKQUEUE_WORK_TIMEOUT_MS=0 +# end of System Work Queue Options + +# +# Barrier Operations +# +# end of Barrier Operations + +# +# Atomic Operations +# +CONFIG_ATOMIC_OPERATIONS_BUILTIN=y +# end of Atomic Operations + +# +# Timer API Options +# +CONFIG_TIMESLICING=y +CONFIG_TIMESLICE_PRIORITY=0 +# CONFIG_TIMESLICE_PER_THREAD is not set +# CONFIG_TIMER_OBSERVER is not set +# end of Timer API Options + +# +# Other Kernel Object Options +# +CONFIG_POLL=y +# CONFIG_MEM_SLAB_POINTER_VALIDATE is not set +# CONFIG_MEM_SLAB_TRACE_MAX_UTILIZATION is not set +CONFIG_NUM_MBOX_ASYNC_MSGS=10 +# CONFIG_EVENTS is not set +CONFIG_HEAP_MEM_POOL_SIZE=4096 +# CONFIG_HEAP_MEM_POOL_IGNORE_MIN is not set +# end of Other Kernel Object Options + +CONFIG_TIMEOUT_64BIT=y +CONFIG_SYS_CLOCK_MAX_TIMEOUT_DAYS=365 + +# +# Security Options +# +# end of Security Options + +# +# Memory Domains +# +# end of Memory Domains + +# +# SMP Options +# +CONFIG_USE_SWITCH=y +CONFIG_USE_SWITCH_SUPPORTED=y +# CONFIG_TICKET_SPINLOCKS is not set +# end of SMP Options + +CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE=y +CONFIG_TOOLCHAIN_SUPPORTS_STATIC_INIT_GNU=y +# CONFIG_STATIC_INIT_GNU is not set +# CONFIG_BOOTARGS is not set +# end of General Kernel Options + +# +# Device Options +# +# CONFIG_DEVICE_MUTABLE is not set +# CONFIG_DEVICE_DT_METADATA is not set +# CONFIG_DEVICE_DEINIT_SUPPORT is not set +# end of Device Options + +# +# Initialization Priorities +# +CONFIG_KERNEL_INIT_PRIORITY_OBJECTS=30 +CONFIG_KERNEL_INIT_PRIORITY_LIBC=35 +CONFIG_KERNEL_INIT_PRIORITY_DEFAULT=40 +CONFIG_KERNEL_INIT_PRIORITY_DEVICE=50 +CONFIG_APPLICATION_INIT_PRIORITY=90 +# end of Initialization Priorities + +# +# Virtual Memory Support +# + +# +# MMU Features +# +# end of MMU Features +# end of Virtual Memory Support + +# +# SoC and Board Hooks +# +# CONFIG_SOC_EARLY_RESET_HOOK is not set +# CONFIG_SOC_PREP_HOOK is not set +# CONFIG_SOC_LATE_INIT_HOOK is not set +# CONFIG_SOC_PER_CORE_INIT_HOOK is not set +# CONFIG_BOARD_EARLY_INIT_HOOK is not set +# CONFIG_BOARD_LATE_INIT_HOOK is not set +# end of SoC and Board Hooks + +# +# Device Drivers +# +# CONFIG_ADC is not set +# CONFIG_AUDIO is not set +# CONFIG_AUXDISPLAY is not set +# CONFIG_BBRAM is not set +# CONFIG_BIOMETRICS is not set +# CONFIG_CAN is not set +# CONFIG_CHARGER is not set +# CONFIG_CLOCK_CONTROL_LOG_LEVEL_OFF is not set +# CONFIG_CLOCK_CONTROL_LOG_LEVEL_ERR is not set +# CONFIG_CLOCK_CONTROL_LOG_LEVEL_WRN is not set +# CONFIG_CLOCK_CONTROL_LOG_LEVEL_INF is not set +# CONFIG_CLOCK_CONTROL_LOG_LEVEL_DBG is not set +CONFIG_CLOCK_CONTROL_LOG_LEVEL_DEFAULT=y +CONFIG_CLOCK_CONTROL_LOG_LEVEL=3 +CONFIG_CLOCK_CONTROL_ESP32=y +CONFIG_CLOCK_CONTROL_ESP32_RTC_CLK_SRC_INT_RC=y +# CONFIG_CLOCK_CONTROL_ESP32_RTC_CLK_SRC_EXT_CRYS is not set +# CONFIG_CLOCK_CONTROL_ESP32_RTC_CLK_SRC_EXT_OSC is not set +# CONFIG_CLOCK_CONTROL_ESP32_RTC_CLK_SRC_INT_8MD256 is not set +CONFIG_CLOCK_CONTROL_ESP32_RTC_CLK_CAL_CYCLES=1024 +# CONFIG_CLOCK_CONTROL_FIXED_RATE_CLOCK is not set +CONFIG_CLOCK_CONTROL_TISCI_PRIORITY=40 +# CONFIG_COMPARATOR is not set +CONFIG_CONSOLE_INPUT_MAX_LINE_LEN=128 +CONFIG_CONSOLE_HAS_DRIVER=y +# CONFIG_CONSOLE_HANDLER is not set +CONFIG_CONSOLE_INIT_PRIORITY=60 +CONFIG_UART_CONSOLE=y +# CONFIG_UART_CONSOLE_DEBUG_SERVER_HOOKS is not set +# CONFIG_UART_CONSOLE_MCUMGR is not set +# CONFIG_RAM_CONSOLE is not set +# CONFIG_IPM_CONSOLE_SENDER is not set +# CONFIG_IPM_CONSOLE_RECEIVER is not set +# CONFIG_UART_MCUMGR is not set +# CONFIG_UART_CONSOLE_LOG_LEVEL_OFF is not set +# CONFIG_UART_CONSOLE_LOG_LEVEL_ERR is not set +# CONFIG_UART_CONSOLE_LOG_LEVEL_WRN is not set +# CONFIG_UART_CONSOLE_LOG_LEVEL_INF is not set +# CONFIG_UART_CONSOLE_LOG_LEVEL_DBG is not set +CONFIG_UART_CONSOLE_LOG_LEVEL_DEFAULT=y +CONFIG_UART_CONSOLE_LOG_LEVEL=3 +# CONFIG_EFI_CONSOLE is not set +# CONFIG_COREDUMP_DEVICE is not set +# CONFIG_CRC_DRIVER is not set +# CONFIG_CRYPTO is not set +# CONFIG_DAC is not set +# CONFIG_DAI is not set +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DISK_DRIVERS is not set +# CONFIG_DISPLAY is not set +# CONFIG_DMA is not set +# CONFIG_DP_DRIVER is not set +# CONFIG_EDAC is not set +# CONFIG_EEPROM is not set +# CONFIG_ENTROPY_GENERATOR is not set +# CONFIG_ESPI is not set +# CONFIG_MDIO is not set + +# +# Firmware drivers +# +# end of Firmware drivers + +# CONFIG_FPGA is not set +# CONFIG_FUEL_GAUGE is not set +# CONFIG_GNSS is not set +# CONFIG_GPIO_LOG_LEVEL_OFF is not set +# CONFIG_GPIO_LOG_LEVEL_ERR is not set +# CONFIG_GPIO_LOG_LEVEL_WRN is not set +# CONFIG_GPIO_LOG_LEVEL_INF is not set +# CONFIG_GPIO_LOG_LEVEL_DBG is not set +CONFIG_GPIO_LOG_LEVEL_DEFAULT=y +CONFIG_GPIO_LOG_LEVEL=3 +# CONFIG_GPIO_GET_DIRECTION is not set +# CONFIG_GPIO_GET_CONFIG is not set +# CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT is not set +CONFIG_GPIO_ESP32=y +# CONFIG_HAPTICS is not set +# CONFIG_HWSPINLOCK is not set +# CONFIG_I2C is not set +# CONFIG_I2S is not set +# CONFIG_I3C is not set + +# +# Interrupt controller drivers +# +CONFIG_INTC_INIT_PRIORITY=40 +# CONFIG_INTC_LOG_LEVEL_OFF is not set +# CONFIG_INTC_LOG_LEVEL_ERR is not set +# CONFIG_INTC_LOG_LEVEL_WRN is not set +# CONFIG_INTC_LOG_LEVEL_INF is not set +# CONFIG_INTC_LOG_LEVEL_DBG is not set +CONFIG_INTC_LOG_LEVEL_DEFAULT=y +CONFIG_INTC_LOG_LEVEL=3 +CONFIG_INTC_ESP32=y +# CONFIG_INTC_ESP32_DECISIONS_LOG is not set +# end of Interrupt controller drivers + +# CONFIG_IPM is not set +# CONFIG_LED is not set +# CONFIG_LED_STRIP is not set +CONFIG_LORA=y +CONFIG_LORA_MODULE_BACKEND_LORAMAC_NODE=y +# CONFIG_LORA_MODULE_BACKEND_LORA_BASICS_MODEM is not set +# CONFIG_LORA_MODULE_BACKEND_NATIVE is not set +# CONFIG_LORA_LOG_LEVEL_OFF is not set +# CONFIG_LORA_LOG_LEVEL_ERR is not set +# CONFIG_LORA_LOG_LEVEL_WRN is not set +# CONFIG_LORA_LOG_LEVEL_INF is not set +# CONFIG_LORA_LOG_LEVEL_DBG is not set +CONFIG_LORA_LOG_LEVEL_DEFAULT=y +CONFIG_LORA_LOG_LEVEL=3 +CONFIG_LORA_INIT_PRIORITY=90 +CONFIG_LORA_SX126X=y +# CONFIG_MBOX is not set +# CONFIG_MIPI_DBI is not set + +# +# Miscellaneous drivers +# + +# +# Interconn Drivers +# +# end of Interconn Drivers + +# CONFIG_TIMEAWARE_GPIO is not set +# end of Miscellaneous drivers + +# CONFIG_MM_DRV is not set +# CONFIG_MSPI is not set +# CONFIG_OPAMP is not set +# CONFIG_PCIE is not set +# CONFIG_PCIE_ENDPOINT is not set +# CONFIG_PECI is not set +CONFIG_PINCTRL=y +# CONFIG_PINCTRL_LOG_LEVEL_OFF is not set +# CONFIG_PINCTRL_LOG_LEVEL_ERR is not set +# CONFIG_PINCTRL_LOG_LEVEL_WRN is not set +# CONFIG_PINCTRL_LOG_LEVEL_INF is not set +# CONFIG_PINCTRL_LOG_LEVEL_DBG is not set +CONFIG_PINCTRL_LOG_LEVEL_DEFAULT=y +CONFIG_PINCTRL_LOG_LEVEL=3 +# CONFIG_PINCTRL_DYNAMIC is not set +# CONFIG_PINCTRL_KEEP_SLEEP_STATE is not set +CONFIG_PINCTRL_ESP32=y +# CONFIG_PINCTRL_MCHP_COMMON is not set +# CONFIG_PINCTRL_NPCX_EX is not set +# CONFIG_PS2 is not set +# CONFIG_PSI5 is not set +# CONFIG_PTP_CLOCK is not set +# CONFIG_PWM is not set +# CONFIG_RETAINED_MEM is not set +# CONFIG_RTC is not set +# CONFIG_SDHC is not set +# CONFIG_SENSOR is not set +# CONFIG_SENT is not set + +# +# Capabilities +# +CONFIG_SERIAL_HAS_DRIVER=y +CONFIG_SERIAL_SUPPORT_ASYNC=y +CONFIG_SERIAL_SUPPORT_INTERRUPT=y +CONFIG_SERIAL_INIT_PRIORITY=50 +# CONFIG_UART_LOG_LEVEL_OFF is not set +# CONFIG_UART_LOG_LEVEL_ERR is not set +# CONFIG_UART_LOG_LEVEL_WRN is not set +# CONFIG_UART_LOG_LEVEL_INF is not set +# CONFIG_UART_LOG_LEVEL_DBG is not set +CONFIG_UART_LOG_LEVEL_DEFAULT=y +CONFIG_UART_LOG_LEVEL=3 +# CONFIG_UART_ASYNC_API is not set +# CONFIG_UART_LINE_CTRL is not set +# CONFIG_UART_DRV_CMD is not set +# CONFIG_UART_WIDE_DATA is not set +# CONFIG_UART_PIPE is not set +# CONFIG_UART_ASYNC_RX_HELPER is not set + +# +# Serial Drivers +# +CONFIG_UART_ESP32=y +CONFIG_SERIAL_ESP32_USB=y +CONFIG_UART_ESP32_TX_FIFO_THRESH=0x1 +CONFIG_UART_ESP32_RX_FIFO_THRESH=0x16 +# CONFIG_UART_NPCX_FIFO_EX is not set +# CONFIG_SMBUS is not set +# CONFIG_SPI_ASYNC is not set +# CONFIG_SPI_RTIO is not set +# CONFIG_SPI_SLAVE is not set +# CONFIG_SPI_EXTENDED_MODES is not set +CONFIG_SPI_INIT_PRIORITY=50 +CONFIG_SPI_COMPLETION_TIMEOUT_TOLERANCE=200 +# CONFIG_SPI_LOG_LEVEL_OFF is not set +# CONFIG_SPI_LOG_LEVEL_ERR is not set +# CONFIG_SPI_LOG_LEVEL_WRN is not set +# CONFIG_SPI_LOG_LEVEL_INF is not set +# CONFIG_SPI_LOG_LEVEL_DBG is not set +CONFIG_SPI_LOG_LEVEL_DEFAULT=y +CONFIG_SPI_LOG_LEVEL=3 +CONFIG_ESP32_SPIM=y +# CONFIG_SPI_ESP32_INTERRUPT is not set +# CONFIG_STEPPER is not set + +# +# Timer drivers +# +# CONFIG_TIMER_READS_ITS_FREQUENCY_AT_RUNTIME is not set +# CONFIG_SYSTEM_CLOCK_SLOPPY_IDLE is not set +CONFIG_SYSTEM_CLOCK_INIT_PRIORITY=0 +CONFIG_TICKLESS_CAPABLE=y +CONFIG_XTENSA_TIMER_LPM_TIMER_NONE=y +# end of Timer drivers + +# CONFIG_UAOL is not set +# CONFIG_USB_BC12 is not set +# CONFIG_UDC_DRIVER is not set +# CONFIG_UHC_DRIVER is not set +# CONFIG_UVB is not set +# CONFIG_USB_DEVICE_DRIVER is not set + +# +# USB common +# +# end of USB common + +# CONFIG_USBC_TCPC_DRIVER is not set +# CONFIG_USBC_VBUS_DRIVER is not set +# CONFIG_USBC_PPC_DRIVER is not set +# CONFIG_VIDEO is not set +# CONFIG_VIRTIO is not set +# CONFIG_VIRTUALIZATION is not set +# CONFIG_W1 is not set +# CONFIG_WUC is not set +# CONFIG_TEE is not set +# end of Device Drivers + +# CONFIG_REQUIRES_FULL_LIBC is not set +# CONFIG_REQUIRES_FLOAT_PRINTF is not set +# CONFIG_LIBC_ALLOW_LESS_THAN_64BIT_TIME is not set +CONFIG_FULL_LIBC_SUPPORTED=y +CONFIG_MINIMAL_LIBC_SUPPORTED=y +CONFIG_PICOLIBC_SUPPORTED=y + +# +# C Library +# +# CONFIG_MINIMAL_LIBC is not set +CONFIG_PICOLIBC=y +# CONFIG_EXTERNAL_LIBC is not set +CONFIG_COMMON_LIBC_ABORT=y +# CONFIG_COMMON_LIBC_ASCTIME_R is not set +# CONFIG_COMMON_LIBC_CTIME_R is not set +CONFIG_COMMON_LIBC_TIME=y +CONFIG_COMMON_LIBC_MALLOC=y +CONFIG_COMMON_LIBC_CALLOC=y +CONFIG_COMMON_LIBC_REALLOCARRAY=y +# CONFIG_COMMON_LIBC_REMOVE is not set +# CONFIG_PICOLIBC_USE_MODULE is not set +CONFIG_PICOLIBC_USE_TOOLCHAIN=y +# CONFIG_PICOLIBC_IO_FLOAT is not set +CONFIG_PICOLIBC_IO_LONG_LONG=y +CONFIG_STDOUT_CONSOLE=y +CONFIG_NEED_LIBC_MEM_PARTITION=y +# end of C Library + +# +# C++ Language Support +# +# CONFIG_CPP is not set +# end of C++ Language Support + +# +# Additional libraries +# + +# +# Hash Function Support +# +# CONFIG_SYS_HASH_FUNC32 is not set +# end of Hash Function Support + +# +# Hashmap (Hash Table) Support +# +# CONFIG_SYS_HASH_MAP is not set +# end of Hashmap (Hash Table) Support + +# +# Heap and Memory Allocation +# +# CONFIG_SYS_HEAP_VALIDATE is not set +# CONFIG_SYS_HEAP_STRESS is not set +# CONFIG_SYS_HEAP_INFO is not set +CONFIG_SYS_HEAP_ALLOC_LOOPS=3 +# CONFIG_SYS_HEAP_RUNTIME_STATS is not set +CONFIG_SYS_HEAP_ARRAY_SIZE=0 +# CONFIG_SYS_HEAP_LISTENER is not set +# CONFIG_SYS_HEAP_HARDENING_NONE is not set +CONFIG_SYS_HEAP_HARDENING_BASIC=y +# CONFIG_SYS_HEAP_HARDENING_MODERATE is not set +# CONFIG_SYS_HEAP_HARDENING_FULL is not set +# CONFIG_SYS_HEAP_HARDENING_EXTREME is not set +CONFIG_SYS_HEAP_HARDENING_LEVEL=1 +# CONFIG_SYS_HEAP_LOG_LEVEL_OFF is not set +# CONFIG_SYS_HEAP_LOG_LEVEL_ERR is not set +# CONFIG_SYS_HEAP_LOG_LEVEL_WRN is not set +# CONFIG_SYS_HEAP_LOG_LEVEL_INF is not set +# CONFIG_SYS_HEAP_LOG_LEVEL_DBG is not set +CONFIG_SYS_HEAP_LOG_LEVEL_DEFAULT=y +CONFIG_SYS_HEAP_LOG_LEVEL=3 +# CONFIG_SYS_HEAP_SMALL_ONLY is not set +# CONFIG_SYS_HEAP_BIG_ONLY is not set +CONFIG_SYS_HEAP_AUTO=y +# CONFIG_MULTI_HEAP is not set +# CONFIG_SHARED_MULTI_HEAP is not set +# end of Heap and Memory Allocation + +# +# Memory Blocks +# +# CONFIG_SYS_MEM_BLOCKS is not set +# end of Memory Blocks + +# +# MIDI2 +# +# CONFIG_MIDI2_UMP_STREAM_RESPONDER is not set +# end of MIDI2 + +# CONFIG_NET_BUF is not set + +# +# OS Support Library +# +# CONFIG_ZVFS_OPEN_IGNORE_MIN is not set +# CONFIG_PRINTK_SYNC is not set +CONFIG_MPSC_PBUF=y +# CONFIG_SPSC_PBUF is not set +# CONFIG_MPSC_CLEAR_ALLOCATED is not set +CONFIG_HAS_POWEROFF=y +# CONFIG_POWEROFF is not set +CONFIG_CBPRINTF_COMPLETE=y +# CONFIG_CBPRINTF_NANO is not set +CONFIG_CBPRINTF_FULL_INTEGRAL=y +# CONFIG_CBPRINTF_REDUCED_INTEGRAL is not set +# CONFIG_CBPRINTF_FP_SUPPORT is not set +# CONFIG_CBPRINTF_FP_A_SUPPORT is not set +# CONFIG_CBPRINTF_LIBC_SUBSTS is not set +# CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_OFF is not set +# CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_ERR is not set +# CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_WRN is not set +# CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_INF is not set +# CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_DBG is not set +CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_DEFAULT=y +CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL=3 +# CONFIG_CBPRINTF_PACKAGE_LONGDOUBLE is not set +CONFIG_CBPRINTF_CONVERT_CHECK_PTR=y +# CONFIG_ZVFS is not set +# CONFIG_CPU_LOAD_METRIC is not set +# CONFIG_CPU_LOAD_LOG_LEVEL_OFF is not set +# CONFIG_CPU_LOAD_LOG_LEVEL_ERR is not set +# CONFIG_CPU_LOAD_LOG_LEVEL_WRN is not set +# CONFIG_CPU_LOAD_LOG_LEVEL_INF is not set +# CONFIG_CPU_LOAD_LOG_LEVEL_DBG is not set +CONFIG_CPU_LOAD_LOG_LEVEL_DEFAULT=y +CONFIG_CPU_LOAD_LOG_LEVEL=3 +# end of OS Support Library + +# +# POSIX API Support +# +# CONFIG_POSIX_SYSTEM_INTERFACES is not set +# CONFIG_POSIX_API is not set +# CONFIG_POSIX_AEP_CHOICE_NONE is not set +CONFIG_POSIX_AEP_CHOICE_ZEPHYR=y +# CONFIG_POSIX_AEP_CHOICE_BASE is not set +# CONFIG_POSIX_AEP_CHOICE_PSE51 is not set +# CONFIG_POSIX_AEP_CHOICE_PSE52 is not set +# CONFIG_POSIX_AEP_CHOICE_PSE53 is not set +CONFIG_TC_PROVIDES_POSIX_C_LANG_SUPPORT_R=y + +# +# POSIX C Library Extensions +# +CONFIG_POSIX_C_LANG_SUPPORT_R=y +CONFIG_POSIX_C_LIB_EXT=y +# end of POSIX C Library Extensions +# end of POSIX API Support + +# CONFIG_EVENTFD is not set +# CONFIG_SMF is not set +CONFIG_LIBGCC_RTLIB=y + +# +# Utility Library +# +# CONFIG_JSON_LIBRARY is not set +CONFIG_RING_BUFFER=y +# CONFIG_RING_BUFFER_LARGE is not set +# CONFIG_NOTIFY is not set +# CONFIG_BASE64 is not set +# CONFIG_ONOFF is not set +# CONFIG_UTF8 is not set +# CONFIG_COBS is not set +CONFIG_GETOPT=y +# CONFIG_GETOPT_LONG is not set +CONFIG_TIMEUTIL_APPLY_SKEW=y +# end of Utility Library + +# +# Universally Unique Identifier (UUID) +# +# CONFIG_UUID is not set +# end of Universally Unique Identifier (UUID) + +# CONFIG_MIN_HEAP is not set +# end of Additional libraries + +# +# Subsystems and OS Services +# +# CONFIG_BT is not set + +# +# Controller Area Network (CAN) bus subsystem +# +# end of Controller Area Network (CAN) bus subsystem + +# CONFIG_CONSOLE_SUBSYS is not set +# CONFIG_CPU_FREQ is not set +# CONFIG_CRC is not set +# CONFIG_DAP is not set + +# +# System Monitoring Options +# +# CONFIG_THREAD_ANALYZER is not set +# end of System Monitoring Options + +# +# Debugging Options +# +# CONFIG_DEBUG is not set +# CONFIG_UBSAN is not set +# CONFIG_STACK_USAGE is not set +# CONFIG_STACK_SENTINEL is not set +CONFIG_PRINTK=y +CONFIG_EARLY_CONSOLE=y +# CONFIG_FORCE_NO_ASSERT is not set +CONFIG_ASSERT_VERBOSE=y +# CONFIG_ASSERT_NO_FILE_INFO is not set +# CONFIG_ASSERT_NO_COND_INFO is not set +# CONFIG_ASSERT_NO_MSG_INFO is not set +# CONFIG_ASSERT_TEST is not set +# CONFIG_OVERRIDE_FRAME_POINTER_DEFAULT is not set +# CONFIG_DEBUG_THREAD_INFO is not set +# CONFIG_DEBUG_COREDUMP is not set +# CONFIG_SYMTAB is not set +# end of Debugging Options + +# CONFIG_MIPI_STP_DECODER is not set +# CONFIG_CS_TRACE_DEFMT is not set +CONFIG_CPU_LOAD_LOG_PERIODICALLY=0 +# CONFIG_DISK_ACCESS is not set +# CONFIG_DSP is not set +# CONFIG_EMUL is not set +# CONFIG_CHARACTER_FRAMEBUFFER is not set + +# +# File Systems +# +# CONFIG_FILE_SYSTEM_LIB_LINK is not set +# CONFIG_FILE_SYSTEM is not set +# end of File Systems + +# CONFIG_GNSS_RTK is not set +# CONFIG_INSTRUMENTATION is not set + +# +# Inter Processor Communication +# +# CONFIG_RPMSG_SERVICE is not set +# CONFIG_IPC_SERVICE is not set +# CONFIG_OPENAMP_RSC_TABLE is not set +# end of Inter Processor Communication + +# CONFIG_JWT is not set + +# +# Key-Value Storage Systems +# +# CONFIG_ZMS is not set +# end of Key-Value Storage Systems + +# CONFIG_LLEXT is not set +# CONFIG_LLEXT_EDK is not set + +# +# Logging +# +CONFIG_LOG_CORE_INIT_PRIORITY=0 +CONFIG_LOG_MODE_DEFERRED=y +# CONFIG_LOG_MODE_IMMEDIATE is not set +# CONFIG_LOG_MODE_MINIMAL is not set +# CONFIG_LOG_FRONTEND is not set +# CONFIG_LOG_FRONTEND_OPT_API is not set +# CONFIG_LOG_CUSTOM_HEADER is not set +# CONFIG_LOG_MULTIDOMAIN is not set +CONFIG_LOG_FLUSH_SLEEP_US=10000 + +# +# Logging levels filtering +# +# CONFIG_LOG_RUNTIME_FILTERING is not set +CONFIG_LOG_DEFAULT_LEVEL=3 +CONFIG_LOG_OVERRIDE_LEVEL=0 +CONFIG_LOG_MAX_LEVEL=4 +# end of Logging levels filtering + +# +# Processing +# +CONFIG_LOG_PRINTK=y +CONFIG_LOG_MODE_OVERFLOW=y +# CONFIG_LOG_BLOCK_IN_THREAD is not set +CONFIG_LOG_PROCESS_TRIGGER_THRESHOLD=10 +CONFIG_LOG_PROCESS_THREAD=y +CONFIG_LOG_PROCESS_THREAD_STARTUP_DELAY_MS=0 +CONFIG_LOG_PROCESS_THREAD_SLEEP_MS=1000 +# CONFIG_LOG_PROCESS_THREAD_CUSTOM_PRIORITY is not set +CONFIG_LOG_BUFFER_SIZE=1024 +CONFIG_LOG_TRACE_SHORT_TIMESTAMP=y +# CONFIG_LOG_TIMESTAMP_64BIT is not set +# CONFIG_LOG_TIMESTAMP_USE_REALTIME is not set +# CONFIG_LOG_SPEED is not set +# end of Processing + +# +# Output Formatting +# + +# +# Prepend non-hexdump log message with function name +# +# CONFIG_LOG_FUNC_NAME_PREFIX_ERR is not set +# CONFIG_LOG_FUNC_NAME_PREFIX_WRN is not set +# CONFIG_LOG_FUNC_NAME_PREFIX_INF is not set +CONFIG_LOG_FUNC_NAME_PREFIX_DBG=y +# end of Prepend non-hexdump log message with function name + +# CONFIG_LOG_MIPI_SYST_ENABLE is not set +# CONFIG_LOG_DOMAIN_NAME_PREFIX is not set +# CONFIG_LOG_THREAD_ID_PREFIX is not set +# CONFIG_LOG_CUSTOM_FORMAT_SUPPORT is not set +CONFIG_LOG_BACKEND_SHOW_TIMESTAMP=y +CONFIG_LOG_BACKEND_SHOW_LEVEL=y +CONFIG_LOG_BACKEND_SHOW_COLOR=y +# CONFIG_LOG_INFO_COLOR_GREEN is not set +# CONFIG_LOG_DBG_COLOR_BLUE is not set +CONFIG_LOG_TAG_MAX_LEN=0 +CONFIG_LOG_BACKEND_SUPPORTS_FORMAT_TIMESTAMP=y +CONFIG_LOG_BACKEND_FORMAT_TIMESTAMP=y +CONFIG_LOG_OUTPUT_FORMAT_TIME_TIMESTAMP=y +# CONFIG_LOG_OUTPUT_FORMAT_DATE_TIMESTAMP is not set +# CONFIG_LOG_OUTPUT_FORMAT_ISO8601_TIMESTAMP is not set +# CONFIG_LOG_OUTPUT_FORMAT_LINUX_TIMESTAMP is not set +# CONFIG_LOG_OUTPUT_FORMAT_CUSTOM_TIMESTAMP is not set +# CONFIG_LOG_BACKEND_CRLF_NONE is not set +# CONFIG_LOG_BACKEND_CRLF_LFONLY is not set +# CONFIG_LOG_BACKEND_SKIP_SOURCE is not set +# end of Output Formatting + +# +# Backends +# +CONFIG_LOG_BACKEND_UART=y +CONFIG_LOG_BACKEND_UART_BUFFER_SIZE=1 +CONFIG_LOG_BACKEND_UART_AUTOSTART=y +CONFIG_LOG_BACKEND_UART_OUTPUT_TEXT=y +# CONFIG_LOG_BACKEND_UART_OUTPUT_DICTIONARY is not set +# CONFIG_LOG_BACKEND_UART_OUTPUT_CUSTOM is not set +CONFIG_LOG_BACKEND_UART_OUTPUT_DEFAULT=0 +# CONFIG_LOG_BACKEND_IPC_SERVICE is not set +# end of Backends + +# +# Misc +# +CONFIG_LOG_USE_VLA=y +CONFIG_LOG_SIMPLE_MSG_OPTIMIZE=y +# CONFIG_LOG_ALWAYS_RUNTIME is not set +# CONFIG_LOG_FMT_SECTION is not set +# CONFIG_LOG_FMT_STRING_VALIDATE is not set +# CONFIG_LOG_MEM_UTILIZATION is not set +CONFIG_LOG_FAILURE_REPORT_PERIOD=1000 +# end of Misc + +CONFIG_LOG_RATELIMIT=y +CONFIG_LOG_RATELIMIT_INTERVAL_MS=5000 +CONFIG_LOG_OUTPUT=y +# end of Logging + +# CONFIG_LORAWAN is not set +# CONFIG_MEM_ATTR is not set + +# +# Device Management +# + +# +# Host command handler subsystem +# +# CONFIG_EC_HOST_CMD is not set +# end of Host command handler subsystem + +# CONFIG_OSDP is not set +# end of Device Management + +# CONFIG_MODBUS is not set +# CONFIG_MODEM_MODULES is not set + +# +# Networking +# +# CONFIG_NETWORKING is not set +# end of Networking + +# +# Power Management +# +CONFIG_HAS_PM=y +# CONFIG_PM_POLICY_LATENCY_STANDALONE is not set +# end of Power Management + +# +# Platform Management Communications Infrastructure (PMCI) +# +# CONFIG_MCTP is not set +# end of Platform Management Communications Infrastructure (PMCI) + +# +# Portability +# +# end of Portability + +# CONFIG_PROFILING is not set + +# +# Random Number Generators +# +# CONFIG_TEST_RANDOM_GENERATOR is not set +CONFIG_TIMER_RANDOM_INITIAL_STATE=123456789 +CONFIG_ENTROPY_NODE_ENABLED=y +# CONFIG_CSPRNG_NEEDED is not set +# end of Random Number Generators + +# CONFIG_RTIO is not set + +# +# SD +# +# CONFIG_MMC_STACK is not set +# CONFIG_SDMMC_STACK is not set +# CONFIG_SDIO_STACK is not set +# end of SD + +# CONFIG_SECURE_STORAGE is not set +# CONFIG_SETTINGS is not set +# CONFIG_SHELL is not set +# CONFIG_STATS is not set + +# +# Storage +# +# CONFIG_STREAM_FLASH is not set +# end of Storage + +# CONFIG_TASK_WDT is not set + +# +# Testing +# +# CONFIG_ZTEST is not set +# CONFIG_ZTEST_MOCKING is not set +# CONFIG_ZTRESS is not set + +# +# benchmarking options +# +# CONFIG_ZTEST_BENCHMARK is not set +# end of benchmarking options + +# CONFIG_TEST is not set +# CONFIG_TEST_USERSPACE is not set +# end of Testing + +# +# Coverage +# +# CONFIG_FORCE_COVERAGE is not set +CONFIG_COVERAGE_DUMP_PATH_EXCLUDE="" +# end of Coverage + +# CONFIG_TIMING_FUNCTIONS is not set +# CONFIG_TRACING is not set +# CONFIG_USB_DEVICE_STACK is not set +# CONFIG_USB_DEVICE_STACK_NEXT is not set +# CONFIG_USB_HOST_STACK is not set +# CONFIG_USBC_STACK is not set +# CONFIG_ZBUS is not set +# CONFIG_MODULES is not set +# end of Subsystems and OS Services + +CONFIG_TOOLCHAIN_ZEPHYR_1_0=y +CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_THREAD_LOCAL_STORAGE=y +CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_GNU_EXTENSIONS=y +CONFIG_PICOLIBC_DEFAULT=y + +# +# Build and Link Features +# + +# +# Linker Options +# +# CONFIG_LINKER_ORPHAN_SECTION_PLACE is not set +CONFIG_LINKER_ORPHAN_SECTION_WARN=y +# CONFIG_LINKER_ORPHAN_SECTION_ERROR is not set +CONFIG_FLASH_LOAD_SIZE=0 +CONFIG_ROM_END_OFFSET=0 +CONFIG_LD_LINKER_SCRIPT_SUPPORTED=y +CONFIG_LD_LINKER_TEMPLATE=y +# CONFIG_HAVE_CUSTOM_LINKER_SCRIPT is not set +CONFIG_LINKER_SORT_BY_ALIGNMENT=y + +# +# Linker Sections +# +# CONFIG_LINKER_USE_BOOT_SECTION is not set +# CONFIG_LINKER_USE_PINNED_SECTION is not set +CONFIG_LINKER_GENERIC_SECTIONS_PRESENT_AT_BOOT=y +# end of Linker Sections + +CONFIG_LINKER_ITERABLE_SUBALIGN=4 +# end of Linker Options + +# +# Compiler Options +# +# CONFIG_STD_C90 is not set +# CONFIG_STD_C99 is not set +# CONFIG_STD_C11 is not set +CONFIG_STD_C17=y +# CONFIG_STD_C23 is not set +CONFIG_TOOLCHAIN_SUPPORTS_GNU_EXTENSIONS=y +# CONFIG_GNU_C_EXTENSIONS is not set +# CONFIG_CODING_GUIDELINE_CHECK is not set +# CONFIG_COMPILER_FREESTANDING is not set +CONFIG_SIZE_OPTIMIZATIONS=y +# CONFIG_SIZE_OPTIMIZATIONS_AGGRESSIVE is not set +# CONFIG_SPEED_OPTIMIZATIONS is not set +# CONFIG_DEBUG_OPTIMIZATIONS is not set +# CONFIG_NO_OPTIMIZATIONS is not set +# CONFIG_COMPILER_WARNINGS_AS_ERRORS is not set +# CONFIG_DEPRECATION_TEST is not set +# CONFIG_COMPILER_SAVE_TEMPS is not set +CONFIG_COMPILER_TRACK_MACRO_EXPANSION=y +CONFIG_COMPILER_COLOR_DIAGNOSTICS=y +# CONFIG_FORTIFY_SOURCE_NONE is not set +CONFIG_FORTIFY_SOURCE_COMPILE_TIME=y +# CONFIG_FORTIFY_SOURCE_RUN_TIME is not set +CONFIG_COMPILER_OPT="" +# CONFIG_MISRA_SANE is not set +CONFIG_TOOLCHAIN_SUPPORTS_VLA_IN_STATEMENTS=y +CONFIG_TOOLCHAIN_SUPPORTS_VARIABLE_CLEANUP_ATTRIBUTE=y +# CONFIG_SCOPE_CLEANUP_HELPERS is not set + +# +# Code Generation +# +CONFIG_COMPILER_CODEGEN_VLIW_AUTO=y +# CONFIG_COMPILER_CODEGEN_VLIW_ENABLED is not set +# CONFIG_COMPILER_CODEGEN_VLIW_DISABLED is not set +# end of Code Generation +# end of Compiler Options + +# CONFIG_ASSERT_ON_ERRORS is not set +# CONFIG_NO_RUNTIME_CHECKS is not set +CONFIG_RUNTIME_ERROR_CHECKS=y + +# +# Build Options +# +CONFIG_KERNEL_BIN_NAME="zephyr" +CONFIG_OUTPUT_STAT=y +# CONFIG_OUTPUT_SYMBOLS is not set +CONFIG_OUTPUT_PRINT_MEMORY_USAGE=y +# CONFIG_CLEANUP_INTERMEDIATE_FILES is not set +CONFIG_BUILD_GAP_FILL_PATTERN=0xFF +# CONFIG_BUILD_NO_GAP_FILL is not set +# CONFIG_BUILD_OUTPUT_HEX_GAP_FILL is not set +# CONFIG_BUILD_OUTPUT_EXE is not set +# CONFIG_BUILD_OUTPUT_S19_GAP_FILL is not set +# CONFIG_BUILD_OUTPUT_VERILOG is not set +# CONFIG_BUILD_OUTPUT_UF2 is not set +# CONFIG_BUILD_OUTPUT_MOT is not set +# CONFIG_BUILD_OUTPUT_STRIPPED is not set +# CONFIG_BUILD_OUTPUT_COMPRESS_DEBUG_SECTIONS is not set +# CONFIG_BUILD_ALIGN_LMA is not set +# CONFIG_APPLICATION_DEFINED_SYSCALL is not set +# CONFIG_MAKEFILE_EXPORTS is not set +# CONFIG_BUILD_OUTPUT_META is not set +CONFIG_BUILD_OUTPUT_STRIP_PATHS=y +CONFIG_CHECK_INIT_PRIORITIES=y +# CONFIG_EMIT_ALL_SYSCALLS is not set +# end of Build Options + +CONFIG_WARN_DEPRECATED=y +# CONFIG_WARN_EXPERIMENTAL is not set +CONFIG_ENFORCE_ZEPHYR_STDINT=y +# end of Build and Link Features + +# +# Boot Options +# +# CONFIG_IS_BOOTLOADER is not set +# CONFIG_BOOTLOADER_BOSSA is not set +# end of Boot Options + +# +# Compatibility +# +CONFIG_LEGACY_GENERATED_INCLUDE_PATH=y +# end of Compatibility + +# +# KISS Interface +# +CONFIG_LORAMODEM_KISS_IFACE_UART=y +# end of KISS Interface + +# +# LoRa Radio Parameters +# +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=21 +CONFIG_LORAMODEM_LORA_PREAMBLE_LEN=8 +# end of LoRa Radio Parameters + +CONFIG_LORAMODEM_MAX_PACKET_SIZE=255 diff --git a/build/zephyr/.config-trace.json b/build/zephyr/.config-trace.json new file mode 100644 index 0000000..5c92b96 --- /dev/null +++ b/build/zephyr/.config-trace.json @@ -0,0 +1,12894 @@ +[ + [ + "CONFIG_DT_HAS_ESPRESSIF_ESP32_AES_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 2698 + ] + ], + [ + "CONFIG_DT_HAS_ESPRESSIF_ESP32_BT_HCI_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 2703 + ] + ], + [ + "CONFIG_DT_HAS_ESPRESSIF_ESP32_CLOCK_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 2708 + ] + ], + [ + "CONFIG_DT_HAS_ESPRESSIF_ESP32_FLASH_CONTROLLER_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 2728 + ] + ], + [ + "CONFIG_DT_HAS_ESPRESSIF_ESP32_GPIO_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 2738 + ] + ], + [ + "CONFIG_DT_HAS_ESPRESSIF_ESP32_I2C_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 2743 + ] + ], + [ + "CONFIG_DT_HAS_ESPRESSIF_ESP32_INTC_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 2758 + ] + ], + [ + "CONFIG_DT_HAS_ESPRESSIF_ESP32_LCD_CAM_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 2768 + ] + ], + [ + "CONFIG_DT_HAS_ESPRESSIF_ESP32_PINCTRL_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 2813 + ] + ], + [ + "CONFIG_DT_HAS_ESPRESSIF_ESP32_PSRAM_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 2818 + ] + ], + [ + "CONFIG_DT_HAS_ESPRESSIF_ESP32_SDHC_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 2833 + ] + ], + [ + "CONFIG_DT_HAS_ESPRESSIF_ESP32_SHA_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 2843 + ] + ], + [ + "CONFIG_DT_HAS_ESPRESSIF_ESP32_SPI_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 2848 + ] + ], + [ + "CONFIG_DT_HAS_ESPRESSIF_ESP32_TIMER_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 2863 + ] + ], + [ + "CONFIG_DT_HAS_ESPRESSIF_ESP32_TRNG_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 2873 + ] + ], + [ + "CONFIG_DT_HAS_ESPRESSIF_ESP32_UART_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 2883 + ] + ], + [ + "CONFIG_DT_HAS_ESPRESSIF_ESP32_USB_SERIAL_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 2893 + ] + ], + [ + "CONFIG_DT_HAS_ESPRESSIF_ESP32_WATCHDOG_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 2898 + ] + ], + [ + "CONFIG_DT_HAS_ESPRESSIF_ESP32_WIFI_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 2903 + ] + ], + [ + "CONFIG_DT_HAS_ESPRESSIF_XTENSA_LX7_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 2928 + ] + ], + [ + "CONFIG_DT_HAS_FIXED_PARTITIONS_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 2978 + ] + ], + [ + "CONFIG_DT_HAS_GPIO_LEDS_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 3258 + ] + ], + [ + "CONFIG_DT_HAS_MMIO_SRAM_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 5953 + ] + ], + [ + "CONFIG_DT_HAS_SEEED_XIAO_GPIO_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 11343 + ] + ], + [ + "CONFIG_DT_HAS_SEMTECH_SX1262_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 11368 + ] + ], + [ + "CONFIG_DT_HAS_SOC_NV_FLASH_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 12443 + ] + ], + [ + "CONFIG_DT_HAS_ZEPHYR_MEMORY_REGION_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 16418 + ] + ], + [ + "CONFIG_DT_HAS_ZEPHYR_POWER_STATE_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts", + 16528 + ] + ], + [ + "CONFIG_INPUT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_WIFI", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MAIN_STACK_SIZE", + "y", + "int", + "2048", + "assign", + [ + "/Volumes/External/Work/radio/loramodem/app/prj.conf", + 19 + ] + ], + [ + "CONFIG_REGULATOR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE", + "y", + "int", + "1024", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 607 + ] + ], + [ + "CONFIG_FPU", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SERIAL", + "y", + "bool", + "y", + "assign", + [ + "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_defconfig", + 4 + ] + ], + [ + "CONFIG_SPI", + "y", + "bool", + "y", + "select", + [ + "LORA_SX126X && (DT_HAS_SEMTECH_SX1261_ENABLED || DT_HAS_SEMTECH_SX1262_ENABLED || DT_HAS_SEMTECH_SX1268_ENABLED || DT_HAS_SEMTECH_LLCC68_ENABLED) && LORA" + ] + ], + [ + "CONFIG_MIPI_DSI", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MEMC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MODEM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_INTERRUPT_DRIVEN", + "y", + "bool", + "y", + "assign", + [ + "/Volumes/External/Work/radio/loramodem/app/prj.conf", + 13 + ] + ], + [ + "CONFIG_GPIO_HOGS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC", + "y", + "int", + "240000000", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.defconfig", + 100 + ] + ], + [ + "CONFIG_FLASH_SIZE", + "n", + "int", + "8388608", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.defconfig", + 7 + ] + ], + [ + "CONFIG_FLASH_BASE_ADDRESS", + "n", + "hex", + "0x0", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.defconfig", + 10 + ] + ], + [ + "CONFIG_MP_MAX_NUM_CPUS", + "y", + "int", + "1", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.smp", + 43 + ] + ], + [ + "CONFIG_SOC_RESET_HOOK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CLOCK_CONTROL", + "y", + "bool", + "y", + "select", + [ + "SOC_SERIES_ESP32S3 && SOC_FAMILY_ESPRESSIF_ESP32" + ] + ], + [ + "CONFIG_IDLE_STACK_SIZE", + "y", + "int", + "1024", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 175 + ] + ], + [ + "CONFIG_ISR_STACK_SIZE", + "y", + "int", + "2048", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 188 + ] + ], + [ + "CONFIG_SYS_CLOCK_TICKS_PER_SEC", + "y", + "int", + "10000", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 829 + ] + ], + [ + "CONFIG_BUILD_OUTPUT_BIN", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 828 + ] + ], + [ + "CONFIG_ROM_START_OFFSET", + "y", + "hex", + "0", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 160 + ] + ], + [ + "CONFIG_KERNEL_ENTRY", + "y", + "string", + "__start", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 232 + ] + ], + [ + "CONFIG_XIP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HAS_FLASH_LOAD_OFFSET", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig.defconfig", + 9 + ] + ], + [ + "CONFIG_COUNTER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SHARED_INTERRUPTS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PM_DEVICE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_OTP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_NVMEM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TICKLESS_KERNEL", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 1090 + ] + ], + [ + "CONFIG_CLOCK_CONTROL_INIT_PRIORITY", + "y", + "int", + "30", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig", + 21 + ] + ], + [ + "CONFIG_USE_DT_CODE_PARTITION", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MULTI_LEVEL_INTERRUPTS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_NUM_METAIRQ_PRIORITIES", + "y", + "int", + "0", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 97 + ] + ], + [ + "CONFIG_POWER_DOMAIN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_NUM_PREEMPT_PRIORITIES", + "y", + "int", + "15", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 55 + ] + ], + [ + "CONFIG_BUILD_OUTPUT_HEX", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GEN_IRQ_VECTOR_TABLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DYNAMIC_INTERRUPTS", + "y", + "bool", + "y", + "select", + [ + "SOC_SERIES_ESP32S3 && SOC_FAMILY_ESPRESSIF_ESP32" + ] + ], + [ + "CONFIG_GEN_ISR_TABLES", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.defconfig", + 88 + ] + ], + [ + "CONFIG_INIT_STACKS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TIMESLICE_SIZE", + "y", + "int", + "20", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 689 + ] + ], + [ + "CONFIG_FLASH_LOAD_OFFSET", + "y", + "hex", + "0x0", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig.defconfig", + 12 + ] + ], + [ + "CONFIG_SYS_CLOCK_EXISTS", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 865 + ] + ], + [ + "CONFIG_BUILD_OUTPUT_S19", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_FLASH", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CODE_DATA_RELOCATION", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYSTEM_TIMER_RESET_BY_LPM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO", + "y", + "bool", + "y", + "select", + [ + "LORA_SX126X && (DT_HAS_SEMTECH_SX1261_ENABLED || DT_HAS_SEMTECH_SX1262_ENABLED || DT_HAS_SEMTECH_SX1268_ENABLED || DT_HAS_SEMTECH_LLCC68_ENABLED) && LORA" + ] + ], + [ + "CONFIG_SYSTEM_CLOCK_HW_CYCLES_PER_SEC_RUNTIME_UPDATE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MFD", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SMP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_XTENSA_TIMER", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.xtensa", + 10 + ] + ], + [ + "CONFIG_XTENSA_CCOUNT_HZ", + "y", + "int", + "240000000", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.defconfig", + 103 + ] + ], + [ + "CONFIG_CACHE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG", + "y", + "bool", + "y", + "assign", + [ + "/Volumes/External/Work/radio/loramodem/app/prj.conf", + 5 + ] + ], + [ + "CONFIG_PM_CPU_OPS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_RESET", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ARCH_SW_ISR_TABLE_ALIGN", + "y", + "int", + "4", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/arch/Kconfig", + 597 + ] + ], + [ + "CONFIG_LOG_DOMAIN_NAME", + "y", + "string", + "", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.misc", + 124 + ] + ], + [ + "CONFIG_ASSERT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_PROCESS_THREAD_STACK_SIZE", + "y", + "int", + "1024", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.processing", + 89 + ] + ], + [ + "CONFIG_DEVICE_DEPS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_USE_RUNTIME_CONFIGURE", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig", + 53 + ] + ], + [ + "CONFIG_SYSCON", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_EARLY_INIT_HOOK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_XTENSA_SMALL_VECTOR_TABLE_ENTRY", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_XTENSA_USE_CORE_CRT1", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CONSOLE", + "y", + "bool", + "y", + "assign", + [ + "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_defconfig", + 3 + ] + ], + [ + "CONFIG_WINSTREAM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COMMON_LIBC_MALLOC_ARENA_SIZE", + "y", + "int", + "-1", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/lib/libc/common/Kconfig", + 64 + ] + ], + [ + "CONFIG_SOC_TOOLCHAIN_NAME", + "n", + "string", + "espressif_esp32s3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.soc", + 156 + ] + ], + [ + "CONFIG_XTENSA_RESET_VECTOR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GEN_SW_ISR_TABLE", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/arch/Kconfig", + 586 + ] + ], + [ + "CONFIG_REBOOT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GEN_IRQ_START_VECTOR", + "n", + "int", + "0", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/arch/Kconfig", + 607 + ] + ], + [ + "CONFIG_SRAM_OFFSET", + "n", + "hex", + "0", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 251 + ] + ], + [ + "CONFIG_XTENSA_TIMER_ID", + "y", + "int", + "0", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.xtensa", + 18 + ] + ], + [ + "CONFIG_XTAL_FREQ_HZ", + "n", + "int", + "40000000", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 48 + ] + ], + [ + "CONFIG_SOC_FLASH_ESP32", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.defconfig", + 97 + ] + ], + [ + "CONFIG_BOOTLOADER_MCUBOOT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SCHED_CPU_MASK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_KERNEL_MEM_POOL", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 771 + ] + ], + [ + "CONFIG_MULTITHREADING", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 14 + ] + ], + [ + "CONFIG_OUTPUT_DISASSEMBLY", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LINKER_USE_RELAX", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 344 + ] + ], + [ + "CONFIG_WATCHDOG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_ONLY_NO_BLOBS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ACPI", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_ACPICA_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 5 + ] + ], + [ + "CONFIG_ZEPHYR_CMSIS_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 11 + ] + ], + [ + "CONFIG_ZEPHYR_CMSIS_DSP_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 17 + ] + ], + [ + "CONFIG_CMSIS_DSP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_CMSIS_NN_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 23 + ] + ], + [ + "CONFIG_ZEPHYR_CMSIS_6_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 29 + ] + ], + [ + "CONFIG_ZEPHYR_DHARA_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 35 + ] + ], + [ + "CONFIG_ZEPHYR_FATFS_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 41 + ] + ], + [ + "CONFIG_ZEPHYR_ADI_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 45 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_AFBR_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 50 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_AMBIQ_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 59 + ] + ], + [ + "CONFIG_ZEPHYR_ATMEL_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 63 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_BOUFFALOLAB_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 68 + ] + ], + [ + "CONFIG_ESP_HAL_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESP_HAL_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESP_HAL_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESP_HAL_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESP_HAL_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESP_HAL_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_ESP_HAL_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_ESP_HAL_EARLY_LOG_LEVEL", + "y", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/modules/hal_espressif/Kconfig", + 12 + ] + ], + [ + "CONFIG_ESP_PLATFORM", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 9 + ] + ], + [ + "CONFIG_SOC_ADC_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 8 + ] + ], + [ + "CONFIG_SOC_UART_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 12 + ] + ], + [ + "CONFIG_SOC_MCPWM_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 68 + ] + ], + [ + "CONFIG_SOC_GPTIMER_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 44 + ] + ], + [ + "CONFIG_SOC_SDMMC_HOST_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 124 + ] + ], + [ + "CONFIG_SOC_BT_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 92 + ] + ], + [ + "CONFIG_SOC_PCNT_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 16 + ] + ], + [ + "CONFIG_SOC_PHY_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 20 + ] + ], + [ + "CONFIG_SOC_WIFI_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 24 + ] + ], + [ + "CONFIG_SOC_TWAI_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 28 + ] + ], + [ + "CONFIG_SOC_EFUSE_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 120 + ] + ], + [ + "CONFIG_SOC_ULP_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 80 + ] + ], + [ + "CONFIG_SOC_CCOMP_TIMER_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 104 + ] + ], + [ + "CONFIG_SOC_RTC_FAST_MEM_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 128 + ] + ], + [ + "CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 132 + ] + ], + [ + "CONFIG_SOC_RTC_MEM_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 136 + ] + ], + [ + "CONFIG_SOC_RTC_TIMER_V1_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 140 + ] + ], + [ + "CONFIG_SOC_I2S_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 152 + ] + ], + [ + "CONFIG_SOC_LCD_I80_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 60 + ] + ], + [ + "CONFIG_SOC_RMT_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 156 + ] + ], + [ + "CONFIG_SOC_SDM_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 160 + ] + ], + [ + "CONFIG_SOC_GPSPI_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 164 + ] + ], + [ + "CONFIG_SOC_LEDC_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 168 + ] + ], + [ + "CONFIG_SOC_I2C_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 172 + ] + ], + [ + "CONFIG_SOC_SUPPORT_COEXISTENCE", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 180 + ] + ], + [ + "CONFIG_SOC_AES_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 188 + ] + ], + [ + "CONFIG_SOC_MPI_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 192 + ] + ], + [ + "CONFIG_SOC_SHA_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 196 + ] + ], + [ + "CONFIG_SOC_FLASH_ENC_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 208 + ] + ], + [ + "CONFIG_SOC_SECURE_BOOT_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 212 + ] + ], + [ + "CONFIG_SOC_TOUCH_SENSOR_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 220 + ] + ], + [ + "CONFIG_SOC_BOD_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 224 + ] + ], + [ + "CONFIG_SOC_ULP_FSM_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 84 + ] + ], + [ + "CONFIG_SOC_CLK_TREE_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 228 + ] + ], + [ + "CONFIG_SOC_MPU_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 232 + ] + ], + [ + "CONFIG_SOC_WDT_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 236 + ] + ], + [ + "CONFIG_SOC_SPI_FLASH_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 240 + ] + ], + [ + "CONFIG_SOC_RNG_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 244 + ] + ], + [ + "CONFIG_SOC_LIGHT_SLEEP_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 248 + ] + ], + [ + "CONFIG_SOC_DEEP_SLEEP_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 252 + ] + ], + [ + "CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 256 + ] + ], + [ + "CONFIG_SOC_PM_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 260 + ] + ], + [ + "CONFIG_SOC_SPI_EXTERNAL_NOR_FLASH_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 268 + ] + ], + [ + "CONFIG_SOC_XTAL_SUPPORT_40M", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 272 + ] + ], + [ + "CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 280 + ] + ], + [ + "CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 284 + ] + ], + [ + "CONFIG_SOC_ADC_DMA_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 300 + ] + ], + [ + "CONFIG_SOC_ADC_PERIPH_NUM", + "n", + "int", + "2", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 304 + ] + ], + [ + "CONFIG_SOC_ADC_MAX_CHANNEL_NUM", + "n", + "int", + "10", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 308 + ] + ], + [ + "CONFIG_SOC_ADC_ATTEN_NUM", + "n", + "int", + "4", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 312 + ] + ], + [ + "CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM", + "n", + "int", + "2", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 316 + ] + ], + [ + "CONFIG_SOC_ADC_PATT_LEN_MAX", + "n", + "int", + "24", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 320 + ] + ], + [ + "CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH", + "n", + "int", + "12", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 324 + ] + ], + [ + "CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH", + "n", + "int", + "12", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 328 + ] + ], + [ + "CONFIG_SOC_ADC_DIGI_RESULT_BYTES", + "n", + "int", + "4", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 332 + ] + ], + [ + "CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV", + "n", + "int", + "4", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 336 + ] + ], + [ + "CONFIG_SOC_ADC_DIGI_MONITOR_NUM", + "n", + "int", + "2", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 344 + ] + ], + [ + "CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH", + "n", + "int", + "83333", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 348 + ] + ], + [ + "CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW", + "n", + "int", + "611", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 352 + ] + ], + [ + "CONFIG_SOC_ADC_RTC_MIN_BITWIDTH", + "n", + "int", + "12", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 356 + ] + ], + [ + "CONFIG_SOC_ADC_RTC_MAX_BITWIDTH", + "n", + "int", + "12", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 360 + ] + ], + [ + "CONFIG_SOC_ADC_SHARED_POWER", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 372 + ] + ], + [ + "CONFIG_SOC_BROWNOUT_RESET_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 380 + ] + ], + [ + "CONFIG_SOC_CPU_CORES_NUM", + "n", + "int", + "2", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 396 + ] + ], + [ + "CONFIG_SOC_CPU_INTR_NUM", + "n", + "int", + "32", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 400 + ] + ], + [ + "CONFIG_SOC_CPU_HAS_FPU", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 404 + ] + ], + [ + "CONFIG_SOC_HP_CPU_HAS_MULTIPLE_CORES", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 408 + ] + ], + [ + "CONFIG_SOC_CPU_BREAKPOINTS_NUM", + "n", + "int", + "2", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 412 + ] + ], + [ + "CONFIG_SOC_CPU_WATCHPOINTS_NUM", + "n", + "int", + "2", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 416 + ] + ], + [ + "CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE", + "n", + "hex", + "0x40", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 420 + ] + ], + [ + "CONFIG_SOC_GPIO_PORT", + "n", + "int", + "1", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 444 + ] + ], + [ + "CONFIG_SOC_GPIO_PIN_COUNT", + "n", + "int", + "49", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 448 + ] + ], + [ + "CONFIG_SOC_GPIO_VALID_GPIO_MASK", + "n", + "hex", + "0x1FFFFFFFFFFFF", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 460 + ] + ], + [ + "CONFIG_SOC_GPIO_IN_RANGE_MAX", + "n", + "int", + "48", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 464 + ] + ], + [ + "CONFIG_SOC_GPIO_OUT_RANGE_MAX", + "n", + "int", + "48", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 468 + ] + ], + [ + "CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK", + "n", + "hex", + "0x0001FFFFFC000000", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 472 + ] + ], + [ + "CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 476 + ] + ], + [ + "CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 480 + ] + ], + [ + "CONFIG_SOC_I2C_NUM", + "n", + "int", + "2", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 484 + ] + ], + [ + "CONFIG_SOC_HP_I2C_NUM", + "n", + "int", + "2", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 488 + ] + ], + [ + "CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 500 + ] + ], + [ + "CONFIG_SOC_I2C_SUPPORT_SLAVE", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 504 + ] + ], + [ + "CONFIG_SOC_I2S_SUPPORTS_PDM", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 524 + ] + ], + [ + "CONFIG_SOC_I2S_SUPPORTS_PDM_TX", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 528 + ] + ], + [ + "CONFIG_SOC_I2S_SUPPORTS_PCM2PDM", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 532 + ] + ], + [ + "CONFIG_SOC_I2S_SUPPORTS_PDM_RX", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 536 + ] + ], + [ + "CONFIG_SOC_I2S_SUPPORTS_PDM2PCM", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 540 + ] + ], + [ + "CONFIG_SOC_I2S_PDM_MAX_TX_LINES", + "n", + "int", + "2", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 544 + ] + ], + [ + "CONFIG_SOC_I2S_PDM_MAX_RX_LINES", + "n", + "int", + "4", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 548 + ] + ], + [ + "CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 556 + ] + ], + [ + "CONFIG_SOC_LEDC_TIMER_NUM", + "n", + "int", + "4", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 564 + ] + ], + [ + "CONFIG_SOC_LEDC_CHANNEL_NUM", + "n", + "int", + "8", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 568 + ] + ], + [ + "CONFIG_SOC_LEDC_TIMER_BIT_WIDTH", + "n", + "int", + "14", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 572 + ] + ], + [ + "CONFIG_SOC_MMU_PERIPH_NUM", + "n", + "int", + "1", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 588 + ] + ], + [ + "CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM", + "n", + "int", + "1", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 584 + ] + ], + [ + "CONFIG_SOC_MPU_MIN_REGION_SIZE", + "n", + "hex", + "0x20000000", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 596 + ] + ], + [ + "CONFIG_SOC_MPU_REGIONS_MAX_NUM", + "n", + "int", + "8", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 600 + ] + ], + [ + "CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL", + "n", + "int", + "48", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 612 + ] + ], + [ + "CONFIG_SOC_RTCIO_PIN_COUNT", + "n", + "int", + "22", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 644 + ] + ], + [ + "CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 648 + ] + ], + [ + "CONFIG_SOC_RTCIO_HOLD_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 652 + ] + ], + [ + "CONFIG_SOC_RTCIO_WAKE_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 656 + ] + ], + [ + "CONFIG_SOC_SPI_PERIPH_NUM", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 664 + ] + ], + [ + "CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE", + "n", + "int", + "64", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 668 + ] + ], + [ + "CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO", + "n", + "int", + "32", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 696 + ] + ], + [ + "CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI", + "n", + "int", + "16", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 700 + ] + ], + [ + "CONFIG_SOC_TOUCH_SENSOR_VERSION", + "n", + "int", + "2", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 704 + ] + ], + [ + "CONFIG_SOC_TOUCH_MIN_CHAN_ID", + "n", + "int", + "1", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 708 + ] + ], + [ + "CONFIG_SOC_TOUCH_MAX_CHAN_ID", + "n", + "int", + "14", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 712 + ] + ], + [ + "CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 720 + ] + ], + [ + "CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM", + "n", + "int", + "1", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 740 + ] + ], + [ + "CONFIG_SOC_TWAI_CONTROLLER_NUM", + "n", + "int", + "1", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 744 + ] + ], + [ + "CONFIG_SOC_TWAI_MASK_FILTER_NUM", + "n", + "int", + "1", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 748 + ] + ], + [ + "CONFIG_SOC_UART_NUM", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 752 + ] + ], + [ + "CONFIG_SOC_UART_HP_NUM", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 756 + ] + ], + [ + "CONFIG_SOC_UART_SUPPORT_APB_CLK", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 772 + ] + ], + [ + "CONFIG_SOC_UART_FIFO_LEN", + "n", + "int", + "128", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 760 + ] + ], + [ + "CONFIG_SOC_UART_BITRATE_MAX", + "n", + "int", + "5000000", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 764 + ] + ], + [ + "CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 784 + ] + ], + [ + "CONFIG_SOC_SPIRAM_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 688 + ] + ], + [ + "CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1084 + ] + ], + [ + "CONFIG_SOC_SHA_SUPPORT_SHA1", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 812 + ] + ], + [ + "CONFIG_SOC_SHA_SUPPORT_SHA256", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 820 + ] + ], + [ + "CONFIG_SOC_SHA_SUPPORT_SHA384", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 824 + ] + ], + [ + "CONFIG_SOC_SHA_SUPPORT_SHA512", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 828 + ] + ], + [ + "CONFIG_SOC_MPI_MEM_BLOCKS_NUM", + "n", + "int", + "4", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 844 + ] + ], + [ + "CONFIG_SOC_MPI_OPERATIONS_NUM", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 848 + ] + ], + [ + "CONFIG_SOC_RSA_MAX_BIT_LEN", + "n", + "int", + "4096", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 852 + ] + ], + [ + "CONFIG_SOC_AES_SUPPORT_AES_128", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 864 + ] + ], + [ + "CONFIG_SOC_AES_SUPPORT_AES_256", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 868 + ] + ], + [ + "CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1008 + ] + ], + [ + "CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX", + "n", + "int", + "64", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1020 + ] + ], + [ + "CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE", + "n", + "int", + "21", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1048 + ] + ], + [ + "CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 872 + ] + ], + [ + "CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 876 + ] + ], + [ + "CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 880 + ] + ], + [ + "CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 892 + ] + ], + [ + "CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 904 + ] + ], + [ + "CONFIG_SOC_PM_SUPPORT_RC_FAST_PD", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 908 + ] + ], + [ + "CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 912 + ] + ], + [ + "CONFIG_SOC_PM_SUPPORT_MODEM_PD", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 920 + ] + ], + [ + "CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 924 + ] + ], + [ + "CONFIG_SOC_PM_MODEM_PD_BY_SW", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 940 + ] + ], + [ + "CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 944 + ] + ], + [ + "CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 948 + ] + ], + [ + "CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 952 + ] + ], + [ + "CONFIG_SOC_CLK_XTAL32K_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 956 + ] + ], + [ + "CONFIG_SOC_SDMMC_NUM_SLOTS", + "n", + "int", + "2", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1124 + ] + ], + [ + "CONFIG_SOC_SDMMC_DATA_WIDTH_MAX", + "n", + "int", + "8", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1128 + ] + ], + [ + "CONFIG_SOC_WIFI_WAPI_SUPPORT", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1152 + ] + ], + [ + "CONFIG_SOC_WIFI_CSI_SUPPORT", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1160 + ] + ], + [ + "CONFIG_SOC_WIFI_MESH_SUPPORT", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1164 + ] + ], + [ + "CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1168 + ] + ], + [ + "CONFIG_SOC_BLE_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1176 + ] + ], + [ + "CONFIG_SOC_BLE_MESH_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1180 + ] + ], + [ + "CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1188 + ] + ], + [ + "CONFIG_SOC_BLUFI_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1192 + ] + ], + [ + "CONFIG_SOC_ULP_HAS_ADC", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1196 + ] + ], + [ + "CONFIG_SOC_PHY_COMBO_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1200 + ] + ], + [ + "CONFIG_SOC_DEDICATED_GPIO_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 72 + ] + ], + [ + "CONFIG_SOC_SUPPORTS_SECURE_DL_MODE", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 112 + ] + ], + [ + "CONFIG_SOC_RISCV_COPROC_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 88 + ] + ], + [ + "CONFIG_SOC_USB_OTG_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 96 + ] + ], + [ + "CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 108 + ] + ], + [ + "CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 116 + ] + ], + [ + "CONFIG_SOC_TEMP_SENSOR_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 184 + ] + ], + [ + "CONFIG_SOC_CACHE_SUPPORT_WRAP", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 76 + ] + ], + [ + "CONFIG_SOC_PSRAM_DMA_CAPABLE", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 144 + ] + ], + [ + "CONFIG_SOC_XT_WDT_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 148 + ] + ], + [ + "CONFIG_SOC_SYSTIMER_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 176 + ] + ], + [ + "CONFIG_SOC_HMAC_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 200 + ] + ], + [ + "CONFIG_SOC_DIG_SIGN_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 204 + ] + ], + [ + "CONFIG_SOC_MEMPROT_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 216 + ] + ], + [ + "CONFIG_SOC_ADC_ARBITER_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 288 + ] + ], + [ + "CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 292 + ] + ], + [ + "CONFIG_SOC_ADC_MONITOR_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 296 + ] + ], + [ + "CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM", + "n", + "int", + "2", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 340 + ] + ], + [ + "CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 364 + ] + ], + [ + "CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 368 + ] + ], + [ + "CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 384 + ] + ], + [ + "CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN", + "n", + "int", + "4096", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 428 + ] + ], + [ + "CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH", + "n", + "int", + "16", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 432 + ] + ], + [ + "CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US", + "n", + "int", + "1100", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 436 + ] + ], + [ + "CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 452 + ] + ], + [ + "CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 456 + ] + ], + [ + "CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 512 + ] + ], + [ + "CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 560 + ] + ], + [ + "CONFIG_SOC_LEDC_SUPPORT_FADE_STOP", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 576 + ] + ], + [ + "CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 620 + ] + ], + [ + "CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 660 + ] + ], + [ + "CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 672 + ] + ], + [ + "CONFIG_SOC_SPI_SUPPORT_OCT", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 676 + ] + ], + [ + "CONFIG_SOC_MEMSPI_SUPPORT_CONTROL_DUMMY_OUT", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 680 + ] + ], + [ + "CONFIG_SOC_MEMSPI_IS_INDEPENDENT", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 684 + ] + ], + [ + "CONFIG_SOC_TOUCH_SUPPORT_BENCHMARK", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 716 + ] + ], + [ + "CONFIG_SOC_TOUCH_SUPPORT_WATERPROOF", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 724 + ] + ], + [ + "CONFIG_SOC_TOUCH_SUPPORT_PROX_SENSING", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 728 + ] + ], + [ + "CONFIG_SOC_TOUCH_SUPPORT_DENOISE_CHAN", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 732 + ] + ], + [ + "CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 736 + ] + ], + [ + "CONFIG_SOC_UART_SUPPORT_WAKEUP_INT", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 768 + ] + ], + [ + "CONFIG_SOC_SPIRAM_XIP_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 692 + ] + ], + [ + "CONFIG_SOC_USB_OTG_PERIPH_NUM", + "n", + "int", + "1", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 792 + ] + ], + [ + "CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE", + "n", + "int", + "3968", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 796 + ] + ], + [ + "CONFIG_SOC_SHA_SUPPORT_DMA", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 800 + ] + ], + [ + "CONFIG_SOC_SHA_SUPPORT_RESUME", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 804 + ] + ], + [ + "CONFIG_SOC_SHA_SUPPORT_SHA224", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 816 + ] + ], + [ + "CONFIG_SOC_SHA_SUPPORT_SHA512_224", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 832 + ] + ], + [ + "CONFIG_SOC_SHA_SUPPORT_SHA512_256", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 836 + ] + ], + [ + "CONFIG_SOC_SHA_SUPPORT_SHA512_T", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 840 + ] + ], + [ + "CONFIG_SOC_AES_SUPPORT_DMA", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 856 + ] + ], + [ + "CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 964 + ] + ], + [ + "CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 968 + ] + ], + [ + "CONFIG_SOC_EFUSE_HARD_DIS_JTAG", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 972 + ] + ], + [ + "CONFIG_SOC_EFUSE_SOFT_DIS_JTAG", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 980 + ] + ], + [ + "CONFIG_SOC_EFUSE_DIS_ICACHE", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 988 + ] + ], + [ + "CONFIG_SOC_EFUSE_XTS_AES_KEY_128", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 996 + ] + ], + [ + "CONFIG_SOC_EFUSE_XTS_AES_KEY_256", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1000 + ] + ], + [ + "CONFIG_SOC_SECURE_BOOT_V2_RSA", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1004 + ] + ], + [ + "CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1012 + ] + ], + [ + "CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1016 + ] + ], + [ + "CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1024 + ] + ], + [ + "CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1028 + ] + ], + [ + "CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1032 + ] + ], + [ + "CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1036 + ] + ], + [ + "CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE", + "n", + "int", + "16", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1040 + ] + ], + [ + "CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE", + "n", + "int", + "256", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1044 + ] + ], + [ + "CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH", + "n", + "int", + "12", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1056 + ] + ], + [ + "CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1060 + ] + ], + [ + "CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1072 + ] + ], + [ + "CONFIG_SOC_SPI_MEM_SUPPORT_WRAP", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1088 + ] + ], + [ + "CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 884 + ] + ], + [ + "CONFIG_SOC_COEX_HW_PTI", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1108 + ] + ], + [ + "CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1116 + ] + ], + [ + "CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1136 + ] + ], + [ + "CONFIG_SOC_WIFI_HW_TSF", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1140 + ] + ], + [ + "CONFIG_SOC_WIFI_FTM_SUPPORT", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1144 + ] + ], + [ + "CONFIG_SOC_GDMA_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 32 + ] + ], + [ + "CONFIG_SOC_UHCI_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 36 + ] + ], + [ + "CONFIG_SOC_AHB_GDMA_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 40 + ] + ], + [ + "CONFIG_SOC_LCDCAM_CAM_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 48 + ] + ], + [ + "CONFIG_SOC_LCDCAM_I80_LCD_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 52 + ] + ], + [ + "CONFIG_SOC_LCDCAM_RGB_LCD_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 56 + ] + ], + [ + "CONFIG_SOC_LCD_RGB_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 64 + ] + ], + [ + "CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 100 + ] + ], + [ + "CONFIG_SOC_SIMD_INSTRUCTION_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 264 + ] + ], + [ + "CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 276 + ] + ], + [ + "CONFIG_SOC_APB_BACKUP_DMA", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 376 + ] + ], + [ + "CONFIG_SOC_CACHE_FREEZE_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 388 + ] + ], + [ + "CONFIG_SOC_CACHE_ACS_INVALID_STATE_ON_PANIC", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 392 + ] + ], + [ + "CONFIG_SOC_SIMD_PREFERRED_DATA_ALIGNMENT", + "n", + "int", + "16", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 424 + ] + ], + [ + "CONFIG_SOC_AHB_GDMA_VERSION", + "n", + "int", + "1", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 440 + ] + ], + [ + "CONFIG_SOC_I2C_SUPPORT_XTAL", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 492 + ] + ], + [ + "CONFIG_SOC_I2C_SUPPORT_RTC", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 496 + ] + ], + [ + "CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 508 + ] + ], + [ + "CONFIG_SOC_I2S_HW_VERSION_2", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 516 + ] + ], + [ + "CONFIG_SOC_I2S_SUPPORTS_PCM", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 520 + ] + ], + [ + "CONFIG_SOC_I2S_SUPPORTS_TDM", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 552 + ] + ], + [ + "CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 580 + ] + ], + [ + "CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 616 + ] + ], + [ + "CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 624 + ] + ], + [ + "CONFIG_SOC_RMT_SUPPORT_DMA", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 628 + ] + ], + [ + "CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH", + "n", + "int", + "128", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 632 + ] + ], + [ + "CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM", + "n", + "int", + "549", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 636 + ] + ], + [ + "CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH", + "n", + "int", + "128", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 640 + ] + ], + [ + "CONFIG_SOC_UART_SUPPORT_RTC_CLK", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 776 + ] + ], + [ + "CONFIG_SOC_UART_SUPPORT_XTAL_CLK", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 780 + ] + ], + [ + "CONFIG_SOC_UHCI_NUM", + "n", + "int", + "1", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 788 + ] + ], + [ + "CONFIG_SOC_SHA_GDMA", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 808 + ] + ], + [ + "CONFIG_SOC_AES_GDMA", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 860 + ] + ], + [ + "CONFIG_SOC_PM_SUPPORT_BT_WAKEUP", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 888 + ] + ], + [ + "CONFIG_SOC_PM_SUPPORT_CPU_PD", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 896 + ] + ], + [ + "CONFIG_SOC_PM_SUPPORT_TAGMEM_PD", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 900 + ] + ], + [ + "CONFIG_SOC_PM_SUPPORT_MAC_BB_PD", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 916 + ] + ], + [ + "CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 928 + ] + ], + [ + "CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 932 + ] + ], + [ + "CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 936 + ] + ], + [ + "CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D2", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 960 + ] + ], + [ + "CONFIG_SOC_EFUSE_DIS_USB_JTAG", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 976 + ] + ], + [ + "CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 984 + ] + ], + [ + "CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 992 + ] + ], + [ + "CONFIG_SOC_MAC_BB_PD_MEM_SIZE", + "n", + "int", + "192", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1052 + ] + ], + [ + "CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1064 + ] + ], + [ + "CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1068 + ] + ], + [ + "CONFIG_SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1076 + ] + ], + [ + "CONFIG_SOC_SPI_MEM_SUPPORT_TIMING_TUNING", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1080 + ] + ], + [ + "CONFIG_SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1092 + ] + ], + [ + "CONFIG_SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1096 + ] + ], + [ + "CONFIG_SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1100 + ] + ], + [ + "CONFIG_SOC_SPI_MEM_FLASH_SUPPORT_HPM", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1104 + ] + ], + [ + "CONFIG_SOC_SDMMC_USE_GPIO_MATRIX", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1120 + ] + ], + [ + "CONFIG_SOC_SDMMC_DELAY_PHASE_NUM", + "n", + "int", + "4", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1132 + ] + ], + [ + "CONFIG_SOC_WIFI_GCMP_SUPPORT", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1148 + ] + ], + [ + "CONFIG_SOC_WIFI_TXOP_SUPPORT", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1156 + ] + ], + [ + "CONFIG_SOC_WIFI_PHY_NEEDS_USB_WORKAROUND", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1172 + ] + ], + [ + "CONFIG_SOC_BLE_50_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1184 + ] + ], + [ + "CONFIG_SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/../components/soc/esp32s3/include/soc/Kconfig.soc_caps.in", + 1204 + ] + ], + [ + "CONFIG_XTAL_FREQ", + "n", + "int", + "40", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 55 + ] + ], + [ + "CONFIG_XTAL_FREQ_40", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 69 + ] + ], + [ + "CONFIG_BOOTLOADER_OFFSET_IN_FLASH", + "n", + "hex", + "0x0", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 77 + ] + ], + [ + "CONFIG_BOOTLOADER_CPU_CLK_FREQ_MHZ", + "n", + "int", + "80", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 85 + ] + ], + [ + "CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ", + "n", + "int", + "240", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 111 + ] + ], + [ + "CONFIG_ESP_CLK_FREQ_HZ", + "n", + "int", + "240000000", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 116 + ] + ], + [ + "CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM", + "n", + "int", + "4", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 121 + ] + ], + [ + "CONFIG_ESP_TIMER_INTERRUPT_LEVEL", + "n", + "int", + "1", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 126 + ] + ], + [ + "CONFIG_BOOTLOADER_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 132 + ] + ], + [ + "CONFIG_LOG_TIMESTAMP_SOURCE_RTOS", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 136 + ] + ], + [ + "CONFIG_ESP32_DPORT_DIS_INTERRUPT_LVL", + "n", + "int", + "5", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 140 + ] + ], + [ + "CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 144 + ] + ], + [ + "CONFIG_IDF_TARGET_ARCH_XTENSA", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 152 + ] + ], + [ + "CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 156 + ] + ], + [ + "CONFIG_ESP_PHY_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 164 + ] + ], + [ + "CONFIG_portNUM_PROCESSORS", + "n", + "int", + "2", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 173 + ] + ], + [ + "CONFIG_IDF_FIRMWARE_CHIP_ID", + "n", + "hex", + "0x0009", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 179 + ] + ], + [ + "CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 190 + ] + ], + [ + "CONFIG_SPIRAM_ALLOW_NOINIT_SEG_EXTERNAL_MEMORY", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 196 + ] + ], + [ + "CONFIG_IDF_TARGET_ESP32S3", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 208 + ] + ], + [ + "CONFIG_ESP_TIMER_IMPL_SYSTIMER", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 237 + ] + ], + [ + "CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 245 + ] + ], + [ + "CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_1", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY", + "y", + "int", + "2000", + "default", + [ + "/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig", + 281 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_ESPRESSIF_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 77 + ] + ], + [ + "CONFIG_ETHOS_U", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_HAL_ETHOS_U_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 86 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_GIGADEVICE_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 92 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_INFINEON_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 98 + ] + ], + [ + "CONFIG_USE_INFINEON_ABSTRACTION_RTOS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_HAL_INTEL_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 107 + ] + ], + [ + "CONFIG_ZEPHYR_MICROCHIP_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 111 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_NORDIC_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 116 + ] + ], + [ + "CONFIG_ZEPHYR_NUVOTON_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 123 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_NXP_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 128 + ] + ], + [ + "CONFIG_ZEPHYR_OPENISA_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 135 + ] + ], + [ + "CONFIG_ZEPHYR_QUICKLOGIC_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 138 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_REALTEK_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 143 + ] + ], + [ + "CONFIG_REALTEK_BEE_ADC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_CAN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_CODEC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_DMA", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_GPIO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_I2C", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_I2S", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_IR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_KEYSCAN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_MAC_802154", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_NVIC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_PINMUX", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_AON_QDEC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_QDEC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_RCC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_RTC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_SDHC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_SPI", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_TIM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_ENHTIM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_UART", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_USB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_USING_USB_HAL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_AON_WDT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REALTEK_BEE_CORE_WDT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USE_REALTEK_BEE_OS_INTERFACE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_HAL_RENESAS_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 150 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_RPI_PICO_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 158 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_SIFLI_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 164 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_SILABS_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 173 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_ST_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 182 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_STM32_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 186 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_TDK_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 194 + ] + ], + [ + "CONFIG_TDK_HAL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_HAL_TELINK_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 200 + ] + ], + [ + "CONFIG_ZEPHYR_TI_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 204 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_WCH_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 209 + ] + ], + [ + "CONFIG_ZEPHYR_HAL_WURTHELEKTRONIK_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 213 + ] + ], + [ + "CONFIG_ZEPHYR_XTENSA_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 216 + ] + ], + [ + "CONFIG_WIFI_NM_WPA_SUPPLICANT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_HOSTAP_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 221 + ] + ], + [ + "CONFIG_ZEPHYR_LIBLC3_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 227 + ] + ], + [ + "CONFIG_ZEPHYR_LIBMCTP_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 231 + ] + ], + [ + "CONFIG_ZEPHYR_LIBMETAL_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 234 + ] + ], + [ + "CONFIG_ZEPHYR_LIBSBC_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 239 + ] + ], + [ + "CONFIG_LIBSBC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_LITTLEFS_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 245 + ] + ], + [ + "CONFIG_ZEPHYR_LORA_BASICS_MODEM_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 251 + ] + ], + [ + "CONFIG_ZEPHYR_LORAMAC_NODE_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 257 + ] + ], + [ + "CONFIG_HAS_SEMTECH_RADIO_DRIVERS", + "y", + "bool", + "y", + "select", + [ + "HAS_SEMTECH_SX126X && LORA_MODULE_BACKEND_LORAMAC_NODE" + ] + ], + [ + "CONFIG_HAS_SEMTECH_SX126X", + "n", + "bool", + "y", + "select", + [ + "LORA_SX126X && (DT_HAS_SEMTECH_SX1261_ENABLED || DT_HAS_SEMTECH_SX1262_ENABLED || DT_HAS_SEMTECH_SX1268_ENABLED || DT_HAS_SEMTECH_LLCC68_ENABLED) && LORA" + ] + ], + [ + "CONFIG_HAS_SEMTECH_LORAMAC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_LVGL_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 263 + ] + ], + [ + "CONFIG_ZEPHYR_MBEDTLS_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 269 + ] + ], + [ + "CONFIG_MBEDTLS_VERSION_4_x", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig", + 19 + ] + ], + [ + "CONFIG_PSA_CRYPTO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MBEDTLS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_MBEDTLS_3_6_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 273 + ] + ], + [ + "CONFIG_ZEPHYR_MCUBOOT_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 276 + ] + ], + [ + "CONFIG_ZEPHYR_MIPI_SYS_T_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 279 + ] + ], + [ + "CONFIG_ZEPHYR_NANOPB_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 284 + ] + ], + [ + "CONFIG_NANOPB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_NRF_WIFI_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 290 + ] + ], + [ + "CONFIG_NRF70_BUSLIB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_OPEN_AMP_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 297 + ] + ], + [ + "CONFIG_OPENTHREAD", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_OPENTHREAD_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 302 + ] + ], + [ + "CONFIG_PERCEPIO_DFM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_PERCEPIO_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 308 + ] + ], + [ + "CONFIG_PICOLIBC_MODULE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_PICOLIBC_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 314 + ] + ], + [ + "CONFIG_ZEPHYR_PSA_ARCH_TESTS_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 318 + ] + ], + [ + "CONFIG_ZEPHYR_SEGGER_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 323 + ] + ], + [ + "CONFIG_ZEPHYR_TF_M_TESTS_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 327 + ] + ], + [ + "CONFIG_ZEPHYR_TF_PSA_CRYPTO_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 330 + ] + ], + [ + "CONFIG_ZEPHYR_TRUSTED_FIRMWARE_A_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 335 + ] + ], + [ + "CONFIG_BUILD_WITH_TFA", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_TRUSTED_FIRMWARE_M_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 341 + ] + ], + [ + "CONFIG_ZEPHYR_UOSCORE_UEDHOC_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 347 + ] + ], + [ + "CONFIG_ZEPHYR_ZCBOR_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 353 + ] + ], + [ + "CONFIG_ZCBOR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZEPHYR_NRF_HW_MODELS_MODULE", + "n", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules", + 357 + ] + ], + [ + "CONFIG_HAS_ESPRESSIF_HAL", + "n", + "bool", + "y", + "select", + [ + "SOC_SERIES_ESP32S3 && SOC_FAMILY_ESPRESSIF_ESP32" + ] + ], + [ + "CONFIG_LIBMETAL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LVGL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HAS_MEC_HAL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HAS_MPFS_HAL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HAS_MEC5_HAL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_OPENAMP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MIPI_SYST_LIB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HAS_TELINK_DRIVERS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MCUBOOT_BOOTUTIL_LIB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BOARD", + "n", + "string", + "xiao_esp32s3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/boards/Kconfig", + 5 + ] + ], + [ + "CONFIG_BOARD_REVISION", + "n", + "string", + "", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/boards/Kconfig", + 14 + ] + ], + [ + "CONFIG_BOARD_TARGET", + "n", + "string", + "xiao_esp32s3/esp32s3/procpu", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/boards/Kconfig", + 24 + ] + ], + [ + "CONFIG_NET_DRIVERS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BOARD_XIAO_ESP32S3", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/boards/Kconfig.v2", + 9 + ] + ], + [ + "CONFIG_BOARD_XIAO_ESP32S3_ESP32S3_PROCPU", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/boards/Kconfig.v2", + 14 + ] + ], + [ + "CONFIG_BOARD_QUALIFIERS", + "n", + "string", + "esp32s3/procpu", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/boards/Kconfig.v2", + 20 + ] + ], + [ + "CONFIG_HEAP_MEM_POOL_ADD_SIZE_BOARD", + "n", + "int", + "4096", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig", + 6 + ] + ], + [ + "CONFIG_SOC", + "n", + "string", + "esp32s3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.soc", + 133 + ] + ], + [ + "CONFIG_SOC_SERIES", + "n", + "string", + "esp32s3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.soc", + 130 + ] + ], + [ + "CONFIG_SOC_FAMILY", + "n", + "string", + "espressif_esp32", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig.soc", + 8 + ] + ], + [ + "CONFIG_SOC_PART_NUMBER", + "n", + "string", + "ESP32S3_WROOM_N8R8", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.soc", + 148 + ] + ], + [ + "CONFIG_SOC_RTL8752HJL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_RTL8752HMF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_RTL8752HKF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_RTL8752HJF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_FAMILY_ESPRESSIF_ESP32", + "n", + "bool", + "y", + "select", + [ + "SOC_SERIES_ESP32S3" + ] + ], + [ + "CONFIG_SOC_SERIES_ESP32S3", + "n", + "bool", + "y", + "select", + [ + "SOC_ESP32S3" + ] + ], + [ + "CONFIG_SOC_ESP32S3_WROOM_N8R8", + "n", + "bool", + "y", + "select", + [ + "BOARD_XIAO_ESP32S3" + ] + ], + [ + "CONFIG_SOC_ESP32S3", + "n", + "bool", + "y", + "select", + [ + "SOC_ESP32S3_WROOM_N8R8" + ] + ], + [ + "CONFIG_SOC_ESP32S3_PROCPU", + "n", + "bool", + "y", + "select", + [ + "BOARD_XIAO_ESP32S3 && (BOARD_XIAO_ESP32S3_ESP32S3_PROCPU || BOARD_XIAO_ESP32S3_ESP32S3_PROCPU_SENSE)" + ] + ], + [ + "CONFIG_HWINFO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_OUTPUT_INFO_HEADER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO_INIT_PRIORITY", + "y", + "int", + "40", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig", + 50 + ] + ], + [ + "CONFIG_ESP32_USE_UNSUPPORTED_REVISION", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESP_SIMPLE_BOOT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig", + 20 + ] + ], + [ + "CONFIG_ESP32_TIMER_TASK_STACK_SIZE", + "y", + "int", + "4096", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig", + 29 + ] + ], + [ + "CONFIG_ESP32_TIMER_TASK_PRIO", + "y", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig", + 36 + ] + ], + [ + "CONFIG_ESP_CONSOLE_UART_NUM", + "n", + "int", + "4", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.console", + 63 + ] + ], + [ + "CONFIG_ESP_CONSOLE_UART_BAUDRATE", + "n", + "int", + "1", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.console", + 71 + ] + ], + [ + "CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM", + "n", + "int", + "4", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.console", + 42 + ] + ], + [ + "CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.console", + 55 + ] + ], + [ + "CONFIG_ESP_CONSOLE", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.console", + 76 + ] + ], + [ + "CONFIG_ESP_USB_SERIAL_JTAG_ENABLED", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.console", + 82 + ] + ], + [ + "CONFIG_ESP32_EFUSE_VIRTUAL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESP32_EFUSE_MAX_BLK_LEN", + "n", + "int", + "256", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.efuse", + 45 + ] + ], + [ + "CONFIG_ESP_SPIRAM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESPTOOLPY_OCT_FLASH", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.esptool", + 13 + ] + ], + [ + "CONFIG_ESPTOOLPY_FLASHMODE_QIO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESPTOOLPY_FLASHMODE_QOUT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESPTOOLPY_FLASHMODE_DIO", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.esptool", + 31 + ] + ], + [ + "CONFIG_ESPTOOLPY_FLASHMODE_DOUT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.esptool", + 62 + ] + ], + [ + "CONFIG_ESPTOOLPY_FLASHMODE", + "n", + "string", + "dio", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.esptool", + 77 + ] + ], + [ + "CONFIG_ESPTOOLPY_FLASHFREQ_120M", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESPTOOLPY_FLASHFREQ_80M", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.esptool", + 90 + ] + ], + [ + "CONFIG_ESPTOOLPY_FLASHFREQ_60M", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESPTOOLPY_FLASHFREQ_48M", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESPTOOLPY_FLASHFREQ_40M", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESPTOOLPY_FLASHFREQ_20M", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESPTOOLPY_FLASHFREQ_80M_DEFAULT", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.esptool", + 128 + ] + ], + [ + "CONFIG_ESPTOOLPY_FLASHFREQ", + "n", + "string", + "80m", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.esptool", + 137 + ] + ], + [ + "CONFIG_ESPTOOLPY_FLASHSIZE_1MB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESPTOOLPY_FLASHSIZE_2MB", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.esptool", + 147 + ] + ], + [ + "CONFIG_ESPTOOLPY_FLASHSIZE_4MB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESPTOOLPY_FLASHSIZE_8MB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESPTOOLPY_FLASHSIZE_16MB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESPTOOLPY_FLASHSIZE_32MB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESPTOOLPY_FLASHSIZE_64MB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESPTOOLPY_FLASHSIZE_128MB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESPTOOLPY_FLASHSIZE", + "n", + "string", + "2MB", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.esptool", + 180 + ] + ], + [ + "CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESPTOOLPY_BEFORE_RESET", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.esptool", + 201 + ] + ], + [ + "CONFIG_ESPTOOLPY_BEFORE_NORESET", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESPTOOLPY_BEFORE", + "n", + "string", + "default_reset", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.esptool", + 219 + ] + ], + [ + "CONFIG_ESPTOOLPY_AFTER_RESET", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.esptool", + 224 + ] + ], + [ + "CONFIG_ESPTOOLPY_AFTER_NORESET", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESPTOOLPY_AFTER", + "n", + "string", + "hard_reset", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.esptool", + 241 + ] + ], + [ + "CONFIG_MMU_PAGE_SIZE", + "n", + "hex", + "0x10000", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.flash", + 8 + ] + ], + [ + "CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.flash", + 12 + ] + ], + [ + "CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.flash", + 16 + ] + ], + [ + "CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.flash", + 24 + ] + ], + [ + "CONFIG_SPI_FLASH_SUPPORT_GD_CHIP", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.flash", + 32 + ] + ], + [ + "CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.flash", + 45 + ] + ], + [ + "CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.flash", + 53 + ] + ], + [ + "CONFIG_SPI_FLASH_SUPPORT_TH_CHIP", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.flash", + 61 + ] + ], + [ + "CONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_CHIP", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.flash", + 70 + ] + ], + [ + "CONFIG_SPI_FLASH_ROM_DRIVER_PATCH", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.flash", + 78 + ] + ], + [ + "CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.flash", + 87 + ] + ], + [ + "CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.flash", + 96 + ] + ], + [ + "CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MAC_BB_PD", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESP32S3_INSTRUCTION_CACHE_16KB", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig", + 22 + ] + ], + [ + "CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE", + "n", + "hex", + "0x4000", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig", + 38 + ] + ], + [ + "CONFIG_ESP32S3_INSTRUCTION_CACHE_4WAYS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig", + 43 + ] + ], + [ + "CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS", + "n", + "int", + "8", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig", + 58 + ] + ], + [ + "CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_16B", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig", + 62 + ] + ], + [ + "CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE", + "n", + "int", + "32", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig", + 78 + ] + ], + [ + "CONFIG_ESP32S3_INSTRUCTION_CACHE_WRAP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESP32S3_DATA_CACHE_16KB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESP32S3_DATA_CACHE_32KB", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig", + 89 + ] + ], + [ + "CONFIG_ESP32S3_DATA_CACHE_64KB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESP32S3_DATA_CACHE_SIZE", + "n", + "hex", + "0x8000", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig", + 110 + ] + ], + [ + "CONFIG_ESP32S3_DATA_CACHE_4WAYS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESP32S3_DATA_CACHE_8WAYS", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig", + 115 + ] + ], + [ + "CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS", + "n", + "int", + "8", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig", + 130 + ] + ], + [ + "CONFIG_ESP32S3_DATA_CACHE_LINE_16B", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESP32S3_DATA_CACHE_LINE_32B", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig", + 134 + ] + ], + [ + "CONFIG_ESP32S3_DATA_CACHE_LINE_64B", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE", + "n", + "int", + "32", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig", + 153 + ] + ], + [ + "CONFIG_ESP32S3_DATA_CACHE_WRAP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA", + "n", + "bool", + "y", + "select", + [ + "ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR && " + ] + ], + [ + "CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP", + "n", + "bool", + "y", + "select", + [ + "ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR && " + ] + ], + [ + "CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH", + "n", + "bool", + "y", + "select", + [ + "ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR && " + ] + ], + [ + "CONFIG_ESP_MAC_ADDR_UNIVERSE_BT", + "n", + "bool", + "y", + "select", + [ + "ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR && " + ] + ], + [ + "CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR", + "n", + "bool", + "y", + "select", + [ + "ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR && " + ] + ], + [ + "CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.mac", + 8 + ] + ], + [ + "CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES", + "n", + "int", + "4", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.mac", + 45 + ] + ], + [ + "CONFIG_RESERVE_RTC_MEM", + "n", + "int", + "0", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig", + 41 + ] + ], + [ + "CONFIG_ESP32_ULP_COPROC_ENABLED", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_SOC_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_ARCH", + "n", + "string", + "xtensa", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/arch/xtensa/Kconfig", + 10 + ] + ], + [ + "CONFIG_SIMULATOR_XTENSA", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_XTENSA_MORE_SPIN_RELAX_NOPS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_XTENSA_BREAK_ON_UNRECOVERABLE_EXCEPTIONS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_XTENSA_INTERRUPT_NONPREEMPTABLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_XTENSA", + "n", + "bool", + "y", + "select", + [ + "SOC_SERIES_ESP32S3 && SOC_FAMILY_ESPRESSIF_ESP32" + ] + ], + [ + "CONFIG_ARCH_IS_SET", + "n", + "bool", + "y", + "select", + [ + "XTENSA" + ] + ], + [ + "CONFIG_SEMIHOST", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_EXCEPTION_DUMP_HOOK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ARCH_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ARCH_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ARCH_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ARCH_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ARCH_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ARCH_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_ARCH_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_LITTLE_ENDIAN", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/arch/Kconfig", + 214 + ] + ], + [ + "CONFIG_SRAM_SIZE", + "y", + "int", + "416", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/arch/Kconfig", + 230 + ] + ], + [ + "CONFIG_SRAM_BASE_ADDRESS", + "y", + "hex", + "0x3fc88000", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/arch/Kconfig", + 238 + ] + ], + [ + "CONFIG_NOINIT_SNIPPET_FIRST", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_STACK_GROWS_UP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_FRAME_POINTER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ARCH_DEVICE_STATE_ALIGN", + "y", + "int", + "4", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/arch/Kconfig", + 561 + ] + ], + [ + "CONFIG_SRAM_SW_ISR_TABLE", + "y", + "bool", + "y", + "select", + [ + "DYNAMIC_INTERRUPTS" + ] + ], + [ + "CONFIG_EXCEPTION_DEBUG", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/arch/Kconfig", + 652 + ] + ], + [ + "CONFIG_SIMPLIFIED_EXCEPTION_CODES", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ARCH_HAS_TIMING_FUNCTIONS", + "n", + "bool", + "y", + "select", + [ + "XTENSA" + ] + ], + [ + "CONFIG_ARCH_SUPPORTS_COREDUMP", + "n", + "bool", + "y", + "select", + [ + "SOC_SERIES_ESP32S3 && SOC_FAMILY_ESPRESSIF_ESP32" + ] + ], + [ + "CONFIG_ARCH_SUPPORTS_COREDUMP_STACK_PTR", + "n", + "bool", + "y", + "select", + [ + "XTENSA && !SMP" + ] + ], + [ + "CONFIG_ARCH_HAS_CODE_DATA_RELOCATION", + "n", + "bool", + "y", + "select", + [ + "XTENSA" + ] + ], + [ + "CONFIG_CPU_HAS_FPU", + "n", + "bool", + "y", + "select", + [ + "SOC_SERIES_ESP32S3 && SOC_FAMILY_ESPRESSIF_ESP32" + ] + ], + [ + "CONFIG_ARCH_HAS_DIRECTED_IPIS", + "n", + "bool", + "y", + "select", + [ + "XTENSA" + ] + ], + [ + "CONFIG_CACHE_DOUBLEMAP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TOOLCHAIN_HAS_BUILTIN_FFS", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/arch/Kconfig", + 1222 + ] + ], + [ + "CONFIG_KERNEL_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_KERNEL_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_KERNEL_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_KERNEL_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_KERNEL_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_KERNEL_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_KERNEL_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_NUM_COOP_PRIORITIES", + "y", + "int", + "16", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 30 + ] + ], + [ + "CONFIG_MAIN_THREAD_PRIORITY", + "y", + "int", + "0", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 73 + ] + ], + [ + "CONFIG_COOP_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 79 + ] + ], + [ + "CONFIG_PREEMPT_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 82 + ] + ], + [ + "CONFIG_PRIORITY_CEILING", + "y", + "int", + "-128", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 86 + ] + ], + [ + "CONFIG_SCHED_DEADLINE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_THREAD_STACK_INFO", + "y", + "bool", + "y", + "select", + [ + "XTENSA" + ] + ], + [ + "CONFIG_THREAD_CUSTOM_DATA", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DYNAMIC_THREAD", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SCHED_SIMPLE", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 305 + ] + ], + [ + "CONFIG_SCHED_SCALABLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SCHED_MULTIQ", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_WAITQ_SCALABLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_WAITQ_SIMPLE", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 358 + ] + ], + [ + "CONFIG_ERRNO", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 395 + ] + ], + [ + "CONFIG_NONZERO_SPINLOCK_SIZE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BOOT_BANNER", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 455 + ] + ], + [ + "CONFIG_BOOT_BANNER_STRING", + "y", + "string", + "Booting Zephyr OS build", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 464 + ] + ], + [ + "CONFIG_BOOT_DELAY", + "y", + "int", + "0", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 471 + ] + ], + [ + "CONFIG_BOOT_CLEAR_SCREEN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_THREAD_MONITOR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_THREAD_NAME", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_THREAD_RUNTIME_STATS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_THREAD_RUNTIME_STACK_SAFETY", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_OBJ_CORE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_WORKQUEUE_WORK_TIMEOUT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYSTEM_WORKQUEUE_PRIORITY", + "y", + "int", + "-1", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 613 + ] + ], + [ + "CONFIG_SYSTEM_WORKQUEUE_NO_YIELD", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYSTEM_WORKQUEUE_WORK_TIMEOUT_MS", + "y", + "int", + "0", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 631 + ] + ], + [ + "CONFIG_ATOMIC_OPERATIONS_BUILTIN", + "n", + "bool", + "y", + "select", + [ + "SOC_SERIES_ESP32S3 && SOC_FAMILY_ESPRESSIF_ESP32" + ] + ], + [ + "CONFIG_TIMESLICING", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 681 + ] + ], + [ + "CONFIG_TIMESLICE_PRIORITY", + "y", + "int", + "0", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 700 + ] + ], + [ + "CONFIG_TIMESLICE_PER_THREAD", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TIMER_OBSERVER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_POLL", + "y", + "bool", + "y", + "select", + [ + "LORA" + ] + ], + [ + "CONFIG_MEM_SLAB_POINTER_VALIDATE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MEM_SLAB_TRACE_MAX_UTILIZATION", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_NUM_MBOX_ASYNC_MSGS", + "y", + "int", + "10", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 749 + ] + ], + [ + "CONFIG_EVENTS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HEAP_MEM_POOL_SIZE", + "y", + "int", + "4096", + "assign", + [ + "/Volumes/External/Work/radio/loramodem/app/prj.conf", + 16 + ] + ], + [ + "CONFIG_HEAP_MEM_POOL_IGNORE_MIN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TIMEOUT_64BIT", + "y", + "bool", + "y", + "select", + [ + "MPSC_PBUF" + ] + ], + [ + "CONFIG_SYS_CLOCK_MAX_TIMEOUT_DAYS", + "y", + "int", + "365", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 886 + ] + ], + [ + "CONFIG_USE_SWITCH", + "y", + "bool", + "y", + "select", + [ + "XTENSA" + ] + ], + [ + "CONFIG_USE_SWITCH_SUPPORTED", + "n", + "bool", + "y", + "select", + [ + "XTENSA" + ] + ], + [ + "CONFIG_TICKET_SPINLOCKS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE", + "n", + "bool", + "y", + "select", + [ + "TOOLCHAIN_ZEPHYR_SUPPORTS_THREAD_LOCAL_STORAGE" + ] + ], + [ + "CONFIG_TOOLCHAIN_SUPPORTS_STATIC_INIT_GNU", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig", + 1120 + ] + ], + [ + "CONFIG_STATIC_INIT_GNU", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BOOTARGS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DEVICE_MUTABLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DEVICE_DT_METADATA", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DEVICE_DEINIT_SUPPORT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_KERNEL_INIT_PRIORITY_OBJECTS", + "y", + "int", + "30", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.device", + 50 + ] + ], + [ + "CONFIG_KERNEL_INIT_PRIORITY_LIBC", + "y", + "int", + "35", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.device", + 58 + ] + ], + [ + "CONFIG_KERNEL_INIT_PRIORITY_DEFAULT", + "y", + "int", + "40", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.device", + 66 + ] + ], + [ + "CONFIG_KERNEL_INIT_PRIORITY_DEVICE", + "y", + "int", + "50", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.device", + 72 + ] + ], + [ + "CONFIG_APPLICATION_INIT_PRIORITY", + "y", + "int", + "90", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.device", + 80 + ] + ], + [ + "CONFIG_SOC_EARLY_RESET_HOOK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_PREP_HOOK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_LATE_INIT_HOOK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SOC_PER_CORE_INIT_HOOK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BOARD_EARLY_INIT_HOOK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BOARD_LATE_INIT_HOOK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ADC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_AUDIO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_AUXDISPLAY", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BBRAM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BIOMETRICS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CAN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CHARGER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CLOCK_CONTROL_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CLOCK_CONTROL_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CLOCK_CONTROL_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CLOCK_CONTROL_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CLOCK_CONTROL_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CLOCK_CONTROL_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_CLOCK_CONTROL_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_CLOCK_CONTROL_ESP32", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.esp32", + 9 + ] + ], + [ + "CONFIG_CLOCK_CONTROL_ESP32_RTC_CLK_SRC_INT_RC", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.esp32", + 26 + ] + ], + [ + "CONFIG_CLOCK_CONTROL_ESP32_RTC_CLK_SRC_EXT_CRYS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CLOCK_CONTROL_ESP32_RTC_CLK_SRC_EXT_OSC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CLOCK_CONTROL_ESP32_RTC_CLK_SRC_INT_8MD256", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CLOCK_CONTROL_ESP32_RTC_CLK_CAL_CYCLES", + "y", + "int", + "1024", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.esp32", + 62 + ] + ], + [ + "CONFIG_CLOCK_CONTROL_FIXED_RATE_CLOCK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CLOCK_CONTROL_TISCI_PRIORITY", + "y", + "int", + "40", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.tisci", + 13 + ] + ], + [ + "CONFIG_COMPARATOR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CONSOLE_INPUT_MAX_LINE_LEN", + "y", + "int", + "128", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/console/Kconfig", + 16 + ] + ], + [ + "CONFIG_CONSOLE_HAS_DRIVER", + "n", + "bool", + "y", + "select", + [ + "UART_CONSOLE && SERIAL && SERIAL_HAS_DRIVER && CONSOLE" + ] + ], + [ + "CONFIG_CONSOLE_HANDLER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CONSOLE_INIT_PRIORITY", + "y", + "int", + "60", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/console/Kconfig", + 37 + ] + ], + [ + "CONFIG_UART_CONSOLE", + "y", + "bool", + "y", + "assign", + [ + "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_defconfig", + 5 + ] + ], + [ + "CONFIG_UART_CONSOLE_DEBUG_SERVER_HOOKS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_CONSOLE_MCUMGR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_RAM_CONSOLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_IPM_CONSOLE_SENDER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_IPM_CONSOLE_RECEIVER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_MCUMGR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_CONSOLE_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_CONSOLE_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_CONSOLE_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_CONSOLE_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_CONSOLE_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_CONSOLE_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_UART_CONSOLE_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_EFI_CONSOLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COREDUMP_DEVICE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CRC_DRIVER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CRYPTO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DAC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DAI", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DEBUG_DRIVER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DISK_DRIVERS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DISPLAY", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DMA", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DP_DRIVER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_EDAC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_EEPROM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ENTROPY_GENERATOR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ESPI", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MDIO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_FPGA", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_FUEL_GAUGE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GNSS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_GPIO_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_GPIO_GET_DIRECTION", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO_GET_CONFIG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GPIO_ESP32", + "y", + "bool", + "y", + "select", + [ + "UART_ESP32 && DT_HAS_ESPRESSIF_ESP32_UART_ENABLED && SERIAL" + ] + ], + [ + "CONFIG_HAPTICS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HWSPINLOCK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_I2C", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_I2S", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_I3C", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_INTC_INIT_PRIORITY", + "y", + "int", + "40", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig", + 45 + ] + ], + [ + "CONFIG_INTC_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_INTC_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_INTC_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_INTC_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_INTC_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_INTC_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_INTC_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_INTC_ESP32", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.esp32", + 8 + ] + ], + [ + "CONFIG_INTC_ESP32_DECISIONS_LOG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_IPM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LED", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LED_STRIP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LORA", + "y", + "bool", + "y", + "assign", + [ + "/Volumes/External/Work/radio/loramodem/app/prj.conf", + 9 + ] + ], + [ + "CONFIG_LORA_MODULE_BACKEND_LORAMAC_NODE", + "y", + "bool", + "y", + "default", + null + ], + [ + "CONFIG_LORA_MODULE_BACKEND_LORA_BASICS_MODEM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LORA_MODULE_BACKEND_NATIVE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LORA_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LORA_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LORA_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LORA_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LORA_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LORA_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_LORA_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_LORA_INIT_PRIORITY", + "y", + "int", + "90", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/lora/Kconfig", + 57 + ] + ], + [ + "CONFIG_LORA_SX126X", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/lora/Kconfig.sx12xx", + 20 + ] + ], + [ + "CONFIG_MBOX", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MIPI_DBI", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TIMEAWARE_GPIO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MM_DRV", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MSPI", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_OPAMP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PCIE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PCIE_ENDPOINT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PECI", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PINCTRL", + "y", + "bool", + "y", + "select", + [ + "SOC_SERIES_ESP32S3 && SOC_FAMILY_ESPRESSIF_ESP32" + ] + ], + [ + "CONFIG_PINCTRL_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PINCTRL_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PINCTRL_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PINCTRL_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PINCTRL_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PINCTRL_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_PINCTRL_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_PINCTRL_DYNAMIC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PINCTRL_KEEP_SLEEP_STATE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PINCTRL_ESP32", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.esp32", + 6 + ] + ], + [ + "CONFIG_PINCTRL_MCHP_COMMON", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PINCTRL_NPCX_EX", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PS2", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PSI5", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PTP_CLOCK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PWM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_RETAINED_MEM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_RTC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SDHC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SENSOR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SENT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SERIAL_HAS_DRIVER", + "n", + "bool", + "y", + "select", + [ + "UART_ESP32 && DT_HAS_ESPRESSIF_ESP32_UART_ENABLED && SERIAL", + "SERIAL_ESP32_USB && DT_HAS_ESPRESSIF_ESP32_USB_SERIAL_ENABLED && SERIAL" + ] + ], + [ + "CONFIG_SERIAL_SUPPORT_ASYNC", + "n", + "bool", + "y", + "select", + [ + "UART_ESP32 && (SOC_SERIES_ESP32C3 || SOC_SERIES_ESP32C5 || SOC_SERIES_ESP32C6 || SOC_SERIES_ESP32H2 || SOC_SERIES_ESP32S3) && DT_HAS_ESPRESSIF_ESP32_UART_ENABLED && SERIAL" + ] + ], + [ + "CONFIG_SERIAL_SUPPORT_INTERRUPT", + "n", + "bool", + "y", + "select", + [ + "UART_ESP32 && DT_HAS_ESPRESSIF_ESP32_UART_ENABLED && SERIAL", + "SERIAL_ESP32_USB && DT_HAS_ESPRESSIF_ESP32_USB_SERIAL_ENABLED && SERIAL" + ] + ], + [ + "CONFIG_SERIAL_INIT_PRIORITY", + "y", + "int", + "50", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig", + 36 + ] + ], + [ + "CONFIG_UART_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_UART_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_UART_ASYNC_API", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_LINE_CTRL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_DRV_CMD", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_WIDE_DATA", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_PIPE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_ASYNC_RX_HELPER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UART_ESP32", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.esp32", + 6 + ] + ], + [ + "CONFIG_SERIAL_ESP32_USB", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.esp32", + 19 + ] + ], + [ + "CONFIG_UART_ESP32_TX_FIFO_THRESH", + "y", + "hex", + "0x1", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.esp32", + 36 + ] + ], + [ + "CONFIG_UART_ESP32_RX_FIFO_THRESH", + "y", + "hex", + "0x16", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.esp32", + 44 + ] + ], + [ + "CONFIG_UART_NPCX_FIFO_EX", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SMBUS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SPI_ASYNC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SPI_RTIO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SPI_SLAVE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SPI_EXTENDED_MODES", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SPI_INIT_PRIORITY", + "y", + "int", + "50", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig", + 77 + ] + ], + [ + "CONFIG_SPI_COMPLETION_TIMEOUT_TOLERANCE", + "y", + "int", + "200", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig", + 83 + ] + ], + [ + "CONFIG_SPI_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SPI_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SPI_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SPI_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SPI_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SPI_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_SPI_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_ESP32_SPIM", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.esp32", + 8 + ] + ], + [ + "CONFIG_SPI_ESP32_INTERRUPT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_STEPPER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TIMER_READS_ITS_FREQUENCY_AT_RUNTIME", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYSTEM_CLOCK_SLOPPY_IDLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYSTEM_CLOCK_INIT_PRIORITY", + "y", + "int", + "0", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig", + 55 + ] + ], + [ + "CONFIG_TICKLESS_CAPABLE", + "n", + "bool", + "y", + "select", + [ + "XTENSA_TIMER && XTENSA && SYS_CLOCK_EXISTS" + ] + ], + [ + "CONFIG_XTENSA_TIMER_LPM_TIMER_NONE", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.xtensa", + 31 + ] + ], + [ + "CONFIG_UAOL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_BC12", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UDC_DRIVER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UHC_DRIVER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UVB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DEVICE_DRIVER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USBC_TCPC_DRIVER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USBC_VBUS_DRIVER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USBC_PPC_DRIVER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_VIDEO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_VIRTIO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_VIRTUALIZATION", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_W1", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_WUC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TEE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REQUIRES_FULL_LIBC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_REQUIRES_FLOAT_PRINTF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LIBC_ALLOW_LESS_THAN_64BIT_TIME", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_FULL_LIBC_SUPPORTED", + "n", + "bool", + "y", + "select", + [ + "PICOLIBC_SUPPORTED && (y = y || (ZEPHYR_PICOLIBC_MODULE && !REQUIRES_FULL_LIBCPP))" + ] + ], + [ + "CONFIG_MINIMAL_LIBC_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/lib/libc/Kconfig", + 42 + ] + ], + [ + "CONFIG_PICOLIBC_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/lib/libc/Kconfig", + 58 + ] + ], + [ + "CONFIG_MINIMAL_LIBC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PICOLIBC", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/lib/libc/Kconfig", + 81 + ] + ], + [ + "CONFIG_EXTERNAL_LIBC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COMMON_LIBC_ABORT", + "n", + "bool", + "y", + "select", + [ + "PICOLIBC && PICOLIBC_SUPPORTED && " + ] + ], + [ + "CONFIG_COMMON_LIBC_ASCTIME_R", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COMMON_LIBC_CTIME_R", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COMMON_LIBC_TIME", + "n", + "bool", + "y", + "imply", + [ + "PICOLIBC && PICOLIBC_SUPPORTED && " + ] + ], + [ + "CONFIG_COMMON_LIBC_MALLOC", + "y", + "bool", + "y", + "imply", + [ + "PICOLIBC && PICOLIBC_SUPPORTED && " + ] + ], + [ + "CONFIG_COMMON_LIBC_CALLOC", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/lib/libc/common/Kconfig", + 88 + ] + ], + [ + "CONFIG_COMMON_LIBC_REALLOCARRAY", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/lib/libc/common/Kconfig", + 97 + ] + ], + [ + "CONFIG_COMMON_LIBC_REMOVE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PICOLIBC_USE_MODULE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PICOLIBC_USE_TOOLCHAIN", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/Kconfig", + 9 + ] + ], + [ + "CONFIG_PICOLIBC_IO_FLOAT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PICOLIBC_IO_LONG_LONG", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/Kconfig", + 35 + ] + ], + [ + "CONFIG_STDOUT_CONSOLE", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/lib/libc/Kconfig", + 173 + ] + ], + [ + "CONFIG_NEED_LIBC_MEM_PARTITION", + "n", + "bool", + "y", + "select", + [ + "PICOLIBC && PICOLIBC_SUPPORTED && ", + "COMMON_LIBC_MALLOC && COMMON_LIBC_MALLOC_ARENA_SIZE != 0" + ] + ], + [ + "CONFIG_CPP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HASH_FUNC32", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HASH_MAP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_VALIDATE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_STRESS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_INFO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_ALLOC_LOOPS", + "y", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/lib/heap/Kconfig", + 35 + ] + ], + [ + "CONFIG_SYS_HEAP_RUNTIME_STATS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_ARRAY_SIZE", + "y", + "int", + "0", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/lib/heap/Kconfig", + 56 + ] + ], + [ + "CONFIG_SYS_HEAP_LISTENER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_HARDENING_NONE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_HARDENING_BASIC", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/lib/heap/Kconfig", + 83 + ] + ], + [ + "CONFIG_SYS_HEAP_HARDENING_MODERATE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_HARDENING_FULL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_HARDENING_EXTREME", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_HARDENING_LEVEL", + "n", + "int", + "1", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/lib/heap/Kconfig", + 148 + ] + ], + [ + "CONFIG_SYS_HEAP_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_SYS_HEAP_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_SYS_HEAP_SMALL_ONLY", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_BIG_ONLY", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_HEAP_AUTO", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/lib/heap/Kconfig", + 164 + ] + ], + [ + "CONFIG_MULTI_HEAP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SHARED_MULTI_HEAP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYS_MEM_BLOCKS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MIDI2_UMP_STREAM_RESPONDER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_NET_BUF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZVFS_OPEN_IGNORE_MIN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PRINTK_SYNC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MPSC_PBUF", + "y", + "bool", + "y", + "select", + [ + "LOG_MODE_DEFERRED && " + ] + ], + [ + "CONFIG_SPSC_PBUF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MPSC_CLEAR_ALLOCATED", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HAS_POWEROFF", + "n", + "bool", + "y", + "select", + [ + "SOC_SERIES_ESP32S3 && SOC_FAMILY_ESPRESSIF_ESP32" + ] + ], + [ + "CONFIG_POWEROFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_COMPLETE", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/lib/os/Kconfig.cbprintf", + 6 + ] + ], + [ + "CONFIG_CBPRINTF_NANO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_FULL_INTEGRAL", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/lib/os/Kconfig.cbprintf", + 29 + ] + ], + [ + "CONFIG_CBPRINTF_REDUCED_INTEGRAL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_FP_SUPPORT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_FP_A_SUPPORT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_LIBC_SUBSTS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_CBPRINTF_PACKAGE_LONGDOUBLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CBPRINTF_CONVERT_CHECK_PTR", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/lib/os/Kconfig.cbprintf", + 170 + ] + ], + [ + "CONFIG_ZVFS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CPU_LOAD_METRIC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CPU_LOAD_LOG_LEVEL_OFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CPU_LOAD_LOG_LEVEL_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CPU_LOAD_LOG_LEVEL_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CPU_LOAD_LOG_LEVEL_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CPU_LOAD_LOG_LEVEL_DBG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CPU_LOAD_LOG_LEVEL_DEFAULT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 5 + ] + ], + [ + "CONFIG_CPU_LOAD_LOG_LEVEL", + "n", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config", + 36 + ] + ], + [ + "CONFIG_POSIX_SYSTEM_INTERFACES", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_POSIX_API", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_POSIX_AEP_CHOICE_NONE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_POSIX_AEP_CHOICE_ZEPHYR", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/lib/posix/Kconfig.profile", + 29 + ] + ], + [ + "CONFIG_POSIX_AEP_CHOICE_BASE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_POSIX_AEP_CHOICE_PSE51", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_POSIX_AEP_CHOICE_PSE52", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_POSIX_AEP_CHOICE_PSE53", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TC_PROVIDES_POSIX_C_LANG_SUPPORT_R", + "n", + "bool", + "y", + "select", + [ + "PICOLIBC && PICOLIBC_SUPPORTED && " + ] + ], + [ + "CONFIG_POSIX_C_LANG_SUPPORT_R", + "y", + "bool", + "y", + "select", + [ + "POSIX_AEP_CHOICE_ZEPHYR && " + ] + ], + [ + "CONFIG_POSIX_C_LIB_EXT", + "y", + "bool", + "y", + "select", + [ + "POSIX_AEP_CHOICE_ZEPHYR && " + ] + ], + [ + "CONFIG_EVENTFD", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SMF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LIBGCC_RTLIB", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/lib/runtime/Kconfig", + 13 + ] + ], + [ + "CONFIG_JSON_LIBRARY", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_RING_BUFFER", + "y", + "bool", + "y", + "select", + [ + "MULTITHREADING" + ] + ], + [ + "CONFIG_RING_BUFFER_LARGE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_NOTIFY", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BASE64", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ONOFF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UTF8", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COBS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GETOPT", + "y", + "bool", + "y", + "select", + [ + "POSIX_C_LIB_EXT" + ] + ], + [ + "CONFIG_GETOPT_LONG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TIMEUTIL_APPLY_SKEW", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/lib/utils/Kconfig", + 103 + ] + ], + [ + "CONFIG_UUID", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MIN_HEAP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CONSOLE_SUBSYS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CPU_FREQ", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CRC", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DAP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_THREAD_ANALYZER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DEBUG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_UBSAN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_STACK_USAGE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_STACK_SENTINEL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PRINTK", + "y", + "bool", + "y", + "select", + [ + "BOOT_BANNER" + ] + ], + [ + "CONFIG_EARLY_CONSOLE", + "y", + "bool", + "y", + "select", + [ + "BOOT_BANNER" + ] + ], + [ + "CONFIG_FORCE_NO_ASSERT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ASSERT_VERBOSE", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/debug/Kconfig", + 240 + ] + ], + [ + "CONFIG_ASSERT_NO_FILE_INFO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ASSERT_NO_COND_INFO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ASSERT_NO_MSG_INFO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ASSERT_TEST", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_OVERRIDE_FRAME_POINTER_DEFAULT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DEBUG_THREAD_INFO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DEBUG_COREDUMP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SYMTAB", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MIPI_STP_DECODER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CS_TRACE_DEFMT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CPU_LOAD_LOG_PERIODICALLY", + "y", + "int", + "0", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/debug/Kconfig", + 384 + ] + ], + [ + "CONFIG_DISK_ACCESS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DSP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_EMUL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CHARACTER_FRAMEBUFFER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_FILE_SYSTEM_LIB_LINK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_FILE_SYSTEM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_GNSS_RTK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_INSTRUMENTATION", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_RPMSG_SERVICE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_IPC_SERVICE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_OPENAMP_RSC_TABLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_JWT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZMS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LLEXT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LLEXT_EDK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_CORE_INIT_PRIORITY", + "y", + "int", + "0", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig", + 18 + ] + ], + [ + "CONFIG_LOG_MODE_DEFERRED", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.mode", + 9 + ] + ], + [ + "CONFIG_LOG_MODE_IMMEDIATE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_MODE_MINIMAL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_FRONTEND", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_FRONTEND_OPT_API", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_CUSTOM_HEADER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_MULTIDOMAIN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_FLUSH_SLEEP_US", + "y", + "int", + "10000", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.mode", + 84 + ] + ], + [ + "CONFIG_LOG_RUNTIME_FILTERING", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_DEFAULT_LEVEL", + "y", + "int", + "3", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.filtering", + 39 + ] + ], + [ + "CONFIG_LOG_OVERRIDE_LEVEL", + "y", + "int", + "0", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.filtering", + 54 + ] + ], + [ + "CONFIG_LOG_MAX_LEVEL", + "y", + "int", + "4", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.filtering", + 71 + ] + ], + [ + "CONFIG_LOG_PRINTK", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.processing", + 10 + ] + ], + [ + "CONFIG_LOG_MODE_OVERFLOW", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.processing", + 19 + ] + ], + [ + "CONFIG_LOG_BLOCK_IN_THREAD", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_PROCESS_TRIGGER_THRESHOLD", + "y", + "int", + "10", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.processing", + 44 + ] + ], + [ + "CONFIG_LOG_PROCESS_THREAD", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.processing", + 55 + ] + ], + [ + "CONFIG_LOG_PROCESS_THREAD_STARTUP_DELAY_MS", + "y", + "int", + "0", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.processing", + 66 + ] + ], + [ + "CONFIG_LOG_PROCESS_THREAD_SLEEP_MS", + "y", + "int", + "1000", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.processing", + 73 + ] + ], + [ + "CONFIG_LOG_PROCESS_THREAD_CUSTOM_PRIORITY", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_BUFFER_SIZE", + "y", + "int", + "1024", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.processing", + 123 + ] + ], + [ + "CONFIG_LOG_TRACE_SHORT_TIMESTAMP", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.processing", + 152 + ] + ], + [ + "CONFIG_LOG_TIMESTAMP_64BIT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_TIMESTAMP_USE_REALTIME", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_SPEED", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_FUNC_NAME_PREFIX_ERR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_FUNC_NAME_PREFIX_WRN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_FUNC_NAME_PREFIX_INF", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_FUNC_NAME_PREFIX_DBG", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.formatting", + 20 + ] + ], + [ + "CONFIG_LOG_MIPI_SYST_ENABLE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_DOMAIN_NAME_PREFIX", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_THREAD_ID_PREFIX", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_CUSTOM_FORMAT_SUPPORT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_BACKEND_SHOW_TIMESTAMP", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.formatting", + 150 + ] + ], + [ + "CONFIG_LOG_BACKEND_SHOW_LEVEL", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.formatting", + 156 + ] + ], + [ + "CONFIG_LOG_BACKEND_SHOW_COLOR", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.formatting", + 163 + ] + ], + [ + "CONFIG_LOG_INFO_COLOR_GREEN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_DBG_COLOR_BLUE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_TAG_MAX_LEN", + "y", + "int", + "0", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.formatting", + 179 + ] + ], + [ + "CONFIG_LOG_BACKEND_SUPPORTS_FORMAT_TIMESTAMP", + "n", + "bool", + "y", + "select", + [ + "LOG_BACKEND_UART && UART_CONSOLE && !LOG_FRONTEND_ONLY && !LOG_MODE_MINIMAL && LOG" + ] + ], + [ + "CONFIG_LOG_BACKEND_FORMAT_TIMESTAMP", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.formatting", + 200 + ] + ], + [ + "CONFIG_LOG_OUTPUT_FORMAT_TIME_TIMESTAMP", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.formatting", + 207 + ] + ], + [ + "CONFIG_LOG_OUTPUT_FORMAT_DATE_TIMESTAMP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_OUTPUT_FORMAT_ISO8601_TIMESTAMP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_OUTPUT_FORMAT_LINUX_TIMESTAMP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_OUTPUT_FORMAT_CUSTOM_TIMESTAMP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_BACKEND_CRLF_NONE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_BACKEND_CRLF_LFONLY", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_BACKEND_SKIP_SOURCE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_BACKEND_UART", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.uart", + 7 + ] + ], + [ + "CONFIG_LOG_BACKEND_UART_BUFFER_SIZE", + "y", + "int", + "1", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.uart", + 22 + ] + ], + [ + "CONFIG_LOG_BACKEND_UART_AUTOSTART", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.uart", + 33 + ] + ], + [ + "CONFIG_LOG_BACKEND_UART_OUTPUT_TEXT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_format_config", + 6 + ] + ], + [ + "CONFIG_LOG_BACKEND_UART_OUTPUT_DICTIONARY", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_BACKEND_UART_OUTPUT_CUSTOM", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_BACKEND_UART_OUTPUT_DEFAULT", + "n", + "int", + "0", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_format_config", + 42 + ] + ], + [ + "CONFIG_LOG_BACKEND_IPC_SERVICE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_USE_VLA", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.misc", + 21 + ] + ], + [ + "CONFIG_LOG_SIMPLE_MSG_OPTIMIZE", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.misc", + 31 + ] + ], + [ + "CONFIG_LOG_ALWAYS_RUNTIME", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_FMT_SECTION", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_FMT_STRING_VALIDATE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_MEM_UTILIZATION", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LOG_FAILURE_REPORT_PERIOD", + "y", + "int", + "1000", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.misc", + 115 + ] + ], + [ + "CONFIG_LOG_RATELIMIT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig", + 54 + ] + ], + [ + "CONFIG_LOG_RATELIMIT_INTERVAL_MS", + "y", + "int", + "5000", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig", + 65 + ] + ], + [ + "CONFIG_LOG_OUTPUT", + "y", + "bool", + "y", + "select", + [ + "LOG_BACKEND_UART_OUTPUT_TEXT && " + ] + ], + [ + "CONFIG_LORAWAN", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MEM_ATTR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_EC_HOST_CMD", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_OSDP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MODBUS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MODEM_MODULES", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_NETWORKING", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_HAS_PM", + "n", + "bool", + "y", + "select", + [ + "SOC_SERIES_ESP32S3 && SOC_FAMILY_ESPRESSIF_ESP32" + ] + ], + [ + "CONFIG_PM_POLICY_LATENCY_STANDALONE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MCTP", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_PROFILING", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TEST_RANDOM_GENERATOR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TIMER_RANDOM_INITIAL_STATE", + "y", + "int", + "123456789", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/random/Kconfig", + 33 + ] + ], + [ + "CONFIG_ENTROPY_NODE_ENABLED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/random/Kconfig", + 82 + ] + ], + [ + "CONFIG_CSPRNG_NEEDED", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_RTIO", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MMC_STACK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SDMMC_STACK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SDIO_STACK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SECURE_STORAGE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SETTINGS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SHELL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_STATS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_STREAM_FLASH", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TASK_WDT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZTEST", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZTEST_MOCKING", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZTRESS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZTEST_BENCHMARK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TEST", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TEST_USERSPACE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_FORCE_COVERAGE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COVERAGE_DUMP_PATH_EXCLUDE", + "y", + "string", + "", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/subsys/testsuite/Kconfig.coverage", + 96 + ] + ], + [ + "CONFIG_TIMING_FUNCTIONS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TRACING", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DEVICE_STACK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_DEVICE_STACK_NEXT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USB_HOST_STACK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_USBC_STACK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ZBUS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MODULES", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TOOLCHAIN_ZEPHYR_1_0", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyr-sdk-1.0.0/cmake/zephyr/Kconfig", + 4 + ] + ], + [ + "CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_THREAD_LOCAL_STORAGE", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyr-sdk-1.0.0/cmake/zephyr/Kconfig", + 7 + ] + ], + [ + "CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_GNU_EXTENSIONS", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyr-sdk-1.0.0/cmake/zephyr/Kconfig", + 11 + ] + ], + [ + "CONFIG_PICOLIBC_DEFAULT", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyr-sdk-1.0.0/cmake/zephyr/Kconfig", + 21 + ] + ], + [ + "CONFIG_LINKER_ORPHAN_SECTION_PLACE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LINKER_ORPHAN_SECTION_WARN", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 62 + ] + ], + [ + "CONFIG_LINKER_ORPHAN_SECTION_ERROR", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_FLASH_LOAD_SIZE", + "y", + "hex", + "0", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 145 + ] + ], + [ + "CONFIG_ROM_END_OFFSET", + "y", + "hex", + "0", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 173 + ] + ], + [ + "CONFIG_LD_LINKER_SCRIPT_SUPPORTED", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 184 + ] + ], + [ + "CONFIG_LD_LINKER_TEMPLATE", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 188 + ] + ], + [ + "CONFIG_HAVE_CUSTOM_LINKER_SCRIPT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LINKER_SORT_BY_ALIGNMENT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 238 + ] + ], + [ + "CONFIG_LINKER_USE_BOOT_SECTION", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LINKER_USE_PINNED_SECTION", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LINKER_GENERIC_SECTIONS_PRESENT_AT_BOOT", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 299 + ] + ], + [ + "CONFIG_LINKER_ITERABLE_SUBALIGN", + "n", + "int", + "4", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 358 + ] + ], + [ + "CONFIG_STD_C90", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_STD_C99", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_STD_C11", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_STD_C17", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 411 + ] + ], + [ + "CONFIG_STD_C23", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TOOLCHAIN_SUPPORTS_GNU_EXTENSIONS", + "n", + "bool", + "y", + "select", + [ + "TOOLCHAIN_ZEPHYR_SUPPORTS_GNU_EXTENSIONS" + ] + ], + [ + "CONFIG_GNU_C_EXTENSIONS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_CODING_GUIDELINE_CHECK", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COMPILER_FREESTANDING", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SIZE_OPTIMIZATIONS", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 512 + ] + ], + [ + "CONFIG_SIZE_OPTIMIZATIONS_AGGRESSIVE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_SPEED_OPTIMIZATIONS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DEBUG_OPTIMIZATIONS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_NO_OPTIMIZATIONS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COMPILER_WARNINGS_AS_ERRORS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_DEPRECATION_TEST", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COMPILER_SAVE_TEMPS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COMPILER_TRACK_MACRO_EXPANSION", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 589 + ] + ], + [ + "CONFIG_COMPILER_COLOR_DIAGNOSTICS", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 597 + ] + ], + [ + "CONFIG_FORTIFY_SOURCE_NONE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_FORTIFY_SOURCE_COMPILE_TIME", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 604 + ] + ], + [ + "CONFIG_FORTIFY_SOURCE_RUN_TIME", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COMPILER_OPT", + "y", + "string", + null, + "unset", + null + ], + [ + "CONFIG_MISRA_SANE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_TOOLCHAIN_SUPPORTS_VLA_IN_STATEMENTS", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 653 + ] + ], + [ + "CONFIG_TOOLCHAIN_SUPPORTS_VARIABLE_CLEANUP_ATTRIBUTE", + "n", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 660 + ] + ], + [ + "CONFIG_SCOPE_CLEANUP_HELPERS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COMPILER_CODEGEN_VLIW_AUTO", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 676 + ] + ], + [ + "CONFIG_COMPILER_CODEGEN_VLIW_ENABLED", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_COMPILER_CODEGEN_VLIW_DISABLED", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ASSERT_ON_ERRORS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_NO_RUNTIME_CHECKS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_RUNTIME_ERROR_CHECKS", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 707 + ] + ], + [ + "CONFIG_KERNEL_BIN_NAME", + "y", + "string", + "zephyr", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 731 + ] + ], + [ + "CONFIG_OUTPUT_STAT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 737 + ] + ], + [ + "CONFIG_OUTPUT_SYMBOLS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_OUTPUT_PRINT_MEMORY_USAGE", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 779 + ] + ], + [ + "CONFIG_CLEANUP_INTERMEDIATE_FILES", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_GAP_FILL_PATTERN", + "y", + "hex", + "0xFF", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 800 + ] + ], + [ + "CONFIG_BUILD_NO_GAP_FILL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_OUTPUT_HEX_GAP_FILL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_OUTPUT_EXE", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_OUTPUT_S19_GAP_FILL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_OUTPUT_VERILOG", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_OUTPUT_UF2", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_OUTPUT_MOT", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_OUTPUT_STRIPPED", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_OUTPUT_COMPRESS_DEBUG_SECTIONS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_ALIGN_LMA", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_APPLICATION_DEFINED_SYSCALL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_MAKEFILE_EXPORTS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_OUTPUT_META", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BUILD_OUTPUT_STRIP_PATHS", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 1059 + ] + ], + [ + "CONFIG_CHECK_INIT_PRIORITIES", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 1073 + ] + ], + [ + "CONFIG_EMIT_ALL_SYSCALLS", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_WARN_DEPRECATED", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 1105 + ] + ], + [ + "CONFIG_WARN_EXPERIMENTAL", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_ENFORCE_ZEPHYR_STDINT", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 1141 + ] + ], + [ + "CONFIG_IS_BOOTLOADER", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_BOOTLOADER_BOSSA", + "y", + "bool", + null, + "unset", + null + ], + [ + "CONFIG_LEGACY_GENERATED_INCLUDE_PATH", + "y", + "bool", + "y", + "default", + [ + "/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr", + 1211 + ] + ], + [ + "CONFIG_LORAMODEM_KISS_IFACE_UART", + "y", + "bool", + "y", + "default", + [ + "/Volumes/External/Work/radio/loramodem/app/Kconfig", + 18 + ] + ], + [ + "CONFIG_LORAMODEM_LORA_FREQ_HZ", + "y", + "int", + "869618000", + "assign", + [ + "/Volumes/External/Work/radio/loramodem/app/prj.conf", + 22 + ] + ], + [ + "CONFIG_LORAMODEM_LORA_SF", + "y", + "int", + "8", + "assign", + [ + "/Volumes/External/Work/radio/loramodem/app/prj.conf", + 23 + ] + ], + [ + "CONFIG_LORAMODEM_LORA_BW", + "y", + "int", + "62", + "assign", + [ + "/Volumes/External/Work/radio/loramodem/app/prj.conf", + 24 + ] + ], + [ + "CONFIG_LORAMODEM_LORA_CR", + "y", + "int", + "5", + "assign", + [ + "/Volumes/External/Work/radio/loramodem/app/prj.conf", + 25 + ] + ], + [ + "CONFIG_LORAMODEM_LORA_TX_POWER_DBM", + "y", + "int", + "21", + "assign", + [ + "/Volumes/External/Work/radio/loramodem/app/prj.conf", + 26 + ] + ], + [ + "CONFIG_LORAMODEM_LORA_PREAMBLE_LEN", + "y", + "int", + "8", + "assign", + [ + "/Volumes/External/Work/radio/loramodem/app/prj.conf", + 27 + ] + ], + [ + "CONFIG_LORAMODEM_MAX_PACKET_SIZE", + "y", + "int", + "255", + "assign", + [ + "/Volumes/External/Work/radio/loramodem/app/prj.conf", + 28 + ] + ] +] \ No newline at end of file diff --git a/build/zephyr/.config-trace.pickle b/build/zephyr/.config-trace.pickle new file mode 100644 index 0000000..01f9620 Binary files /dev/null and b/build/zephyr/.config-trace.pickle differ diff --git a/build/zephyr/CMakeFiles/offsets.dir/arch/xtensa/core/offsets/offsets.c.obj b/build/zephyr/CMakeFiles/offsets.dir/arch/xtensa/core/offsets/offsets.c.obj new file mode 100644 index 0000000..bf8fbe6 Binary files /dev/null and b/build/zephyr/CMakeFiles/offsets.dir/arch/xtensa/core/offsets/offsets.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj new file mode 100644 index 0000000..39ed483 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c.obj new file mode 100644 index 0000000..e43be75 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/bootloader_clock_init.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/bootloader_clock_init.c.obj new file mode 100644 index 0000000..e799c33 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/bootloader_clock_init.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/flash_encrypt.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/flash_encrypt.c.obj new file mode 100644 index 0000000..3475cce Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/flash_encrypt.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_fields.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_fields.c.obj new file mode 100644 index 0000000..98f7bd5 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_fields.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_table.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_table.c.obj new file mode 100644 index 0000000..9fd6717 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_table.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_utility.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_utility.c.obj new file mode 100644 index 0000000..c506cd0 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_utility.c.obj differ diff --git a/build/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 b/build/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 new file mode 100644 index 0000000..7dcd126 Binary files /dev/null and b/build/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 differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_api.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_api.c.obj new file mode 100644 index 0000000..3e86817 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_api.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_fields.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_fields.c.obj new file mode 100644 index 0000000..7945906 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_fields.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_utility.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_utility.c.obj new file mode 100644 index 0000000..54d86a2 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_utility.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_driver_gpio/src/rtc_io.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_driver_gpio/src/rtc_io.c.obj new file mode 100644 index 0000000..037bd93 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_driver_gpio/src/rtc_io.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/esp32s3/temperature_sensor_periph.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/esp32s3/temperature_sensor_periph.c.obj new file mode 100644 index 0000000..48e9a07 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/esp32s3/temperature_sensor_periph.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/temperature_sensor_hal.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/temperature_sensor_hal.c.obj new file mode 100644 index 0000000..7797081 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/temperature_sensor_hal.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_clock/esp32s3/clk_tree_hal.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_clock/esp32s3/clk_tree_hal.c.obj new file mode 100644 index 0000000..7c946ba Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_clock/esp32s3/clk_tree_hal.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_ahb_v1.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_ahb_v1.c.obj new file mode 100644 index 0000000..ba46e76 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_ahb_v1.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_top.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_top.c.obj new file mode 100644 index 0000000..9441acc Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_top.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/esp32s3/rtc_io_periph.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/esp32s3/rtc_io_periph.c.obj new file mode 100644 index 0000000..7f6bff8 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/esp32s3/rtc_io_periph.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/rtc_io_hal.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/rtc_io_hal.c.obj new file mode 100644 index 0000000..8576a41 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/rtc_io_hal.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal.c.obj new file mode 100644 index 0000000..0e99b5a Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal_iram.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal_iram.c.obj new file mode 100644 index 0000000..d5d0a71 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal_iram.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_encrypt_hal_iram.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_encrypt_hal_iram.c.obj new file mode 100644 index 0000000..5066733 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_encrypt_hal_iram.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal.c.obj new file mode 100644 index 0000000..c28344f Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_gpspi.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_gpspi.c.obj new file mode 100644 index 0000000..28d256a Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_gpspi.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_iram.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_iram.c.obj new file mode 100644 index 0000000..de7520c Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_iram.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_security/mpu_hal.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_security/mpu_hal.c.obj new file mode 100644 index 0000000..8dc32e4 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_security/mpu_hal.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_systimer/systimer_hal.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_systimer/systimer_hal.c.obj new file mode 100644 index 0000000..e7d5608 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_systimer/systimer_hal.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal.c.obj new file mode 100644 index 0000000..13e86d8 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal_iram.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal_iram.c.obj new file mode 100644 index 0000000..796d766 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal_iram.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/wdt_hal_iram.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/wdt_hal_iram.c.obj new file mode 100644 index 0000000..aef8a73 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/wdt_hal_iram.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/xt_wdt_hal.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/xt_wdt_hal.c.obj new file mode 100644 index 0000000..e39c106 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/xt_wdt_hal.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/adc_share_hw_ctrl.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/adc_share_hw_ctrl.c.obj new file mode 100644 index 0000000..f72883b Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/adc_share_hw_ctrl.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/clk_ctrl_os.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/clk_ctrl_os.c.obj new file mode 100644 index 0000000..750e4b4 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/clk_ctrl_os.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/cpu.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/cpu.c.obj new file mode 100644 index 0000000..8d137ad Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/cpu.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_clk.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_clk.c.obj new file mode 100644 index 0000000..32448f0 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_clk.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_gpio_reserve.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_gpio_reserve.c.obj new file mode 100644 index 0000000..fafc043 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_gpio_reserve.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/hw_random.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/hw_random.c.obj new file mode 100644 index 0000000..43b914b Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/hw_random.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mac_addr.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mac_addr.c.obj new file mode 100644 index 0000000..42e6261 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mac_addr.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mspi/mspi_timing_tuning/mspi_timing_tuning.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mspi/mspi_timing_tuning/mspi_timing_tuning.c.obj new file mode 100644 index 0000000..1daa08b Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mspi/mspi_timing_tuning/mspi_timing_tuning.c.obj differ diff --git a/build/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 b/build/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 new file mode 100644 index 0000000..7524950 Binary files /dev/null and b/build/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 differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/periph_ctrl.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/periph_ctrl.c.obj new file mode 100644 index 0000000..79fafe6 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/periph_ctrl.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/cpu_region_protect.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/cpu_region_protect.c.obj new file mode 100644 index 0000000..fef8398 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/cpu_region_protect.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_clk_tree.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_clk_tree.c.obj new file mode 100644 index 0000000..7bb8714 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_clk_tree.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_cpu_intr.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_cpu_intr.c.obj new file mode 100644 index 0000000..7491f39 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_cpu_intr.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/io_mux.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/io_mux.c.obj new file mode 100644 index 0000000..6bbbc80 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/io_mux.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk.c.obj new file mode 100644 index 0000000..53e2333 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk_init.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk_init.c.obj new file mode 100644 index 0000000..cc835d4 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk_init.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_init.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_init.c.obj new file mode 100644 index 0000000..0e7e639 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_init.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_sleep.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_sleep.c.obj new file mode 100644 index 0000000..082d9e2 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_sleep.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_time.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_time.c.obj new file mode 100644 index 0000000..e5d36a7 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_time.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/sar_periph_ctrl.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/sar_periph_ctrl.c.obj new file mode 100644 index 0000000..5fa2078 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/sar_periph_ctrl.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/systimer.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/systimer.c.obj new file mode 100644 index 0000000..44d4109 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/systimer.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp_clk_tree_common.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp_clk_tree_common.c.obj new file mode 100644 index 0000000..4900a79 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp_clk_tree_common.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/regi2c_ctrl.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/regi2c_ctrl.c.obj new file mode 100644 index 0000000..e3acecb Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/regi2c_ctrl.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/rtc_module.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/rtc_module.c.obj new file mode 100644 index 0000000..b3855fb Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/rtc_module.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sar_tsens_ctrl.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sar_tsens_ctrl.c.obj new file mode 100644 index 0000000..783ff17 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sar_tsens_ctrl.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sleep_modes.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sleep_modes.c.obj new file mode 100644 index 0000000..fc45a15 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sleep_modes.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_msync.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_msync.c.obj new file mode 100644 index 0000000..bc4d012 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_msync.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_utils.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_utils.c.obj new file mode 100644 index 0000000..d17b82d Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_utils.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_mmu_map.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_mmu_map.c.obj new file mode 100644 index 0000000..7339f72 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_mmu_map.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/port/esp32s3/ext_mem_layout.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/port/esp32s3/ext_mem_layout.c.obj new file mode 100644 index 0000000..bf50da8 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/port/esp32s3/ext_mem_layout.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c.obj new file mode 100644 index 0000000..31621b7 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S.obj new file mode 100644 index 0000000..c3fce9d Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_crc.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_crc.c.obj new file mode 100644 index 0000000..92b839f Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_crc.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_efuse.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_efuse.c.obj new file mode 100644 index 0000000..7c07a24 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_efuse.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_gpio.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_gpio.c.obj new file mode 100644 index 0000000..3941ac2 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_gpio.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_longjmp.S.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_longjmp.S.obj new file mode 100644 index 0000000..13133cd Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_longjmp.S.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_print.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_print.c.obj new file mode 100644 index 0000000..e9ea157 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_print.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_serial_output.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_serial_output.c.obj new file mode 100644 index 0000000..f4037a8 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_serial_output.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_spiflash.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_spiflash.c.obj new file mode 100644 index 0000000..258d9d7 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_spiflash.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_sys.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_sys.c.obj new file mode 100644 index 0000000..96479a3 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_sys.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/esp_err.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/esp_err.c.obj new file mode 100644 index 0000000..d3d3062 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/esp_err.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/clk.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/clk.c.obj new file mode 100644 index 0000000..b8ea58a Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/clk.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/reset_reason.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/reset_reason.c.obj new file mode 100644 index 0000000..0cb66e7 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/reset_reason.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/system_internal.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/system_internal.c.obj new file mode 100644 index 0000000..3b58172 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/system_internal.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer.c.obj new file mode 100644 index 0000000..641eadb Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_common.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_common.c.obj new file mode 100644 index 0000000..953cf0f Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_common.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_systimer.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_systimer.c.obj new file mode 100644 index 0000000..97837f0 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_systimer.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_init.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_init.c.obj new file mode 100644 index 0000000..5a7b245 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_init.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/ets_timer_legacy.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/ets_timer_legacy.c.obj new file mode 100644 index 0000000..c2eeb15 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/ets_timer_legacy.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/cache_hal.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/cache_hal.c.obj new file mode 100644 index 0000000..0575632 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/cache_hal.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/efuse_hal.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/efuse_hal.c.obj new file mode 100644 index 0000000..005a1ec Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/efuse_hal.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/esp32s3/efuse_hal.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/esp32s3/efuse_hal.c.obj new file mode 100644 index 0000000..21097c9 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/esp32s3/efuse_hal.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/mmu_hal.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/mmu_hal.c.obj new file mode 100644 index 0000000..f318f47 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/mmu_hal.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32s3/gpio_periph.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32s3/gpio_periph.c.obj new file mode 100644 index 0000000..a4eb205 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32s3/gpio_periph.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/lldesc.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/lldesc.c.obj new file mode 100644 index 0000000..0f501a8 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/lldesc.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/cache_utils.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/cache_utils.c.obj new file mode 100644 index 0000000..1d423bb Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/cache_utils.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp32s3/spi_flash_oct_flash_init.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp32s3/spi_flash_oct_flash_init.c.obj new file mode 100644 index 0000000..a86c761 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp32s3/spi_flash_oct_flash_init.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_api.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_api.c.obj new file mode 100644 index 0000000..018aa5b Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_api.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_spi_init.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_spi_init.c.obj new file mode 100644 index 0000000..6d1e9d1 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_spi_init.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_mmap.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_mmap.c.obj new file mode 100644 index 0000000..4508a17 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_mmap.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_ops.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_ops.c.obj new file mode 100644 index 0000000..80270e0 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_ops.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/memspi_host_driver.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/memspi_host_driver.c.obj new file mode 100644 index 0000000..805a20f Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/memspi_host_driver.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_boya.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_boya.c.obj new file mode 100644 index 0000000..0c76658 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_boya.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_drivers.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_drivers.c.obj new file mode 100644 index 0000000..cd6baab Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_drivers.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_gd.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_gd.c.obj new file mode 100644 index 0000000..20b9966 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_gd.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_generic.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_generic.c.obj new file mode 100644 index 0000000..07b791c Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_generic.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_issi.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_issi.c.obj new file mode 100644 index 0000000..e0962b6 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_issi.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic.c.obj new file mode 100644 index 0000000..b45c6c2 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic_opi.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic_opi.c.obj new file mode 100644 index 0000000..a4eb3c1 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic_opi.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_th.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_th.c.obj new file mode 100644 index 0000000..2f93c72 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_th.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_winbond.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_winbond.c.obj new file mode 100644 index 0000000..064f722 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_winbond.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_hpm_enable.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_hpm_enable.c.obj new file mode 100644 index 0000000..6a8a8c2 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_hpm_enable.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_app.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_app.c.obj new file mode 100644 index 0000000..e414dac Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_app.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_noos.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_noos.c.obj new file mode 100644 index 0000000..ba7cda6 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_noos.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_wrap.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_wrap.c.obj new file mode 100644 index 0000000..aa6b9a5 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_wrap.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/console_init.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/console_init.c.obj new file mode 100644 index 0000000..fe4048a Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/console_init.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/esp_restart.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/esp_restart.c.obj new file mode 100644 index 0000000..0a0c5cf Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/esp_restart.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/flash_init.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/flash_init.c.obj new file mode 100644 index 0000000..1206ab2 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/flash_init.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/soc_init.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/soc_init.c.obj new file mode 100644 index 0000000..70854c7 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/soc_init.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_flash_init.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_flash_init.c.obj new file mode 100644 index 0000000..90c0638 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_flash_init.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_init.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_init.c.obj new file mode 100644 index 0000000..00376ed Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_init.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_random.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_random.c.obj new file mode 100644 index 0000000..35edcc4 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_random.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/bootloader/bootloader_flash.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/bootloader/bootloader_flash.c.obj new file mode 100644 index 0000000..5a2fbe2 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/bootloader/bootloader_flash.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/heap/heap_caps_zephyr.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/heap/heap_caps_zephyr.c.obj new file mode 100644 index 0000000..4609da5 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/heap/heap_caps_zephyr.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj new file mode 100644 index 0000000..4bf370a Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/lib/libc/validate_libc.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/lib/libc/validate_libc.c.obj new file mode 100644 index 0000000..db05c97 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/lib/libc/validate_libc.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj new file mode 100644 index 0000000..0c8239c Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj new file mode 100644 index 0000000..5c253c5 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj new file mode 100644 index 0000000..7d0ca97 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/lib/os/clock.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/lib/os/clock.c.obj new file mode 100644 index 0000000..a22c2cf Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/lib/os/clock.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/lib/os/mpsc_pbuf.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/lib/os/mpsc_pbuf.c.obj new file mode 100644 index 0000000..2c39f40 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/lib/os/mpsc_pbuf.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj new file mode 100644 index 0000000..c8bdbfc Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj new file mode 100644 index 0000000..67c6cd3 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj new file mode 100644 index 0000000..6cee2dc Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj new file mode 100644 index 0000000..4e7bc0b Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/bitmask.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/bitmask.c.obj new file mode 100644 index 0000000..74e876b Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/bitmask.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj new file mode 100644 index 0000000..4f61a3e Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt/getopt.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt/getopt.c.obj new file mode 100644 index 0000000..66f1bd6 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt/getopt.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt/getopt_common.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt/getopt_common.c.obj new file mode 100644 index 0000000..7b65d7a Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt/getopt_common.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj new file mode 100644 index 0000000..23985e2 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj new file mode 100644 index 0000000..d33f8c7 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj new file mode 100644 index 0000000..1ff56a5 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/set.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/set.c.obj new file mode 100644 index 0000000..7d1e13d Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/set.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj new file mode 100644 index 0000000..f6a059c Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj new file mode 100644 index 0000000..3cf8c62 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/soc/espressif/common/loader.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/soc/espressif/common/loader.c.obj new file mode 100644 index 0000000..87b484c Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/soc/espressif/common/loader.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/esp32s3-mp.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/esp32s3-mp.c.obj new file mode 100644 index 0000000..b974d85 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/esp32s3-mp.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/hw_init.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/hw_init.c.obj new file mode 100644 index 0000000..d27bb91 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/hw_init.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/soc.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/soc.c.obj new file mode 100644 index 0000000..4f663b0 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/soc.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/backends/log_backend_uart.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/backends/log_backend_uart.c.obj new file mode 100644 index 0000000..d0b71e0 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/backends/log_backend_uart.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_cache.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_cache.c.obj new file mode 100644 index 0000000..ef6f068 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_cache.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_core.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_core.c.obj new file mode 100644 index 0000000..1c7d1f1 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_core.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_mgmt.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_mgmt.c.obj new file mode 100644 index 0000000..a142980 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_mgmt.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_msg.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_msg.c.obj new file mode 100644 index 0000000..046adfc Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_msg.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_output.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_output.c.obj new file mode 100644 index 0000000..4262fa1 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_output.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj b/build/zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj new file mode 100644 index 0000000..e0af4c2 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj b/build/zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj new file mode 100644 index 0000000..bb15d44 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj b/build/zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj new file mode 100644 index 0000000..7f0c034 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj differ diff --git a/build/zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj b/build/zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj new file mode 100644 index 0000000..7f0c034 Binary files /dev/null and b/build/zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj differ diff --git a/build/zephyr/arch/arch/xtensa/cmake_install.cmake b/build/zephyr/arch/arch/xtensa/cmake_install.cmake new file mode 100644 index 0000000..c2a47f3 --- /dev/null +++ b/build/zephyr/arch/arch/xtensa/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/arch/xtensa + +# 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/arch/arch/xtensa/core/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/zephyr/arch/arch/xtensa/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/cpu_idle.c.obj b/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/cpu_idle.c.obj new file mode 100644 index 0000000..81452c3 Binary files /dev/null and b/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/cpu_idle.c.obj differ diff --git a/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/fatal.c.obj b/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/fatal.c.obj new file mode 100644 index 0000000..952cadb Binary files /dev/null and b/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/fatal.c.obj differ diff --git a/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/irq_manage.c.obj b/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/irq_manage.c.obj new file mode 100644 index 0000000..fb91ba6 Binary files /dev/null and b/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/irq_manage.c.obj differ diff --git a/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/prep_c.c.obj b/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/prep_c.c.obj new file mode 100644 index 0000000..6fb8249 Binary files /dev/null and b/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/prep_c.c.obj differ diff --git a/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/thread.c.obj b/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/thread.c.obj new file mode 100644 index 0000000..e8b7ffb Binary files /dev/null and b/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/thread.c.obj differ diff --git a/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/vector_handlers.c.obj b/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/vector_handlers.c.obj new file mode 100644 index 0000000..b923a09 Binary files /dev/null and b/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/vector_handlers.c.obj differ diff --git a/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/window_vectors.S.obj b/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/window_vectors.S.obj new file mode 100644 index 0000000..568d03b Binary files /dev/null and b/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/window_vectors.S.obj differ diff --git a/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/xtensa_asm2_util.S.obj b/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/xtensa_asm2_util.S.obj new file mode 100644 index 0000000..efe061a Binary files /dev/null and b/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/xtensa_asm2_util.S.obj differ diff --git a/build/zephyr/arch/arch/xtensa/core/cmake_install.cmake b/build/zephyr/arch/arch/xtensa/core/cmake_install.cmake new file mode 100644 index 0000000..429ef30 --- /dev/null +++ b/build/zephyr/arch/arch/xtensa/core/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/arch/arch/xtensa/core/startup/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/zephyr/arch/arch/xtensa/core/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a b/build/zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a new file mode 100644 index 0000000..98deb77 Binary files /dev/null and b/build/zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a differ diff --git a/build/zephyr/arch/arch/xtensa/core/startup/cmake_install.cmake b/build/zephyr/arch/arch/xtensa/core/startup/cmake_install.cmake new file mode 100644 index 0000000..4937a1b --- /dev/null +++ b/build/zephyr/arch/arch/xtensa/core/startup/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/arch/xtensa/core/startup + +# 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/zephyr/arch/arch/xtensa/core/startup/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/arch/cmake_install.cmake b/build/zephyr/arch/cmake_install.cmake new file mode 100644 index 0000000..131522e --- /dev/null +++ b/build/zephyr/arch/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/arch + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/arch/common/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/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/zephyr/arch/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/arch/common/CMakeFiles/arch__common.dir/dynamic_isr.c.obj b/build/zephyr/arch/common/CMakeFiles/arch__common.dir/dynamic_isr.c.obj new file mode 100644 index 0000000..3e69f4b Binary files /dev/null and b/build/zephyr/arch/common/CMakeFiles/arch__common.dir/dynamic_isr.c.obj differ diff --git a/build/zephyr/arch/common/CMakeFiles/arch__common.dir/init.c.obj b/build/zephyr/arch/common/CMakeFiles/arch__common.dir/init.c.obj new file mode 100644 index 0000000..8d17b43 Binary files /dev/null and b/build/zephyr/arch/common/CMakeFiles/arch__common.dir/init.c.obj differ diff --git a/build/zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj b/build/zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj new file mode 100644 index 0000000..7e7a14d Binary files /dev/null and b/build/zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj differ diff --git a/build/zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj b/build/zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj new file mode 100644 index 0000000..fff99bb Binary files /dev/null and b/build/zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj differ diff --git a/build/zephyr/arch/common/cmake_install.cmake b/build/zephyr/arch/common/cmake_install.cmake new file mode 100644 index 0000000..b30ad4a --- /dev/null +++ b/build/zephyr/arch/common/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/arch/common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/arch/common/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/arch/common/libarch__common.a b/build/zephyr/arch/common/libarch__common.a new file mode 100644 index 0000000..b013f80 Binary files /dev/null and b/build/zephyr/arch/common/libarch__common.a differ diff --git a/build/zephyr/arch/common/libisr_tables.a b/build/zephyr/arch/common/libisr_tables.a new file mode 100644 index 0000000..c8b4fec Binary files /dev/null and b/build/zephyr/arch/common/libisr_tables.a differ diff --git a/build/zephyr/boards/cmake_install.cmake b/build/zephyr/boards/cmake_install.cmake new file mode 100644 index 0000000..dd29897 --- /dev/null +++ b/build/zephyr/boards/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/boards + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/boards/shields/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/zephyr/boards/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/boards/shields/cmake_install.cmake b/build/zephyr/boards/shields/cmake_install.cmake new file mode 100644 index 0000000..8ebfc6b --- /dev/null +++ b/build/zephyr/boards/shields/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/boards/shields + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/boards/shields/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/cmake/flash/cmake_install.cmake b/build/zephyr/cmake/flash/cmake_install.cmake new file mode 100644 index 0000000..6d04dfe --- /dev/null +++ b/build/zephyr/cmake/flash/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/cmake/flash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/cmake/flash/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/cmake/reports/cmake_install.cmake b/build/zephyr/cmake/reports/cmake_install.cmake new file mode 100644 index 0000000..fb8fec2 --- /dev/null +++ b/build/zephyr/cmake/reports/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/cmake/reports + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/cmake/reports/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/cmake/usage/cmake_install.cmake b/build/zephyr/cmake/usage/cmake_install.cmake new file mode 100644 index 0000000..5b269bb --- /dev/null +++ b/build/zephyr/cmake/usage/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/cmake/usage + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/cmake/usage/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/cmake_install.cmake b/build/zephyr/cmake_install.cmake new file mode 100644 index 0000000..806c205 --- /dev/null +++ b/build/zephyr/cmake_install.cmake @@ -0,0 +1,395 @@ +# Install script for directory: /Users/wijnand/zephyrproject/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/zephyr/arch/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/lib/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/soc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/boards/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/acpica/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/cmsis/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/cmsis-dsp/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/cmsis-nn/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/cmsis_6/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/dhara/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/fatfs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/adi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hal_afbr/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hal_ambiq/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/atmel/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hal_bouffalolab/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hal_espressif/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hal_ethos_u/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hal_gigadevice/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hal_infineon/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hal_intel/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/microchip/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hal_nordic/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/nuvoton/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hal_nxp/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/openisa/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/quicklogic/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hal_realtek/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hal_renesas/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hal_rpi_pico/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hal_sifli/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hal_silabs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hal_st/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hal_stm32/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hal_tdk/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hal_telink/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/ti/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hal_wch/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hal_wurthelektronik/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/xtensa/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/hostap/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/liblc3/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/libmctp/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/libmetal/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/libsbc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/littlefs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/lora-basics-modem/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/loramac-node/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/lvgl/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/mbedtls/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/mcuboot/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/mipi-sys-t/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/nanopb/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/nrf_wifi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/open-amp/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/openthread/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/percepio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/picolibc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/segger/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/trusted-firmware-a/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/trusted-firmware-m/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/uoscore-uedhoc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/zcbor/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/modules/nrf_hw_models/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/flash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/usage/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/reports/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/zephyr/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_control_esp32.c.obj b/build/zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_control_esp32.c.obj new file mode 100644 index 0000000..4f15517 Binary files /dev/null and b/build/zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_control_esp32.c.obj differ diff --git a/build/zephyr/drivers/clock_control/cmake_install.cmake b/build/zephyr/drivers/clock_control/cmake_install.cmake new file mode 100644 index 0000000..f558ce5 --- /dev/null +++ b/build/zephyr/drivers/clock_control/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/drivers/clock_control + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/drivers/clock_control/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/drivers/clock_control/libdrivers__clock_control.a b/build/zephyr/drivers/clock_control/libdrivers__clock_control.a new file mode 100644 index 0000000..9e12fa8 Binary files /dev/null and b/build/zephyr/drivers/clock_control/libdrivers__clock_control.a differ diff --git a/build/zephyr/drivers/cmake_install.cmake b/build/zephyr/drivers/cmake_install.cmake new file mode 100644 index 0000000..78e0f30 --- /dev/null +++ b/build/zephyr/drivers/cmake_install.cmake @@ -0,0 +1,120 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/drivers + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/drivers/disk/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/firmware/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/interrupt_controller/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/misc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pcie/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb_c/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/clock_control/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/console/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/gpio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pinctrl/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/serial/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/spi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/timer/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/zephyr/drivers/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj b/build/zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj new file mode 100644 index 0000000..a3e893a Binary files /dev/null and b/build/zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj differ diff --git a/build/zephyr/drivers/console/cmake_install.cmake b/build/zephyr/drivers/console/cmake_install.cmake new file mode 100644 index 0000000..23b3e30 --- /dev/null +++ b/build/zephyr/drivers/console/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/drivers/console + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/drivers/console/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/drivers/console/libdrivers__console.a b/build/zephyr/drivers/console/libdrivers__console.a new file mode 100644 index 0000000..802d310 Binary files /dev/null and b/build/zephyr/drivers/console/libdrivers__console.a differ diff --git a/build/zephyr/drivers/disk/cmake_install.cmake b/build/zephyr/drivers/disk/cmake_install.cmake new file mode 100644 index 0000000..1d76ec8 --- /dev/null +++ b/build/zephyr/drivers/disk/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/drivers/disk + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/drivers/disk/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/drivers/firmware/cmake_install.cmake b/build/zephyr/drivers/firmware/cmake_install.cmake new file mode 100644 index 0000000..5eedfbb --- /dev/null +++ b/build/zephyr/drivers/firmware/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/drivers/firmware + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/drivers/firmware/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_esp32.c.obj b/build/zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_esp32.c.obj new file mode 100644 index 0000000..905b0e8 Binary files /dev/null and b/build/zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_esp32.c.obj differ diff --git a/build/zephyr/drivers/gpio/cmake_install.cmake b/build/zephyr/drivers/gpio/cmake_install.cmake new file mode 100644 index 0000000..1faf44a --- /dev/null +++ b/build/zephyr/drivers/gpio/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/drivers/gpio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/drivers/gpio/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/drivers/gpio/libdrivers__gpio.a b/build/zephyr/drivers/gpio/libdrivers__gpio.a new file mode 100644 index 0000000..31d92f7 Binary files /dev/null and b/build/zephyr/drivers/gpio/libdrivers__gpio.a differ diff --git a/build/zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_esp32.c.obj b/build/zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_esp32.c.obj new file mode 100644 index 0000000..562f9d3 Binary files /dev/null and b/build/zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_esp32.c.obj differ diff --git a/build/zephyr/drivers/interrupt_controller/cmake_install.cmake b/build/zephyr/drivers/interrupt_controller/cmake_install.cmake new file mode 100644 index 0000000..8969f96 --- /dev/null +++ b/build/zephyr/drivers/interrupt_controller/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/drivers/interrupt_controller/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a b/build/zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a new file mode 100644 index 0000000..bfb78a8 Binary files /dev/null and b/build/zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a differ diff --git a/build/zephyr/drivers/lora/cmake_install.cmake b/build/zephyr/drivers/lora/cmake_install.cmake new file mode 100644 index 0000000..82f032a --- /dev/null +++ b/build/zephyr/drivers/lora/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/drivers/lora + +# 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/drivers/lora/loramac-node/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/zephyr/drivers/lora/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards/mcu/utilities.c.obj b/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards/mcu/utilities.c.obj new file mode 100644 index 0000000..cfbc914 Binary files /dev/null and b/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards/mcu/utilities.c.obj differ diff --git a/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/radio.c.obj b/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/radio.c.obj new file mode 100644 index 0000000..5245798 Binary files /dev/null and b/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/radio.c.obj differ diff --git a/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/sx126x.c.obj b/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/sx126x.c.obj new file mode 100644 index 0000000..4444c91 Binary files /dev/null and b/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/sx126x.c.obj differ diff --git a/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/delay.c.obj b/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/delay.c.obj new file mode 100644 index 0000000..3f8f50a Binary files /dev/null and b/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/delay.c.obj differ diff --git a/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/systime.c.obj b/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/systime.c.obj new file mode 100644 index 0000000..73e599a Binary files /dev/null and b/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/systime.c.obj differ diff --git a/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/timer.c.obj b/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/timer.c.obj new file mode 100644 index 0000000..21409dd Binary files /dev/null and b/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/timer.c.obj differ diff --git a/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/hal_common.c.obj b/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/hal_common.c.obj new file mode 100644 index 0000000..3cb1ac7 Binary files /dev/null and b/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/hal_common.c.obj differ diff --git a/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx126x.c.obj b/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx126x.c.obj new file mode 100644 index 0000000..26510a2 Binary files /dev/null and b/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx126x.c.obj differ diff --git a/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx126x_standalone.c.obj b/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx126x_standalone.c.obj new file mode 100644 index 0000000..143783f Binary files /dev/null and b/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx126x_standalone.c.obj differ diff --git a/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx12xx_common.c.obj b/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx12xx_common.c.obj new file mode 100644 index 0000000..d9c6d13 Binary files /dev/null and b/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx12xx_common.c.obj differ diff --git a/build/zephyr/drivers/lora/loramac-node/cmake_install.cmake b/build/zephyr/drivers/lora/loramac-node/cmake_install.cmake new file mode 100644 index 0000000..fba9180 --- /dev/null +++ b/build/zephyr/drivers/lora/loramac-node/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/drivers/lora/loramac-node + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/drivers/lora/loramac-node/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/drivers/lora/loramac-node/libloramac-node.a b/build/zephyr/drivers/lora/loramac-node/libloramac-node.a new file mode 100644 index 0000000..19f1760 Binary files /dev/null and b/build/zephyr/drivers/lora/loramac-node/libloramac-node.a differ diff --git a/build/zephyr/drivers/misc/cmake_install.cmake b/build/zephyr/drivers/misc/cmake_install.cmake new file mode 100644 index 0000000..2152e8f --- /dev/null +++ b/build/zephyr/drivers/misc/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/drivers/misc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/drivers/misc/interconn/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/zephyr/drivers/misc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/drivers/misc/interconn/cmake_install.cmake b/build/zephyr/drivers/misc/interconn/cmake_install.cmake new file mode 100644 index 0000000..134077e --- /dev/null +++ b/build/zephyr/drivers/misc/interconn/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/drivers/misc/interconn + +# 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/zephyr/drivers/misc/interconn/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/drivers/pcie/cmake_install.cmake b/build/zephyr/drivers/pcie/cmake_install.cmake new file mode 100644 index 0000000..7537936 --- /dev/null +++ b/build/zephyr/drivers/pcie/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/drivers/pcie + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/drivers/pcie/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj b/build/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj new file mode 100644 index 0000000..08a67fc Binary files /dev/null and b/build/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj differ diff --git a/build/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_esp32.c.obj b/build/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_esp32.c.obj new file mode 100644 index 0000000..3adbb6b Binary files /dev/null and b/build/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_esp32.c.obj differ diff --git a/build/zephyr/drivers/pinctrl/cmake_install.cmake b/build/zephyr/drivers/pinctrl/cmake_install.cmake new file mode 100644 index 0000000..50e9121 --- /dev/null +++ b/build/zephyr/drivers/pinctrl/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/drivers/pinctrl/renesas/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/zephyr/drivers/pinctrl/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/drivers/pinctrl/libdrivers__pinctrl.a b/build/zephyr/drivers/pinctrl/libdrivers__pinctrl.a new file mode 100644 index 0000000..b21bcd6 Binary files /dev/null and b/build/zephyr/drivers/pinctrl/libdrivers__pinctrl.a differ diff --git a/build/zephyr/drivers/pinctrl/renesas/cmake_install.cmake b/build/zephyr/drivers/pinctrl/renesas/cmake_install.cmake new file mode 100644 index 0000000..44beea8 --- /dev/null +++ b/build/zephyr/drivers/pinctrl/renesas/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/renesas + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/drivers/pinctrl/renesas/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/serial_esp32_usb.c.obj b/build/zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/serial_esp32_usb.c.obj new file mode 100644 index 0000000..e9c44d6 Binary files /dev/null and b/build/zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/serial_esp32_usb.c.obj differ diff --git a/build/zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/uart_esp32.c.obj b/build/zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/uart_esp32.c.obj new file mode 100644 index 0000000..935e575 Binary files /dev/null and b/build/zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/uart_esp32.c.obj differ diff --git a/build/zephyr/drivers/serial/cmake_install.cmake b/build/zephyr/drivers/serial/cmake_install.cmake new file mode 100644 index 0000000..4758826 --- /dev/null +++ b/build/zephyr/drivers/serial/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/drivers/serial + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/drivers/serial/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/drivers/serial/libdrivers__serial.a b/build/zephyr/drivers/serial/libdrivers__serial.a new file mode 100644 index 0000000..b9386e2 Binary files /dev/null and b/build/zephyr/drivers/serial/libdrivers__serial.a differ diff --git a/build/zephyr/drivers/spi/CMakeFiles/drivers__spi.dir/spi_esp32_spim.c.obj b/build/zephyr/drivers/spi/CMakeFiles/drivers__spi.dir/spi_esp32_spim.c.obj new file mode 100644 index 0000000..9fcee5b Binary files /dev/null and b/build/zephyr/drivers/spi/CMakeFiles/drivers__spi.dir/spi_esp32_spim.c.obj differ diff --git a/build/zephyr/drivers/spi/cmake_install.cmake b/build/zephyr/drivers/spi/cmake_install.cmake new file mode 100644 index 0000000..df56f6e --- /dev/null +++ b/build/zephyr/drivers/spi/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/drivers/spi + +# 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/drivers/spi/spi_nxp_lpspi/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/zephyr/drivers/spi/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/drivers/spi/libdrivers__spi.a b/build/zephyr/drivers/spi/libdrivers__spi.a new file mode 100644 index 0000000..21b5321 Binary files /dev/null and b/build/zephyr/drivers/spi/libdrivers__spi.a differ diff --git a/build/zephyr/drivers/spi/spi_nxp_lpspi/cmake_install.cmake b/build/zephyr/drivers/spi/spi_nxp_lpspi/cmake_install.cmake new file mode 100644 index 0000000..75ad25b --- /dev/null +++ b/build/zephyr/drivers/spi/spi_nxp_lpspi/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/drivers/spi/spi_nxp_lpspi + +# 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/zephyr/drivers/spi/spi_nxp_lpspi/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj b/build/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj new file mode 100644 index 0000000..8436654 Binary files /dev/null and b/build/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj differ diff --git a/build/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/xtensa_sys_timer.c.obj b/build/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/xtensa_sys_timer.c.obj new file mode 100644 index 0000000..3a836a3 Binary files /dev/null and b/build/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/xtensa_sys_timer.c.obj differ diff --git a/build/zephyr/drivers/timer/cmake_install.cmake b/build/zephyr/drivers/timer/cmake_install.cmake new file mode 100644 index 0000000..83c3fbc --- /dev/null +++ b/build/zephyr/drivers/timer/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/drivers/timer + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/drivers/timer/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/drivers/timer/libdrivers__timer.a b/build/zephyr/drivers/timer/libdrivers__timer.a new file mode 100644 index 0000000..bc14b38 Binary files /dev/null and b/build/zephyr/drivers/timer/libdrivers__timer.a differ diff --git a/build/zephyr/drivers/usb/cmake_install.cmake b/build/zephyr/drivers/usb/cmake_install.cmake new file mode 100644 index 0000000..7689536 --- /dev/null +++ b/build/zephyr/drivers/usb/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/drivers/usb + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/drivers/usb/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/zephyr/drivers/usb/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/drivers/usb/common/buf/cmake_install.cmake b/build/zephyr/drivers/usb/common/buf/cmake_install.cmake new file mode 100644 index 0000000..62186f2 --- /dev/null +++ b/build/zephyr/drivers/usb/common/buf/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/drivers/usb/common/buf + +# 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/zephyr/drivers/usb/common/buf/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/drivers/usb/common/cmake_install.cmake b/build/zephyr/drivers/usb/common/cmake_install.cmake new file mode 100644 index 0000000..1e76fab --- /dev/null +++ b/build/zephyr/drivers/usb/common/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/drivers/usb/common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/drivers/usb/common/buf/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/zephyr/drivers/usb/common/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/drivers/usb_c/cmake_install.cmake b/build/zephyr/drivers/usb_c/cmake_install.cmake new file mode 100644 index 0000000..355f5f7 --- /dev/null +++ b/build/zephyr/drivers/usb_c/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/drivers/usb_c + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/drivers/usb_c/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/edt.pickle b/build/zephyr/edt.pickle new file mode 100644 index 0000000..0ddd757 Binary files /dev/null and b/build/zephyr/edt.pickle differ diff --git a/build/zephyr/edt.pickle.cmake b/build/zephyr/edt.pickle.cmake new file mode 100644 index 0000000..7ea2994 --- /dev/null +++ b/build/zephyr/edt.pickle.cmake @@ -0,0 +1,1422 @@ +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,canbus" "/soc/can@6002b000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,entropy" "/soc/trng@6003507c") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,flash-controller" "/soc/flash-controller@60002000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,sram" "/soc/memory@3fc88000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,console" "/soc/uart@60038000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,shell-uart" "/soc/uart@60038000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,flash" "/soc/flash-controller@60002000/flash@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,code-partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@20000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,bt-hci" "/esp32_bt_hci") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|loramodem,kiss-uart" "/soc/uart@60038000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|i2c-0" "/soc/i2c@60013000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|lora0" "/soc/spi@60024000/lora@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|die-temp0" "/soc/coretemp@60008800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|watchdog0" "/soc/watchdog@6001f048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|led0" "/leds/led_0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/|compatible" "seeed,xiao-esp32s3") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/chosen" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/chosen|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/chosen|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/chosen|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/chosen" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/aliases" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/aliases|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/aliases|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/aliases|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/aliases" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc|compatible" "simple-bus") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc|ranges" "None") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/memory@42000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|icache0" "/soc/memory@42000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@42000000|zephyr,memory-region" "ICACHE0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@42000000|compatible" "zephyr,memory-region") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@42000000|reg" "1107296256;33554432") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@42000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@42000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@42000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@42000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@42000000|ADDR" "0x42000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@42000000|SIZE" "0x2000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/memory@42000000" "0x42000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/memory@3c000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|dcache0" "/soc/memory@3c000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3c000000|zephyr,memory-region" "DCACHE0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3c000000|compatible" "zephyr,memory-region") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3c000000|reg" "1006632960;33554432") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3c000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3c000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3c000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3c000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3c000000|ADDR" "0x3c000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3c000000|SIZE" "0x2000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/memory@3c000000" "0x3c000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/memory@3c000000/psram0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|psram0" "/soc/memory@3c000000/psram0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3c000000/psram0|size" "8388608") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3c000000/psram0|compatible" "espressif,esp32-psram") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3c000000/psram0|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3c000000/psram0|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3c000000/psram0|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3c000000/psram0|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3c000000/psram0|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3c000000/psram0|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/memory@3c000000/psram0" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/memory@40370000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|sram0" "/soc/memory@40370000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@40370000|zephyr,memory-region" "SRAM0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@40370000|compatible" "zephyr,memory-region;mmio-sram") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@40370000|reg" "1077346304;32768") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@40370000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@40370000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@40370000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@40370000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@40370000|ADDR" "0x40370000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@40370000|SIZE" "0x8000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/memory@40370000" "0x40370000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/memory@3fc88000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|sram1" "/soc/memory@3fc88000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fc88000|zephyr,memory-region" "SRAM1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fc88000|compatible" "zephyr,memory-region;mmio-sram") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fc88000|reg" "1070104576;425984") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fc88000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fc88000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fc88000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fc88000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fc88000|ADDR" "0x3fc88000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fc88000|SIZE" "0x68000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/memory@3fc88000" "0x3fc88000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/memory@3fcf0000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|sram2" "/soc/memory@3fcf0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fcf0000|zephyr,memory-region" "SRAM2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fcf0000|compatible" "zephyr,memory-region;mmio-sram") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fcf0000|reg" "1070530560;65536") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fcf0000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fcf0000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fcf0000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fcf0000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fcf0000|ADDR" "0x3fcf0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fcf0000|SIZE" "0x10000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/memory@3fcf0000" "0x3fcf0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/memory@3fce5000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|ipmmem0" "/soc/memory@3fce5000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fce5000|reg" "1070485504;1024") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fce5000|compatible" "mmio-sram") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fce5000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fce5000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fce5000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fce5000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fce5000|ADDR" "0x3fce5000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fce5000|SIZE" "0x400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/memory@3fce5000" "0x3fce5000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/memory@3fce5400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|shm0" "/soc/memory@3fce5400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fce5400|reg" "1070486528;16384") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fce5400|compatible" "mmio-sram") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fce5400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fce5400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fce5400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fce5400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fce5400|ADDR" "0x3fce5400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fce5400|SIZE" "0x4000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/memory@3fce5400" "0x3fce5400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/ipm@3fce9400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|ipm0" "/soc/ipm@3fce9400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ipm@3fce9400|reg" "1070502912;8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ipm@3fce9400|shared-memory" "/soc/memory@3fce5000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ipm@3fce9400|shared-memory-size" "1024") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ipm@3fce9400|interrupts" "79;0;0;80;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ipm@3fce9400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ipm@3fce9400|compatible" "espressif,esp32-ipm") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ipm@3fce9400|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ipm@3fce9400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ipm@3fce9400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ipm@3fce9400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ipm@3fce9400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ipm@3fce9400|ADDR" "0x3fce9400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ipm@3fce9400|SIZE" "0x8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/ipm@3fce9400" "0x3fce9400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/mbox@3fce9408" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|mbox0" "/soc/mbox@3fce9408") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mbox@3fce9408|reg" "1070502920;8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mbox@3fce9408|shared-memory" "/soc/memory@3fce5000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mbox@3fce9408|shared-memory-size" "1024") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mbox@3fce9408|interrupts" "79;0;0;80;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mbox@3fce9408|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mbox@3fce9408|compatible" "espressif,mbox-esp32") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mbox@3fce9408|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mbox@3fce9408|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mbox@3fce9408|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mbox@3fce9408|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/mbox@3fce9408|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/mbox@3fce9408|ADDR" "0x3fce9408") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/mbox@3fce9408|SIZE" "0x8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/mbox@3fce9408" "0x3fce9408") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/memory@50000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|rtc_slow_ram" "/soc/memory@50000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@50000000|zephyr,memory-region" "RTC_SLOW_RAM") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@50000000|compatible" "zephyr,memory-region;mmio-sram") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@50000000|reg" "1342177280;8192") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@50000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@50000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@50000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@50000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@50000000|ADDR" "0x50000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@50000000|SIZE" "0x2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/memory@50000000" "0x50000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/memory@600fe000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|rtc_fast_ram" "/soc/memory@600fe000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@600fe000|zephyr,memory-region" "RTC_FAST_RAM") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@600fe000|compatible" "zephyr,memory-region;mmio-sram") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@600fe000|reg" "1611653120;8192") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@600fe000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@600fe000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@600fe000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@600fe000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@600fe000|ADDR" "0x600fe000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@600fe000|SIZE" "0x2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/memory@600fe000" "0x600fe000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/interrupt-controller@600c2000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|intc" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@600c2000|reg" "1611407360;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@600c2000|interrupt-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@600c2000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@600c2000|compatible" "espressif,esp32-intc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@600c2000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@600c2000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@600c2000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/interrupt-controller@600c2000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/interrupt-controller@600c2000|ADDR" "0x600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/interrupt-controller@600c2000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/interrupt-controller@600c2000" "0x600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/xt_wdt@60021004" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|xt_wdt" "/soc/xt_wdt@60021004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/xt_wdt@60021004|reg" "1610747908;4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/xt_wdt@60021004|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/xt_wdt@60021004|compatible" "espressif,esp32-xt-wdt") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/xt_wdt@60021004|interrupts" "39;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/xt_wdt@60021004|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/xt_wdt@60021004|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/xt_wdt@60021004|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/xt_wdt@60021004|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/xt_wdt@60021004|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/xt_wdt@60021004|ADDR" "0x60021004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/xt_wdt@60021004|SIZE" "0x4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/xt_wdt@60021004" "0x60021004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/rtc_timer@60008004" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|rtc_timer" "/soc/rtc_timer@60008004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc_timer@60008004|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc_timer@60008004|compatible" "espressif,esp32-rtc-timer") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc_timer@60008004|reg" "1610645508;12") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc_timer@60008004|interrupts" "39;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc_timer@60008004|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc_timer@60008004|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc_timer@60008004|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc_timer@60008004|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc_timer@60008004|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc_timer@60008004|ADDR" "0x60008004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc_timer@60008004|SIZE" "0xc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/rtc_timer@60008004" "0x60008004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|flash" "/soc/flash-controller@60002000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000|reg" "1610620928;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000|compatible" "espressif,esp32-flash-controller") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000|ADDR" "0x60002000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000" "0x60002000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|flash0" "/soc/flash-controller@60002000/flash@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0|erase-block-size" "4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0|write-block-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0|compatible" "soc-nv-flash") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0|reg" "0;8388608") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0|ADDR" "0x0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0|SIZE" "0x800000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0" "0x0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions|compatible" "fixed-partitions") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions/partition@0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|boot_partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@0|label" "mcuboot") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@0|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@0|reg" "0;65536") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@0|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@0|ADDR" "0x0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@0|SIZE" "0x10000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions/partition@0" "0x0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions/partition@10000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|sys_partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@10000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@10000|label" "sys") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@10000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@10000|reg" "65536;65536") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@10000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@10000|ADDR" "0x10000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@10000|SIZE" "0x10000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions/partition@10000" "0x10000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions/partition@20000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|slot0_partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@20000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@20000|label" "image-0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@20000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@20000|reg" "131072;1376256") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@20000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@20000|ADDR" "0x20000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@20000|SIZE" "0x150000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions/partition@20000" "0x20000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions/partition@170000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|slot1_partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@170000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@170000|label" "image-1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@170000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@170000|reg" "1507328;1376256") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@170000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@170000|ADDR" "0x170000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@170000|SIZE" "0x150000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions/partition@170000" "0x170000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions/partition@2c0000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|slot0_appcpu_partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@2c0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@2c0000|label" "image-0-appcpu") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@2c0000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@2c0000|reg" "2883584;458752") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@2c0000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@2c0000|ADDR" "0x2c0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@2c0000|SIZE" "0x70000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions/partition@2c0000" "0x2c0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions/partition@330000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|slot1_appcpu_partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@330000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@330000|label" "image-1-appcpu") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@330000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@330000|reg" "3342336;458752") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@330000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@330000|ADDR" "0x330000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@330000|SIZE" "0x70000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions/partition@330000" "0x330000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions/partition@3a0000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|slot0_lpcore_partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@3a0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3a0000|label" "image-0-lpcore") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3a0000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3a0000|reg" "3801088;32768") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3a0000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3a0000|ADDR" "0x3a0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3a0000|SIZE" "0x8000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions/partition@3a0000" "0x3a0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions/partition@3a8000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|slot1_lpcore_partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@3a8000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3a8000|label" "image-1-lpcore") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3a8000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3a8000|reg" "3833856;32768") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3a8000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3a8000|ADDR" "0x3a8000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3a8000|SIZE" "0x8000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions/partition@3a8000" "0x3a8000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions/partition@3b0000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|storage_partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@3b0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3b0000|label" "storage") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3b0000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3b0000|reg" "3866624;196608") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3b0000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3b0000|ADDR" "0x3b0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3b0000|SIZE" "0x30000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions/partition@3b0000" "0x3b0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions/partition@3e0000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|scratch_partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@3e0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3e0000|label" "image-scratch") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3e0000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3e0000|reg" "4063232;126976") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3e0000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3e0000|ADDR" "0x3e0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3e0000|SIZE" "0x1f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions/partition@3e0000" "0x3e0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions/partition@3ff000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|coredump_partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@3ff000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3ff000|label" "coredump") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3ff000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3ff000|reg" "4190208;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3ff000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3ff000|ADDR" "0x3ff000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3ff000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions/partition@3ff000" "0x3ff000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/uart@60000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|uart0" "/soc/uart@60000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|xiao_serial" "/soc/uart@60000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|reg" "1610612736;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|pinctrl-0" "/pin-controller/uart0_default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|pinctrl-names" "default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|stop-bits" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|data-bits" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|hw-rs485-hd-mode" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|uhci-slip-tx" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|uhci-slip-rx" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|current-speed" "115200") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|compatible" "espressif,esp32-uart") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|interrupts" "27;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|tx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|rx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@60000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@60000000|ADDR" "0x60000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@60000000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/uart@60000000" "0x60000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/uart@60010000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|uart1" "/soc/uart@60010000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|reg" "1610678272;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|stop-bits" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|data-bits" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|hw-rs485-hd-mode" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|uhci-slip-tx" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|uhci-slip-rx" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|compatible" "espressif,esp32-uart") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|interrupts" "28;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|tx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|rx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@60010000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@60010000|ADDR" "0x60010000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@60010000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/uart@60010000" "0x60010000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/uart@6002e000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|uart2" "/soc/uart@6002e000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|reg" "1610801152;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|stop-bits" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|data-bits" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|hw-rs485-hd-mode" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|uhci-slip-tx" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|uhci-slip-rx" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|compatible" "espressif,esp32-uart") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|interrupts" "29;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|tx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|rx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@6002e000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@6002e000|ADDR" "0x6002e000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@6002e000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/uart@6002e000" "0x6002e000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/gpio" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpio" "/soc/gpio") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio|compatible" "simple-bus") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio|ranges" "None") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/gpio" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/gpio/gpio@60004000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpio0" "/soc/gpio/gpio@60004000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004000|reg" "1610629120;2048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004000|gpio-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004000|ngpios" "32") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004000|compatible" "espressif,esp32-gpio") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004000|interrupts" "16;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio/gpio@60004000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio/gpio@60004000|ADDR" "0x60004000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio/gpio@60004000|SIZE" "0x800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/gpio/gpio@60004000" "0x60004000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/gpio/gpio@60004800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpio1" "/soc/gpio/gpio@60004800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004800|reg" "1610631168;2048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004800|gpio-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004800|ngpios" "22") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004800|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004800|compatible" "espressif,esp32-gpio") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004800|interrupts" "16;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004800|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio/gpio@60004800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio/gpio@60004800|ADDR" "0x60004800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio/gpio@60004800|SIZE" "0x800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/gpio/gpio@60004800" "0x60004800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/touch@6000885c" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|touch" "/soc/touch@6000885c") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|debounce-interval-ms" "30") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|href-microvolt" "2700000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|lref-microvolt" "500000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|href-atten-microvolt" "1000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|filter-mode" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|filter-debounce-cnt" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|filter-noise-thr" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|filter-jitter-step" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|filter-smooth-level" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|compatible" "espressif,esp32-touch") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|reg" "1610647644;136;1610647816;24") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|interrupts" "39;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/touch@6000885c|NUM" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/touch@6000885c|ADDR" "0x6000885c;0x60008908") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/touch@6000885c|SIZE" "0x88;0x18") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/touch@6000885c" "0x6000885c") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/i2c@60013000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|i2c0" "/soc/i2c@60013000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|xiao_i2c" "/soc/i2c@60013000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|reg" "1610690560;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|pinctrl-0" "/pin-controller/i2c0_default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|pinctrl-names" "default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|tx-lsb" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|rx-lsb" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|clock-frequency" "100000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|sq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|cq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|compatible" "espressif,esp32-i2c") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|interrupts" "42;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@60013000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@60013000|ADDR" "0x60013000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@60013000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/i2c@60013000" "0x60013000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/i2c@60027000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|i2c1" "/soc/i2c@60027000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|reg" "1610772480;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|tx-lsb" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|rx-lsb" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|sq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|cq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|compatible" "espressif,esp32-i2c") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|interrupts" "43;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@60027000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@60027000|ADDR" "0x60027000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@60027000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/i2c@60027000" "0x60027000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/i2s@6000f000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|i2s0" "/soc/i2s@6000f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6000f000|reg" "1610674176;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6000f000|interrupts" "25;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6000f000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6000f000|unit" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6000f000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6000f000|compatible" "espressif,esp32-i2s") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6000f000|dma-names" "rx;tx") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6000f000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6000f000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6000f000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2s@6000f000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2s@6000f000|ADDR" "0x6000f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2s@6000f000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/i2s@6000f000" "0x6000f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/i2s@6002d000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|i2s1" "/soc/i2s@6002d000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6002d000|reg" "1610797056;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6002d000|interrupts" "26;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6002d000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6002d000|unit" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6002d000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6002d000|compatible" "espressif,esp32-i2s") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6002d000|dma-names" "rx;tx") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6002d000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6002d000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6002d000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2s@6002d000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2s@6002d000|ADDR" "0x6002d000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2s@6002d000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/i2s@6002d000" "0x6002d000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/spi@60024000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|spi2" "/soc/spi@60024000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|xiao_spi" "/soc/spi@60024000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|reg" "1610760192;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|pinctrl-0" "/pin-controller/spim2_default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|pinctrl-names" "default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|half-duplex" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|dummy-comp" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|sio" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|dma-enabled" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|dma-host" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|clk-as-cs" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|positive-cs" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|use-iomux" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|line-idle-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|compatible" "espressif,esp32-spi") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|interrupts" "21;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@60024000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@60024000|ADDR" "0x60024000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@60024000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/spi@60024000" "0x60024000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/spi@60024000/lora@0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|lora" "/soc/spi@60024000/lora@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|dio2-tx-enable" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|rx-boosted" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|regulator-ldo" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|force-ldro" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|reg" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|spi-max-frequency" "4000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|duplex" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|frame-format" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|spi-cpol" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|spi-cpha" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|spi-lsb-first" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|spi-hold-cs" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|spi-cs-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|spi-interframe-delay-ns" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|compatible" "semtech,sx1262") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@60024000/lora@0|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@60024000/lora@0|ADDR" "0x0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@60024000/lora@0|SIZE" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/spi@60024000/lora@0" "0x0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/spi@60025000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|spi3" "/soc/spi@60025000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|reg" "1610764288;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|half-duplex" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|dummy-comp" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|sio" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|dma-enabled" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|dma-host" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|clk-as-cs" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|positive-cs" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|use-iomux" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|line-idle-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|compatible" "espressif,esp32-spi") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|interrupts" "22;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@60025000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@60025000|ADDR" "0x60025000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@60025000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/spi@60025000" "0x60025000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/coretemp@60008800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|coretemp" "/soc/coretemp@60008800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/coretemp@60008800|range-min" "-10") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/coretemp@60008800|range-max" "80") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/coretemp@60008800|friendly-name" "coretemp") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/coretemp@60008800|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/coretemp@60008800|compatible" "espressif,esp32-temp") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/coretemp@60008800|reg" "1610647552;4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/coretemp@60008800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/coretemp@60008800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/coretemp@60008800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/coretemp@60008800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/coretemp@60008800|ADDR" "0x60008800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/coretemp@60008800|SIZE" "0x4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/coretemp@60008800" "0x60008800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/adc@60040000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|adc0" "/soc/adc@60040000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|xiao_adc" "/soc/adc@60040000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040000|unit" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040000|channel-count" "10") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040000|compatible" "espressif,esp32-adc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040000|reg" "1610874880;4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@60040000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@60040000|ADDR" "0x60040000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@60040000|SIZE" "0x4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/adc@60040000" "0x60040000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/adc@60040004" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|adc1" "/soc/adc@60040004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040004|unit" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040004|channel-count" "10") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040004|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040004|compatible" "espressif,esp32-adc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040004|reg" "1610874884;4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040004|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040004|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040004|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@60040004|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@60040004|ADDR" "0x60040004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@60040004|SIZE" "0x4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/adc@60040004" "0x60040004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/can@6002b000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|twai" "/soc/can@6002b000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@6002b000|reg" "1610788864;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@6002b000|interrupts" "37;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@6002b000|pinctrl-0" "/pin-controller/twai_default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@6002b000|pinctrl-names" "default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@6002b000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@6002b000|compatible" "espressif,esp32-twai") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@6002b000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@6002b000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@6002b000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@6002b000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/can@6002b000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/can@6002b000|ADDR" "0x6002b000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/can@6002b000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/can@6002b000" "0x6002b000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/lcd_cam@60041000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|lcd_cam" "/soc/lcd_cam@60041000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000|compatible" "espressif,esp32-lcd-cam") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000|reg" "1610878976;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000|interrupts" "24;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000|dma-names" "rx;tx") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/lcd_cam@60041000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/lcd_cam@60041000|ADDR" "0x60041000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/lcd_cam@60041000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/lcd_cam@60041000" "0x60041000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/lcd_cam@60041000/lcd_cam_dvp" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|lcd_cam_dvp" "/soc/lcd_cam@60041000/lcd_cam_dvp") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000/lcd_cam_dvp|invert-byte-order" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000/lcd_cam_dvp|invert-bit-order" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000/lcd_cam_dvp|invert-pclk" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000/lcd_cam_dvp|invert-de" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000/lcd_cam_dvp|invert-hsync" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000/lcd_cam_dvp|invert-vsync" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/lcd_cam@60041000/lcd_cam_dvp|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/lcd_cam@60041000/lcd_cam_dvp|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/lcd_cam@60041000/lcd_cam_dvp|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/lcd_cam@60041000/lcd_cam_dvp" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/lcd_cam@60041000/lcd_cam_disp" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|lcd_cam_disp" "/soc/lcd_cam@60041000/lcd_cam_disp") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000/lcd_cam_disp|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000/lcd_cam_disp|compatible" "espressif,esp32-lcd-cam-mipi-dbi") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000/lcd_cam_disp|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000/lcd_cam_disp|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000/lcd_cam_disp|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/lcd_cam@60041000/lcd_cam_disp|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/lcd_cam@60041000/lcd_cam_disp|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/lcd_cam@60041000/lcd_cam_disp|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/lcd_cam@60041000/lcd_cam_disp" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/uart@60038000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usb_serial" "/soc/uart@60038000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60038000|reg" "1610842112;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60038000|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60038000|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60038000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60038000|compatible" "espressif,esp32-usb-serial") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60038000|interrupts" "96;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60038000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60038000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60038000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60038000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@60038000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@60038000|ADDR" "0x60038000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@60038000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/uart@60038000" "0x60038000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/usb_otg@60080000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usb_otg" "/soc/usb_otg@60080000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|reg" "1611137024;262144") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|interrupts" "38;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|num-in-eps" "6") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|num-out-eps" "6") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|ghwcfg1" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|ghwcfg2" "575527216") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|ghwcfg4" "3555762224") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|compatible" "espressif,esp32-usb-otg;snps,dwc2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/usb_otg@60080000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/usb_otg@60080000|ADDR" "0x60080000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/usb_otg@60080000|SIZE" "0x40000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/usb_otg@60080000" "0x60080000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/counter@6001f000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timer0" "/soc/counter@6001f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000|group" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000|index" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000|prescaler" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000|compatible" "espressif,esp32-timer") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000|reg" "1610739712;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000|interrupts" "50;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f000|ADDR" "0x6001f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/counter@6001f000" "0x6001f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/counter@6001f000/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000/counter|compatible" "espressif,esp32-counter") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f000/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f000/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f000/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/counter@6001f000/counter" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/counter@6001f024" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timer1" "/soc/counter@6001f024") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024|group" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024|index" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024|prescaler" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024|compatible" "espressif,esp32-timer") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024|reg" "1610739748;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024|interrupts" "51;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f024|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f024|ADDR" "0x6001f024") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f024|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/counter@6001f024" "0x6001f024") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/counter@6001f024/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024/counter|compatible" "espressif,esp32-counter") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f024/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f024/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f024/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/counter@6001f024/counter" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/counter@60020000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timer2" "/soc/counter@60020000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000|group" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000|index" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000|prescaler" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000|compatible" "espressif,esp32-timer") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000|reg" "1610743808;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000|interrupts" "53;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020000|ADDR" "0x60020000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/counter@60020000" "0x60020000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/counter@60020000/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000/counter|compatible" "espressif,esp32-counter") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020000/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020000/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020000/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/counter@60020000/counter" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/counter@60020024" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timer3" "/soc/counter@60020024") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024|group" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024|index" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024|prescaler" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024|compatible" "espressif,esp32-timer") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024|reg" "1610743844;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024|interrupts" "54;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020024|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020024|ADDR" "0x60020024") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020024|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/counter@60020024" "0x60020024") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/counter@60020024/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024/counter|compatible" "espressif,esp32-counter") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020024/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020024/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020024/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/counter@60020024/counter" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/watchdog@6001f048" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|wdt0" "/soc/watchdog@6001f048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@6001f048|reg" "1610739784;32") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@6001f048|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@6001f048|compatible" "espressif,esp32-watchdog") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@6001f048|interrupts" "52;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@6001f048|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@6001f048|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@6001f048|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@6001f048|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@6001f048|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@6001f048|ADDR" "0x6001f048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@6001f048|SIZE" "0x20") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/watchdog@6001f048" "0x6001f048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/watchdog@60020048" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|wdt1" "/soc/watchdog@60020048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@60020048|reg" "1610743880;32") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@60020048|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@60020048|compatible" "espressif,esp32-watchdog") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@60020048|interrupts" "55;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@60020048|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@60020048|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@60020048|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@60020048|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@60020048|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@60020048|ADDR" "0x60020048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@60020048|SIZE" "0x20") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/watchdog@60020048" "0x60020048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/trng@6003507c" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|trng0" "/soc/trng@6003507c") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/trng@6003507c|reg" "1610829948;4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/trng@6003507c|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/trng@6003507c|compatible" "espressif,esp32-trng") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/trng@6003507c|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/trng@6003507c|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/trng@6003507c|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/trng@6003507c|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/trng@6003507c|ADDR" "0x6003507c") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/trng@6003507c|SIZE" "0x4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/trng@6003507c" "0x6003507c") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/ledc@60019000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|ledc0" "/soc/ledc@60019000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ledc@60019000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ledc@60019000|compatible" "espressif,esp32-ledc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ledc@60019000|reg" "1610715136;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ledc@60019000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ledc@60019000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ledc@60019000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ledc@60019000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ledc@60019000|ADDR" "0x60019000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ledc@60019000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/ledc@60019000" "0x60019000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/mcpwm@6001e000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|mcpwm0" "/soc/mcpwm@6001e000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6001e000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6001e000|compatible" "espressif,esp32-mcpwm") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6001e000|reg" "1610735616;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6001e000|interrupts" "31;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6001e000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6001e000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6001e000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6001e000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/mcpwm@6001e000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/mcpwm@6001e000|ADDR" "0x6001e000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/mcpwm@6001e000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/mcpwm@6001e000" "0x6001e000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/mcpwm@6002c000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|mcpwm1" "/soc/mcpwm@6002c000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6002c000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6002c000|compatible" "espressif,esp32-mcpwm") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6002c000|reg" "1610792960;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6002c000|interrupts" "32;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6002c000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6002c000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6002c000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6002c000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/mcpwm@6002c000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/mcpwm@6002c000|ADDR" "0x6002c000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/mcpwm@6002c000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/mcpwm@6002c000" "0x6002c000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pcnt@60017000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|pcnt" "/soc/pcnt@60017000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pcnt@60017000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pcnt@60017000|compatible" "espressif,esp32-pcnt") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pcnt@60017000|reg" "1610706944;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pcnt@60017000|interrupts" "41;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pcnt@60017000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pcnt@60017000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pcnt@60017000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pcnt@60017000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pcnt@60017000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pcnt@60017000|ADDR" "0x60017000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pcnt@60017000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/pcnt@60017000" "0x60017000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/dma@6003f000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|dma" "/soc/dma@6003f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@6003f000|dma-channels" "10") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@6003f000|dma-buf-addr-alignment" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@6003f000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@6003f000|compatible" "espressif,esp32-gdma") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@6003f000|reg" "1610870784;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@6003f000|interrupts" "66;0;256;71;0;256;67;0;256;72;0;256;68;0;256;73;0;256;69;0;256;74;0;256;70;0;256;75;0;256") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@6003f000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@6003f000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@6003f000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@6003f000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dma@6003f000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dma@6003f000|ADDR" "0x6003f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dma@6003f000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/dma@6003f000" "0x6003f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/sdhc@60028000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|sdhc" "/soc/sdhc@60028000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000|reg" "1610776576;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000|interrupts" "30;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000|compatible" "espressif,esp32-sdhc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sdhc@60028000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sdhc@60028000|ADDR" "0x60028000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sdhc@60028000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/sdhc@60028000" "0x60028000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/sdhc@60028000/sdhc@0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|sdhc0" "/soc/sdhc@60028000/sdhc@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|reg" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|bus-width" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|max-current-330" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|max-current-300" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|max-current-180" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|max-bus-freq" "400000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|min-bus-freq" "400000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|power-delay-ms" "500") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|mmc-hs200-1_8v" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|mmc-hs400-1_8v" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|compatible" "espressif,esp32-sdhc-slot") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sdhc@60028000/sdhc@0|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sdhc@60028000/sdhc@0|ADDR" "0x0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sdhc@60028000/sdhc@0|SIZE" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/sdhc@60028000/sdhc@0" "0x0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/sdhc@60028000/sdhc@1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|sdhc1" "/soc/sdhc@60028000/sdhc@1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|reg" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|bus-width" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|max-current-330" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|max-current-300" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|max-current-180" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|max-bus-freq" "400000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|min-bus-freq" "400000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|power-delay-ms" "500") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|mmc-hs200-1_8v" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|mmc-hs400-1_8v" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|compatible" "espressif,esp32-sdhc-slot") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sdhc@60028000/sdhc@1|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sdhc@60028000/sdhc@1|ADDR" "0x1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sdhc@60028000/sdhc@1|SIZE" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/sdhc@60028000/sdhc@1" "0x1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/sha@6003b000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|sha" "/soc/sha@6003b000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sha@6003b000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sha@6003b000|compatible" "espressif,esp32-sha") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sha@6003b000|reg" "1610854400;256") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sha@6003b000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sha@6003b000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sha@6003b000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sha@6003b000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sha@6003b000|ADDR" "0x6003b000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sha@6003b000|SIZE" "0x100") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/sha@6003b000" "0x6003b000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/aes@6003a000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|aes" "/soc/aes@6003a000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/aes@6003a000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/aes@6003a000|compatible" "espressif,esp32-aes") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/aes@6003a000|reg" "1610850304;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/aes@6003a000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/aes@6003a000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/aes@6003a000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/aes@6003a000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/aes@6003a000|ADDR" "0x6003a000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/aes@6003a000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/aes@6003a000" "0x6003a000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/cpus" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus/cpu@0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|cpu0" "/cpus/cpu@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|clock-source" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|xtal-freq" "40000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|clock-frequency" "240000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|cpu-power-states" "/cpus/power-states/light_sleep;/cpus/power-states/deep_sleep") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|compatible" "espressif,xtensa-lx7") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|reg" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@0|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@0|ADDR" "0x0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@0|SIZE" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/cpus/cpu@0" "0x0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus/cpu@1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|cpu1" "/cpus/cpu@1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@1|clock-source" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@1|xtal-freq" "40000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@1|clock-frequency" "240000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@1|compatible" "espressif,xtensa-lx7") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@1|reg" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@1|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@1|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@1|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@1|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@1|ADDR" "0x1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@1|SIZE" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/cpus/cpu@1" "0x1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus/power-states" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/cpus/power-states" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus/power-states/light_sleep" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|light_sleep" "/cpus/power-states/light_sleep") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/light_sleep|power-state-name" "standby") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/light_sleep|min-residency-us" "1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/light_sleep|exit-latency-us" "50") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/light_sleep|zephyr,pm-device-disabled" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/light_sleep|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/light_sleep|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/light_sleep|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/cpus/power-states/light_sleep" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus/power-states/deep_sleep" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|deep_sleep" "/cpus/power-states/deep_sleep") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/deep_sleep|power-state-name" "soft-off") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/deep_sleep|zephyr,pm-device-disabled" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/deep_sleep|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/deep_sleep|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/deep_sleep|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/cpus/power-states/deep_sleep" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/wifi" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|wifi" "/wifi") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/wifi|compatible" "espressif,esp32-wifi") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/wifi|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/wifi|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/wifi|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/wifi|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/wifi" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/esp32_bt_hci" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|esp32_bt_hci" "/esp32_bt_hci") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/esp32_bt_hci|bt-hci-name" "BT ESP32") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/esp32_bt_hci|bt-hci-bus" "ipc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/esp32_bt_hci|bt-hci-quirks" "no-auto-dle") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/esp32_bt_hci|bt-hci-vs-ext" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/esp32_bt_hci|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/esp32_bt_hci|compatible" "espressif,esp32-bt-hci") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/esp32_bt_hci|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/esp32_bt_hci|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/esp32_bt_hci|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/esp32_bt_hci|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/esp32_bt_hci|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/esp32_bt_hci|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/esp32_bt_hci" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|pinctrl" "/pin-controller") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller|compatible" "espressif,esp32-pinctrl") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/uart0_default" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|uart0_default" "/pin-controller/uart0_default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/uart0_default|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/uart0_default|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/uart0_default|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/uart0_default" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/uart0_default/group1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group1|pinmux" "425963") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group1|sleep-hold-en" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group1|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group1|bias-pull-up" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group1|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group1|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group1|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group1|input-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group1|output-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group1|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group1|output-high" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/uart0_default/group1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/uart0_default/group1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/uart0_default/group1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/uart0_default/group1" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/uart0_default/group2" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group2|pinmux" "16745260") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group2|sleep-hold-en" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group2|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group2|bias-pull-up" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group2|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group2|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group2|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group2|input-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group2|output-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group2|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group2|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/uart0_default/group2|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/uart0_default/group2|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/uart0_default/group2|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/uart0_default/group2" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/spim2_default" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|spim2_default" "/pin-controller/spim2_default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/spim2_default|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/spim2_default|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/spim2_default|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/spim2_default" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/spim2_default/group1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group1|pinmux" "16750984;3342279") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group1|sleep-hold-en" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group1|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group1|bias-pull-up" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group1|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group1|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group1|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group1|input-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group1|output-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group1|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group1|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/spim2_default/group1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/spim2_default/group1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/spim2_default/group1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/spim2_default/group1" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/spim2_default/group2" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group2|pinmux" "3407817") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group2|sleep-hold-en" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group2|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group2|bias-pull-up" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group2|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group2|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group2|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group2|input-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group2|output-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group2|output-low" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group2|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/spim2_default/group2|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/spim2_default/group2|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/spim2_default/group2|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/spim2_default/group2" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/i2c0_default" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|i2c0_default" "/pin-controller/i2c0_default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c0_default|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c0_default|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c0_default|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/i2c0_default" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/i2c0_default/group1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c0_default/group1|pinmux" "2954885;2922054") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c0_default/group1|sleep-hold-en" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c0_default/group1|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c0_default/group1|bias-pull-up" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c0_default/group1|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c0_default/group1|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c0_default/group1|drive-open-drain" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c0_default/group1|input-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c0_default/group1|output-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c0_default/group1|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c0_default/group1|output-high" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c0_default/group1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c0_default/group1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c0_default/group1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/i2c0_default/group1" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/i2c1_default" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|i2c1_default" "/pin-controller/i2c1_default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c1_default|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c1_default|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c1_default|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/i2c1_default" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/i2c1_default/group1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c1_default/group1|pinmux" "3020584;2987751") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c1_default/group1|sleep-hold-en" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c1_default/group1|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c1_default/group1|bias-pull-up" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c1_default/group1|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c1_default/group1|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c1_default/group1|drive-open-drain" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c1_default/group1|input-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c1_default/group1|output-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c1_default/group1|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c1_default/group1|output-high" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c1_default/group1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c1_default/group1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c1_default/group1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/i2c1_default/group1" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/lcd_cam_default" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|lcd_cam_default" "/pin-controller/lcd_cam_default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/lcd_cam_default|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/lcd_cam_default|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/lcd_cam_default|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/lcd_cam_default" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/lcd_cam_default/group1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group1|pinmux" "4915146") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group1|sleep-hold-en" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group1|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group1|bias-pull-up" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group1|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group1|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group1|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group1|input-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group1|output-enable" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group1|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group1|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/lcd_cam_default/group1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/lcd_cam_default/group1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/lcd_cam_default/group1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/lcd_cam_default/group1" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/lcd_cam_default/group2" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group2|pinmux" "16754214;16754095;16753997;16752975;16753041;16753106;16753168;16753230;16753292;16753355;16753456") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group2|sleep-hold-en" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group2|bias-disable" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group2|bias-pull-up" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group2|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group2|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group2|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group2|input-enable" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group2|output-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group2|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group2|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/lcd_cam_default/group2|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/lcd_cam_default/group2|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/lcd_cam_default/group2|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/lcd_cam_default/group2" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/twai_default" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|twai_default" "/pin-controller/twai_default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/twai_default|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/twai_default|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/twai_default|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/twai_default" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/twai_default/group1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/twai_default/group1|pinmux" "3833795;16751876") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/twai_default/group1|sleep-hold-en" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/twai_default/group1|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/twai_default/group1|bias-pull-up" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/twai_default/group1|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/twai_default/group1|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/twai_default/group1|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/twai_default/group1|input-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/twai_default/group1|output-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/twai_default/group1|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/twai_default/group1|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/twai_default/group1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/twai_default/group1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/twai_default/group1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/twai_default/group1" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/clock" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|clock" "/clock") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clock|fast-clk-src" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clock|slow-clk-src" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clock|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clock|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clock|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/clock" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/connector" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|xiao_d" "/connector") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/connector|gpio-map-mask" "4294967295;4294967232") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/connector|gpio-map-pass-thru" "0;63") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/connector|compatible" "seeed,xiao-gpio") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/connector|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/connector|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/connector|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/connector|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/connector|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/connector|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/connector" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/leds" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/leds|compatible" "gpio-leds") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/leds" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/leds/led_0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|led0" "/leds/led_0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/leds/led_0|label" "BUILTIN LED") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds/led_0|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds/led_0|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds/led_0|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/leds/led_0" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|seeed,xiao-esp32s3" "/") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|simple-bus" "/soc;/soc/gpio") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|zephyr,memory-region" "/soc/memory@42000000;/soc/memory@3c000000;/soc/memory@40370000;/soc/memory@3fc88000;/soc/memory@3fcf0000;/soc/memory@50000000;/soc/memory@600fe000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-psram" "/soc/memory@3c000000/psram0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|mmio-sram" "/soc/memory@40370000;/soc/memory@3fc88000;/soc/memory@3fcf0000;/soc/memory@3fce5000;/soc/memory@3fce5400;/soc/memory@50000000;/soc/memory@600fe000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-ipm" "/soc/ipm@3fce9400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,mbox-esp32" "/soc/mbox@3fce9408") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-intc" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-xt-wdt" "/soc/xt_wdt@60021004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-rtc-timer" "/soc/rtc_timer@60008004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-flash-controller" "/soc/flash-controller@60002000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|soc-nv-flash" "/soc/flash-controller@60002000/flash@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|fixed-partitions" "/soc/flash-controller@60002000/flash@0/partitions") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-uart" "/soc/uart@60000000;/soc/uart@60010000;/soc/uart@6002e000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-gpio" "/soc/gpio/gpio@60004000;/soc/gpio/gpio@60004800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-touch" "/soc/touch@6000885c") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-i2c" "/soc/i2c@60013000;/soc/i2c@60027000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-i2s" "/soc/i2s@6000f000;/soc/i2s@6002d000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-spi" "/soc/spi@60024000;/soc/spi@60025000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|semtech,sx1262" "/soc/spi@60024000/lora@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-temp" "/soc/coretemp@60008800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-adc" "/soc/adc@60040000;/soc/adc@60040004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-twai" "/soc/can@6002b000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-lcd-cam" "/soc/lcd_cam@60041000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-lcd-cam-dvp" "/soc/lcd_cam@60041000/lcd_cam_dvp") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-lcd-cam-mipi-dbi" "/soc/lcd_cam@60041000/lcd_cam_disp") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-usb-serial" "/soc/uart@60038000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-usb-otg" "/soc/usb_otg@60080000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|snps,dwc2" "/soc/usb_otg@60080000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-timer" "/soc/counter@6001f000;/soc/counter@6001f024;/soc/counter@60020000;/soc/counter@60020024") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-counter" "/soc/counter@6001f000/counter;/soc/counter@6001f024/counter;/soc/counter@60020000/counter;/soc/counter@60020024/counter") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-watchdog" "/soc/watchdog@6001f048;/soc/watchdog@60020048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-trng" "/soc/trng@6003507c") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-ledc" "/soc/ledc@60019000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-mcpwm" "/soc/mcpwm@6001e000;/soc/mcpwm@6002c000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-pcnt" "/soc/pcnt@60017000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-gdma" "/soc/dma@6003f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-sdhc" "/soc/sdhc@60028000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-sdhc-slot" "/soc/sdhc@60028000/sdhc@0;/soc/sdhc@60028000/sdhc@1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-sha" "/soc/sha@6003b000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-aes" "/soc/aes@6003a000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,xtensa-lx7" "/cpus/cpu@0;/cpus/cpu@1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|zephyr,power-state" "/cpus/power-states/light_sleep;/cpus/power-states/deep_sleep") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-wifi" "/wifi") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-bt-hci" "/esp32_bt_hci") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-pinctrl" "/pin-controller") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-clock" "/clock") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|seeed,xiao-gpio" "/connector") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|gpio-leds" "/leds") diff --git a/build/zephyr/edt.pickle.cmake.new b/build/zephyr/edt.pickle.cmake.new new file mode 100644 index 0000000..7ea2994 --- /dev/null +++ b/build/zephyr/edt.pickle.cmake.new @@ -0,0 +1,1422 @@ +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,canbus" "/soc/can@6002b000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,entropy" "/soc/trng@6003507c") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,flash-controller" "/soc/flash-controller@60002000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,sram" "/soc/memory@3fc88000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,console" "/soc/uart@60038000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,shell-uart" "/soc/uart@60038000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,flash" "/soc/flash-controller@60002000/flash@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,code-partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@20000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|zephyr,bt-hci" "/esp32_bt_hci") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_CHOSEN|loramodem,kiss-uart" "/soc/uart@60038000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|i2c-0" "/soc/i2c@60013000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|lora0" "/soc/spi@60024000/lora@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|die-temp0" "/soc/coretemp@60008800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|watchdog0" "/soc/watchdog@6001f048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_ALIAS|led0" "/leds/led_0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/|compatible" "seeed,xiao-esp32s3") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/chosen" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/chosen|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/chosen|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/chosen|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/chosen" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/aliases" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/aliases|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/aliases|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/aliases|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/aliases" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc|compatible" "simple-bus") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc|ranges" "None") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/memory@42000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|icache0" "/soc/memory@42000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@42000000|zephyr,memory-region" "ICACHE0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@42000000|compatible" "zephyr,memory-region") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@42000000|reg" "1107296256;33554432") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@42000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@42000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@42000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@42000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@42000000|ADDR" "0x42000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@42000000|SIZE" "0x2000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/memory@42000000" "0x42000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/memory@3c000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|dcache0" "/soc/memory@3c000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3c000000|zephyr,memory-region" "DCACHE0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3c000000|compatible" "zephyr,memory-region") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3c000000|reg" "1006632960;33554432") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3c000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3c000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3c000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3c000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3c000000|ADDR" "0x3c000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3c000000|SIZE" "0x2000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/memory@3c000000" "0x3c000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/memory@3c000000/psram0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|psram0" "/soc/memory@3c000000/psram0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3c000000/psram0|size" "8388608") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3c000000/psram0|compatible" "espressif,esp32-psram") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3c000000/psram0|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3c000000/psram0|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3c000000/psram0|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3c000000/psram0|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3c000000/psram0|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3c000000/psram0|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/memory@3c000000/psram0" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/memory@40370000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|sram0" "/soc/memory@40370000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@40370000|zephyr,memory-region" "SRAM0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@40370000|compatible" "zephyr,memory-region;mmio-sram") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@40370000|reg" "1077346304;32768") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@40370000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@40370000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@40370000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@40370000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@40370000|ADDR" "0x40370000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@40370000|SIZE" "0x8000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/memory@40370000" "0x40370000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/memory@3fc88000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|sram1" "/soc/memory@3fc88000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fc88000|zephyr,memory-region" "SRAM1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fc88000|compatible" "zephyr,memory-region;mmio-sram") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fc88000|reg" "1070104576;425984") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fc88000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fc88000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fc88000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fc88000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fc88000|ADDR" "0x3fc88000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fc88000|SIZE" "0x68000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/memory@3fc88000" "0x3fc88000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/memory@3fcf0000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|sram2" "/soc/memory@3fcf0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fcf0000|zephyr,memory-region" "SRAM2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fcf0000|compatible" "zephyr,memory-region;mmio-sram") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fcf0000|reg" "1070530560;65536") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fcf0000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fcf0000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fcf0000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fcf0000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fcf0000|ADDR" "0x3fcf0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fcf0000|SIZE" "0x10000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/memory@3fcf0000" "0x3fcf0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/memory@3fce5000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|ipmmem0" "/soc/memory@3fce5000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fce5000|reg" "1070485504;1024") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fce5000|compatible" "mmio-sram") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fce5000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fce5000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fce5000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fce5000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fce5000|ADDR" "0x3fce5000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fce5000|SIZE" "0x400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/memory@3fce5000" "0x3fce5000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/memory@3fce5400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|shm0" "/soc/memory@3fce5400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fce5400|reg" "1070486528;16384") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fce5400|compatible" "mmio-sram") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fce5400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fce5400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@3fce5400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fce5400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fce5400|ADDR" "0x3fce5400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@3fce5400|SIZE" "0x4000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/memory@3fce5400" "0x3fce5400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/ipm@3fce9400" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|ipm0" "/soc/ipm@3fce9400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ipm@3fce9400|reg" "1070502912;8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ipm@3fce9400|shared-memory" "/soc/memory@3fce5000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ipm@3fce9400|shared-memory-size" "1024") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ipm@3fce9400|interrupts" "79;0;0;80;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ipm@3fce9400|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ipm@3fce9400|compatible" "espressif,esp32-ipm") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ipm@3fce9400|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ipm@3fce9400|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ipm@3fce9400|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ipm@3fce9400|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ipm@3fce9400|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ipm@3fce9400|ADDR" "0x3fce9400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ipm@3fce9400|SIZE" "0x8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/ipm@3fce9400" "0x3fce9400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/mbox@3fce9408" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|mbox0" "/soc/mbox@3fce9408") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mbox@3fce9408|reg" "1070502920;8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mbox@3fce9408|shared-memory" "/soc/memory@3fce5000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mbox@3fce9408|shared-memory-size" "1024") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mbox@3fce9408|interrupts" "79;0;0;80;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mbox@3fce9408|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mbox@3fce9408|compatible" "espressif,mbox-esp32") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mbox@3fce9408|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mbox@3fce9408|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mbox@3fce9408|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mbox@3fce9408|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/mbox@3fce9408|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/mbox@3fce9408|ADDR" "0x3fce9408") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/mbox@3fce9408|SIZE" "0x8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/mbox@3fce9408" "0x3fce9408") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/memory@50000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|rtc_slow_ram" "/soc/memory@50000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@50000000|zephyr,memory-region" "RTC_SLOW_RAM") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@50000000|compatible" "zephyr,memory-region;mmio-sram") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@50000000|reg" "1342177280;8192") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@50000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@50000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@50000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@50000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@50000000|ADDR" "0x50000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@50000000|SIZE" "0x2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/memory@50000000" "0x50000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/memory@600fe000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|rtc_fast_ram" "/soc/memory@600fe000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@600fe000|zephyr,memory-region" "RTC_FAST_RAM") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@600fe000|compatible" "zephyr,memory-region;mmio-sram") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@600fe000|reg" "1611653120;8192") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@600fe000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@600fe000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/memory@600fe000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@600fe000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@600fe000|ADDR" "0x600fe000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/memory@600fe000|SIZE" "0x2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/memory@600fe000" "0x600fe000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/interrupt-controller@600c2000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|intc" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@600c2000|reg" "1611407360;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@600c2000|interrupt-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@600c2000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@600c2000|compatible" "espressif,esp32-intc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@600c2000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@600c2000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/interrupt-controller@600c2000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/interrupt-controller@600c2000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/interrupt-controller@600c2000|ADDR" "0x600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/interrupt-controller@600c2000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/interrupt-controller@600c2000" "0x600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/xt_wdt@60021004" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|xt_wdt" "/soc/xt_wdt@60021004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/xt_wdt@60021004|reg" "1610747908;4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/xt_wdt@60021004|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/xt_wdt@60021004|compatible" "espressif,esp32-xt-wdt") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/xt_wdt@60021004|interrupts" "39;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/xt_wdt@60021004|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/xt_wdt@60021004|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/xt_wdt@60021004|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/xt_wdt@60021004|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/xt_wdt@60021004|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/xt_wdt@60021004|ADDR" "0x60021004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/xt_wdt@60021004|SIZE" "0x4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/xt_wdt@60021004" "0x60021004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/rtc_timer@60008004" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|rtc_timer" "/soc/rtc_timer@60008004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc_timer@60008004|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc_timer@60008004|compatible" "espressif,esp32-rtc-timer") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc_timer@60008004|reg" "1610645508;12") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc_timer@60008004|interrupts" "39;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc_timer@60008004|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc_timer@60008004|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc_timer@60008004|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/rtc_timer@60008004|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc_timer@60008004|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc_timer@60008004|ADDR" "0x60008004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/rtc_timer@60008004|SIZE" "0xc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/rtc_timer@60008004" "0x60008004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|flash" "/soc/flash-controller@60002000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000|reg" "1610620928;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000|compatible" "espressif,esp32-flash-controller") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000|ADDR" "0x60002000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000" "0x60002000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|flash0" "/soc/flash-controller@60002000/flash@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0|erase-block-size" "4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0|write-block-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0|compatible" "soc-nv-flash") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0|reg" "0;8388608") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0|ADDR" "0x0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0|SIZE" "0x800000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0" "0x0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions|compatible" "fixed-partitions") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions/partition@0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|boot_partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@0|label" "mcuboot") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@0|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@0|reg" "0;65536") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@0|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@0|ADDR" "0x0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@0|SIZE" "0x10000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions/partition@0" "0x0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions/partition@10000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|sys_partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@10000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@10000|label" "sys") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@10000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@10000|reg" "65536;65536") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@10000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@10000|ADDR" "0x10000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@10000|SIZE" "0x10000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions/partition@10000" "0x10000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions/partition@20000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|slot0_partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@20000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@20000|label" "image-0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@20000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@20000|reg" "131072;1376256") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@20000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@20000|ADDR" "0x20000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@20000|SIZE" "0x150000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions/partition@20000" "0x20000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions/partition@170000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|slot1_partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@170000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@170000|label" "image-1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@170000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@170000|reg" "1507328;1376256") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@170000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@170000|ADDR" "0x170000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@170000|SIZE" "0x150000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions/partition@170000" "0x170000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions/partition@2c0000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|slot0_appcpu_partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@2c0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@2c0000|label" "image-0-appcpu") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@2c0000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@2c0000|reg" "2883584;458752") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@2c0000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@2c0000|ADDR" "0x2c0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@2c0000|SIZE" "0x70000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions/partition@2c0000" "0x2c0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions/partition@330000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|slot1_appcpu_partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@330000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@330000|label" "image-1-appcpu") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@330000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@330000|reg" "3342336;458752") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@330000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@330000|ADDR" "0x330000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@330000|SIZE" "0x70000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions/partition@330000" "0x330000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions/partition@3a0000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|slot0_lpcore_partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@3a0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3a0000|label" "image-0-lpcore") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3a0000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3a0000|reg" "3801088;32768") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3a0000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3a0000|ADDR" "0x3a0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3a0000|SIZE" "0x8000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions/partition@3a0000" "0x3a0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions/partition@3a8000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|slot1_lpcore_partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@3a8000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3a8000|label" "image-1-lpcore") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3a8000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3a8000|reg" "3833856;32768") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3a8000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3a8000|ADDR" "0x3a8000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3a8000|SIZE" "0x8000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions/partition@3a8000" "0x3a8000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions/partition@3b0000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|storage_partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@3b0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3b0000|label" "storage") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3b0000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3b0000|reg" "3866624;196608") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3b0000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3b0000|ADDR" "0x3b0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3b0000|SIZE" "0x30000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions/partition@3b0000" "0x3b0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions/partition@3e0000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|scratch_partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@3e0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3e0000|label" "image-scratch") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3e0000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3e0000|reg" "4063232;126976") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3e0000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3e0000|ADDR" "0x3e0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3e0000|SIZE" "0x1f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions/partition@3e0000" "0x3e0000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/flash-controller@60002000/flash@0/partitions/partition@3ff000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|coredump_partition" "/soc/flash-controller@60002000/flash@0/partitions/partition@3ff000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3ff000|label" "coredump") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3ff000|read-only" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/flash-controller@60002000/flash@0/partitions/partition@3ff000|reg" "4190208;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3ff000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3ff000|ADDR" "0x3ff000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/flash-controller@60002000/flash@0/partitions/partition@3ff000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/flash-controller@60002000/flash@0/partitions/partition@3ff000" "0x3ff000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/uart@60000000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|uart0" "/soc/uart@60000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|xiao_serial" "/soc/uart@60000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|reg" "1610612736;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|pinctrl-0" "/pin-controller/uart0_default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|pinctrl-names" "default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|stop-bits" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|data-bits" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|hw-rs485-hd-mode" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|uhci-slip-tx" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|uhci-slip-rx" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|current-speed" "115200") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|compatible" "espressif,esp32-uart") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|interrupts" "27;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|tx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60000000|rx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@60000000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@60000000|ADDR" "0x60000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@60000000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/uart@60000000" "0x60000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/uart@60010000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|uart1" "/soc/uart@60010000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|reg" "1610678272;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|stop-bits" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|data-bits" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|hw-rs485-hd-mode" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|uhci-slip-tx" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|uhci-slip-rx" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|compatible" "espressif,esp32-uart") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|interrupts" "28;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|tx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60010000|rx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@60010000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@60010000|ADDR" "0x60010000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@60010000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/uart@60010000" "0x60010000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/uart@6002e000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|uart2" "/soc/uart@6002e000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|reg" "1610801152;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|stop-bits" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|data-bits" "8") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|hw-rs485-hd-mode" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|uhci-slip-tx" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|uhci-slip-rx" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|compatible" "espressif,esp32-uart") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|interrupts" "29;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|tx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@6002e000|rx-invert" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@6002e000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@6002e000|ADDR" "0x6002e000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@6002e000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/uart@6002e000" "0x6002e000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/gpio" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpio" "/soc/gpio") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio|compatible" "simple-bus") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio|ranges" "None") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/gpio" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/gpio/gpio@60004000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpio0" "/soc/gpio/gpio@60004000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004000|reg" "1610629120;2048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004000|gpio-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004000|ngpios" "32") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004000|compatible" "espressif,esp32-gpio") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004000|interrupts" "16;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio/gpio@60004000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio/gpio@60004000|ADDR" "0x60004000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio/gpio@60004000|SIZE" "0x800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/gpio/gpio@60004000" "0x60004000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/gpio/gpio@60004800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|gpio1" "/soc/gpio/gpio@60004800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004800|reg" "1610631168;2048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004800|gpio-controller" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004800|ngpios" "22") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004800|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004800|compatible" "espressif,esp32-gpio") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004800|interrupts" "16;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004800|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/gpio/gpio@60004800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio/gpio@60004800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio/gpio@60004800|ADDR" "0x60004800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/gpio/gpio@60004800|SIZE" "0x800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/gpio/gpio@60004800" "0x60004800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/touch@6000885c" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|touch" "/soc/touch@6000885c") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|debounce-interval-ms" "30") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|href-microvolt" "2700000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|lref-microvolt" "500000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|href-atten-microvolt" "1000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|filter-mode" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|filter-debounce-cnt" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|filter-noise-thr" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|filter-jitter-step" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|filter-smooth-level" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|compatible" "espressif,esp32-touch") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|reg" "1610647644;136;1610647816;24") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|interrupts" "39;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/touch@6000885c|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/touch@6000885c|NUM" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/touch@6000885c|ADDR" "0x6000885c;0x60008908") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/touch@6000885c|SIZE" "0x88;0x18") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/touch@6000885c" "0x6000885c") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/i2c@60013000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|i2c0" "/soc/i2c@60013000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|xiao_i2c" "/soc/i2c@60013000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|reg" "1610690560;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|pinctrl-0" "/pin-controller/i2c0_default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|pinctrl-names" "default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|tx-lsb" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|rx-lsb" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|clock-frequency" "100000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|sq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|cq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|compatible" "espressif,esp32-i2c") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|interrupts" "42;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60013000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@60013000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@60013000|ADDR" "0x60013000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@60013000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/i2c@60013000" "0x60013000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/i2c@60027000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|i2c1" "/soc/i2c@60027000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|reg" "1610772480;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|tx-lsb" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|rx-lsb" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|sq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|cq-size" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|compatible" "espressif,esp32-i2c") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|interrupts" "43;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2c@60027000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@60027000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@60027000|ADDR" "0x60027000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2c@60027000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/i2c@60027000" "0x60027000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/i2s@6000f000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|i2s0" "/soc/i2s@6000f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6000f000|reg" "1610674176;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6000f000|interrupts" "25;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6000f000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6000f000|unit" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6000f000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6000f000|compatible" "espressif,esp32-i2s") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6000f000|dma-names" "rx;tx") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6000f000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6000f000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6000f000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2s@6000f000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2s@6000f000|ADDR" "0x6000f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2s@6000f000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/i2s@6000f000" "0x6000f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/i2s@6002d000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|i2s1" "/soc/i2s@6002d000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6002d000|reg" "1610797056;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6002d000|interrupts" "26;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6002d000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6002d000|unit" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6002d000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6002d000|compatible" "espressif,esp32-i2s") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6002d000|dma-names" "rx;tx") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6002d000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6002d000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/i2s@6002d000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2s@6002d000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2s@6002d000|ADDR" "0x6002d000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/i2s@6002d000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/i2s@6002d000" "0x6002d000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/spi@60024000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|spi2" "/soc/spi@60024000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|xiao_spi" "/soc/spi@60024000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|reg" "1610760192;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|pinctrl-0" "/pin-controller/spim2_default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|pinctrl-names" "default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|half-duplex" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|dummy-comp" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|sio" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|dma-enabled" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|dma-host" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|clk-as-cs" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|positive-cs" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|use-iomux" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|line-idle-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|compatible" "espressif,esp32-spi") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|interrupts" "21;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@60024000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@60024000|ADDR" "0x60024000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@60024000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/spi@60024000" "0x60024000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/spi@60024000/lora@0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|lora" "/soc/spi@60024000/lora@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|dio2-tx-enable" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|rx-boosted" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|regulator-ldo" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|force-ldro" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|reg" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|spi-max-frequency" "4000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|duplex" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|frame-format" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|spi-cpol" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|spi-cpha" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|spi-lsb-first" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|spi-hold-cs" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|spi-cs-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|spi-interframe-delay-ns" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|compatible" "semtech,sx1262") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60024000/lora@0|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@60024000/lora@0|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@60024000/lora@0|ADDR" "0x0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@60024000/lora@0|SIZE" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/spi@60024000/lora@0" "0x0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/spi@60025000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|spi3" "/soc/spi@60025000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|reg" "1610764288;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|half-duplex" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|dummy-comp" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|sio" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|dma-enabled" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|dma-host" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|clk-as-cs" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|positive-cs" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|use-iomux" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|line-idle-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|compatible" "espressif,esp32-spi") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|interrupts" "22;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/spi@60025000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@60025000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@60025000|ADDR" "0x60025000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/spi@60025000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/spi@60025000" "0x60025000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/coretemp@60008800" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|coretemp" "/soc/coretemp@60008800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/coretemp@60008800|range-min" "-10") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/coretemp@60008800|range-max" "80") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/coretemp@60008800|friendly-name" "coretemp") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/coretemp@60008800|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/coretemp@60008800|compatible" "espressif,esp32-temp") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/coretemp@60008800|reg" "1610647552;4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/coretemp@60008800|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/coretemp@60008800|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/coretemp@60008800|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/coretemp@60008800|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/coretemp@60008800|ADDR" "0x60008800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/coretemp@60008800|SIZE" "0x4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/coretemp@60008800" "0x60008800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/adc@60040000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|adc0" "/soc/adc@60040000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|xiao_adc" "/soc/adc@60040000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040000|unit" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040000|channel-count" "10") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040000|compatible" "espressif,esp32-adc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040000|reg" "1610874880;4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@60040000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@60040000|ADDR" "0x60040000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@60040000|SIZE" "0x4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/adc@60040000" "0x60040000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/adc@60040004" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|adc1" "/soc/adc@60040004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040004|unit" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040004|channel-count" "10") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040004|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040004|compatible" "espressif,esp32-adc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040004|reg" "1610874884;4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040004|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040004|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/adc@60040004|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@60040004|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@60040004|ADDR" "0x60040004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/adc@60040004|SIZE" "0x4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/adc@60040004" "0x60040004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/can@6002b000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|twai" "/soc/can@6002b000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@6002b000|reg" "1610788864;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@6002b000|interrupts" "37;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@6002b000|pinctrl-0" "/pin-controller/twai_default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@6002b000|pinctrl-names" "default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@6002b000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@6002b000|compatible" "espressif,esp32-twai") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@6002b000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@6002b000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@6002b000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/can@6002b000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/can@6002b000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/can@6002b000|ADDR" "0x6002b000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/can@6002b000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/can@6002b000" "0x6002b000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/lcd_cam@60041000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|lcd_cam" "/soc/lcd_cam@60041000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000|compatible" "espressif,esp32-lcd-cam") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000|reg" "1610878976;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000|interrupts" "24;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000|dma-names" "rx;tx") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/lcd_cam@60041000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/lcd_cam@60041000|ADDR" "0x60041000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/lcd_cam@60041000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/lcd_cam@60041000" "0x60041000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/lcd_cam@60041000/lcd_cam_dvp" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|lcd_cam_dvp" "/soc/lcd_cam@60041000/lcd_cam_dvp") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000/lcd_cam_dvp|invert-byte-order" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000/lcd_cam_dvp|invert-bit-order" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000/lcd_cam_dvp|invert-pclk" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000/lcd_cam_dvp|invert-de" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000/lcd_cam_dvp|invert-hsync" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000/lcd_cam_dvp|invert-vsync" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/lcd_cam@60041000/lcd_cam_dvp|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/lcd_cam@60041000/lcd_cam_dvp|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/lcd_cam@60041000/lcd_cam_dvp|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/lcd_cam@60041000/lcd_cam_dvp" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/lcd_cam@60041000/lcd_cam_disp" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|lcd_cam_disp" "/soc/lcd_cam@60041000/lcd_cam_disp") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000/lcd_cam_disp|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000/lcd_cam_disp|compatible" "espressif,esp32-lcd-cam-mipi-dbi") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000/lcd_cam_disp|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000/lcd_cam_disp|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/lcd_cam@60041000/lcd_cam_disp|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/lcd_cam@60041000/lcd_cam_disp|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/lcd_cam@60041000/lcd_cam_disp|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/lcd_cam@60041000/lcd_cam_disp|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/lcd_cam@60041000/lcd_cam_disp" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/uart@60038000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usb_serial" "/soc/uart@60038000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60038000|reg" "1610842112;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60038000|hw-flow-control" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60038000|parity" "none") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60038000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60038000|compatible" "espressif,esp32-usb-serial") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60038000|interrupts" "96;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60038000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60038000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60038000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/uart@60038000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@60038000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@60038000|ADDR" "0x60038000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/uart@60038000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/uart@60038000" "0x60038000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/usb_otg@60080000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|usb_otg" "/soc/usb_otg@60080000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|reg" "1611137024;262144") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|interrupts" "38;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|num-in-eps" "6") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|num-out-eps" "6") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|ghwcfg1" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|ghwcfg2" "575527216") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|ghwcfg4" "3555762224") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|compatible" "espressif,esp32-usb-otg;snps,dwc2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/usb_otg@60080000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/usb_otg@60080000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/usb_otg@60080000|ADDR" "0x60080000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/usb_otg@60080000|SIZE" "0x40000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/usb_otg@60080000" "0x60080000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/counter@6001f000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timer0" "/soc/counter@6001f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000|group" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000|index" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000|prescaler" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000|compatible" "espressif,esp32-timer") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000|reg" "1610739712;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000|interrupts" "50;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f000|ADDR" "0x6001f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/counter@6001f000" "0x6001f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/counter@6001f000/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000/counter|compatible" "espressif,esp32-counter") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f000/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f000/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f000/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f000/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/counter@6001f000/counter" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/counter@6001f024" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timer1" "/soc/counter@6001f024") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024|group" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024|index" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024|prescaler" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024|compatible" "espressif,esp32-timer") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024|reg" "1610739748;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024|interrupts" "51;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f024|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f024|ADDR" "0x6001f024") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f024|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/counter@6001f024" "0x6001f024") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/counter@6001f024/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024/counter|compatible" "espressif,esp32-counter") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@6001f024/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f024/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f024/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@6001f024/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/counter@6001f024/counter" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/counter@60020000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timer2" "/soc/counter@60020000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000|group" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000|index" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000|prescaler" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000|compatible" "espressif,esp32-timer") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000|reg" "1610743808;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000|interrupts" "53;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020000|ADDR" "0x60020000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/counter@60020000" "0x60020000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/counter@60020000/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000/counter|compatible" "espressif,esp32-counter") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020000/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020000/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020000/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020000/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/counter@60020000/counter" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/counter@60020024" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|timer3" "/soc/counter@60020024") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024|group" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024|index" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024|prescaler" "2") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024|compatible" "espressif,esp32-timer") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024|reg" "1610743844;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024|interrupts" "54;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020024|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020024|ADDR" "0x60020024") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020024|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/counter@60020024" "0x60020024") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/counter@60020024/counter" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024/counter|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024/counter|compatible" "espressif,esp32-counter") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024/counter|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024/counter|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/counter@60020024/counter|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020024/counter|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020024/counter|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/counter@60020024/counter|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/counter@60020024/counter" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/watchdog@6001f048" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|wdt0" "/soc/watchdog@6001f048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@6001f048|reg" "1610739784;32") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@6001f048|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@6001f048|compatible" "espressif,esp32-watchdog") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@6001f048|interrupts" "52;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@6001f048|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@6001f048|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@6001f048|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@6001f048|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@6001f048|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@6001f048|ADDR" "0x6001f048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@6001f048|SIZE" "0x20") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/watchdog@6001f048" "0x6001f048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/watchdog@60020048" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|wdt1" "/soc/watchdog@60020048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@60020048|reg" "1610743880;32") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@60020048|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@60020048|compatible" "espressif,esp32-watchdog") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@60020048|interrupts" "55;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@60020048|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@60020048|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@60020048|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/watchdog@60020048|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@60020048|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@60020048|ADDR" "0x60020048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/watchdog@60020048|SIZE" "0x20") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/watchdog@60020048" "0x60020048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/trng@6003507c" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|trng0" "/soc/trng@6003507c") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/trng@6003507c|reg" "1610829948;4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/trng@6003507c|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/trng@6003507c|compatible" "espressif,esp32-trng") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/trng@6003507c|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/trng@6003507c|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/trng@6003507c|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/trng@6003507c|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/trng@6003507c|ADDR" "0x6003507c") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/trng@6003507c|SIZE" "0x4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/trng@6003507c" "0x6003507c") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/ledc@60019000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|ledc0" "/soc/ledc@60019000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ledc@60019000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ledc@60019000|compatible" "espressif,esp32-ledc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ledc@60019000|reg" "1610715136;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ledc@60019000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ledc@60019000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/ledc@60019000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ledc@60019000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ledc@60019000|ADDR" "0x60019000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/ledc@60019000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/ledc@60019000" "0x60019000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/mcpwm@6001e000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|mcpwm0" "/soc/mcpwm@6001e000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6001e000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6001e000|compatible" "espressif,esp32-mcpwm") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6001e000|reg" "1610735616;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6001e000|interrupts" "31;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6001e000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6001e000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6001e000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6001e000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/mcpwm@6001e000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/mcpwm@6001e000|ADDR" "0x6001e000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/mcpwm@6001e000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/mcpwm@6001e000" "0x6001e000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/mcpwm@6002c000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|mcpwm1" "/soc/mcpwm@6002c000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6002c000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6002c000|compatible" "espressif,esp32-mcpwm") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6002c000|reg" "1610792960;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6002c000|interrupts" "32;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6002c000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6002c000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6002c000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/mcpwm@6002c000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/mcpwm@6002c000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/mcpwm@6002c000|ADDR" "0x6002c000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/mcpwm@6002c000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/mcpwm@6002c000" "0x6002c000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/pcnt@60017000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|pcnt" "/soc/pcnt@60017000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pcnt@60017000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pcnt@60017000|compatible" "espressif,esp32-pcnt") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pcnt@60017000|reg" "1610706944;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pcnt@60017000|interrupts" "41;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pcnt@60017000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pcnt@60017000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pcnt@60017000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/pcnt@60017000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pcnt@60017000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pcnt@60017000|ADDR" "0x60017000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/pcnt@60017000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/pcnt@60017000" "0x60017000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/dma@6003f000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|dma" "/soc/dma@6003f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@6003f000|dma-channels" "10") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@6003f000|dma-buf-addr-alignment" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@6003f000|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@6003f000|compatible" "espressif,esp32-gdma") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@6003f000|reg" "1610870784;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@6003f000|interrupts" "66;0;256;71;0;256;67;0;256;72;0;256;68;0;256;73;0;256;69;0;256;74;0;256;70;0;256;75;0;256") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@6003f000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@6003f000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@6003f000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/dma@6003f000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dma@6003f000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dma@6003f000|ADDR" "0x6003f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/dma@6003f000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/dma@6003f000" "0x6003f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/sdhc@60028000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|sdhc" "/soc/sdhc@60028000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000|reg" "1610776576;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000|interrupts" "30;0;0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000|compatible" "espressif,esp32-sdhc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000|interrupt-parent" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sdhc@60028000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sdhc@60028000|ADDR" "0x60028000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sdhc@60028000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/sdhc@60028000" "0x60028000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/sdhc@60028000/sdhc@0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|sdhc0" "/soc/sdhc@60028000/sdhc@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|reg" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|bus-width" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|max-current-330" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|max-current-300" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|max-current-180" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|max-bus-freq" "400000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|min-bus-freq" "400000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|power-delay-ms" "500") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|mmc-hs200-1_8v" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|mmc-hs400-1_8v" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|compatible" "espressif,esp32-sdhc-slot") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@0|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sdhc@60028000/sdhc@0|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sdhc@60028000/sdhc@0|ADDR" "0x0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sdhc@60028000/sdhc@0|SIZE" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/sdhc@60028000/sdhc@0" "0x0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/sdhc@60028000/sdhc@1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|sdhc1" "/soc/sdhc@60028000/sdhc@1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|reg" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|bus-width" "4") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|max-current-330" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|max-current-300" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|max-current-180" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|max-bus-freq" "400000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|min-bus-freq" "400000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|power-delay-ms" "500") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|mmc-hs200-1_8v" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|mmc-hs400-1_8v" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|status" "disabled") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|compatible" "espressif,esp32-sdhc-slot") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sdhc@60028000/sdhc@1|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sdhc@60028000/sdhc@1|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sdhc@60028000/sdhc@1|ADDR" "0x1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sdhc@60028000/sdhc@1|SIZE" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/sdhc@60028000/sdhc@1" "0x1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/sha@6003b000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|sha" "/soc/sha@6003b000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sha@6003b000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sha@6003b000|compatible" "espressif,esp32-sha") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sha@6003b000|reg" "1610854400;256") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sha@6003b000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sha@6003b000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/sha@6003b000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sha@6003b000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sha@6003b000|ADDR" "0x6003b000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/sha@6003b000|SIZE" "0x100") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/sha@6003b000" "0x6003b000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/soc/aes@6003a000" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|aes" "/soc/aes@6003a000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/aes@6003a000|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/aes@6003a000|compatible" "espressif,esp32-aes") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/aes@6003a000|reg" "1610850304;4096") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/aes@6003a000|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/aes@6003a000|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/soc/aes@6003a000|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/aes@6003a000|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/aes@6003a000|ADDR" "0x6003a000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/soc/aes@6003a000|SIZE" "0x1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/soc/aes@6003a000" "0x6003a000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/cpus" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus/cpu@0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|cpu0" "/cpus/cpu@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|clock-source" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|xtal-freq" "40000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|clock-frequency" "240000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|cpu-power-states" "/cpus/power-states/light_sleep;/cpus/power-states/deep_sleep") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|compatible" "espressif,xtensa-lx7") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|reg" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@0|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@0|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@0|ADDR" "0x0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@0|SIZE" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/cpus/cpu@0" "0x0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus/cpu@1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|cpu1" "/cpus/cpu@1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@1|clock-source" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@1|xtal-freq" "40000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@1|clock-frequency" "240000000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@1|compatible" "espressif,xtensa-lx7") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@1|reg" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@1|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@1|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/cpu@1|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@1|NUM" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@1|ADDR" "0x1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/cpu@1|SIZE" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/cpus/cpu@1" "0x1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus/power-states" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/cpus/power-states" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus/power-states/light_sleep" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|light_sleep" "/cpus/power-states/light_sleep") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/light_sleep|power-state-name" "standby") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/light_sleep|min-residency-us" "1000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/light_sleep|exit-latency-us" "50") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/light_sleep|zephyr,pm-device-disabled" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/light_sleep|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/light_sleep|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/light_sleep|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/cpus/power-states/light_sleep" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/cpus/power-states/deep_sleep" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|deep_sleep" "/cpus/power-states/deep_sleep") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/deep_sleep|power-state-name" "soft-off") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/cpus/power-states/deep_sleep|zephyr,pm-device-disabled" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/deep_sleep|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/deep_sleep|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/cpus/power-states/deep_sleep|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/cpus/power-states/deep_sleep" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/wifi" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|wifi" "/wifi") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/wifi|compatible" "espressif,esp32-wifi") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/wifi|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/wifi|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/wifi|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/wifi|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/wifi" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/esp32_bt_hci" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|esp32_bt_hci" "/esp32_bt_hci") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/esp32_bt_hci|bt-hci-name" "BT ESP32") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/esp32_bt_hci|bt-hci-bus" "ipc") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/esp32_bt_hci|bt-hci-quirks" "no-auto-dle") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/esp32_bt_hci|bt-hci-vs-ext" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/esp32_bt_hci|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/esp32_bt_hci|compatible" "espressif,esp32-bt-hci") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/esp32_bt_hci|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/esp32_bt_hci|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/esp32_bt_hci|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/esp32_bt_hci|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/esp32_bt_hci|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/esp32_bt_hci|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/esp32_bt_hci" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|pinctrl" "/pin-controller") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller|status" "okay") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller|compatible" "espressif,esp32-pinctrl") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/uart0_default" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|uart0_default" "/pin-controller/uart0_default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/uart0_default|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/uart0_default|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/uart0_default|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/uart0_default" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/uart0_default/group1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group1|pinmux" "425963") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group1|sleep-hold-en" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group1|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group1|bias-pull-up" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group1|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group1|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group1|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group1|input-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group1|output-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group1|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group1|output-high" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/uart0_default/group1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/uart0_default/group1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/uart0_default/group1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/uart0_default/group1" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/uart0_default/group2" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group2|pinmux" "16745260") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group2|sleep-hold-en" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group2|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group2|bias-pull-up" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group2|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group2|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group2|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group2|input-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group2|output-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group2|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/uart0_default/group2|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/uart0_default/group2|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/uart0_default/group2|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/uart0_default/group2|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/uart0_default/group2" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/spim2_default" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|spim2_default" "/pin-controller/spim2_default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/spim2_default|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/spim2_default|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/spim2_default|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/spim2_default" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/spim2_default/group1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group1|pinmux" "16750984;3342279") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group1|sleep-hold-en" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group1|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group1|bias-pull-up" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group1|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group1|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group1|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group1|input-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group1|output-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group1|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group1|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/spim2_default/group1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/spim2_default/group1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/spim2_default/group1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/spim2_default/group1" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/spim2_default/group2" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group2|pinmux" "3407817") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group2|sleep-hold-en" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group2|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group2|bias-pull-up" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group2|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group2|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group2|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group2|input-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group2|output-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group2|output-low" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/spim2_default/group2|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/spim2_default/group2|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/spim2_default/group2|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/spim2_default/group2|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/spim2_default/group2" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/i2c0_default" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|i2c0_default" "/pin-controller/i2c0_default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c0_default|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c0_default|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c0_default|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/i2c0_default" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/i2c0_default/group1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c0_default/group1|pinmux" "2954885;2922054") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c0_default/group1|sleep-hold-en" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c0_default/group1|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c0_default/group1|bias-pull-up" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c0_default/group1|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c0_default/group1|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c0_default/group1|drive-open-drain" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c0_default/group1|input-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c0_default/group1|output-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c0_default/group1|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c0_default/group1|output-high" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c0_default/group1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c0_default/group1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c0_default/group1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/i2c0_default/group1" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/i2c1_default" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|i2c1_default" "/pin-controller/i2c1_default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c1_default|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c1_default|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c1_default|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/i2c1_default" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/i2c1_default/group1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c1_default/group1|pinmux" "3020584;2987751") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c1_default/group1|sleep-hold-en" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c1_default/group1|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c1_default/group1|bias-pull-up" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c1_default/group1|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c1_default/group1|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c1_default/group1|drive-open-drain" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c1_default/group1|input-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c1_default/group1|output-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c1_default/group1|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/i2c1_default/group1|output-high" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c1_default/group1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c1_default/group1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/i2c1_default/group1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/i2c1_default/group1" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/lcd_cam_default" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|lcd_cam_default" "/pin-controller/lcd_cam_default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/lcd_cam_default|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/lcd_cam_default|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/lcd_cam_default|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/lcd_cam_default" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/lcd_cam_default/group1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group1|pinmux" "4915146") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group1|sleep-hold-en" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group1|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group1|bias-pull-up" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group1|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group1|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group1|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group1|input-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group1|output-enable" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group1|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group1|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/lcd_cam_default/group1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/lcd_cam_default/group1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/lcd_cam_default/group1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/lcd_cam_default/group1" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/lcd_cam_default/group2" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group2|pinmux" "16754214;16754095;16753997;16752975;16753041;16753106;16753168;16753230;16753292;16753355;16753456") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group2|sleep-hold-en" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group2|bias-disable" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group2|bias-pull-up" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group2|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group2|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group2|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group2|input-enable" "True") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group2|output-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group2|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/lcd_cam_default/group2|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/lcd_cam_default/group2|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/lcd_cam_default/group2|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/lcd_cam_default/group2|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/lcd_cam_default/group2" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/twai_default" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|twai_default" "/pin-controller/twai_default") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/twai_default|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/twai_default|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/twai_default|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/twai_default" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/pin-controller/twai_default/group1" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/twai_default/group1|pinmux" "3833795;16751876") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/twai_default/group1|sleep-hold-en" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/twai_default/group1|bias-disable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/twai_default/group1|bias-pull-up" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/twai_default/group1|bias-pull-down" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/twai_default/group1|drive-push-pull" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/twai_default/group1|drive-open-drain" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/twai_default/group1|input-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/twai_default/group1|output-enable" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/twai_default/group1|output-low" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/pin-controller/twai_default/group1|output-high" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/twai_default/group1|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/twai_default/group1|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/pin-controller/twai_default/group1|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/pin-controller/twai_default/group1" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/clock" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|clock" "/clock") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clock|fast-clk-src" "1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/clock|slow-clk-src" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clock|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clock|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/clock|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/clock" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/connector" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|xiao_d" "/connector") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/connector|gpio-map-mask" "4294967295;4294967232") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/connector|gpio-map-pass-thru" "0;63") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/connector|compatible" "seeed,xiao-gpio") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/connector|zephyr,deferred-init" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/connector|wakeup-source" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/connector|zephyr,pm-device-runtime-auto" "False") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/connector|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/connector|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/connector|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/connector" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/leds" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/leds|compatible" "gpio-leds") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/leds" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODE|/leds/led_0" TRUE) +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_NODELABEL|led0" "/leds/led_0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_PROP|/leds/led_0|label" "BUILTIN LED") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds/led_0|NUM" "0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds/led_0|ADDR" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_REG|/leds/led_0|SIZE" "") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_UNIT_ADDR|/leds/led_0" "NONE") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|seeed,xiao-esp32s3" "/") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|simple-bus" "/soc;/soc/gpio") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|zephyr,memory-region" "/soc/memory@42000000;/soc/memory@3c000000;/soc/memory@40370000;/soc/memory@3fc88000;/soc/memory@3fcf0000;/soc/memory@50000000;/soc/memory@600fe000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-psram" "/soc/memory@3c000000/psram0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|mmio-sram" "/soc/memory@40370000;/soc/memory@3fc88000;/soc/memory@3fcf0000;/soc/memory@3fce5000;/soc/memory@3fce5400;/soc/memory@50000000;/soc/memory@600fe000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-ipm" "/soc/ipm@3fce9400") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,mbox-esp32" "/soc/mbox@3fce9408") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-intc" "/soc/interrupt-controller@600c2000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-xt-wdt" "/soc/xt_wdt@60021004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-rtc-timer" "/soc/rtc_timer@60008004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-flash-controller" "/soc/flash-controller@60002000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|soc-nv-flash" "/soc/flash-controller@60002000/flash@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|fixed-partitions" "/soc/flash-controller@60002000/flash@0/partitions") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-uart" "/soc/uart@60000000;/soc/uart@60010000;/soc/uart@6002e000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-gpio" "/soc/gpio/gpio@60004000;/soc/gpio/gpio@60004800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-touch" "/soc/touch@6000885c") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-i2c" "/soc/i2c@60013000;/soc/i2c@60027000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-i2s" "/soc/i2s@6000f000;/soc/i2s@6002d000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-spi" "/soc/spi@60024000;/soc/spi@60025000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|semtech,sx1262" "/soc/spi@60024000/lora@0") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-temp" "/soc/coretemp@60008800") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-adc" "/soc/adc@60040000;/soc/adc@60040004") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-twai" "/soc/can@6002b000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-lcd-cam" "/soc/lcd_cam@60041000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-lcd-cam-dvp" "/soc/lcd_cam@60041000/lcd_cam_dvp") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-lcd-cam-mipi-dbi" "/soc/lcd_cam@60041000/lcd_cam_disp") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-usb-serial" "/soc/uart@60038000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-usb-otg" "/soc/usb_otg@60080000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|snps,dwc2" "/soc/usb_otg@60080000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-timer" "/soc/counter@6001f000;/soc/counter@6001f024;/soc/counter@60020000;/soc/counter@60020024") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-counter" "/soc/counter@6001f000/counter;/soc/counter@6001f024/counter;/soc/counter@60020000/counter;/soc/counter@60020024/counter") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-watchdog" "/soc/watchdog@6001f048;/soc/watchdog@60020048") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-trng" "/soc/trng@6003507c") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-ledc" "/soc/ledc@60019000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-mcpwm" "/soc/mcpwm@6001e000;/soc/mcpwm@6002c000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-pcnt" "/soc/pcnt@60017000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-gdma" "/soc/dma@6003f000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-sdhc" "/soc/sdhc@60028000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-sdhc-slot" "/soc/sdhc@60028000/sdhc@0;/soc/sdhc@60028000/sdhc@1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-sha" "/soc/sha@6003b000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-aes" "/soc/aes@6003a000") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,xtensa-lx7" "/cpus/cpu@0;/cpus/cpu@1") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|zephyr,power-state" "/cpus/power-states/light_sleep;/cpus/power-states/deep_sleep") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-wifi" "/wifi") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-bt-hci" "/esp32_bt_hci") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-pinctrl" "/pin-controller") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|espressif,esp32-clock" "/clock") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|seeed,xiao-gpio" "/connector") +set_target_properties(${DEVICETREE_TARGET} PROPERTIES "DT_COMP|gpio-leds" "/leds") diff --git a/build/zephyr/include/generated/app_data_alignment.ld b/build/zephyr/include/generated/app_data_alignment.ld new file mode 100644 index 0000000..a9257f1 --- /dev/null +++ b/build/zephyr/include/generated/app_data_alignment.ld @@ -0,0 +1,9 @@ +/* + * Copyright (c) 2017 Linaro Limited. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/* Set initial alignment to the 32 byte minimum for all MPUs */ +_app_data_align = 32; +. = ALIGN(32); diff --git a/build/zephyr/include/generated/app_smem.ld b/build/zephyr/include/generated/app_smem.ld new file mode 100644 index 0000000..7b3eead --- /dev/null +++ b/build/zephyr/include/generated/app_smem.ld @@ -0,0 +1,38 @@ +/* SPDX-License-Identifier: Apache-2.0 */ + +/* + * This hackish way of including files is due to CMake issues: + * https://gitlab.kitware.com/cmake/cmake/issues/11985 + * https://gitlab.kitware.com/cmake/cmake/issues/13718 + * + * When using the "Unix Makefiles" generator, CMake simply + * greps for "#include" to generate dependency list. + * So if doing it normally, both files are being included + * in the dependency list. This creates weird dependency + * issue: + * + * 1. Using A.ld to create a linker script A.cmd. + * 2. Using A.cmd to generate A_prebuilt.elf. + * 3. Using A_prebuilt.elf to create B.ld. + * 4. Creating B.cmd with B.ld. + * 5. Creating B_prebuilt.elf using B.cmd. + * + * Since the dependency list of A.cmd contains both + * A.ld and B.ld, when make is invoked again, B.ld + * is newer than A.cmd so everything from this point on + * gets rebuilt. In order to break this cycle, this + * hackish needs to be used since CMake does not parse + * macros, and thus these will not appear in + * the dependency list. The dependencies should then be + * put in CMakeLists.txt instead. + * + * Note: Ninja generator does not suffer from this issue. + */ +#ifdef LINKER_APP_SMEM_UNALIGNED +#define APP_SMEM_LD +#else +#define APP_SMEM_LD +#endif + +#include APP_SMEM_LD +#undef APP_SMEM_LD diff --git a/build/zephyr/include/generated/app_smem_aligned.ld b/build/zephyr/include/generated/app_smem_aligned.ld new file mode 100644 index 0000000..ce36567 --- /dev/null +++ b/build/zephyr/include/generated/app_smem_aligned.ld @@ -0,0 +1,3 @@ +/* SPDX-License-Identifier: Apache-2.0 */ + +/* Empty file */ diff --git a/build/zephyr/include/generated/app_smem_unaligned.ld b/build/zephyr/include/generated/app_smem_unaligned.ld new file mode 100644 index 0000000..ddc31d4 --- /dev/null +++ b/build/zephyr/include/generated/app_smem_unaligned.ld @@ -0,0 +1,3 @@ +/* SPDX-License-Identifier: Apache-2.0 */ + +/* Empty file */ diff --git a/build/zephyr/include/generated/core-isa-dM.c b/build/zephyr/include/generated/core-isa-dM.c new file mode 100644 index 0000000..423c668 --- /dev/null +++ b/build/zephyr/include/generated/core-isa-dM.c @@ -0,0 +1 @@ +#include diff --git a/build/zephyr/include/generated/device-api-sections.cmake b/build/zephyr/include/generated/device-api-sections.cmake new file mode 100644 index 0000000..a4f91e0 --- /dev/null +++ b/build/zephyr/include/generated/device-api-sections.cmake @@ -0,0 +1,186 @@ +list(APPEND sections "{NAME\;gpio_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;gpio_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._gpio_driver_api.static.*\;SYMBOLS\;_gpio_driver_api_list_start\;_gpio_driver_api_list_end}") +list(APPEND sections "{NAME\;spi_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;spi_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._spi_driver_api.static.*\;SYMBOLS\;_spi_driver_api_list_start\;_spi_driver_api_list_end}") +list(APPEND sections "{NAME\;shared_irq_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;shared_irq_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._shared_irq_driver_api.static.*\;SYMBOLS\;_shared_irq_driver_api_list_start\;_shared_irq_driver_api_list_end}") +list(APPEND sections "{NAME\;crypto_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;crypto_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._crypto_driver_api.static.*\;SYMBOLS\;_crypto_driver_api_list_start\;_crypto_driver_api_list_end}") +list(APPEND sections "{NAME\;adc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;adc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._adc_driver_api.static.*\;SYMBOLS\;_adc_driver_api_list_start\;_adc_driver_api_list_end}") +list(APPEND sections "{NAME\;auxdisplay_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;auxdisplay_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._auxdisplay_driver_api.static.*\;SYMBOLS\;_auxdisplay_driver_api_list_start\;_auxdisplay_driver_api_list_end}") +list(APPEND sections "{NAME\;bbram_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;bbram_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._bbram_driver_api.static.*\;SYMBOLS\;_bbram_driver_api_list_start\;_bbram_driver_api_list_end}") +list(APPEND sections "{NAME\;biometric_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;biometric_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._biometric_driver_api.static.*\;SYMBOLS\;_biometric_driver_api_list_start\;_biometric_driver_api_list_end}") +list(APPEND sections "{NAME\;bt_hci_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;bt_hci_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._bt_hci_driver_api.static.*\;SYMBOLS\;_bt_hci_driver_api_list_start\;_bt_hci_driver_api_list_end}") +list(APPEND sections "{NAME\;can_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;can_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._can_driver_api.static.*\;SYMBOLS\;_can_driver_api_list_start\;_can_driver_api_list_end}") +list(APPEND sections "{NAME\;cellular_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;cellular_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._cellular_driver_api.static.*\;SYMBOLS\;_cellular_driver_api_list_start\;_cellular_driver_api_list_end}") +list(APPEND sections "{NAME\;charger_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;charger_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._charger_driver_api.static.*\;SYMBOLS\;_charger_driver_api_list_start\;_charger_driver_api_list_end}") +list(APPEND sections "{NAME\;clock_control_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;clock_control_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._clock_control_driver_api.static.*\;SYMBOLS\;_clock_control_driver_api_list_start\;_clock_control_driver_api_list_end}") +list(APPEND sections "{NAME\;comparator_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;comparator_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._comparator_driver_api.static.*\;SYMBOLS\;_comparator_driver_api_list_start\;_comparator_driver_api_list_end}") +list(APPEND sections "{NAME\;coredump_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;coredump_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._coredump_driver_api.static.*\;SYMBOLS\;_coredump_driver_api_list_start\;_coredump_driver_api_list_end}") +list(APPEND sections "{NAME\;counter_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;counter_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._counter_driver_api.static.*\;SYMBOLS\;_counter_driver_api_list_start\;_counter_driver_api_list_end}") +list(APPEND sections "{NAME\;crc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;crc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._crc_driver_api.static.*\;SYMBOLS\;_crc_driver_api_list_start\;_crc_driver_api_list_end}") +list(APPEND sections "{NAME\;dac_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;dac_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._dac_driver_api.static.*\;SYMBOLS\;_dac_driver_api_list_start\;_dac_driver_api_list_end}") +list(APPEND sections "{NAME\;dai_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;dai_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._dai_driver_api.static.*\;SYMBOLS\;_dai_driver_api_list_start\;_dai_driver_api_list_end}") +list(APPEND sections "{NAME\;display_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;display_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._display_driver_api.static.*\;SYMBOLS\;_display_driver_api_list_start\;_display_driver_api_list_end}") +list(APPEND sections "{NAME\;dma_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;dma_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._dma_driver_api.static.*\;SYMBOLS\;_dma_driver_api_list_start\;_dma_driver_api_list_end}") +list(APPEND sections "{NAME\;edac_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;edac_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._edac_driver_api.static.*\;SYMBOLS\;_edac_driver_api_list_start\;_edac_driver_api_list_end}") +list(APPEND sections "{NAME\;eeprom_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;eeprom_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._eeprom_driver_api.static.*\;SYMBOLS\;_eeprom_driver_api_list_start\;_eeprom_driver_api_list_end}") +list(APPEND sections "{NAME\;emul_bbram_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;emul_bbram_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._emul_bbram_driver_api.static.*\;SYMBOLS\;_emul_bbram_driver_api_list_start\;_emul_bbram_driver_api_list_end}") +list(APPEND sections "{NAME\;fuel_gauge_emul_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;fuel_gauge_emul_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._fuel_gauge_emul_driver_api.static.*\;SYMBOLS\;_fuel_gauge_emul_driver_api_list_start\;_fuel_gauge_emul_driver_api_list_end}") +list(APPEND sections "{NAME\;emul_sensor_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;emul_sensor_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._emul_sensor_driver_api.static.*\;SYMBOLS\;_emul_sensor_driver_api_list_start\;_emul_sensor_driver_api_list_end}") +list(APPEND sections "{NAME\;entropy_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;entropy_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._entropy_driver_api.static.*\;SYMBOLS\;_entropy_driver_api_list_start\;_entropy_driver_api_list_end}") +list(APPEND sections "{NAME\;espi_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;espi_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._espi_driver_api.static.*\;SYMBOLS\;_espi_driver_api_list_start\;_espi_driver_api_list_end}") +list(APPEND sections "{NAME\;espi_saf_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;espi_saf_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._espi_saf_driver_api.static.*\;SYMBOLS\;_espi_saf_driver_api_list_start\;_espi_saf_driver_api_list_end}") +list(APPEND sections "{NAME\;flash_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;flash_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._flash_driver_api.static.*\;SYMBOLS\;_flash_driver_api_list_start\;_flash_driver_api_list_end}") +list(APPEND sections "{NAME\;fpga_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;fpga_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._fpga_driver_api.static.*\;SYMBOLS\;_fpga_driver_api_list_start\;_fpga_driver_api_list_end}") +list(APPEND sections "{NAME\;fuel_gauge_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;fuel_gauge_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._fuel_gauge_driver_api.static.*\;SYMBOLS\;_fuel_gauge_driver_api_list_start\;_fuel_gauge_driver_api_list_end}") +list(APPEND sections "{NAME\;gnss_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;gnss_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._gnss_driver_api.static.*\;SYMBOLS\;_gnss_driver_api_list_start\;_gnss_driver_api_list_end}") +list(APPEND sections "{NAME\;haptics_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;haptics_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._haptics_driver_api.static.*\;SYMBOLS\;_haptics_driver_api_list_start\;_haptics_driver_api_list_end}") +list(APPEND sections "{NAME\;hwspinlock_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;hwspinlock_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._hwspinlock_driver_api.static.*\;SYMBOLS\;_hwspinlock_driver_api_list_start\;_hwspinlock_driver_api_list_end}") +list(APPEND sections "{NAME\;i2c_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;i2c_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._i2c_driver_api.static.*\;SYMBOLS\;_i2c_driver_api_list_start\;_i2c_driver_api_list_end}") +list(APPEND sections "{NAME\;i2c_target_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;i2c_target_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._i2c_target_driver_api.static.*\;SYMBOLS\;_i2c_target_driver_api_list_start\;_i2c_target_driver_api_list_end}") +list(APPEND sections "{NAME\;i2s_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;i2s_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._i2s_driver_api.static.*\;SYMBOLS\;_i2s_driver_api_list_start\;_i2s_driver_api_list_end}") +list(APPEND sections "{NAME\;i3c_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;i3c_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._i3c_driver_api.static.*\;SYMBOLS\;_i3c_driver_api_list_start\;_i3c_driver_api_list_end}") +list(APPEND sections "{NAME\;ipm_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;ipm_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._ipm_driver_api.static.*\;SYMBOLS\;_ipm_driver_api_list_start\;_ipm_driver_api_list_end}") +list(APPEND sections "{NAME\;led_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;led_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._led_driver_api.static.*\;SYMBOLS\;_led_driver_api_list_start\;_led_driver_api_list_end}") +list(APPEND sections "{NAME\;led_strip_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;led_strip_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._led_strip_driver_api.static.*\;SYMBOLS\;_led_strip_driver_api_list_start\;_led_strip_driver_api_list_end}") +list(APPEND sections "{NAME\;lora_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;lora_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._lora_driver_api.static.*\;SYMBOLS\;_lora_driver_api_list_start\;_lora_driver_api_list_end}") +list(APPEND sections "{NAME\;mbox_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;mbox_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._mbox_driver_api.static.*\;SYMBOLS\;_mbox_driver_api_list_start\;_mbox_driver_api_list_end}") +list(APPEND sections "{NAME\;mdio_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;mdio_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._mdio_driver_api.static.*\;SYMBOLS\;_mdio_driver_api_list_start\;_mdio_driver_api_list_end}") +list(APPEND sections "{NAME\;mipi_dbi_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;mipi_dbi_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._mipi_dbi_driver_api.static.*\;SYMBOLS\;_mipi_dbi_driver_api_list_start\;_mipi_dbi_driver_api_list_end}") +list(APPEND sections "{NAME\;mipi_dsi_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;mipi_dsi_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._mipi_dsi_driver_api.static.*\;SYMBOLS\;_mipi_dsi_driver_api_list_start\;_mipi_dsi_driver_api_list_end}") +list(APPEND sections "{NAME\;mspi_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;mspi_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._mspi_driver_api.static.*\;SYMBOLS\;_mspi_driver_api_list_start\;_mspi_driver_api_list_end}") +list(APPEND sections "{NAME\;opamp_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;opamp_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._opamp_driver_api.static.*\;SYMBOLS\;_opamp_driver_api_list_start\;_opamp_driver_api_list_end}") +list(APPEND sections "{NAME\;otp_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;otp_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._otp_driver_api.static.*\;SYMBOLS\;_otp_driver_api_list_start\;_otp_driver_api_list_end}") +list(APPEND sections "{NAME\;peci_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;peci_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._peci_driver_api.static.*\;SYMBOLS\;_peci_driver_api_list_start\;_peci_driver_api_list_end}") +list(APPEND sections "{NAME\;ps2_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;ps2_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._ps2_driver_api.static.*\;SYMBOLS\;_ps2_driver_api_list_start\;_ps2_driver_api_list_end}") +list(APPEND sections "{NAME\;ptp_clock_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;ptp_clock_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._ptp_clock_driver_api.static.*\;SYMBOLS\;_ptp_clock_driver_api_list_start\;_ptp_clock_driver_api_list_end}") +list(APPEND sections "{NAME\;pwm_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;pwm_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._pwm_driver_api.static.*\;SYMBOLS\;_pwm_driver_api_list_start\;_pwm_driver_api_list_end}") +list(APPEND sections "{NAME\;regulator_parent_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;regulator_parent_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._regulator_parent_driver_api.static.*\;SYMBOLS\;_regulator_parent_driver_api_list_start\;_regulator_parent_driver_api_list_end}") +list(APPEND sections "{NAME\;regulator_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;regulator_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._regulator_driver_api.static.*\;SYMBOLS\;_regulator_driver_api_list_start\;_regulator_driver_api_list_end}") +list(APPEND sections "{NAME\;reset_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;reset_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._reset_driver_api.static.*\;SYMBOLS\;_reset_driver_api_list_start\;_reset_driver_api_list_end}") +list(APPEND sections "{NAME\;retained_mem_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;retained_mem_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._retained_mem_driver_api.static.*\;SYMBOLS\;_retained_mem_driver_api_list_start\;_retained_mem_driver_api_list_end}") +list(APPEND sections "{NAME\;rtc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;rtc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._rtc_driver_api.static.*\;SYMBOLS\;_rtc_driver_api_list_start\;_rtc_driver_api_list_end}") +list(APPEND sections "{NAME\;sdhc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;sdhc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._sdhc_driver_api.static.*\;SYMBOLS\;_sdhc_driver_api_list_start\;_sdhc_driver_api_list_end}") +list(APPEND sections "{NAME\;sensor_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;sensor_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._sensor_driver_api.static.*\;SYMBOLS\;_sensor_driver_api_list_start\;_sensor_driver_api_list_end}") +list(APPEND sections "{NAME\;smbus_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;smbus_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._smbus_driver_api.static.*\;SYMBOLS\;_smbus_driver_api_list_start\;_smbus_driver_api_list_end}") +list(APPEND sections "{NAME\;syscon_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;syscon_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._syscon_driver_api.static.*\;SYMBOLS\;_syscon_driver_api_list_start\;_syscon_driver_api_list_end}") +list(APPEND sections "{NAME\;tee_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;tee_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._tee_driver_api.static.*\;SYMBOLS\;_tee_driver_api_list_start\;_tee_driver_api_list_end}") +list(APPEND sections "{NAME\;uaol_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;uaol_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._uaol_driver_api.static.*\;SYMBOLS\;_uaol_driver_api_list_start\;_uaol_driver_api_list_end}") +list(APPEND sections "{NAME\;video_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;video_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._video_driver_api.static.*\;SYMBOLS\;_video_driver_api_list_start\;_video_driver_api_list_end}") +list(APPEND sections "{NAME\;virtio_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;virtio_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._virtio_driver_api.static.*\;SYMBOLS\;_virtio_driver_api_list_start\;_virtio_driver_api_list_end}") +list(APPEND sections "{NAME\;w1_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;w1_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._w1_driver_api.static.*\;SYMBOLS\;_w1_driver_api_list_start\;_w1_driver_api_list_end}") +list(APPEND sections "{NAME\;wdt_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;wdt_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._wdt_driver_api.static.*\;SYMBOLS\;_wdt_driver_api_list_start\;_wdt_driver_api_list_end}") +list(APPEND sections "{NAME\;wuc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;wuc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._wuc_driver_api.static.*\;SYMBOLS\;_wuc_driver_api_list_start\;_wuc_driver_api_list_end}") +list(APPEND sections "{NAME\;can_transceiver_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;can_transceiver_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._can_transceiver_driver_api.static.*\;SYMBOLS\;_can_transceiver_driver_api_list_start\;_can_transceiver_driver_api_list_end}") +list(APPEND sections "{NAME\;nrf_clock_control_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;nrf_clock_control_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._nrf_clock_control_driver_api.static.*\;SYMBOLS\;_nrf_clock_control_driver_api_list_start\;_nrf_clock_control_driver_api_list_end}") +list(APPEND sections "{NAME\;i3c_target_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;i3c_target_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._i3c_target_driver_api.static.*\;SYMBOLS\;_i3c_target_driver_api_list_start\;_i3c_target_driver_api_list_end}") +list(APPEND sections "{NAME\;its_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;its_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._its_driver_api.static.*\;SYMBOLS\;_its_driver_api_list_start\;_its_driver_api_list_end}") +list(APPEND sections "{NAME\;vtd_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;vtd_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._vtd_driver_api.static.*\;SYMBOLS\;_vtd_driver_api_list_start\;_vtd_driver_api_list_end}") +list(APPEND sections "{NAME\;renesas_elc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;renesas_elc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._renesas_elc_driver_api.static.*\;SYMBOLS\;_renesas_elc_driver_api_list_start\;_renesas_elc_driver_api_list_end}") +list(APPEND sections "{NAME\;tgpio_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;tgpio_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._tgpio_driver_api.static.*\;SYMBOLS\;_tgpio_driver_api_list_start\;_tgpio_driver_api_list_end}") +list(APPEND sections "{NAME\;pcie_ctrl_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;pcie_ctrl_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._pcie_ctrl_driver_api.static.*\;SYMBOLS\;_pcie_ctrl_driver_api_list_start\;_pcie_ctrl_driver_api_list_end}") +list(APPEND sections "{NAME\;pcie_ep_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;pcie_ep_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._pcie_ep_driver_api.static.*\;SYMBOLS\;_pcie_ep_driver_api_list_start\;_pcie_ep_driver_api_list_end}") +list(APPEND sections "{NAME\;psi5_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;psi5_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._psi5_driver_api.static.*\;SYMBOLS\;_psi5_driver_api_list_start\;_psi5_driver_api_list_end}") +list(APPEND sections "{NAME\;sent_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;sent_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._sent_driver_api.static.*\;SYMBOLS\;_sent_driver_api_list_start\;_sent_driver_api_list_end}") +list(APPEND sections "{NAME\;svc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;svc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._svc_driver_api.static.*\;SYMBOLS\;_svc_driver_api_list_start\;_svc_driver_api_list_end}") +list(APPEND sections "{NAME\;stepper_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;stepper_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._stepper_driver_api.static.*\;SYMBOLS\;_stepper_driver_api_list_start\;_stepper_driver_api_list_end}") +list(APPEND sections "{NAME\;stepper_ctrl_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;stepper_ctrl_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._stepper_ctrl_driver_api.static.*\;SYMBOLS\;_stepper_ctrl_driver_api_list_start\;_stepper_ctrl_driver_api_list_end}") +list(APPEND sections "{NAME\;uart_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;uart_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._uart_driver_api.static.*\;SYMBOLS\;_uart_driver_api_list_start\;_uart_driver_api_list_end}") +list(APPEND sections "{NAME\;bc12_emul_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;bc12_emul_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._bc12_emul_driver_api.static.*\;SYMBOLS\;_bc12_emul_driver_api_list_start\;_bc12_emul_driver_api_list_end}") +list(APPEND sections "{NAME\;bc12_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;bc12_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._bc12_driver_api.static.*\;SYMBOLS\;_bc12_driver_api_list_start\;_bc12_driver_api_list_end}") +list(APPEND sections "{NAME\;usbc_ppc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;usbc_ppc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._usbc_ppc_driver_api.static.*\;SYMBOLS\;_usbc_ppc_driver_api_list_start\;_usbc_ppc_driver_api_list_end}") +list(APPEND sections "{NAME\;tcpc_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;tcpc_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._tcpc_driver_api.static.*\;SYMBOLS\;_tcpc_driver_api_list_start\;_tcpc_driver_api_list_end}") +list(APPEND sections "{NAME\;usbc_vbus_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;usbc_vbus_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._usbc_vbus_driver_api.static.*\;SYMBOLS\;_usbc_vbus_driver_api_list_start\;_usbc_vbus_driver_api_list_end}") +list(APPEND sections "{NAME\;ivshmem_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;ivshmem_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._ivshmem_driver_api.static.*\;SYMBOLS\;_ivshmem_driver_api_list_start\;_ivshmem_driver_api_list_end}") +list(APPEND sections "{NAME\;ethphy_driver_api_area\;GROUP\;RODATA_REGION\;SUBALIGN\;4\;NOINPUT\;TRUE}") +list(APPEND section_settings "{SECTION\;ethphy_driver_api_area\;SORT\;NAME\;KEEP\;TRUE\;INPUT\;._ethphy_driver_api.static.*\;SYMBOLS\;_ethphy_driver_api_list_start\;_ethphy_driver_api_list_end}") +set(DEVICE_API_SECTIONS "${sections}" CACHE INTERNAL "") +set(DEVICE_API_SECTION_SETTINGS "${section_settings}" CACHE INTERNAL "") diff --git a/build/zephyr/include/generated/device-api-sections.ld b/build/zephyr/include/generated/device-api-sections.ld new file mode 100644 index 0000000..705678b --- /dev/null +++ b/build/zephyr/include/generated/device-api-sections.ld @@ -0,0 +1,92 @@ +ITERABLE_SECTION_ROM(gpio_driver_api, 4) +ITERABLE_SECTION_ROM(spi_driver_api, 4) +ITERABLE_SECTION_ROM(shared_irq_driver_api, 4) +ITERABLE_SECTION_ROM(crypto_driver_api, 4) +ITERABLE_SECTION_ROM(adc_driver_api, 4) +ITERABLE_SECTION_ROM(auxdisplay_driver_api, 4) +ITERABLE_SECTION_ROM(bbram_driver_api, 4) +ITERABLE_SECTION_ROM(biometric_driver_api, 4) +ITERABLE_SECTION_ROM(bt_hci_driver_api, 4) +ITERABLE_SECTION_ROM(can_driver_api, 4) +ITERABLE_SECTION_ROM(cellular_driver_api, 4) +ITERABLE_SECTION_ROM(charger_driver_api, 4) +ITERABLE_SECTION_ROM(clock_control_driver_api, 4) +ITERABLE_SECTION_ROM(comparator_driver_api, 4) +ITERABLE_SECTION_ROM(coredump_driver_api, 4) +ITERABLE_SECTION_ROM(counter_driver_api, 4) +ITERABLE_SECTION_ROM(crc_driver_api, 4) +ITERABLE_SECTION_ROM(dac_driver_api, 4) +ITERABLE_SECTION_ROM(dai_driver_api, 4) +ITERABLE_SECTION_ROM(display_driver_api, 4) +ITERABLE_SECTION_ROM(dma_driver_api, 4) +ITERABLE_SECTION_ROM(edac_driver_api, 4) +ITERABLE_SECTION_ROM(eeprom_driver_api, 4) +ITERABLE_SECTION_ROM(emul_bbram_driver_api, 4) +ITERABLE_SECTION_ROM(fuel_gauge_emul_driver_api, 4) +ITERABLE_SECTION_ROM(emul_sensor_driver_api, 4) +ITERABLE_SECTION_ROM(entropy_driver_api, 4) +ITERABLE_SECTION_ROM(espi_driver_api, 4) +ITERABLE_SECTION_ROM(espi_saf_driver_api, 4) +ITERABLE_SECTION_ROM(flash_driver_api, 4) +ITERABLE_SECTION_ROM(fpga_driver_api, 4) +ITERABLE_SECTION_ROM(fuel_gauge_driver_api, 4) +ITERABLE_SECTION_ROM(gnss_driver_api, 4) +ITERABLE_SECTION_ROM(haptics_driver_api, 4) +ITERABLE_SECTION_ROM(hwspinlock_driver_api, 4) +ITERABLE_SECTION_ROM(i2c_driver_api, 4) +ITERABLE_SECTION_ROM(i2c_target_driver_api, 4) +ITERABLE_SECTION_ROM(i2s_driver_api, 4) +ITERABLE_SECTION_ROM(i3c_driver_api, 4) +ITERABLE_SECTION_ROM(ipm_driver_api, 4) +ITERABLE_SECTION_ROM(led_driver_api, 4) +ITERABLE_SECTION_ROM(led_strip_driver_api, 4) +ITERABLE_SECTION_ROM(lora_driver_api, 4) +ITERABLE_SECTION_ROM(mbox_driver_api, 4) +ITERABLE_SECTION_ROM(mdio_driver_api, 4) +ITERABLE_SECTION_ROM(mipi_dbi_driver_api, 4) +ITERABLE_SECTION_ROM(mipi_dsi_driver_api, 4) +ITERABLE_SECTION_ROM(mspi_driver_api, 4) +ITERABLE_SECTION_ROM(opamp_driver_api, 4) +ITERABLE_SECTION_ROM(otp_driver_api, 4) +ITERABLE_SECTION_ROM(peci_driver_api, 4) +ITERABLE_SECTION_ROM(ps2_driver_api, 4) +ITERABLE_SECTION_ROM(ptp_clock_driver_api, 4) +ITERABLE_SECTION_ROM(pwm_driver_api, 4) +ITERABLE_SECTION_ROM(regulator_parent_driver_api, 4) +ITERABLE_SECTION_ROM(regulator_driver_api, 4) +ITERABLE_SECTION_ROM(reset_driver_api, 4) +ITERABLE_SECTION_ROM(retained_mem_driver_api, 4) +ITERABLE_SECTION_ROM(rtc_driver_api, 4) +ITERABLE_SECTION_ROM(sdhc_driver_api, 4) +ITERABLE_SECTION_ROM(sensor_driver_api, 4) +ITERABLE_SECTION_ROM(smbus_driver_api, 4) +ITERABLE_SECTION_ROM(syscon_driver_api, 4) +ITERABLE_SECTION_ROM(tee_driver_api, 4) +ITERABLE_SECTION_ROM(uaol_driver_api, 4) +ITERABLE_SECTION_ROM(video_driver_api, 4) +ITERABLE_SECTION_ROM(virtio_driver_api, 4) +ITERABLE_SECTION_ROM(w1_driver_api, 4) +ITERABLE_SECTION_ROM(wdt_driver_api, 4) +ITERABLE_SECTION_ROM(wuc_driver_api, 4) +ITERABLE_SECTION_ROM(can_transceiver_driver_api, 4) +ITERABLE_SECTION_ROM(nrf_clock_control_driver_api, 4) +ITERABLE_SECTION_ROM(i3c_target_driver_api, 4) +ITERABLE_SECTION_ROM(its_driver_api, 4) +ITERABLE_SECTION_ROM(vtd_driver_api, 4) +ITERABLE_SECTION_ROM(renesas_elc_driver_api, 4) +ITERABLE_SECTION_ROM(tgpio_driver_api, 4) +ITERABLE_SECTION_ROM(pcie_ctrl_driver_api, 4) +ITERABLE_SECTION_ROM(pcie_ep_driver_api, 4) +ITERABLE_SECTION_ROM(psi5_driver_api, 4) +ITERABLE_SECTION_ROM(sent_driver_api, 4) +ITERABLE_SECTION_ROM(svc_driver_api, 4) +ITERABLE_SECTION_ROM(stepper_driver_api, 4) +ITERABLE_SECTION_ROM(stepper_ctrl_driver_api, 4) +ITERABLE_SECTION_ROM(uart_driver_api, 4) +ITERABLE_SECTION_ROM(bc12_emul_driver_api, 4) +ITERABLE_SECTION_ROM(bc12_driver_api, 4) +ITERABLE_SECTION_ROM(usbc_ppc_driver_api, 4) +ITERABLE_SECTION_ROM(tcpc_driver_api, 4) +ITERABLE_SECTION_ROM(usbc_vbus_driver_api, 4) +ITERABLE_SECTION_ROM(ivshmem_driver_api, 4) +ITERABLE_SECTION_ROM(ethphy_driver_api, 4) diff --git a/build/zephyr/include/generated/snippets-data-sections.ld b/build/zephyr/include/generated/snippets-data-sections.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/zephyr/include/generated/snippets-dtcm-section.ld b/build/zephyr/include/generated/snippets-dtcm-section.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/zephyr/include/generated/snippets-itcm-section.ld b/build/zephyr/include/generated/snippets-itcm-section.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/zephyr/include/generated/snippets-nocache-section.ld b/build/zephyr/include/generated/snippets-nocache-section.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/zephyr/include/generated/snippets-noinit.ld b/build/zephyr/include/generated/snippets-noinit.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/zephyr/include/generated/snippets-pinned-data-sections.ld b/build/zephyr/include/generated/snippets-pinned-data-sections.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/zephyr/include/generated/snippets-pinned-ram-sections.ld b/build/zephyr/include/generated/snippets-pinned-ram-sections.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/zephyr/include/generated/snippets-pinned-rodata.ld b/build/zephyr/include/generated/snippets-pinned-rodata.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/zephyr/include/generated/snippets-ram-sections.ld b/build/zephyr/include/generated/snippets-ram-sections.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/zephyr/include/generated/snippets-ramfunc-section.ld b/build/zephyr/include/generated/snippets-ramfunc-section.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/zephyr/include/generated/snippets-rodata.ld b/build/zephyr/include/generated/snippets-rodata.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/zephyr/include/generated/snippets-rom-sections.ld b/build/zephyr/include/generated/snippets-rom-sections.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/zephyr/include/generated/snippets-rom-start.ld b/build/zephyr/include/generated/snippets-rom-start.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/zephyr/include/generated/snippets-rwdata.ld b/build/zephyr/include/generated/snippets-rwdata.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/zephyr/include/generated/snippets-sections.ld b/build/zephyr/include/generated/snippets-sections.ld new file mode 100644 index 0000000..3c846b2 --- /dev/null +++ b/build/zephyr/include/generated/snippets-sections.ld @@ -0,0 +1 @@ +/* Sort key: "default" */#include "zephyr/linker/intlist.ld" diff --git a/build/zephyr/include/generated/snippets-text-sections.ld b/build/zephyr/include/generated/snippets-text-sections.ld new file mode 100644 index 0000000..e69de29 diff --git a/build/zephyr/include/generated/syscall_list.h b/build/zephyr/include/generated/syscall_list.h new file mode 100644 index 0000000..fb04eac --- /dev/null +++ b/build/zephyr/include/generated/syscall_list.h @@ -0,0 +1,662 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef ZEPHYR_SYSCALL_LIST_H +#define ZEPHYR_SYSCALL_LIST_H + +#define K_SYSCALL_DEVICE_DEINIT 0 +#define K_SYSCALL_DEVICE_GET_BINDING 1 +#define K_SYSCALL_DEVICE_GET_BY_DT_NODELABEL 2 +#define K_SYSCALL_DEVICE_INIT 3 +#define K_SYSCALL_DEVICE_IS_READY 4 +#define K_SYSCALL_GPIO_GET_PENDING_INT 5 +#define K_SYSCALL_GPIO_PIN_CONFIGURE 6 +#define K_SYSCALL_GPIO_PIN_GET_CONFIG 7 +#define K_SYSCALL_GPIO_PIN_INTERRUPT_CONFIGURE 8 +#define K_SYSCALL_GPIO_PORT_CLEAR_BITS_RAW 9 +#define K_SYSCALL_GPIO_PORT_GET_DIRECTION 10 +#define K_SYSCALL_GPIO_PORT_GET_RAW 11 +#define K_SYSCALL_GPIO_PORT_SET_BITS_RAW 12 +#define K_SYSCALL_GPIO_PORT_SET_MASKED_RAW 13 +#define K_SYSCALL_GPIO_PORT_TOGGLE_BITS 14 +#define K_SYSCALL_K_BUSY_WAIT 15 +#define K_SYSCALL_K_CONDVAR_BROADCAST 16 +#define K_SYSCALL_K_CONDVAR_INIT 17 +#define K_SYSCALL_K_CONDVAR_SIGNAL 18 +#define K_SYSCALL_K_CONDVAR_WAIT 19 +#define K_SYSCALL_K_EVENT_CLEAR 20 +#define K_SYSCALL_K_EVENT_INIT 21 +#define K_SYSCALL_K_EVENT_POST 22 +#define K_SYSCALL_K_EVENT_SET 23 +#define K_SYSCALL_K_EVENT_SET_MASKED 24 +#define K_SYSCALL_K_EVENT_WAIT 25 +#define K_SYSCALL_K_EVENT_WAIT_ALL 26 +#define K_SYSCALL_K_EVENT_WAIT_ALL_SAFE 27 +#define K_SYSCALL_K_EVENT_WAIT_SAFE 28 +#define K_SYSCALL_K_FLOAT_DISABLE 29 +#define K_SYSCALL_K_FLOAT_ENABLE 30 +#define K_SYSCALL_K_FUTEX_WAIT 31 +#define K_SYSCALL_K_FUTEX_WAKE 32 +#define K_SYSCALL_K_IS_PREEMPT_THREAD 33 +#define K_SYSCALL_K_MSGQ_ALLOC_INIT 34 +#define K_SYSCALL_K_MSGQ_GET 35 +#define K_SYSCALL_K_MSGQ_GET_ATTRS 36 +#define K_SYSCALL_K_MSGQ_NUM_FREE_GET 37 +#define K_SYSCALL_K_MSGQ_NUM_USED_GET 38 +#define K_SYSCALL_K_MSGQ_PEEK 39 +#define K_SYSCALL_K_MSGQ_PEEK_AT 40 +#define K_SYSCALL_K_MSGQ_PURGE 41 +#define K_SYSCALL_K_MSGQ_PUT 42 +#define K_SYSCALL_K_MSGQ_PUT_FRONT 43 +#define K_SYSCALL_K_MUTEX_INIT 44 +#define K_SYSCALL_K_MUTEX_LOCK 45 +#define K_SYSCALL_K_MUTEX_UNLOCK 46 +#define K_SYSCALL_K_OBJECT_ACCESS_CHECK 47 +#define K_SYSCALL_K_OBJECT_ACCESS_GRANT 48 +#define K_SYSCALL_K_OBJECT_ALLOC 49 +#define K_SYSCALL_K_OBJECT_ALLOC_SIZE 50 +#define K_SYSCALL_K_OBJECT_RELEASE 51 +#define K_SYSCALL_K_PIPE_CLOSE 52 +#define K_SYSCALL_K_PIPE_INIT 53 +#define K_SYSCALL_K_PIPE_READ 54 +#define K_SYSCALL_K_PIPE_RESET 55 +#define K_SYSCALL_K_PIPE_WRITE 56 +#define K_SYSCALL_K_POLL 57 +#define K_SYSCALL_K_POLL_SIGNAL_CHECK 58 +#define K_SYSCALL_K_POLL_SIGNAL_INIT 59 +#define K_SYSCALL_K_POLL_SIGNAL_RAISE 60 +#define K_SYSCALL_K_POLL_SIGNAL_RESET 61 +#define K_SYSCALL_K_QUEUE_ALLOC_APPEND 62 +#define K_SYSCALL_K_QUEUE_ALLOC_PREPEND 63 +#define K_SYSCALL_K_QUEUE_CANCEL_WAIT 64 +#define K_SYSCALL_K_QUEUE_GET 65 +#define K_SYSCALL_K_QUEUE_INIT 66 +#define K_SYSCALL_K_QUEUE_IS_EMPTY 67 +#define K_SYSCALL_K_QUEUE_PEEK_HEAD 68 +#define K_SYSCALL_K_QUEUE_PEEK_TAIL 69 +#define K_SYSCALL_K_RESCHEDULE 70 +#define K_SYSCALL_K_SCHED_CURRENT_THREAD_QUERY 71 +#define K_SYSCALL_K_SEM_COUNT_GET 72 +#define K_SYSCALL_K_SEM_GIVE 73 +#define K_SYSCALL_K_SEM_INIT 74 +#define K_SYSCALL_K_SEM_RESET 75 +#define K_SYSCALL_K_SEM_TAKE 76 +#define K_SYSCALL_K_SLEEP 77 +#define K_SYSCALL_K_STACK_ALLOC_INIT 78 +#define K_SYSCALL_K_STACK_POP 79 +#define K_SYSCALL_K_STACK_PUSH 80 +#define K_SYSCALL_K_STR_OUT 81 +#define K_SYSCALL_K_THREAD_ABORT 82 +#define K_SYSCALL_K_THREAD_ABSOLUTE_DEADLINE_SET 83 +#define K_SYSCALL_K_THREAD_CREATE 84 +#define K_SYSCALL_K_THREAD_CUSTOM_DATA_GET 85 +#define K_SYSCALL_K_THREAD_CUSTOM_DATA_SET 86 +#define K_SYSCALL_K_THREAD_DEADLINE_SET 87 +#define K_SYSCALL_K_THREAD_JOIN 88 +#define K_SYSCALL_K_THREAD_NAME_COPY 89 +#define K_SYSCALL_K_THREAD_NAME_SET 90 +#define K_SYSCALL_K_THREAD_PRIORITY_GET 91 +#define K_SYSCALL_K_THREAD_PRIORITY_SET 92 +#define K_SYSCALL_K_THREAD_RESUME 93 +#define K_SYSCALL_K_THREAD_RUNTIME_STACK_UNUSED_THRESHOLD_GET 94 +#define K_SYSCALL_K_THREAD_RUNTIME_STACK_UNUSED_THRESHOLD_PCT_SET 95 +#define K_SYSCALL_K_THREAD_RUNTIME_STACK_UNUSED_THRESHOLD_SET 96 +#define K_SYSCALL_K_THREAD_STACK_ALLOC 97 +#define K_SYSCALL_K_THREAD_STACK_FREE 98 +#define K_SYSCALL_K_THREAD_STACK_SPACE_GET 99 +#define K_SYSCALL_K_THREAD_SUSPEND 100 +#define K_SYSCALL_K_THREAD_TIMEOUT_EXPIRES_TICKS 101 +#define K_SYSCALL_K_THREAD_TIMEOUT_REMAINING_TICKS 102 +#define K_SYSCALL_K_TIMER_EXPIRES_TICKS 103 +#define K_SYSCALL_K_TIMER_REMAINING_TICKS 104 +#define K_SYSCALL_K_TIMER_START 105 +#define K_SYSCALL_K_TIMER_STATUS_GET 106 +#define K_SYSCALL_K_TIMER_STATUS_SYNC 107 +#define K_SYSCALL_K_TIMER_STOP 108 +#define K_SYSCALL_K_TIMER_USER_DATA_GET 109 +#define K_SYSCALL_K_TIMER_USER_DATA_SET 110 +#define K_SYSCALL_K_UPTIME_TICKS 111 +#define K_SYSCALL_K_USLEEP 112 +#define K_SYSCALL_K_WAKEUP 113 +#define K_SYSCALL_K_YIELD 114 +#define K_SYSCALL_LOG_BUFFERED_CNT 115 +#define K_SYSCALL_LOG_FILTER_SET 116 +#define K_SYSCALL_LOG_FRONTEND_FILTER_SET 117 +#define K_SYSCALL_LOG_PANIC 118 +#define K_SYSCALL_LOG_PROCESS 119 +#define K_SYSCALL_SPI_RELEASE 120 +#define K_SYSCALL_SPI_TRANSCEIVE 121 +#define K_SYSCALL_SYS_CLOCK_GETRTOFFSET 122 +#define K_SYSCALL_SYS_CLOCK_HW_CYCLES_PER_SEC_RUNTIME_GET 123 +#define K_SYSCALL_SYS_CLOCK_NANOSLEEP 124 +#define K_SYSCALL_SYS_CLOCK_SETTIME 125 +#define K_SYSCALL_UART_CONFIGURE 126 +#define K_SYSCALL_UART_CONFIG_GET 127 +#define K_SYSCALL_UART_DRV_CMD 128 +#define K_SYSCALL_UART_ERR_CHECK 129 +#define K_SYSCALL_UART_IRQ_ERR_DISABLE 130 +#define K_SYSCALL_UART_IRQ_ERR_ENABLE 131 +#define K_SYSCALL_UART_IRQ_IS_PENDING 132 +#define K_SYSCALL_UART_IRQ_RX_DISABLE 133 +#define K_SYSCALL_UART_IRQ_RX_ENABLE 134 +#define K_SYSCALL_UART_IRQ_TX_DISABLE 135 +#define K_SYSCALL_UART_IRQ_TX_ENABLE 136 +#define K_SYSCALL_UART_IRQ_UPDATE 137 +#define K_SYSCALL_UART_LINE_CTRL_GET 138 +#define K_SYSCALL_UART_LINE_CTRL_SET 139 +#define K_SYSCALL_UART_POLL_IN 140 +#define K_SYSCALL_UART_POLL_IN_U16 141 +#define K_SYSCALL_UART_POLL_OUT 142 +#define K_SYSCALL_UART_POLL_OUT_U16 143 +#define K_SYSCALL_UART_RX_DISABLE 144 +#define K_SYSCALL_UART_RX_ENABLE 145 +#define K_SYSCALL_UART_RX_ENABLE_U16 146 +#define K_SYSCALL_UART_TX 147 +#define K_SYSCALL_UART_TX_ABORT 148 +#define K_SYSCALL_UART_TX_U16 149 +#define K_SYSCALL_XTENSA_USER_FAULT 150 +#define K_SYSCALL_ZEPHYR_FPUTC 151 +#define K_SYSCALL_ZEPHYR_FWRITE 152 +#define K_SYSCALL_ZEPHYR_READ_STDIN 153 +#define K_SYSCALL_ZEPHYR_WRITE_STDOUT 154 +#define K_SYSCALL_Z_ERRNO 155 +#define K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_0 156 +#define K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_1 157 +#define K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_2 158 +#define K_SYSCALL_Z_LOG_MSG_STATIC_CREATE 159 +#define K_SYSCALL_Z_SYS_MUTEX_KERNEL_LOCK 160 +#define K_SYSCALL_Z_SYS_MUTEX_KERNEL_UNLOCK 161 +#define K_SYSCALL_BAD 162 +#define K_SYSCALL_LIMIT 163 + + +/* Following syscalls are not used in image */ +#define K_SYSCALL_ADC_CHANNEL_SETUP 164 +#define K_SYSCALL_ADC_GET_DECODER 165 +#define K_SYSCALL_ADC_READ 166 +#define K_SYSCALL_ADC_READ_ASYNC 167 +#define K_SYSCALL_ATOMIC_ADD 168 +#define K_SYSCALL_ATOMIC_AND 169 +#define K_SYSCALL_ATOMIC_CAS 170 +#define K_SYSCALL_ATOMIC_NAND 171 +#define K_SYSCALL_ATOMIC_OR 172 +#define K_SYSCALL_ATOMIC_PTR_CAS 173 +#define K_SYSCALL_ATOMIC_PTR_SET 174 +#define K_SYSCALL_ATOMIC_SET 175 +#define K_SYSCALL_ATOMIC_SUB 176 +#define K_SYSCALL_ATOMIC_XOR 177 +#define K_SYSCALL_AUXDISPLAY_BACKLIGHT_GET 178 +#define K_SYSCALL_AUXDISPLAY_BACKLIGHT_SET 179 +#define K_SYSCALL_AUXDISPLAY_BRIGHTNESS_GET 180 +#define K_SYSCALL_AUXDISPLAY_BRIGHTNESS_SET 181 +#define K_SYSCALL_AUXDISPLAY_CAPABILITIES_GET 182 +#define K_SYSCALL_AUXDISPLAY_CLEAR 183 +#define K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_GET 184 +#define K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_SET 185 +#define K_SYSCALL_AUXDISPLAY_CURSOR_SET_ENABLED 186 +#define K_SYSCALL_AUXDISPLAY_CURSOR_SHIFT_SET 187 +#define K_SYSCALL_AUXDISPLAY_CUSTOM_CHARACTER_SET 188 +#define K_SYSCALL_AUXDISPLAY_CUSTOM_COMMAND 189 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_OFF 190 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_ON 191 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_GET 192 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_SET 193 +#define K_SYSCALL_AUXDISPLAY_IS_BUSY 194 +#define K_SYSCALL_AUXDISPLAY_POSITION_BLINKING_SET_ENABLED 195 +#define K_SYSCALL_AUXDISPLAY_WRITE 196 +#define K_SYSCALL_BBRAM_CHECK_INVALID 197 +#define K_SYSCALL_BBRAM_CHECK_POWER 198 +#define K_SYSCALL_BBRAM_CHECK_STANDBY_POWER 199 +#define K_SYSCALL_BBRAM_GET_SIZE 200 +#define K_SYSCALL_BBRAM_READ 201 +#define K_SYSCALL_BBRAM_WRITE 202 +#define K_SYSCALL_BC12_SET_RESULT_CB 203 +#define K_SYSCALL_BC12_SET_ROLE 204 +#define K_SYSCALL_BIOMETRIC_ATTR_GET 205 +#define K_SYSCALL_BIOMETRIC_ATTR_SET 206 +#define K_SYSCALL_BIOMETRIC_ENROLL_ABORT 207 +#define K_SYSCALL_BIOMETRIC_ENROLL_CAPTURE 208 +#define K_SYSCALL_BIOMETRIC_ENROLL_FINALIZE 209 +#define K_SYSCALL_BIOMETRIC_ENROLL_START 210 +#define K_SYSCALL_BIOMETRIC_GET_CAPABILITIES 211 +#define K_SYSCALL_BIOMETRIC_LED_CONTROL 212 +#define K_SYSCALL_BIOMETRIC_MATCH 213 +#define K_SYSCALL_BIOMETRIC_TEMPLATE_DELETE 214 +#define K_SYSCALL_BIOMETRIC_TEMPLATE_DELETE_ALL 215 +#define K_SYSCALL_BIOMETRIC_TEMPLATE_LIST 216 +#define K_SYSCALL_BIOMETRIC_TEMPLATE_READ 217 +#define K_SYSCALL_BIOMETRIC_TEMPLATE_STORE 218 +#define K_SYSCALL_CAN_ADD_RX_FILTER_MSGQ 219 +#define K_SYSCALL_CAN_CALC_TIMING 220 +#define K_SYSCALL_CAN_CALC_TIMING_DATA 221 +#define K_SYSCALL_CAN_GET_BITRATE_MAX 222 +#define K_SYSCALL_CAN_GET_BITRATE_MIN 223 +#define K_SYSCALL_CAN_GET_CAPABILITIES 224 +#define K_SYSCALL_CAN_GET_CORE_CLOCK 225 +#define K_SYSCALL_CAN_GET_MAX_FILTERS 226 +#define K_SYSCALL_CAN_GET_MODE 227 +#define K_SYSCALL_CAN_GET_STATE 228 +#define K_SYSCALL_CAN_GET_TIMING_DATA_MAX 229 +#define K_SYSCALL_CAN_GET_TIMING_DATA_MIN 230 +#define K_SYSCALL_CAN_GET_TIMING_MAX 231 +#define K_SYSCALL_CAN_GET_TIMING_MIN 232 +#define K_SYSCALL_CAN_GET_TRANSCEIVER 233 +#define K_SYSCALL_CAN_RECOVER 234 +#define K_SYSCALL_CAN_REMOVE_RX_FILTER 235 +#define K_SYSCALL_CAN_SEND 236 +#define K_SYSCALL_CAN_SET_BITRATE 237 +#define K_SYSCALL_CAN_SET_BITRATE_DATA 238 +#define K_SYSCALL_CAN_SET_MODE 239 +#define K_SYSCALL_CAN_SET_TIMING 240 +#define K_SYSCALL_CAN_SET_TIMING_DATA 241 +#define K_SYSCALL_CAN_START 242 +#define K_SYSCALL_CAN_STATS_GET_ACK_ERRORS 243 +#define K_SYSCALL_CAN_STATS_GET_BIT0_ERRORS 244 +#define K_SYSCALL_CAN_STATS_GET_BIT1_ERRORS 245 +#define K_SYSCALL_CAN_STATS_GET_BIT_ERRORS 246 +#define K_SYSCALL_CAN_STATS_GET_CRC_ERRORS 247 +#define K_SYSCALL_CAN_STATS_GET_FORM_ERRORS 248 +#define K_SYSCALL_CAN_STATS_GET_RX_OVERRUNS 249 +#define K_SYSCALL_CAN_STATS_GET_STUFF_ERRORS 250 +#define K_SYSCALL_CAN_STOP 251 +#define K_SYSCALL_CHARGER_CHARGE_ENABLE 252 +#define K_SYSCALL_CHARGER_GET_PROP 253 +#define K_SYSCALL_CHARGER_SET_PROP 254 +#define K_SYSCALL_COMPARATOR_GET_OUTPUT 255 +#define K_SYSCALL_COMPARATOR_SET_TRIGGER 256 +#define K_SYSCALL_COMPARATOR_TRIGGER_IS_PENDING 257 +#define K_SYSCALL_COUNTER_CANCEL_CHANNEL_ALARM 258 +#define K_SYSCALL_COUNTER_GET_FREQUENCY 259 +#define K_SYSCALL_COUNTER_GET_FREQUENCY_64 260 +#define K_SYSCALL_COUNTER_GET_GUARD_PERIOD 261 +#define K_SYSCALL_COUNTER_GET_GUARD_PERIOD_64 262 +#define K_SYSCALL_COUNTER_GET_MAX_TOP_VALUE 263 +#define K_SYSCALL_COUNTER_GET_MAX_TOP_VALUE_64 264 +#define K_SYSCALL_COUNTER_GET_NUM_OF_CHANNELS 265 +#define K_SYSCALL_COUNTER_GET_PENDING_INT 266 +#define K_SYSCALL_COUNTER_GET_TOP_VALUE 267 +#define K_SYSCALL_COUNTER_GET_TOP_VALUE_64 268 +#define K_SYSCALL_COUNTER_GET_VALUE 269 +#define K_SYSCALL_COUNTER_GET_VALUE_64 270 +#define K_SYSCALL_COUNTER_IS_COUNTING_UP 271 +#define K_SYSCALL_COUNTER_NS_TO_TICKS 272 +#define K_SYSCALL_COUNTER_NS_TO_TICKS_64 273 +#define K_SYSCALL_COUNTER_RESET 274 +#define K_SYSCALL_COUNTER_SET_CHANNEL_ALARM 275 +#define K_SYSCALL_COUNTER_SET_CHANNEL_ALARM_64 276 +#define K_SYSCALL_COUNTER_SET_GUARD_PERIOD 277 +#define K_SYSCALL_COUNTER_SET_GUARD_PERIOD_64 278 +#define K_SYSCALL_COUNTER_SET_TOP_VALUE 279 +#define K_SYSCALL_COUNTER_SET_TOP_VALUE_64 280 +#define K_SYSCALL_COUNTER_SET_VALUE 281 +#define K_SYSCALL_COUNTER_SET_VALUE_64 282 +#define K_SYSCALL_COUNTER_START 283 +#define K_SYSCALL_COUNTER_STOP 284 +#define K_SYSCALL_COUNTER_TICKS_TO_NS 285 +#define K_SYSCALL_COUNTER_TICKS_TO_NS_64 286 +#define K_SYSCALL_COUNTER_TICKS_TO_US 287 +#define K_SYSCALL_COUNTER_TICKS_TO_US_64 288 +#define K_SYSCALL_COUNTER_US_TO_TICKS 289 +#define K_SYSCALL_COUNTER_US_TO_TICKS_64 290 +#define K_SYSCALL_CRC_BEGIN 291 +#define K_SYSCALL_CRC_FINISH 292 +#define K_SYSCALL_CRC_UPDATE 293 +#define K_SYSCALL_DAC_CHANNEL_SETUP 294 +#define K_SYSCALL_DAC_WRITE_VALUE 295 +#define K_SYSCALL_DAI_CONFIG_GET 296 +#define K_SYSCALL_DAI_CONFIG_SET 297 +#define K_SYSCALL_DAI_CONFIG_UPDATE 298 +#define K_SYSCALL_DAI_GET_PROPERTIES_COPY 299 +#define K_SYSCALL_DAI_PROBE 300 +#define K_SYSCALL_DAI_REMOVE 301 +#define K_SYSCALL_DAI_TRIGGER 302 +#define K_SYSCALL_DAI_TS_CONFIG 303 +#define K_SYSCALL_DAI_TS_GET 304 +#define K_SYSCALL_DAI_TS_START 305 +#define K_SYSCALL_DAI_TS_STOP 306 +#define K_SYSCALL_DEVMUX_SELECT_GET 307 +#define K_SYSCALL_DEVMUX_SELECT_SET 308 +#define K_SYSCALL_EEPROM_GET_SIZE 309 +#define K_SYSCALL_EEPROM_READ 310 +#define K_SYSCALL_EEPROM_WRITE 311 +#define K_SYSCALL_EMUL_FUEL_GAUGE_IS_BATTERY_CUTOFF 312 +#define K_SYSCALL_EMUL_FUEL_GAUGE_SET_BATTERY_CHARGING 313 +#define K_SYSCALL_ENTROPY_GET_ENTROPY 314 +#define K_SYSCALL_ESPI_CONFIG 315 +#define K_SYSCALL_ESPI_FLASH_ERASE 316 +#define K_SYSCALL_ESPI_GET_CHANNEL_STATUS 317 +#define K_SYSCALL_ESPI_READ_FLASH 318 +#define K_SYSCALL_ESPI_READ_LPC_REQUEST 319 +#define K_SYSCALL_ESPI_READ_REQUEST 320 +#define K_SYSCALL_ESPI_RECEIVE_OOB 321 +#define K_SYSCALL_ESPI_RECEIVE_VWIRE 322 +#define K_SYSCALL_ESPI_SAF_ACTIVATE 323 +#define K_SYSCALL_ESPI_SAF_CONFIG 324 +#define K_SYSCALL_ESPI_SAF_FLASH_ERASE 325 +#define K_SYSCALL_ESPI_SAF_FLASH_READ 326 +#define K_SYSCALL_ESPI_SAF_FLASH_UNSUCCESS 327 +#define K_SYSCALL_ESPI_SAF_FLASH_WRITE 328 +#define K_SYSCALL_ESPI_SAF_GET_CHANNEL_STATUS 329 +#define K_SYSCALL_ESPI_SAF_SET_PROTECTION_REGIONS 330 +#define K_SYSCALL_ESPI_SEND_OOB 331 +#define K_SYSCALL_ESPI_SEND_VWIRE 332 +#define K_SYSCALL_ESPI_WRITE_FLASH 333 +#define K_SYSCALL_ESPI_WRITE_LPC_REQUEST 334 +#define K_SYSCALL_ESPI_WRITE_REQUEST 335 +#define K_SYSCALL_FLASH_COPY 336 +#define K_SYSCALL_FLASH_ERASE 337 +#define K_SYSCALL_FLASH_EX_OP 338 +#define K_SYSCALL_FLASH_FILL 339 +#define K_SYSCALL_FLASH_FLATTEN 340 +#define K_SYSCALL_FLASH_GET_PAGE_COUNT 341 +#define K_SYSCALL_FLASH_GET_PAGE_INFO_BY_IDX 342 +#define K_SYSCALL_FLASH_GET_PAGE_INFO_BY_OFFS 343 +#define K_SYSCALL_FLASH_GET_PARAMETERS 344 +#define K_SYSCALL_FLASH_GET_SIZE 345 +#define K_SYSCALL_FLASH_GET_WRITE_BLOCK_SIZE 346 +#define K_SYSCALL_FLASH_READ 347 +#define K_SYSCALL_FLASH_READ_JEDEC_ID 348 +#define K_SYSCALL_FLASH_SFDP_READ 349 +#define K_SYSCALL_FLASH_SIMULATOR_GET_MEMORY 350 +#define K_SYSCALL_FLASH_SIMULATOR_GET_PARAMS 351 +#define K_SYSCALL_FLASH_SIMULATOR_SET_CALLBACKS 352 +#define K_SYSCALL_FLASH_WRITE 353 +#define K_SYSCALL_FUEL_GAUGE_BATTERY_CUTOFF 354 +#define K_SYSCALL_FUEL_GAUGE_GET_BUFFER_PROP 355 +#define K_SYSCALL_FUEL_GAUGE_GET_PROP 356 +#define K_SYSCALL_FUEL_GAUGE_GET_PROPS 357 +#define K_SYSCALL_FUEL_GAUGE_SET_PROP 358 +#define K_SYSCALL_FUEL_GAUGE_SET_PROPS 359 +#define K_SYSCALL_GNSS_GET_ENABLED_SYSTEMS 360 +#define K_SYSCALL_GNSS_GET_FIX_RATE 361 +#define K_SYSCALL_GNSS_GET_LATEST_TIMEPULSE 362 +#define K_SYSCALL_GNSS_GET_NAVIGATION_MODE 363 +#define K_SYSCALL_GNSS_GET_SUPPORTED_SYSTEMS 364 +#define K_SYSCALL_GNSS_SET_ENABLED_SYSTEMS 365 +#define K_SYSCALL_GNSS_SET_FIX_RATE 366 +#define K_SYSCALL_GNSS_SET_NAVIGATION_MODE 367 +#define K_SYSCALL_HAPTICS_START_OUTPUT 368 +#define K_SYSCALL_HAPTICS_STOP_OUTPUT 369 +#define K_SYSCALL_HWINFO_CLEAR_RESET_CAUSE 370 +#define K_SYSCALL_HWINFO_GET_DEVICE_EUI64 371 +#define K_SYSCALL_HWINFO_GET_DEVICE_ID 372 +#define K_SYSCALL_HWINFO_GET_RESET_CAUSE 373 +#define K_SYSCALL_HWINFO_GET_SUPPORTED_RESET_CAUSE 374 +#define K_SYSCALL_I2C_CONFIGURE 375 +#define K_SYSCALL_I2C_GET_CONFIG 376 +#define K_SYSCALL_I2C_RECOVER_BUS 377 +#define K_SYSCALL_I2C_TARGET_DRIVER_REGISTER 378 +#define K_SYSCALL_I2C_TARGET_DRIVER_UNREGISTER 379 +#define K_SYSCALL_I2C_TRANSFER 380 +#define K_SYSCALL_I2S_BUF_READ 381 +#define K_SYSCALL_I2S_BUF_WRITE 382 +#define K_SYSCALL_I2S_CONFIGURE 383 +#define K_SYSCALL_I2S_TRIGGER 384 +#define K_SYSCALL_I3C_DO_CCC 385 +#define K_SYSCALL_I3C_TRANSFER 386 +#define K_SYSCALL_IPM_COMPLETE 387 +#define K_SYSCALL_IPM_MAX_DATA_SIZE_GET 388 +#define K_SYSCALL_IPM_MAX_ID_VAL_GET 389 +#define K_SYSCALL_IPM_SEND 390 +#define K_SYSCALL_IPM_SET_ENABLED 391 +#define K_SYSCALL_IVSHMEM_ENABLE_INTERRUPTS 392 +#define K_SYSCALL_IVSHMEM_GET_ID 393 +#define K_SYSCALL_IVSHMEM_GET_MAX_PEERS 394 +#define K_SYSCALL_IVSHMEM_GET_MEM 395 +#define K_SYSCALL_IVSHMEM_GET_OUTPUT_MEM_SECTION 396 +#define K_SYSCALL_IVSHMEM_GET_PROTOCOL 397 +#define K_SYSCALL_IVSHMEM_GET_RW_MEM_SECTION 398 +#define K_SYSCALL_IVSHMEM_GET_STATE 399 +#define K_SYSCALL_IVSHMEM_GET_VECTORS 400 +#define K_SYSCALL_IVSHMEM_INT_PEER 401 +#define K_SYSCALL_IVSHMEM_REGISTER_HANDLER 402 +#define K_SYSCALL_IVSHMEM_SET_STATE 403 +#define K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_IN_GET 404 +#define K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_OUT_GET 405 +#define K_SYSCALL_K_MEM_PAGING_HISTOGRAM_EVICTION_GET 406 +#define K_SYSCALL_K_MEM_PAGING_STATS_GET 407 +#define K_SYSCALL_K_MEM_PAGING_THREAD_STATS_GET 408 +#define K_SYSCALL_LED_BLINK 409 +#define K_SYSCALL_LED_GET_INFO 410 +#define K_SYSCALL_LED_OFF 411 +#define K_SYSCALL_LED_ON 412 +#define K_SYSCALL_LED_SET_BRIGHTNESS 413 +#define K_SYSCALL_LED_SET_CHANNEL 414 +#define K_SYSCALL_LED_SET_COLOR 415 +#define K_SYSCALL_LED_WRITE_CHANNELS 416 +#define K_SYSCALL_LLEXT_GET_FN_TABLE 417 +#define K_SYSCALL_MAXIM_DS3231_GET_SYNCPOINT 418 +#define K_SYSCALL_MAXIM_DS3231_REQ_SYNCPOINT 419 +#define K_SYSCALL_MBOX_MAX_CHANNELS_GET 420 +#define K_SYSCALL_MBOX_MTU_GET 421 +#define K_SYSCALL_MBOX_SEND 422 +#define K_SYSCALL_MBOX_SET_ENABLED 423 +#define K_SYSCALL_MDIO_READ 424 +#define K_SYSCALL_MDIO_READ_C45 425 +#define K_SYSCALL_MDIO_WRITE 426 +#define K_SYSCALL_MDIO_WRITE_C45 427 +#define K_SYSCALL_MSPI_CONFIG 428 +#define K_SYSCALL_MSPI_DEV_CONFIG 429 +#define K_SYSCALL_MSPI_GET_CHANNEL_STATUS 430 +#define K_SYSCALL_MSPI_SCRAMBLE_CONFIG 431 +#define K_SYSCALL_MSPI_TIMING_CONFIG 432 +#define K_SYSCALL_MSPI_TRANSCEIVE 433 +#define K_SYSCALL_MSPI_XIP_CONFIG 434 +#define K_SYSCALL_NET_ADDR_NTOP 435 +#define K_SYSCALL_NET_ADDR_PTON 436 +#define K_SYSCALL_NET_ETH_GET_PTP_CLOCK_BY_INDEX 437 +#define K_SYSCALL_NET_IF_GET_BY_INDEX 438 +#define K_SYSCALL_NET_IF_IPV4_ADDR_ADD_BY_INDEX 439 +#define K_SYSCALL_NET_IF_IPV4_ADDR_LOOKUP_BY_INDEX 440 +#define K_SYSCALL_NET_IF_IPV4_ADDR_RM_BY_INDEX 441 +#define K_SYSCALL_NET_IF_IPV4_SET_GW_BY_INDEX 442 +#define K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_ADDR_BY_INDEX 443 +#define K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_INDEX 444 +#define K_SYSCALL_NET_IF_IPV6_ADDR_ADD_BY_INDEX 445 +#define K_SYSCALL_NET_IF_IPV6_ADDR_LOOKUP_BY_INDEX 446 +#define K_SYSCALL_NET_IF_IPV6_ADDR_RM_BY_INDEX 447 +#define K_SYSCALL_NET_SOCKET_SERVICE_REGISTER 448 +#define K_SYSCALL_NRF_QSPI_NOR_XIP_ENABLE 449 +#define K_SYSCALL_OPAMP_SET_GAIN 450 +#define K_SYSCALL_OTP_PROGRAM 451 +#define K_SYSCALL_OTP_READ 452 +#define K_SYSCALL_PECI_CONFIG 453 +#define K_SYSCALL_PECI_DISABLE 454 +#define K_SYSCALL_PECI_ENABLE 455 +#define K_SYSCALL_PECI_TRANSFER 456 +#define K_SYSCALL_PS2_CONFIG 457 +#define K_SYSCALL_PS2_DISABLE_CALLBACK 458 +#define K_SYSCALL_PS2_ENABLE_CALLBACK 459 +#define K_SYSCALL_PS2_READ 460 +#define K_SYSCALL_PS2_WRITE 461 +#define K_SYSCALL_PSI5_REGISTER_CALLBACK 462 +#define K_SYSCALL_PSI5_SEND 463 +#define K_SYSCALL_PSI5_START_SYNC 464 +#define K_SYSCALL_PSI5_STOP_SYNC 465 +#define K_SYSCALL_PTP_CLOCK_GET 466 +#define K_SYSCALL_PWM_CAPTURE_CYCLES 467 +#define K_SYSCALL_PWM_DISABLE_CAPTURE 468 +#define K_SYSCALL_PWM_DISABLE_DMA 469 +#define K_SYSCALL_PWM_ENABLE_CAPTURE 470 +#define K_SYSCALL_PWM_ENABLE_DMA 471 +#define K_SYSCALL_PWM_GET_CYCLES_PER_SEC 472 +#define K_SYSCALL_PWM_SET_CYCLES 473 +#define K_SYSCALL_RENESAS_ELC_DISABLE 474 +#define K_SYSCALL_RENESAS_ELC_ENABLE 475 +#define K_SYSCALL_RENESAS_ELC_LINK_BREAK 476 +#define K_SYSCALL_RENESAS_ELC_LINK_SET 477 +#define K_SYSCALL_RENESAS_ELC_SOFTWARE_EVENT_GENERATE 478 +#define K_SYSCALL_RENESAS_RA_CTSU_GROUP_CONFIGURE 479 +#define K_SYSCALL_RENESAS_RX_CTSU_GROUP_CONFIGURE 480 +#define K_SYSCALL_RESET_LINE_ASSERT 481 +#define K_SYSCALL_RESET_LINE_DEASSERT 482 +#define K_SYSCALL_RESET_LINE_TOGGLE 483 +#define K_SYSCALL_RESET_STATUS 484 +#define K_SYSCALL_RETAINED_MEM_CLEAR 485 +#define K_SYSCALL_RETAINED_MEM_READ 486 +#define K_SYSCALL_RETAINED_MEM_SIZE 487 +#define K_SYSCALL_RETAINED_MEM_WRITE 488 +#define K_SYSCALL_RTC_ALARM_GET_SUPPORTED_FIELDS 489 +#define K_SYSCALL_RTC_ALARM_GET_TIME 490 +#define K_SYSCALL_RTC_ALARM_IS_PENDING 491 +#define K_SYSCALL_RTC_ALARM_SET_TIME 492 +#define K_SYSCALL_RTC_GET_CALIBRATION 493 +#define K_SYSCALL_RTC_GET_TIME 494 +#define K_SYSCALL_RTC_SET_CALIBRATION 495 +#define K_SYSCALL_RTC_SET_TIME 496 +#define K_SYSCALL_RTIO_CQE_COPY_OUT 497 +#define K_SYSCALL_RTIO_CQE_GET_MEMPOOL_BUFFER 498 +#define K_SYSCALL_RTIO_POOL_ACQUIRE 499 +#define K_SYSCALL_RTIO_POOL_RELEASE 500 +#define K_SYSCALL_RTIO_RELEASE_BUFFER 501 +#define K_SYSCALL_RTIO_SQE_CANCEL 502 +#define K_SYSCALL_RTIO_SQE_COPY_IN_GET_HANDLES 503 +#define K_SYSCALL_RTIO_SQE_SIGNAL 504 +#define K_SYSCALL_RTIO_SUBMIT 505 +#define K_SYSCALL_SDHC_CARD_BUSY 506 +#define K_SYSCALL_SDHC_CARD_PRESENT 507 +#define K_SYSCALL_SDHC_DISABLE_INTERRUPT 508 +#define K_SYSCALL_SDHC_ENABLE_INTERRUPT 509 +#define K_SYSCALL_SDHC_EXECUTE_TUNING 510 +#define K_SYSCALL_SDHC_GET_HOST_PROPS 511 +#define K_SYSCALL_SDHC_HW_RESET 512 +#define K_SYSCALL_SDHC_REQUEST 513 +#define K_SYSCALL_SDHC_SET_IO 514 +#define K_SYSCALL_SENSOR_ATTR_GET 515 +#define K_SYSCALL_SENSOR_ATTR_SET 516 +#define K_SYSCALL_SENSOR_CHANNEL_GET 517 +#define K_SYSCALL_SENSOR_GET_DECODER 518 +#define K_SYSCALL_SENSOR_RECONFIGURE_READ_IODEV 519 +#define K_SYSCALL_SENSOR_SAMPLE_FETCH 520 +#define K_SYSCALL_SENSOR_SAMPLE_FETCH_CHAN 521 +#define K_SYSCALL_SENT_REGISTER_CALLBACK 522 +#define K_SYSCALL_SENT_START_LISTENING 523 +#define K_SYSCALL_SENT_STOP_LISTENING 524 +#define K_SYSCALL_SIP_SUPERVISORY_CALL 525 +#define K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_REQ 526 +#define K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_RES 527 +#define K_SYSCALL_SIP_SVC_PLAT_FORMAT_TRANS_ID 528 +#define K_SYSCALL_SIP_SVC_PLAT_FREE_ASYNC_MEMORY 529 +#define K_SYSCALL_SIP_SVC_PLAT_FUNC_ID_VALID 530 +#define K_SYSCALL_SIP_SVC_PLAT_GET_ERROR_CODE 531 +#define K_SYSCALL_SIP_SVC_PLAT_GET_TRANS_IDX 532 +#define K_SYSCALL_SIP_SVC_PLAT_UPDATE_TRANS_ID 533 +#define K_SYSCALL_SMBUS_BLOCK_PCALL 534 +#define K_SYSCALL_SMBUS_BLOCK_READ 535 +#define K_SYSCALL_SMBUS_BLOCK_WRITE 536 +#define K_SYSCALL_SMBUS_BYTE_DATA_READ 537 +#define K_SYSCALL_SMBUS_BYTE_DATA_WRITE 538 +#define K_SYSCALL_SMBUS_BYTE_READ 539 +#define K_SYSCALL_SMBUS_BYTE_WRITE 540 +#define K_SYSCALL_SMBUS_CONFIGURE 541 +#define K_SYSCALL_SMBUS_GET_CONFIG 542 +#define K_SYSCALL_SMBUS_HOST_NOTIFY_REMOVE_CB 543 +#define K_SYSCALL_SMBUS_PCALL 544 +#define K_SYSCALL_SMBUS_QUICK 545 +#define K_SYSCALL_SMBUS_SMBALERT_REMOVE_CB 546 +#define K_SYSCALL_SMBUS_WORD_DATA_READ 547 +#define K_SYSCALL_SMBUS_WORD_DATA_WRITE 548 +#define K_SYSCALL_STEPPER_CTRL_CONFIGURE_RAMP 549 +#define K_SYSCALL_STEPPER_CTRL_GET_ACTUAL_POSITION 550 +#define K_SYSCALL_STEPPER_CTRL_IS_MOVING 551 +#define K_SYSCALL_STEPPER_CTRL_MOVE_BY 552 +#define K_SYSCALL_STEPPER_CTRL_MOVE_TO 553 +#define K_SYSCALL_STEPPER_CTRL_RUN 554 +#define K_SYSCALL_STEPPER_CTRL_SET_EVENT_CB 555 +#define K_SYSCALL_STEPPER_CTRL_SET_MICROSTEP_INTERVAL 556 +#define K_SYSCALL_STEPPER_CTRL_SET_REFERENCE_POSITION 557 +#define K_SYSCALL_STEPPER_CTRL_STOP 558 +#define K_SYSCALL_STEPPER_DISABLE 559 +#define K_SYSCALL_STEPPER_ENABLE 560 +#define K_SYSCALL_STEPPER_GET_MICRO_STEP_RES 561 +#define K_SYSCALL_STEPPER_SET_EVENT_CB 562 +#define K_SYSCALL_STEPPER_SET_MICRO_STEP_RES 563 +#define K_SYSCALL_SWDP_CONFIGURE 564 +#define K_SYSCALL_SWDP_GET_PINS 565 +#define K_SYSCALL_SWDP_INPUT_SEQUENCE 566 +#define K_SYSCALL_SWDP_OUTPUT_SEQUENCE 567 +#define K_SYSCALL_SWDP_PORT_OFF 568 +#define K_SYSCALL_SWDP_PORT_ON 569 +#define K_SYSCALL_SWDP_SET_CLOCK 570 +#define K_SYSCALL_SWDP_SET_PINS 571 +#define K_SYSCALL_SWDP_TRANSFER 572 +#define K_SYSCALL_SYSCON_GET_BASE 573 +#define K_SYSCALL_SYSCON_GET_SIZE 574 +#define K_SYSCALL_SYSCON_READ_REG 575 +#define K_SYSCALL_SYSCON_WRITE_REG 576 +#define K_SYSCALL_SYS_CACHE_DATA_FLUSH_AND_INVD_RANGE 577 +#define K_SYSCALL_SYS_CACHE_DATA_FLUSH_RANGE 578 +#define K_SYSCALL_SYS_CACHE_DATA_INVD_RANGE 579 +#define K_SYSCALL_SYS_CSRAND_GET 580 +#define K_SYSCALL_SYS_RAND_GET 581 +#define K_SYSCALL_TEE_CANCEL 582 +#define K_SYSCALL_TEE_CLOSE_SESSION 583 +#define K_SYSCALL_TEE_GET_VERSION 584 +#define K_SYSCALL_TEE_INVOKE_FUNC 585 +#define K_SYSCALL_TEE_OPEN_SESSION 586 +#define K_SYSCALL_TEE_SHM_ALLOC 587 +#define K_SYSCALL_TEE_SHM_FREE 588 +#define K_SYSCALL_TEE_SHM_REGISTER 589 +#define K_SYSCALL_TEE_SHM_UNREGISTER 590 +#define K_SYSCALL_TEE_SUPPL_RECV 591 +#define K_SYSCALL_TEE_SUPPL_SEND 592 +#define K_SYSCALL_TGPIO_PIN_CONFIG_EXT_TIMESTAMP 593 +#define K_SYSCALL_TGPIO_PIN_DISABLE 594 +#define K_SYSCALL_TGPIO_PIN_PERIODIC_OUTPUT 595 +#define K_SYSCALL_TGPIO_PIN_READ_TS_EC 596 +#define K_SYSCALL_TGPIO_PORT_GET_CYCLES_PER_SECOND 597 +#define K_SYSCALL_TGPIO_PORT_GET_TIME 598 +#define K_SYSCALL_UPDATEHUB_AUTOHANDLER 599 +#define K_SYSCALL_UPDATEHUB_CONFIRM 600 +#define K_SYSCALL_UPDATEHUB_PROBE 601 +#define K_SYSCALL_UPDATEHUB_REBOOT 602 +#define K_SYSCALL_UPDATEHUB_REPORT_ERROR 603 +#define K_SYSCALL_UPDATEHUB_UPDATE 604 +#define K_SYSCALL_USER_FAULT 605 +#define K_SYSCALL_W1_CHANGE_BUS_LOCK 606 +#define K_SYSCALL_W1_CONFIGURE 607 +#define K_SYSCALL_W1_GET_SLAVE_COUNT 608 +#define K_SYSCALL_W1_READ_BIT 609 +#define K_SYSCALL_W1_READ_BLOCK 610 +#define K_SYSCALL_W1_READ_BYTE 611 +#define K_SYSCALL_W1_RESET_BUS 612 +#define K_SYSCALL_W1_SEARCH_BUS 613 +#define K_SYSCALL_W1_WRITE_BIT 614 +#define K_SYSCALL_W1_WRITE_BLOCK 615 +#define K_SYSCALL_W1_WRITE_BYTE 616 +#define K_SYSCALL_WDT_DISABLE 617 +#define K_SYSCALL_WDT_FEED 618 +#define K_SYSCALL_WDT_SETUP 619 +#define K_SYSCALL_ZSOCK_ACCEPT 620 +#define K_SYSCALL_ZSOCK_BIND 621 +#define K_SYSCALL_ZSOCK_CLOSE 622 +#define K_SYSCALL_ZSOCK_CONNECT 623 +#define K_SYSCALL_ZSOCK_FCNTL_IMPL 624 +#define K_SYSCALL_ZSOCK_GETHOSTNAME 625 +#define K_SYSCALL_ZSOCK_GETPEERNAME 626 +#define K_SYSCALL_ZSOCK_GETSOCKNAME 627 +#define K_SYSCALL_ZSOCK_GETSOCKOPT 628 +#define K_SYSCALL_ZSOCK_GET_CONTEXT_OBJECT 629 +#define K_SYSCALL_ZSOCK_INET_PTON 630 +#define K_SYSCALL_ZSOCK_IOCTL_IMPL 631 +#define K_SYSCALL_ZSOCK_LISTEN 632 +#define K_SYSCALL_ZSOCK_RECVFROM 633 +#define K_SYSCALL_ZSOCK_RECVMSG 634 +#define K_SYSCALL_ZSOCK_SENDMSG 635 +#define K_SYSCALL_ZSOCK_SENDTO 636 +#define K_SYSCALL_ZSOCK_SETSOCKOPT 637 +#define K_SYSCALL_ZSOCK_SHUTDOWN 638 +#define K_SYSCALL_ZSOCK_SOCKET 639 +#define K_SYSCALL_ZSOCK_SOCKETPAIR 640 +#define K_SYSCALL_ZVFS_POLL 641 +#define K_SYSCALL_ZVFS_SELECT 642 +#define K_SYSCALL_Z_ZSOCK_GETADDRINFO_INTERNAL 643 + + +#ifndef _ASMLANGUAGE + +#include +#include + +#endif /* _ASMLANGUAGE */ + +#endif /* ZEPHYR_SYSCALL_LIST_H */ diff --git a/build/zephyr/include/generated/xtensa_vectors.ld b/build/zephyr/include/generated/xtensa_vectors.ld new file mode 100644 index 0000000..f61ecd6 --- /dev/null +++ b/build/zephyr/include/generated/xtensa_vectors.ld @@ -0,0 +1,34 @@ +/* Automatically Generated Code - Do Not Edit */ +/* See arch/xtensa/core/gen_vector.py */ + + .z_xtensa_vectors : ALIGN(1024) { + z_xtensa_vecbase = .; + KEEP(*(.WindowVectors.text)); + KEEP(*(.Level2InterruptVector.literal)); + . = 0x180; + KEEP(*(.Level2InterruptVector.text)); + KEEP(*(.Level3InterruptVector.literal)); + . = 0x1c0; + KEEP(*(.Level3InterruptVector.text)); + KEEP(*(.Level4InterruptVector.literal)); + . = 0x200; + KEEP(*(.Level4InterruptVector.text)); + KEEP(*(.Level5InterruptVector.literal)); + . = 0x240; + KEEP(*(.Level5InterruptVector.text)); + KEEP(*(.DebugExceptionVector.literal)); + . = 0x280; + KEEP(*(.DebugExceptionVector.text)); + KEEP(*(.NMIExceptionVector.literal)); + . = 0x2c0; + KEEP(*(.NMIExceptionVector.text)); + KEEP(*(.KernelExceptionVector.literal)); + . = 0x300; + KEEP(*(.KernelExceptionVector.text)); + KEEP(*(.UserExceptionVector.literal)); + . = 0x340; + KEEP(*(.UserExceptionVector.text)); + KEEP(*(.DoubleExceptionVector.literal)); + . = 0x3c0; + KEEP(*(.DoubleExceptionVector.text)); + } diff --git a/build/zephyr/include/generated/zephyr/autoconf.h b/build/zephyr/include/generated/zephyr/autoconf.h new file mode 100644 index 0000000..c2c6237 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/autoconf.h @@ -0,0 +1,755 @@ +#define CONFIG_DT_HAS_ESPRESSIF_ESP32_AES_ENABLED 1 +#define CONFIG_DT_HAS_ESPRESSIF_ESP32_BT_HCI_ENABLED 1 +#define CONFIG_DT_HAS_ESPRESSIF_ESP32_CLOCK_ENABLED 1 +#define CONFIG_DT_HAS_ESPRESSIF_ESP32_FLASH_CONTROLLER_ENABLED 1 +#define CONFIG_DT_HAS_ESPRESSIF_ESP32_GPIO_ENABLED 1 +#define CONFIG_DT_HAS_ESPRESSIF_ESP32_I2C_ENABLED 1 +#define CONFIG_DT_HAS_ESPRESSIF_ESP32_INTC_ENABLED 1 +#define CONFIG_DT_HAS_ESPRESSIF_ESP32_LCD_CAM_ENABLED 1 +#define CONFIG_DT_HAS_ESPRESSIF_ESP32_PINCTRL_ENABLED 1 +#define CONFIG_DT_HAS_ESPRESSIF_ESP32_PSRAM_ENABLED 1 +#define CONFIG_DT_HAS_ESPRESSIF_ESP32_SDHC_ENABLED 1 +#define CONFIG_DT_HAS_ESPRESSIF_ESP32_SHA_ENABLED 1 +#define CONFIG_DT_HAS_ESPRESSIF_ESP32_SPI_ENABLED 1 +#define CONFIG_DT_HAS_ESPRESSIF_ESP32_TIMER_ENABLED 1 +#define CONFIG_DT_HAS_ESPRESSIF_ESP32_TRNG_ENABLED 1 +#define CONFIG_DT_HAS_ESPRESSIF_ESP32_UART_ENABLED 1 +#define CONFIG_DT_HAS_ESPRESSIF_ESP32_USB_SERIAL_ENABLED 1 +#define CONFIG_DT_HAS_ESPRESSIF_ESP32_WATCHDOG_ENABLED 1 +#define CONFIG_DT_HAS_ESPRESSIF_ESP32_WIFI_ENABLED 1 +#define CONFIG_DT_HAS_ESPRESSIF_XTENSA_LX7_ENABLED 1 +#define CONFIG_DT_HAS_FIXED_PARTITIONS_ENABLED 1 +#define CONFIG_DT_HAS_GPIO_LEDS_ENABLED 1 +#define CONFIG_DT_HAS_MMIO_SRAM_ENABLED 1 +#define CONFIG_DT_HAS_SEEED_XIAO_GPIO_ENABLED 1 +#define CONFIG_DT_HAS_SEMTECH_SX1262_ENABLED 1 +#define CONFIG_DT_HAS_SOC_NV_FLASH_ENABLED 1 +#define CONFIG_DT_HAS_ZEPHYR_MEMORY_REGION_ENABLED 1 +#define CONFIG_DT_HAS_ZEPHYR_POWER_STATE_ENABLED 1 +#define CONFIG_MAIN_STACK_SIZE 2048 +#define CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE 1024 +#define CONFIG_SERIAL 1 +#define CONFIG_SPI 1 +#define CONFIG_UART_INTERRUPT_DRIVEN 1 +#define CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC 240000000 +#define CONFIG_FLASH_SIZE 8388608 +#define CONFIG_FLASH_BASE_ADDRESS 0x0 +#define CONFIG_MP_MAX_NUM_CPUS 1 +#define CONFIG_CLOCK_CONTROL 1 +#define CONFIG_IDLE_STACK_SIZE 1024 +#define CONFIG_ISR_STACK_SIZE 2048 +#define CONFIG_SYS_CLOCK_TICKS_PER_SEC 10000 +#define CONFIG_BUILD_OUTPUT_BIN 1 +#define CONFIG_ROM_START_OFFSET 0x0 +#define CONFIG_KERNEL_ENTRY "__start" +#define CONFIG_HAS_FLASH_LOAD_OFFSET 1 +#define CONFIG_TICKLESS_KERNEL 1 +#define CONFIG_CLOCK_CONTROL_INIT_PRIORITY 30 +#define CONFIG_NUM_METAIRQ_PRIORITIES 0 +#define CONFIG_NUM_PREEMPT_PRIORITIES 15 +#define CONFIG_DYNAMIC_INTERRUPTS 1 +#define CONFIG_GEN_ISR_TABLES 1 +#define CONFIG_TIMESLICE_SIZE 20 +#define CONFIG_FLASH_LOAD_OFFSET 0x0 +#define CONFIG_SYS_CLOCK_EXISTS 1 +#define CONFIG_GPIO 1 +#define CONFIG_XTENSA_TIMER 1 +#define CONFIG_XTENSA_CCOUNT_HZ 240000000 +#define CONFIG_LOG 1 +#define CONFIG_ARCH_SW_ISR_TABLE_ALIGN 4 +#define CONFIG_LOG_DOMAIN_NAME "" +#define CONFIG_LOG_PROCESS_THREAD_STACK_SIZE 1024 +#define CONFIG_UART_USE_RUNTIME_CONFIGURE 1 +#define CONFIG_CONSOLE 1 +#define CONFIG_COMMON_LIBC_MALLOC_ARENA_SIZE -1 +#define CONFIG_SOC_TOOLCHAIN_NAME "espressif_esp32s3" +#define CONFIG_GEN_SW_ISR_TABLE 1 +#define CONFIG_GEN_IRQ_START_VECTOR 0 +#define CONFIG_SRAM_OFFSET 0x0 +#define CONFIG_XTENSA_TIMER_ID 0 +#define CONFIG_XTAL_FREQ_HZ 40000000 +#define CONFIG_SOC_FLASH_ESP32 1 +#define CONFIG_KERNEL_MEM_POOL 1 +#define CONFIG_MULTITHREADING 1 +#define CONFIG_LINKER_USE_RELAX 1 +#define CONFIG_ZEPHYR_ACPICA_MODULE 1 +#define CONFIG_ZEPHYR_CMSIS_MODULE 1 +#define CONFIG_ZEPHYR_CMSIS_DSP_MODULE 1 +#define CONFIG_ZEPHYR_CMSIS_NN_MODULE 1 +#define CONFIG_ZEPHYR_CMSIS_6_MODULE 1 +#define CONFIG_ZEPHYR_DHARA_MODULE 1 +#define CONFIG_ZEPHYR_FATFS_MODULE 1 +#define CONFIG_ZEPHYR_ADI_MODULE 1 +#define CONFIG_ZEPHYR_HAL_AFBR_MODULE 1 +#define CONFIG_ZEPHYR_HAL_AMBIQ_MODULE 1 +#define CONFIG_ZEPHYR_ATMEL_MODULE 1 +#define CONFIG_ZEPHYR_HAL_BOUFFALOLAB_MODULE 1 +#define CONFIG_ESP_HAL_LOG_LEVEL_DEFAULT 1 +#define CONFIG_ESP_HAL_LOG_LEVEL 3 +#define CONFIG_ESP_HAL_EARLY_LOG_LEVEL 3 +#define CONFIG_ESP_PLATFORM 1 +#define CONFIG_SOC_ADC_SUPPORTED 1 +#define CONFIG_SOC_UART_SUPPORTED 1 +#define CONFIG_SOC_MCPWM_SUPPORTED 1 +#define CONFIG_SOC_GPTIMER_SUPPORTED 1 +#define CONFIG_SOC_SDMMC_HOST_SUPPORTED 1 +#define CONFIG_SOC_BT_SUPPORTED 1 +#define CONFIG_SOC_PCNT_SUPPORTED 1 +#define CONFIG_SOC_PHY_SUPPORTED 1 +#define CONFIG_SOC_WIFI_SUPPORTED 1 +#define CONFIG_SOC_TWAI_SUPPORTED 1 +#define CONFIG_SOC_EFUSE_SUPPORTED 1 +#define CONFIG_SOC_ULP_SUPPORTED 1 +#define CONFIG_SOC_CCOMP_TIMER_SUPPORTED 1 +#define CONFIG_SOC_RTC_FAST_MEM_SUPPORTED 1 +#define CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED 1 +#define CONFIG_SOC_RTC_MEM_SUPPORTED 1 +#define CONFIG_SOC_RTC_TIMER_V1_SUPPORTED 1 +#define CONFIG_SOC_I2S_SUPPORTED 1 +#define CONFIG_SOC_LCD_I80_SUPPORTED 1 +#define CONFIG_SOC_RMT_SUPPORTED 1 +#define CONFIG_SOC_SDM_SUPPORTED 1 +#define CONFIG_SOC_GPSPI_SUPPORTED 1 +#define CONFIG_SOC_LEDC_SUPPORTED 1 +#define CONFIG_SOC_I2C_SUPPORTED 1 +#define CONFIG_SOC_SUPPORT_COEXISTENCE 1 +#define CONFIG_SOC_AES_SUPPORTED 1 +#define CONFIG_SOC_MPI_SUPPORTED 1 +#define CONFIG_SOC_SHA_SUPPORTED 1 +#define CONFIG_SOC_FLASH_ENC_SUPPORTED 1 +#define CONFIG_SOC_SECURE_BOOT_SUPPORTED 1 +#define CONFIG_SOC_TOUCH_SENSOR_SUPPORTED 1 +#define CONFIG_SOC_BOD_SUPPORTED 1 +#define CONFIG_SOC_ULP_FSM_SUPPORTED 1 +#define CONFIG_SOC_CLK_TREE_SUPPORTED 1 +#define CONFIG_SOC_MPU_SUPPORTED 1 +#define CONFIG_SOC_WDT_SUPPORTED 1 +#define CONFIG_SOC_SPI_FLASH_SUPPORTED 1 +#define CONFIG_SOC_RNG_SUPPORTED 1 +#define CONFIG_SOC_LIGHT_SLEEP_SUPPORTED 1 +#define CONFIG_SOC_DEEP_SLEEP_SUPPORTED 1 +#define CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT 1 +#define CONFIG_SOC_PM_SUPPORTED 1 +#define CONFIG_SOC_SPI_EXTERNAL_NOR_FLASH_SUPPORTED 1 +#define CONFIG_SOC_XTAL_SUPPORT_40M 1 +#define CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED 1 +#define CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED 1 +#define CONFIG_SOC_ADC_DMA_SUPPORTED 1 +#define CONFIG_SOC_ADC_PERIPH_NUM 2 +#define CONFIG_SOC_ADC_MAX_CHANNEL_NUM 10 +#define CONFIG_SOC_ADC_ATTEN_NUM 4 +#define CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM 2 +#define CONFIG_SOC_ADC_PATT_LEN_MAX 24 +#define CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH 12 +#define CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH 12 +#define CONFIG_SOC_ADC_DIGI_RESULT_BYTES 4 +#define CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV 4 +#define CONFIG_SOC_ADC_DIGI_MONITOR_NUM 2 +#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH 83333 +#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW 611 +#define CONFIG_SOC_ADC_RTC_MIN_BITWIDTH 12 +#define CONFIG_SOC_ADC_RTC_MAX_BITWIDTH 12 +#define CONFIG_SOC_ADC_SHARED_POWER 1 +#define CONFIG_SOC_BROWNOUT_RESET_SUPPORTED 1 +#define CONFIG_SOC_CPU_CORES_NUM 2 +#define CONFIG_SOC_CPU_INTR_NUM 32 +#define CONFIG_SOC_CPU_HAS_FPU 1 +#define CONFIG_SOC_HP_CPU_HAS_MULTIPLE_CORES 1 +#define CONFIG_SOC_CPU_BREAKPOINTS_NUM 2 +#define CONFIG_SOC_CPU_WATCHPOINTS_NUM 2 +#define CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE 0x40 +#define CONFIG_SOC_GPIO_PORT 1 +#define CONFIG_SOC_GPIO_PIN_COUNT 49 +#define CONFIG_SOC_GPIO_VALID_GPIO_MASK 0x1FFFFFFFFFFFF +#define CONFIG_SOC_GPIO_IN_RANGE_MAX 48 +#define CONFIG_SOC_GPIO_OUT_RANGE_MAX 48 +#define CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK 0x0001FFFFFC000000 +#define CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX 1 +#define CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM 3 +#define CONFIG_SOC_I2C_NUM 2 +#define CONFIG_SOC_HP_I2C_NUM 2 +#define CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR 1 +#define CONFIG_SOC_I2C_SUPPORT_SLAVE 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM_TX 1 +#define CONFIG_SOC_I2S_SUPPORTS_PCM2PDM 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM_RX 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM2PCM 1 +#define CONFIG_SOC_I2S_PDM_MAX_TX_LINES 2 +#define CONFIG_SOC_I2S_PDM_MAX_RX_LINES 4 +#define CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK 1 +#define CONFIG_SOC_LEDC_TIMER_NUM 4 +#define CONFIG_SOC_LEDC_CHANNEL_NUM 8 +#define CONFIG_SOC_LEDC_TIMER_BIT_WIDTH 14 +#define CONFIG_SOC_MMU_PERIPH_NUM 1 +#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 1 +#define CONFIG_SOC_MPU_MIN_REGION_SIZE 0x20000000 +#define CONFIG_SOC_MPU_REGIONS_MAX_NUM 8 +#define CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL 48 +#define CONFIG_SOC_RTCIO_PIN_COUNT 22 +#define CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED 1 +#define CONFIG_SOC_RTCIO_HOLD_SUPPORTED 1 +#define CONFIG_SOC_RTCIO_WAKE_SUPPORTED 1 +#define CONFIG_SOC_SPI_PERIPH_NUM 3 +#define CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE 64 +#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO 32 +#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI 16 +#define CONFIG_SOC_TOUCH_SENSOR_VERSION 2 +#define CONFIG_SOC_TOUCH_MIN_CHAN_ID 1 +#define CONFIG_SOC_TOUCH_MAX_CHAN_ID 14 +#define CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP 1 +#define CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM 1 +#define CONFIG_SOC_TWAI_CONTROLLER_NUM 1 +#define CONFIG_SOC_TWAI_MASK_FILTER_NUM 1 +#define CONFIG_SOC_UART_NUM 3 +#define CONFIG_SOC_UART_HP_NUM 3 +#define CONFIG_SOC_UART_SUPPORT_APB_CLK 1 +#define CONFIG_SOC_UART_FIFO_LEN 128 +#define CONFIG_SOC_UART_BITRATE_MAX 5000000 +#define CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE 1 +#define CONFIG_SOC_SPIRAM_SUPPORTED 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA1 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA256 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA384 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA512 1 +#define CONFIG_SOC_MPI_MEM_BLOCKS_NUM 4 +#define CONFIG_SOC_MPI_OPERATIONS_NUM 3 +#define CONFIG_SOC_RSA_MAX_BIT_LEN 4096 +#define CONFIG_SOC_AES_SUPPORT_AES_128 1 +#define CONFIG_SOC_AES_SUPPORT_AES_256 1 +#define CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS 3 +#define CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX 64 +#define CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE 21 +#define CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RC_FAST_PD 1 +#define CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD 1 +#define CONFIG_SOC_PM_SUPPORT_MODEM_PD 1 +#define CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED 1 +#define CONFIG_SOC_PM_MODEM_PD_BY_SW 1 +#define CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED 1 +#define CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256 1 +#define CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION 1 +#define CONFIG_SOC_CLK_XTAL32K_SUPPORTED 1 +#define CONFIG_SOC_SDMMC_NUM_SLOTS 2 +#define CONFIG_SOC_SDMMC_DATA_WIDTH_MAX 8 +#define CONFIG_SOC_WIFI_WAPI_SUPPORT 1 +#define CONFIG_SOC_WIFI_CSI_SUPPORT 1 +#define CONFIG_SOC_WIFI_MESH_SUPPORT 1 +#define CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW 1 +#define CONFIG_SOC_BLE_SUPPORTED 1 +#define CONFIG_SOC_BLE_MESH_SUPPORTED 1 +#define CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED 1 +#define CONFIG_SOC_BLUFI_SUPPORTED 1 +#define CONFIG_SOC_ULP_HAS_ADC 1 +#define CONFIG_SOC_PHY_COMBO_MODULE 1 +#define CONFIG_SOC_DEDICATED_GPIO_SUPPORTED 1 +#define CONFIG_SOC_SUPPORTS_SECURE_DL_MODE 1 +#define CONFIG_SOC_RISCV_COPROC_SUPPORTED 1 +#define CONFIG_SOC_USB_OTG_SUPPORTED 1 +#define CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED 1 +#define CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD 1 +#define CONFIG_SOC_TEMP_SENSOR_SUPPORTED 1 +#define CONFIG_SOC_CACHE_SUPPORT_WRAP 1 +#define CONFIG_SOC_PSRAM_DMA_CAPABLE 1 +#define CONFIG_SOC_XT_WDT_SUPPORTED 1 +#define CONFIG_SOC_SYSTIMER_SUPPORTED 1 +#define CONFIG_SOC_HMAC_SUPPORTED 1 +#define CONFIG_SOC_DIG_SIGN_SUPPORTED 1 +#define CONFIG_SOC_MEMPROT_SUPPORTED 1 +#define CONFIG_SOC_ADC_ARBITER_SUPPORTED 1 +#define CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED 1 +#define CONFIG_SOC_ADC_MONITOR_SUPPORTED 1 +#define CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM 2 +#define CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED 1 +#define CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED 1 +#define CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED 1 +#define CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN 4096 +#define CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH 16 +#define CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US 1100 +#define CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER 1 +#define CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD 1 +#define CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE 1 +#define CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK 1 +#define CONFIG_SOC_LEDC_SUPPORT_FADE_STOP 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT 1 +#define CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT 1 +#define CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 1 +#define CONFIG_SOC_SPI_SUPPORT_OCT 1 +#define CONFIG_SOC_MEMSPI_SUPPORT_CONTROL_DUMMY_OUT 1 +#define CONFIG_SOC_MEMSPI_IS_INDEPENDENT 1 +#define CONFIG_SOC_TOUCH_SUPPORT_BENCHMARK 1 +#define CONFIG_SOC_TOUCH_SUPPORT_WATERPROOF 1 +#define CONFIG_SOC_TOUCH_SUPPORT_PROX_SENSING 1 +#define CONFIG_SOC_TOUCH_SUPPORT_DENOISE_CHAN 1 +#define CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM 3 +#define CONFIG_SOC_UART_SUPPORT_WAKEUP_INT 1 +#define CONFIG_SOC_SPIRAM_XIP_SUPPORTED 1 +#define CONFIG_SOC_USB_OTG_PERIPH_NUM 1 +#define CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE 3968 +#define CONFIG_SOC_SHA_SUPPORT_DMA 1 +#define CONFIG_SOC_SHA_SUPPORT_RESUME 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA224 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA512_224 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA512_256 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA512_T 1 +#define CONFIG_SOC_AES_SUPPORT_DMA 1 +#define CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE 1 +#define CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE 1 +#define CONFIG_SOC_EFUSE_HARD_DIS_JTAG 1 +#define CONFIG_SOC_EFUSE_SOFT_DIS_JTAG 1 +#define CONFIG_SOC_EFUSE_DIS_ICACHE 1 +#define CONFIG_SOC_EFUSE_XTS_AES_KEY_128 1 +#define CONFIG_SOC_EFUSE_XTS_AES_KEY_256 1 +#define CONFIG_SOC_SECURE_BOOT_V2_RSA 1 +#define CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS 1 +#define CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY 1 +#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES 1 +#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS 1 +#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 1 +#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256 1 +#define CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE 16 +#define CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE 256 +#define CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH 12 +#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_WRAP 1 +#define CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP 1 +#define CONFIG_SOC_COEX_HW_PTI 1 +#define CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE 1 +#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC 1 +#define CONFIG_SOC_WIFI_HW_TSF 1 +#define CONFIG_SOC_WIFI_FTM_SUPPORT 1 +#define CONFIG_SOC_GDMA_SUPPORTED 1 +#define CONFIG_SOC_UHCI_SUPPORTED 1 +#define CONFIG_SOC_AHB_GDMA_SUPPORTED 1 +#define CONFIG_SOC_LCDCAM_CAM_SUPPORTED 1 +#define CONFIG_SOC_LCDCAM_I80_LCD_SUPPORTED 1 +#define CONFIG_SOC_LCDCAM_RGB_LCD_SUPPORTED 1 +#define CONFIG_SOC_LCD_RGB_SUPPORTED 1 +#define CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED 1 +#define CONFIG_SOC_SIMD_INSTRUCTION_SUPPORTED 1 +#define CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG 1 +#define CONFIG_SOC_APB_BACKUP_DMA 1 +#define CONFIG_SOC_CACHE_FREEZE_SUPPORTED 1 +#define CONFIG_SOC_CACHE_ACS_INVALID_STATE_ON_PANIC 1 +#define CONFIG_SOC_SIMD_PREFERRED_DATA_ALIGNMENT 16 +#define CONFIG_SOC_AHB_GDMA_VERSION 1 +#define CONFIG_SOC_I2C_SUPPORT_XTAL 1 +#define CONFIG_SOC_I2C_SUPPORT_RTC 1 +#define CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST 1 +#define CONFIG_SOC_I2S_HW_VERSION_2 1 +#define CONFIG_SOC_I2S_SUPPORTS_PCM 1 +#define CONFIG_SOC_I2S_SUPPORTS_TDM 1 +#define CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE 1 +#define CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP 1 +#define CONFIG_SOC_RMT_SUPPORT_DMA 1 +#define CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH 128 +#define CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM 549 +#define CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH 128 +#define CONFIG_SOC_UART_SUPPORT_RTC_CLK 1 +#define CONFIG_SOC_UART_SUPPORT_XTAL_CLK 1 +#define CONFIG_SOC_UHCI_NUM 1 +#define CONFIG_SOC_SHA_GDMA 1 +#define CONFIG_SOC_AES_GDMA 1 +#define CONFIG_SOC_PM_SUPPORT_BT_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_CPU_PD 1 +#define CONFIG_SOC_PM_SUPPORT_TAGMEM_PD 1 +#define CONFIG_SOC_PM_SUPPORT_MAC_BB_PD 1 +#define CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY 1 +#define CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL 1 +#define CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA 1 +#define CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D2 1 +#define CONFIG_SOC_EFUSE_DIS_USB_JTAG 1 +#define CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT 1 +#define CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK 1 +#define CONFIG_SOC_MAC_BB_PD_MEM_SIZE 192 +#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_TIMING_TUNING 1 +#define CONFIG_SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY 1 +#define CONFIG_SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP 1 +#define CONFIG_SOC_SPI_MEM_FLASH_SUPPORT_HPM 1 +#define CONFIG_SOC_SDMMC_USE_GPIO_MATRIX 1 +#define CONFIG_SOC_SDMMC_DELAY_PHASE_NUM 4 +#define CONFIG_SOC_WIFI_GCMP_SUPPORT 1 +#define CONFIG_SOC_WIFI_TXOP_SUPPORT 1 +#define CONFIG_SOC_WIFI_PHY_NEEDS_USB_WORKAROUND 1 +#define CONFIG_SOC_BLE_50_SUPPORTED 1 +#define CONFIG_SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV 1 +#define CONFIG_XTAL_FREQ 40 +#define CONFIG_XTAL_FREQ_40 1 +#define CONFIG_BOOTLOADER_OFFSET_IN_FLASH 0x0 +#define CONFIG_BOOTLOADER_CPU_CLK_FREQ_MHZ 80 +#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ 240 +#define CONFIG_ESP_CLK_FREQ_HZ 240000000 +#define CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM 4 +#define CONFIG_ESP_TIMER_INTERRUPT_LEVEL 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL 3 +#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1 +#define CONFIG_ESP32_DPORT_DIS_INTERRUPT_LVL 5 +#define CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE 1 +#define CONFIG_IDF_TARGET_ARCH_XTENSA 1 +#define CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM 1 +#define CONFIG_ESP_PHY_ENABLED 1 +#define CONFIG_portNUM_PROCESSORS 2 +#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0009 +#define CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY 1 +#define CONFIG_SPIRAM_ALLOW_NOINIT_SEG_EXTERNAL_MEMORY 1 +#define CONFIG_IDF_TARGET_ESP32S3 1 +#define CONFIG_ESP_TIMER_IMPL_SYSTIMER 1 +#define CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0 1 +#define CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY 2000 +#define CONFIG_ZEPHYR_HAL_ESPRESSIF_MODULE 1 +#define CONFIG_ZEPHYR_HAL_ETHOS_U_MODULE 1 +#define CONFIG_ZEPHYR_HAL_GIGADEVICE_MODULE 1 +#define CONFIG_ZEPHYR_HAL_INFINEON_MODULE 1 +#define CONFIG_ZEPHYR_HAL_INTEL_MODULE 1 +#define CONFIG_ZEPHYR_MICROCHIP_MODULE 1 +#define CONFIG_ZEPHYR_HAL_NORDIC_MODULE 1 +#define CONFIG_ZEPHYR_NUVOTON_MODULE 1 +#define CONFIG_ZEPHYR_HAL_NXP_MODULE 1 +#define CONFIG_ZEPHYR_OPENISA_MODULE 1 +#define CONFIG_ZEPHYR_QUICKLOGIC_MODULE 1 +#define CONFIG_ZEPHYR_HAL_REALTEK_MODULE 1 +#define CONFIG_ZEPHYR_HAL_RENESAS_MODULE 1 +#define CONFIG_ZEPHYR_HAL_RPI_PICO_MODULE 1 +#define CONFIG_ZEPHYR_HAL_SIFLI_MODULE 1 +#define CONFIG_ZEPHYR_HAL_SILABS_MODULE 1 +#define CONFIG_ZEPHYR_HAL_ST_MODULE 1 +#define CONFIG_ZEPHYR_HAL_STM32_MODULE 1 +#define CONFIG_ZEPHYR_HAL_TDK_MODULE 1 +#define CONFIG_ZEPHYR_HAL_TELINK_MODULE 1 +#define CONFIG_ZEPHYR_TI_MODULE 1 +#define CONFIG_ZEPHYR_HAL_WCH_MODULE 1 +#define CONFIG_ZEPHYR_HAL_WURTHELEKTRONIK_MODULE 1 +#define CONFIG_ZEPHYR_XTENSA_MODULE 1 +#define CONFIG_ZEPHYR_HOSTAP_MODULE 1 +#define CONFIG_ZEPHYR_LIBLC3_MODULE 1 +#define CONFIG_ZEPHYR_LIBMCTP_MODULE 1 +#define CONFIG_ZEPHYR_LIBMETAL_MODULE 1 +#define CONFIG_ZEPHYR_LIBSBC_MODULE 1 +#define CONFIG_ZEPHYR_LITTLEFS_MODULE 1 +#define CONFIG_ZEPHYR_LORA_BASICS_MODEM_MODULE 1 +#define CONFIG_ZEPHYR_LORAMAC_NODE_MODULE 1 +#define CONFIG_HAS_SEMTECH_RADIO_DRIVERS 1 +#define CONFIG_HAS_SEMTECH_SX126X 1 +#define CONFIG_ZEPHYR_LVGL_MODULE 1 +#define CONFIG_ZEPHYR_MBEDTLS_MODULE 1 +#define CONFIG_MBEDTLS_VERSION_4_x 1 +#define CONFIG_ZEPHYR_MBEDTLS_3_6_MODULE 1 +#define CONFIG_ZEPHYR_MCUBOOT_MODULE 1 +#define CONFIG_ZEPHYR_MIPI_SYS_T_MODULE 1 +#define CONFIG_ZEPHYR_NANOPB_MODULE 1 +#define CONFIG_ZEPHYR_NRF_WIFI_MODULE 1 +#define CONFIG_ZEPHYR_OPEN_AMP_MODULE 1 +#define CONFIG_ZEPHYR_OPENTHREAD_MODULE 1 +#define CONFIG_ZEPHYR_PERCEPIO_MODULE 1 +#define CONFIG_ZEPHYR_PICOLIBC_MODULE 1 +#define CONFIG_ZEPHYR_PSA_ARCH_TESTS_MODULE 1 +#define CONFIG_ZEPHYR_SEGGER_MODULE 1 +#define CONFIG_ZEPHYR_TF_M_TESTS_MODULE 1 +#define CONFIG_ZEPHYR_TF_PSA_CRYPTO_MODULE 1 +#define CONFIG_ZEPHYR_TRUSTED_FIRMWARE_A_MODULE 1 +#define CONFIG_ZEPHYR_TRUSTED_FIRMWARE_M_MODULE 1 +#define CONFIG_ZEPHYR_UOSCORE_UEDHOC_MODULE 1 +#define CONFIG_ZEPHYR_ZCBOR_MODULE 1 +#define CONFIG_ZEPHYR_NRF_HW_MODELS_MODULE 1 +#define CONFIG_HAS_ESPRESSIF_HAL 1 +#define CONFIG_BOARD "xiao_esp32s3" +#define CONFIG_BOARD_REVISION "" +#define CONFIG_BOARD_TARGET "xiao_esp32s3/esp32s3/procpu" +#define CONFIG_BOARD_XIAO_ESP32S3 1 +#define CONFIG_BOARD_XIAO_ESP32S3_ESP32S3_PROCPU 1 +#define CONFIG_BOARD_QUALIFIERS "esp32s3/procpu" +#define CONFIG_HEAP_MEM_POOL_ADD_SIZE_BOARD 4096 +#define CONFIG_SOC "esp32s3" +#define CONFIG_SOC_SERIES "esp32s3" +#define CONFIG_SOC_FAMILY "espressif_esp32" +#define CONFIG_SOC_PART_NUMBER "ESP32S3_WROOM_N8R8" +#define CONFIG_SOC_FAMILY_ESPRESSIF_ESP32 1 +#define CONFIG_SOC_SERIES_ESP32S3 1 +#define CONFIG_SOC_ESP32S3_WROOM_N8R8 1 +#define CONFIG_SOC_ESP32S3 1 +#define CONFIG_SOC_ESP32S3_PROCPU 1 +#define CONFIG_GPIO_INIT_PRIORITY 40 +#define CONFIG_ESP_SIMPLE_BOOT 1 +#define CONFIG_ESP32_TIMER_TASK_STACK_SIZE 4096 +#define CONFIG_ESP32_TIMER_TASK_PRIO 3 +#define CONFIG_ESP_CONSOLE_UART_NUM 4 +#define CONFIG_ESP_CONSOLE_UART_BAUDRATE 1 +#define CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM 4 +#define CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG 1 +#define CONFIG_ESP_CONSOLE 1 +#define CONFIG_ESP_USB_SERIAL_JTAG_ENABLED 1 +#define CONFIG_ESP32_EFUSE_MAX_BLK_LEN 256 +#define CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT 1 +#define CONFIG_ESPTOOLPY_FLASHMODE_DIO 1 +#define CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR 1 +#define CONFIG_ESPTOOLPY_FLASHMODE "dio" +#define CONFIG_ESPTOOLPY_FLASHFREQ_80M 1 +#define CONFIG_ESPTOOLPY_FLASHFREQ_80M_DEFAULT 1 +#define CONFIG_ESPTOOLPY_FLASHFREQ "80m" +#define CONFIG_ESPTOOLPY_FLASHSIZE_2MB 1 +#define CONFIG_ESPTOOLPY_FLASHSIZE "2MB" +#define CONFIG_ESPTOOLPY_BEFORE_RESET 1 +#define CONFIG_ESPTOOLPY_BEFORE "default_reset" +#define CONFIG_ESPTOOLPY_AFTER_RESET 1 +#define CONFIG_ESPTOOLPY_AFTER "hard_reset" +#define CONFIG_MMU_PAGE_SIZE 0x10000 +#define CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED 1 +#define CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_GD_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_TH_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_CHIP 1 +#define CONFIG_SPI_FLASH_ROM_DRIVER_PATCH 1 +#define CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT 1 +#define CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V 1 +#define CONFIG_ESP32S3_INSTRUCTION_CACHE_16KB 1 +#define CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE 0x4000 +#define CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS 1 +#define CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS 8 +#define CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B 1 +#define CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE 32 +#define CONFIG_ESP32S3_DATA_CACHE_32KB 1 +#define CONFIG_ESP32S3_DATA_CACHE_SIZE 0x8000 +#define CONFIG_ESP32S3_DATA_CACHE_8WAYS 1 +#define CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS 8 +#define CONFIG_ESP32S3_DATA_CACHE_LINE_32B 1 +#define CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE 32 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_BT 1 +#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR 1 +#define CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR 1 +#define CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES 4 +#define CONFIG_RESERVE_RTC_MEM 0 +#define CONFIG_SOC_LOG_LEVEL_DEFAULT 1 +#define CONFIG_SOC_LOG_LEVEL 3 +#define CONFIG_ARCH "xtensa" +#define CONFIG_XTENSA 1 +#define CONFIG_ARCH_IS_SET 1 +#define CONFIG_ARCH_LOG_LEVEL_DEFAULT 1 +#define CONFIG_ARCH_LOG_LEVEL 3 +#define CONFIG_LITTLE_ENDIAN 1 +#define CONFIG_SRAM_SIZE 416 +#define CONFIG_SRAM_BASE_ADDRESS 0x3fc88000 +#define CONFIG_ARCH_DEVICE_STATE_ALIGN 4 +#define CONFIG_SRAM_SW_ISR_TABLE 1 +#define CONFIG_EXCEPTION_DEBUG 1 +#define CONFIG_ARCH_HAS_TIMING_FUNCTIONS 1 +#define CONFIG_ARCH_SUPPORTS_COREDUMP 1 +#define CONFIG_ARCH_SUPPORTS_COREDUMP_STACK_PTR 1 +#define CONFIG_ARCH_HAS_CODE_DATA_RELOCATION 1 +#define CONFIG_CPU_HAS_FPU 1 +#define CONFIG_ARCH_HAS_DIRECTED_IPIS 1 +#define CONFIG_TOOLCHAIN_HAS_BUILTIN_FFS 1 +#define CONFIG_KERNEL_LOG_LEVEL_DEFAULT 1 +#define CONFIG_KERNEL_LOG_LEVEL 3 +#define CONFIG_NUM_COOP_PRIORITIES 16 +#define CONFIG_MAIN_THREAD_PRIORITY 0 +#define CONFIG_COOP_ENABLED 1 +#define CONFIG_PREEMPT_ENABLED 1 +#define CONFIG_PRIORITY_CEILING -128 +#define CONFIG_THREAD_STACK_INFO 1 +#define CONFIG_SCHED_SIMPLE 1 +#define CONFIG_WAITQ_SIMPLE 1 +#define CONFIG_ERRNO 1 +#define CONFIG_BOOT_BANNER 1 +#define CONFIG_BOOT_BANNER_STRING "Booting Zephyr OS build" +#define CONFIG_BOOT_DELAY 0 +#define CONFIG_SYSTEM_WORKQUEUE_PRIORITY -1 +#define CONFIG_SYSTEM_WORKQUEUE_WORK_TIMEOUT_MS 0 +#define CONFIG_ATOMIC_OPERATIONS_BUILTIN 1 +#define CONFIG_TIMESLICING 1 +#define CONFIG_TIMESLICE_PRIORITY 0 +#define CONFIG_POLL 1 +#define CONFIG_NUM_MBOX_ASYNC_MSGS 10 +#define CONFIG_HEAP_MEM_POOL_SIZE 4096 +#define CONFIG_TIMEOUT_64BIT 1 +#define CONFIG_SYS_CLOCK_MAX_TIMEOUT_DAYS 365 +#define CONFIG_USE_SWITCH 1 +#define CONFIG_USE_SWITCH_SUPPORTED 1 +#define CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE 1 +#define CONFIG_TOOLCHAIN_SUPPORTS_STATIC_INIT_GNU 1 +#define CONFIG_KERNEL_INIT_PRIORITY_OBJECTS 30 +#define CONFIG_KERNEL_INIT_PRIORITY_LIBC 35 +#define CONFIG_KERNEL_INIT_PRIORITY_DEFAULT 40 +#define CONFIG_KERNEL_INIT_PRIORITY_DEVICE 50 +#define CONFIG_APPLICATION_INIT_PRIORITY 90 +#define CONFIG_CLOCK_CONTROL_LOG_LEVEL_DEFAULT 1 +#define CONFIG_CLOCK_CONTROL_LOG_LEVEL 3 +#define CONFIG_CLOCK_CONTROL_ESP32 1 +#define CONFIG_CLOCK_CONTROL_ESP32_RTC_CLK_SRC_INT_RC 1 +#define CONFIG_CLOCK_CONTROL_ESP32_RTC_CLK_CAL_CYCLES 1024 +#define CONFIG_CLOCK_CONTROL_TISCI_PRIORITY 40 +#define CONFIG_CONSOLE_INPUT_MAX_LINE_LEN 128 +#define CONFIG_CONSOLE_HAS_DRIVER 1 +#define CONFIG_CONSOLE_INIT_PRIORITY 60 +#define CONFIG_UART_CONSOLE 1 +#define CONFIG_UART_CONSOLE_LOG_LEVEL_DEFAULT 1 +#define CONFIG_UART_CONSOLE_LOG_LEVEL 3 +#define CONFIG_GPIO_LOG_LEVEL_DEFAULT 1 +#define CONFIG_GPIO_LOG_LEVEL 3 +#define CONFIG_GPIO_ESP32 1 +#define CONFIG_INTC_INIT_PRIORITY 40 +#define CONFIG_INTC_LOG_LEVEL_DEFAULT 1 +#define CONFIG_INTC_LOG_LEVEL 3 +#define CONFIG_INTC_ESP32 1 +#define CONFIG_LORA 1 +#define CONFIG_LORA_MODULE_BACKEND_LORAMAC_NODE 1 +#define CONFIG_LORA_LOG_LEVEL_DEFAULT 1 +#define CONFIG_LORA_LOG_LEVEL 3 +#define CONFIG_LORA_INIT_PRIORITY 90 +#define CONFIG_LORA_SX126X 1 +#define CONFIG_PINCTRL 1 +#define CONFIG_PINCTRL_LOG_LEVEL_DEFAULT 1 +#define CONFIG_PINCTRL_LOG_LEVEL 3 +#define CONFIG_PINCTRL_ESP32 1 +#define CONFIG_SERIAL_HAS_DRIVER 1 +#define CONFIG_SERIAL_SUPPORT_ASYNC 1 +#define CONFIG_SERIAL_SUPPORT_INTERRUPT 1 +#define CONFIG_SERIAL_INIT_PRIORITY 50 +#define CONFIG_UART_LOG_LEVEL_DEFAULT 1 +#define CONFIG_UART_LOG_LEVEL 3 +#define CONFIG_UART_ESP32 1 +#define CONFIG_SERIAL_ESP32_USB 1 +#define CONFIG_UART_ESP32_TX_FIFO_THRESH 0x1 +#define CONFIG_UART_ESP32_RX_FIFO_THRESH 0x16 +#define CONFIG_SPI_INIT_PRIORITY 50 +#define CONFIG_SPI_COMPLETION_TIMEOUT_TOLERANCE 200 +#define CONFIG_SPI_LOG_LEVEL_DEFAULT 1 +#define CONFIG_SPI_LOG_LEVEL 3 +#define CONFIG_ESP32_SPIM 1 +#define CONFIG_SYSTEM_CLOCK_INIT_PRIORITY 0 +#define CONFIG_TICKLESS_CAPABLE 1 +#define CONFIG_XTENSA_TIMER_LPM_TIMER_NONE 1 +#define CONFIG_FULL_LIBC_SUPPORTED 1 +#define CONFIG_MINIMAL_LIBC_SUPPORTED 1 +#define CONFIG_PICOLIBC_SUPPORTED 1 +#define CONFIG_PICOLIBC 1 +#define CONFIG_COMMON_LIBC_ABORT 1 +#define CONFIG_COMMON_LIBC_TIME 1 +#define CONFIG_COMMON_LIBC_MALLOC 1 +#define CONFIG_COMMON_LIBC_CALLOC 1 +#define CONFIG_COMMON_LIBC_REALLOCARRAY 1 +#define CONFIG_PICOLIBC_USE_TOOLCHAIN 1 +#define CONFIG_PICOLIBC_IO_LONG_LONG 1 +#define CONFIG_STDOUT_CONSOLE 1 +#define CONFIG_NEED_LIBC_MEM_PARTITION 1 +#define CONFIG_SYS_HEAP_ALLOC_LOOPS 3 +#define CONFIG_SYS_HEAP_ARRAY_SIZE 0 +#define CONFIG_SYS_HEAP_HARDENING_BASIC 1 +#define CONFIG_SYS_HEAP_HARDENING_LEVEL 1 +#define CONFIG_SYS_HEAP_LOG_LEVEL_DEFAULT 1 +#define CONFIG_SYS_HEAP_LOG_LEVEL 3 +#define CONFIG_SYS_HEAP_AUTO 1 +#define CONFIG_MPSC_PBUF 1 +#define CONFIG_HAS_POWEROFF 1 +#define CONFIG_CBPRINTF_COMPLETE 1 +#define CONFIG_CBPRINTF_FULL_INTEGRAL 1 +#define CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_DEFAULT 1 +#define CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL 3 +#define CONFIG_CBPRINTF_CONVERT_CHECK_PTR 1 +#define CONFIG_CPU_LOAD_LOG_LEVEL_DEFAULT 1 +#define CONFIG_CPU_LOAD_LOG_LEVEL 3 +#define CONFIG_POSIX_AEP_CHOICE_ZEPHYR 1 +#define CONFIG_TC_PROVIDES_POSIX_C_LANG_SUPPORT_R 1 +#define CONFIG_POSIX_C_LANG_SUPPORT_R 1 +#define CONFIG_POSIX_C_LIB_EXT 1 +#define CONFIG_LIBGCC_RTLIB 1 +#define CONFIG_RING_BUFFER 1 +#define CONFIG_GETOPT 1 +#define CONFIG_TIMEUTIL_APPLY_SKEW 1 +#define CONFIG_PRINTK 1 +#define CONFIG_EARLY_CONSOLE 1 +#define CONFIG_ASSERT_VERBOSE 1 +#define CONFIG_CPU_LOAD_LOG_PERIODICALLY 0 +#define CONFIG_LOG_CORE_INIT_PRIORITY 0 +#define CONFIG_LOG_MODE_DEFERRED 1 +#define CONFIG_LOG_FLUSH_SLEEP_US 10000 +#define CONFIG_LOG_DEFAULT_LEVEL 3 +#define CONFIG_LOG_OVERRIDE_LEVEL 0 +#define CONFIG_LOG_MAX_LEVEL 4 +#define CONFIG_LOG_PRINTK 1 +#define CONFIG_LOG_MODE_OVERFLOW 1 +#define CONFIG_LOG_PROCESS_TRIGGER_THRESHOLD 10 +#define CONFIG_LOG_PROCESS_THREAD 1 +#define CONFIG_LOG_PROCESS_THREAD_STARTUP_DELAY_MS 0 +#define CONFIG_LOG_PROCESS_THREAD_SLEEP_MS 1000 +#define CONFIG_LOG_BUFFER_SIZE 1024 +#define CONFIG_LOG_TRACE_SHORT_TIMESTAMP 1 +#define CONFIG_LOG_FUNC_NAME_PREFIX_DBG 1 +#define CONFIG_LOG_BACKEND_SHOW_TIMESTAMP 1 +#define CONFIG_LOG_BACKEND_SHOW_LEVEL 1 +#define CONFIG_LOG_BACKEND_SHOW_COLOR 1 +#define CONFIG_LOG_TAG_MAX_LEN 0 +#define CONFIG_LOG_BACKEND_SUPPORTS_FORMAT_TIMESTAMP 1 +#define CONFIG_LOG_BACKEND_FORMAT_TIMESTAMP 1 +#define CONFIG_LOG_OUTPUT_FORMAT_TIME_TIMESTAMP 1 +#define CONFIG_LOG_BACKEND_UART 1 +#define CONFIG_LOG_BACKEND_UART_BUFFER_SIZE 1 +#define CONFIG_LOG_BACKEND_UART_AUTOSTART 1 +#define CONFIG_LOG_BACKEND_UART_OUTPUT_TEXT 1 +#define CONFIG_LOG_BACKEND_UART_OUTPUT_DEFAULT 0 +#define CONFIG_LOG_USE_VLA 1 +#define CONFIG_LOG_SIMPLE_MSG_OPTIMIZE 1 +#define CONFIG_LOG_FAILURE_REPORT_PERIOD 1000 +#define CONFIG_LOG_RATELIMIT 1 +#define CONFIG_LOG_RATELIMIT_INTERVAL_MS 5000 +#define CONFIG_LOG_OUTPUT 1 +#define CONFIG_HAS_PM 1 +#define CONFIG_TIMER_RANDOM_INITIAL_STATE 123456789 +#define CONFIG_ENTROPY_NODE_ENABLED 1 +#define CONFIG_COVERAGE_DUMP_PATH_EXCLUDE "" +#define CONFIG_TOOLCHAIN_ZEPHYR_1_0 1 +#define CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_THREAD_LOCAL_STORAGE 1 +#define CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_GNU_EXTENSIONS 1 +#define CONFIG_PICOLIBC_DEFAULT 1 +#define CONFIG_LINKER_ORPHAN_SECTION_WARN 1 +#define CONFIG_FLASH_LOAD_SIZE 0x0 +#define CONFIG_ROM_END_OFFSET 0x0 +#define CONFIG_LD_LINKER_SCRIPT_SUPPORTED 1 +#define CONFIG_LD_LINKER_TEMPLATE 1 +#define CONFIG_LINKER_SORT_BY_ALIGNMENT 1 +#define CONFIG_LINKER_GENERIC_SECTIONS_PRESENT_AT_BOOT 1 +#define CONFIG_LINKER_ITERABLE_SUBALIGN 4 +#define CONFIG_STD_C17 1 +#define CONFIG_TOOLCHAIN_SUPPORTS_GNU_EXTENSIONS 1 +#define CONFIG_SIZE_OPTIMIZATIONS 1 +#define CONFIG_COMPILER_TRACK_MACRO_EXPANSION 1 +#define CONFIG_COMPILER_COLOR_DIAGNOSTICS 1 +#define CONFIG_FORTIFY_SOURCE_COMPILE_TIME 1 +#define CONFIG_COMPILER_OPT "" +#define CONFIG_TOOLCHAIN_SUPPORTS_VLA_IN_STATEMENTS 1 +#define CONFIG_TOOLCHAIN_SUPPORTS_VARIABLE_CLEANUP_ATTRIBUTE 1 +#define CONFIG_COMPILER_CODEGEN_VLIW_AUTO 1 +#define CONFIG_RUNTIME_ERROR_CHECKS 1 +#define CONFIG_KERNEL_BIN_NAME "zephyr" +#define CONFIG_OUTPUT_STAT 1 +#define CONFIG_OUTPUT_PRINT_MEMORY_USAGE 1 +#define CONFIG_BUILD_GAP_FILL_PATTERN 0xFF +#define CONFIG_BUILD_OUTPUT_STRIP_PATHS 1 +#define CONFIG_CHECK_INIT_PRIORITIES 1 +#define CONFIG_WARN_DEPRECATED 1 +#define CONFIG_ENFORCE_ZEPHYR_STDINT 1 +#define CONFIG_LEGACY_GENERATED_INCLUDE_PATH 1 +#define CONFIG_LORAMODEM_KISS_IFACE_UART 1 +#define CONFIG_LORAMODEM_LORA_FREQ_HZ 869618000 +#define CONFIG_LORAMODEM_LORA_SF 8 +#define CONFIG_LORAMODEM_LORA_BW 62 +#define CONFIG_LORAMODEM_LORA_CR 5 +#define CONFIG_LORAMODEM_LORA_TX_POWER_DBM 21 +#define CONFIG_LORAMODEM_LORA_PREAMBLE_LEN 8 +#define CONFIG_LORAMODEM_MAX_PACKET_SIZE 255 diff --git a/build/zephyr/include/generated/zephyr/core-isa-dM.h b/build/zephyr/include/generated/zephyr/core-isa-dM.h new file mode 100644 index 0000000..f28f09c --- /dev/null +++ b/build/zephyr/include/generated/zephyr/core-isa-dM.h @@ -0,0 +1,812 @@ +#define XCHAL_MMU_ASID_BITS 0 +#define __DBL_MIN_EXP__ (-1021) +#define __XCHAL_HAVE_FP 1 +#define XCHAL_VECBASE_RESET_VADDR 0x40000000 +#define XCHAL_HAVE_FP_RECIP 1 +#define XCHAL_HAVE_PIF_REQ_ATTR 1 +#define XCHAL_PREFETCH_CASTOUT_LINES 0 +#define XCHAL_DCACHE_WAYS 1 +#define __UINT_LEAST16_MAX__ 0xffff +#define XCHAL_CORE_ID "LX7_ESP32_S3_MP" +#define __ATOMIC_ACQUIRE 2 +#define XCHAL_INT25_LEVEL 4 +#define __WCHAR_MAX__ 0xffff +#define XCHAL_PROFILING_INTERRUPT 11 +#define XCHAL_INT22_EXTNUM 17 +#define __FLT_MIN__ 1.1754943508222875e-38F +#define __GCC_IEC_559_COMPLEX 0 +#define __XCHAL_HAVE_PREDICTED_BRANCHES 0 +#define XCHAL_DCACHE_ACCESS_SIZE 1 +#define XCHAL_EXTINT16_NUM 21 +#define __UINT_LEAST8_TYPE__ unsigned char +#define XCHAL_HAVE_CONNXD2_DUALLSFLIX 0 +#define XCHAL_HAVE_INSTRAM0 1 +#define XCHAL_INT10_TYPE XTHAL_INTTYPE_EXTERN_EDGE +#define XCHAL_INT19_LEVEL 2 +#define XCHAL_HAVE_SEXT 1 +#define __INTMAX_C(c) c ## LL +#define __XCHAL_HAVE_ADDX 1 +#define __CHAR_BIT__ 8 +#define __XCHAL_DCACHE_LINESIZE 16 +#define __XTENSA_MARCH_EARLIEST 270012 +#define XCHAL_INSTRAM0_HAVE_IDMA 0 +#define __XCHAL_DCACHE_LINEWIDTH 4 +#define __UINT8_MAX__ 0xff +#define XCHAL_HW_MAX_VERSION_MINOR 12 +#define XCHAL_INTLEVEL5_VECTOR_VADDR 0x40000240 +#define XCHAL_PDX_SIMD32 0 +#define __WINT_MAX__ 0xffffffffU +#define __FLT32_MIN_EXP__ (-125) +#define XCHAL_HAVE_VISION 0 +#define XCHAL_ICACHE_ACCESS_SIZE 1 +#define XCHAL_VISION_TYPE 0 +#define XCHAL_RESET_VECTOR_PADDR 0x40000400 +#define XCHAL_INT4_EXTNUM 4 +#define XCHAL_INT21_LEVEL 2 +#define XCHAL_INT9_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define __ORDER_LITTLE_ENDIAN__ 1234 +#define __SIZE_MAX__ 0xffffffffU +#define XCHAL_INTTYPE_MASK_TIMER 0x00018040 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1 +#define __DBL_DENORM_MIN__ ((double)4.9406564584124654e-324L) +#define __GCC_ATOMIC_CHAR_LOCK_FREE 2 +#define __GCC_IEC_559 0 +#define XCHAL_RESET_VECTOR1_PADDR 0x40000400 +#define __FLT32X_DECIMAL_DIG__ 17 +#define __FLT_EVAL_METHOD__ 0 +#define XCHAL_HAVE_CONST16 0 +#define XCHAL_TIMER3_INTERRUPT XTHAL_TIMER_UNCONFIGURED +#define __FLT64_DECIMAL_DIG__ 17 +#define XCHAL_HAVE_FUSION 0 +#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2 +#define XCHAL_INTLEVEL7_MASK 0x00004000 +#define XCHAL_HAVE_VECBASE 1 +#define XCHAL_INTLEVEL4_VECOFS 0x00000200 +#define XCHAL_NUM_EXTINTERRUPTS 26 +#define XCHAL_WINDOW_OF12_VECOFS 0x00000100 +#define XCHAL_INTLEVEL5_ANDBELOW_MASK 0xFFFFBFFF +#define XCHAL_HW_MAX_VERSION_MAJOR 2700 +#define __UINT_FAST64_MAX__ 0xffffffffffffffffULL +#define XCHAL_HAVE_VECTRA1 0 +#define __SIG_ATOMIC_TYPE__ int +#define XCHAL_INTLEVEL6_VECTOR_VADDR 0x40000280 +#define XCHAL_INT13_EXTNUM 10 +#define XCHAL_NUM_INSTRAM 1 +#define XCHAL_HAVE_TAP_MASTER 0 +#define __DBL_MIN_10_EXP__ (-307) +#define __FINITE_MATH_ONLY__ 0 +#define XCHAL_HAVE_FLIX3 0 +#define __XCHAL_HAVE_L32R 1 +#define XCHAL_INTTYPE_MASK_GS_ERR 0x00000000 +#define __FLT32X_MAX_EXP__ 1024 +#define XCHAL_INT27_EXTNUM 22 +#define __GNUC_PATCHLEVEL__ 0 +#define __FLT32_HAS_DENORM__ 1 +#define XCHAL_INT31_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_CP_MAXCFG 8 +#define __UINT_FAST8_MAX__ 0xffffffffU +#define __XCHAL_HAVE_LOOPS 1 +#define __FLT32_MAX_10_EXP__ 38 +#define __XCHAL_DEBUGLEVEL 6 +#define XCHAL_WINDOW_UF4_VECOFS 0x00000040 +#define __INT8_C(c) c +#define XCHAL_UNALIGNED_LOAD_EXCEPTION 0 +#define XCHAL_HAVE_CLAMPS 1 +#define __XCHAL_HAVE_DFP_RECIP 0 +#define __INT_LEAST8_WIDTH__ 8 +#define __UINT_LEAST64_MAX__ 0xffffffffffffffffULL +#define XCHAL_NUM_LOADSTORE_UNITS 1 +#define __SHRT_MAX__ 0x7fff +#define XCHAL_DEBUG_VECTOR_VADDR XCHAL_INTLEVEL6_VECTOR_VADDR +#define __XCHAL_DATA_WIDTH 16 +#define __LDBL_MAX__ 1.7976931348623157e+308L +#define XCHAL_INT30_EXTNUM 24 +#define __XCHAL_ICACHE_LINESIZE 16 +#define XCHAL_MPU_ALIGN_BITS 0 +#define __LDBL_IS_IEC_60559__ 1 +#define __XCHAL_UNALIGNED_LOAD_HW 0 +#define XCHAL_INTLEVEL7_VECTOR_VADDR XCHAL_NMI_VECTOR_VADDR +#define __UINT_LEAST8_MAX__ 0xff +#define __GCC_ATOMIC_BOOL_LOCK_FREE 2 +#define XCHAL_INT20_LEVEL 2 +#define XCHAL_INT9_EXTNUM 7 +#define __UINTMAX_TYPE__ long long unsigned int +#define XCHAL_INT17_LEVEL 1 +#define __FLT_EVAL_METHOD_TS_18661_3__ 0 +#define XCHAL_HAVE_ABS 1 +#define XCHAL_NUM_INSTROM 0 +#define XCHAL_HAVE_DCACHE_TEST 0 +#define XCHAL_HAVE_PREFETCH 0 +#define __UINT32_MAX__ 0xffffffffUL +#define XCHAL_HAVE_GRIVPEP_HISTOGRAM 0 +#define XCHAL_DCACHE_IS_COHERENT 0 +#define XCHAL_NUM_URAM 0 +#define XCHAL_HAVE_MAC16 1 +#define __LDBL_MAX_EXP__ 1024 +#define XCHAL_NUM_DBREAK 2 +#define __WINT_MIN__ 0U +#define XCHAL_EXTINT14_NUM 19 +#define XCHAL_HAVE_FUSION_VITERBI 0 +#define XCHAL_HAVE_RELEASE_SYNC 1 +#define __FLT32X_IS_IEC_60559__ 1 +#define XCHAL_HAVE_IMEM_LOADSTORE 1 +#define __XCHAL_HAVE_THREADPTR 1 +#define __INT_LEAST16_WIDTH__ 16 +#define __SCHAR_MAX__ 0x7f +#define XCHAL_INT8_LEVEL 1 +#define XCHAL_INT18_EXTNUM 13 +#define __WCHAR_MIN__ 0 +#define __XCHAL_ICACHE_LINEWIDTH 4 +#define XCHAL_DATARAM0_VADDR 0x3C000000 +#define __INT64_C(c) c ## LL +#define __GCC_ATOMIC_POINTER_LOCK_FREE 2 +#define XCHAL_INT15_TYPE XTHAL_INTTYPE_TIMER +#define XCHAL_DCACHE_LINE_LOCKABLE 0 +#define XCHAL_INT0_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define __ATOMIC_SEQ_CST 5 +#define XCHAL_CLOCK_GATING_GLOBAL 1 +#define XCHAL_HAVE_FUSIONG_SP_VFPU 0 +#define XCHAL_INT30_TYPE XTHAL_INTTYPE_EXTERN_EDGE +#define XCHAL_EXTINT25_NUM 31 +#define __SIZEOF_INT__ 4 +#define XCHAL_DATARAM0_HAVE_IDMA 0 +#define XCHAL_INT27_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT6_LEVEL 1 +#define XCHAL_HAVE_CALL4AND12 1 +#define XCHAL_INT15_LEVEL 3 +#define __FLT32X_MANT_DIG__ 53 +#define XCHAL_INT21_EXTNUM 16 +#define XCHAL_HAVE_SSP16 0 +#define XCHAL_MPU_BACKGROUND_ENTRIES 0 +#define XCHAL_ICACHE_SIZE 0 +#define XCHAL_INT11_TYPE XTHAL_INTTYPE_PROFILING +#define __STDC_HOSTED__ 1 +#define XCHAL_INST_FETCH_WIDTH 4 +#define XCHAL_HW_VERSION 270012 +#define XCHAL_INT4_LEVEL 1 +#define XCHAL_INT13_LEVEL 1 +#define XCHAL_VISION_SIMD16 0 +#define XCHAL_HAVE_ACELITE 0 +#define XCHAL_HAVE_FUSION_LOW_POWER 0 +#define XCHAL_INT12_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define __XCHAL_HAVE_MUL32 1 +#define __XTENSA_EL__ 1 +#define XCHAL_MMU_RING_BITS 0 +#define __DBL_DIG__ 15 +#define __XCHAL_HAVE_MUL16 1 +#define __FLT_EPSILON__ 1.1920928955078125e-7F +#define XCHAL_HAVE_ABSOLUTE_LITERALS 0 +#define __SHRT_WIDTH__ 16 +#define XCHAL_INT3_EXTNUM 3 +#define __FLT32_IS_IEC_60559__ 1 +#define XCHAL_INT2_LEVEL 1 +#define XCHAL_HAVE_AXI 0 +#define XCHAL_INT11_LEVEL 3 +#define XCHAL_INTTYPE_MASK_UNCONFIGURED 0x00000000 +#define __LDBL_MIN__ 2.2250738585072014e-308L +#define __STDC_UTF_16__ 1 +#define __DBL_IS_IEC_60559__ 1 +#define XCHAL_HAVE_MEM_ECC_PARITY 0 +#define XCHAL_HAVE_ADDX 1 +#define XCHAL_EXTINT10_NUM 13 +#define XCHAL_HAVE_TURBO16 0 +#define XCHAL_HAVE_OCD_LS32DDR 1 +#define XCHAL_HAVE_THREADPTR 1 +#define __XCHAL_HAVE_MMU 0 +#define __FLT32X_HAS_INFINITY__ 1 +#define __INT32_MAX__ 0x7fffffffL +#define XCHAL_INT24_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_HAVE_DFP_accel XCHAL_HAVE_DFP_ACCEL +#define __XCHAL_HAVE_DIV32 1 +#define __INT_WIDTH__ 32 +#define XCHAL_HAVE_PTP_MMU 0 +#define XCHAL_EXTINT24_NUM 30 +#define XCHAL_EXTINT9_NUM 12 +#define XCHAL_HAVE_PDX 0 +#define __XTENSA_MARCH_LATEST 270012 +#define __DECIMAL_DIG__ 17 +#define XCHAL_HAVE_DFP_ACCEL 0 +#define __FLT64_EPSILON__ 2.2204460492503131e-16F64 +#define XCHAL_INT12_EXTNUM 9 +#define __XCHAL_DCACHE_SIZE 0 +#define XCHAL_HW_VERSION_NAME "LX7.0.12" +#define XCHAL_INT1_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define __LDBL_HAS_QUIET_NAN__ 1 +#define __XCHAL_HAVE_BOOLEANS 1 +#define XCHAL_HAVE_PIF 1 +#define __FLT64_MANT_DIG__ 53 +#define XCHAL_NUM_WRITEBUFFER_ENTRIES 4 +#define __XTHAL_ABI_WINDOWED 0 +#define XCHAL_WINDOW_VECTORS_VADDR 0x40000000 +#define XCHAL_DCACHE_BANKS 0 +#define XCHAL_DATARAM0_SIZE 67108864 +#define XCHAL_HAVE_HIGHPRI_INTERRUPTS 1 +#define XCHAL_INT28_TYPE XTHAL_INTTYPE_EXTERN_EDGE +#define __GNUC__ 14 +#define XCHAL_INTTYPE_MASK_PROFILING 0x00000800 +#define __FLT_HAS_DENORM__ 1 +#define __SIZEOF_LONG_DOUBLE__ 8 +#define XCHAL_HAVE_EXCEPTIONS 1 +#define XCHAL_INTLEVEL5_VECOFS 0x00000240 +#define XCHAL_INTLEVEL6_MASK 0x00000000 +#define XCHAL_DATARAM0_BANKS 1 +#define XCHAL_HAVE_DFP_RSQRT 0 +#define __XCHAL_HAVE_CONST16 0 +#define __BIGGEST_ALIGNMENT__ 16 +#define XCHAL_BUILD_UNIQUE_ID 0x00090F1F +#define XCHAL_NMI_VECTOR_PADDR 0x400002C0 +#define XCHAL_EXTINT12_NUM 17 +#define __FLT64_MAX_10_EXP__ 308 +#define XCHAL_HAVE_DATARAM0 1 +#define XCHAL_INT13_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_HAVE_DFPU_SINGLE_ONLY 1 +#define XCHAL_INT8_EXTNUM 6 +#define __DBL_MAX__ ((double)1.7976931348623157e+308L) +#define __INT_FAST32_MAX__ 0x7fffffff +#define __DBL_HAS_INFINITY__ 1 +#define XCHAL_HAVE_HIFI3_VFPU 0 +#define XCHAL_INT16_LEVEL 5 +#define XCHAL_HAVE_BBE16_DESPREAD 0 +#define __HAVE_SPECULATION_SAFE_VALUE 1 +#define XCHAL_HAVE_FP_DIV 1 +#define XCHAL_INTLEVEL2_VECTOR_PADDR 0x40000180 +#define XCHAL_EXTINT23_NUM 28 +#define XCHAL_EXTINT8_NUM 10 +#define __INTPTR_WIDTH__ 32 +#define XCHAL_HAVE_LOOPS 1 +#define XCHAL_NMI_INTERRUPT 14 +#define __UINT_LEAST32_MAX__ 0xffffffffUL +#define XCHAL_DEBUGLEVEL 6 +#define __FLT32X_HAS_DENORM__ 1 +#define __INT_FAST16_TYPE__ int +#define __XCHAL_HAVE_RELEASE_SYNC 1 +#define XCHAL_EXTINT13_NUM 18 +#define XCHAL_TIMER2_INTERRUPT 16 +#define __LDBL_HAS_DENORM__ 1 +#define XCHAL_HAVE_DEBUG_EXTERN_INT 1 +#define XCHAL_DATA_WIDTH 16 +#define XCHAL_INT17_EXTNUM 12 +#define __INT_LEAST32_MAX__ 0x7fffffffL +#define XCHAL_MMU_RINGS 1 +#define XCHAL_HAVE_FUSION_LFSR_CRC 0 +#define XCHAL_INSTRAM0_PADDR 0x40000000 +#define __XCHAL_DCACHE_IS_WRITEBACK 0 +#define __DBL_MAX_EXP__ 1024 +#define XCHAL_HAVE_VISION_HP_VFPU 0 +#define __WCHAR_WIDTH__ 16 +#define __FLT32_MAX__ 3.4028234663852886e+38F32 +#define __GCC_ATOMIC_LONG_LOCK_FREE 2 +#define __XCHAL_UNALIGNED_STORE_HW 0 +#define __PTRDIFF_MAX__ 0x7fffffff +#define XCHAL_HAVE_HIFI5_HP_VFPU 0 +#define XCHAL_DOUBLEEXC_VECOFS 0x000003C0 +#define XCHAL_HAVE_MUL32_HIGH 1 +#define XCHAL_WINDOW_UF8_VECOFS 0x000000C0 +#define XCHAL_INT30_LEVEL 4 +#define XCHAL_INT20_EXTNUM 15 +#define XCHAL_INTLEVEL3_VECTOR_PADDR 0x400001C0 +#define XCHAL_EXTINT7_NUM 9 +#define XCHAL_EXTINT11_NUM 14 +#define XCHAL_INT26_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT29_TYPE XTHAL_INTTYPE_SOFTWARE +#define __FLT32_HAS_QUIET_NAN__ 1 +#define XCHAL_HAVE_OCD_DIR_ARRAY 0 +#define __LONG_LONG_MAX__ 0x7fffffffffffffffLL +#define XCHAL_HAVE_HIFI3Z 0 +#define __SIZEOF_SIZE_T__ 4 +#define XCHAL_XEA_VERSION 2 +#define XCHAL_DEBUG_VECOFS XCHAL_INTLEVEL6_VECOFS +#define __SIZEOF_WINT_T__ 4 +#define XCHAL_HAVE_FUSIONG_DP_VFPU 0 +#define XCHAL_INTTYPE_MASK_EXTERN_EDGE 0x50400400 +#define __LONG_LONG_WIDTH__ 64 +#define __FLT32_MAX_EXP__ 128 +#define XCHAL_HAVE_BBENEP 0 +#define XCHAL_WINDOW_UF12_VECOFS 0x00000140 +#define XCHAL_EXTINT22_NUM 27 +#define XCHAL_HAVE_PSO_FULL_RETENTION 0 +#define __XCHAL_HAVE_MINMAX 1 +#define __XCHAL_NUM_IBREAK 2 +#define XCHAL_HAVE_MP_RUNSTALL 0 +#define XCHAL_INT14_TYPE XTHAL_INTTYPE_NMI +#define __GXX_ABI_VERSION 1019 +#define XCHAL_NUM_DATARAM 1 +#define __FLT_MIN_EXP__ (-125) +#define XCHAL_INT2_EXTNUM 2 +#define XCHAL_HAVE_DFPU_SINGLE_DOUBLE 0 +#define XCHAL_HAVE_HIFI4_VFPU 0 +#define __INT16_MAX__ 0x7fff +#define XCHAL_UNALIGNED_STORE_HW 1 +#define XCHAL_INTLEVEL2_ANDBELOW_MASK 0x003E37FF +#define __INT_FAST64_TYPE__ long long int +#define XCHAL_RESET_VECBASE_OVERLAP 0 +#define __FP_FAST_FMAF 1 +#define __FLT64_DENORM_MIN__ 4.9406564584124654e-324F64 +#define __DBL_MIN__ ((double)2.2250738585072014e-308L) +#define XCHAL_HAVE_FUSION_CONVENC 0 +#define XCHAL_HAVE_L32R 1 +#define XCHAL_HAVE_IDMA 0 +#define XCHAL_ICACHE_WAYS 1 +#define XCHAL_HW_MAX_VERSION 270012 +#define __SIZEOF_POINTER__ 4 +#define XCHAL_RESET_VECTOR0_VADDR 0x50000000 +#define __SIZE_TYPE__ unsigned int +#define XCHAL_VECBASE_RESET_PADDR 0x40000000 +#define __DBL_HAS_QUIET_NAN__ 1 +#define __FLT32X_EPSILON__ 2.2204460492503131e-16F32x +#define XCHAL_HAVE_PDX16 0 +#define __XSHAL_HAVE_TEXT_SECTION_LITERALS 1 +#define XCHAL_HAVE_PRID 1 +#define XCHAL_ICACHE_LINE_LOCKABLE 0 +#define XCHAL_HAVE_MUL16 1 +#define XCHAL_HAVE_CONNXD2 0 +#define __FLT64_MIN_EXP__ (-1021) +#define XCHAL_HAVE_PSO_CDM 0 +#define XCHAL_HAVE_PIF_WR_RESP 0 +#define XCHAL_HAVE_SPECULATION 0 +#define XCHAL_HAVE_MUL32 1 +#define XCHAL_INT25_EXTNUM 20 +#define __FLT64_MIN_10_EXP__ (-307) +#define XCHAL_DCACHE_LINEWIDTH 4 +#define XCHAL_DCACHE_ECC_PARITY 0 +#define XCHAL_INTTYPE_MASK_SOFTWARE 0x20000080 +#define XCHAL_NUM_INTLEVELS 6 +#define XCHAL_INT3_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define __REGISTER_PREFIX__ +#define __UINT16_MAX__ 0xffff +#define XCHAL_HAVE_EXCLUSIVE 0 +#define XCHAL_HAVE_FUSIONG6 0 +#define __DBL_HAS_DENORM__ 1 +#define __XSHAL_USE_ABSOLUTE_LITERALS 0 +#define XCHAL_NUM_TIMERS 3 +#define __LDBL_HAS_INFINITY__ 1 +#define XCHAL_INT28_LEVEL 4 +#define XCHAL_EXTINT21_NUM 26 +#define XCHAL_EXTINT6_NUM 8 +#define __FLT32_MIN__ 1.1754943508222875e-38F32 +#define __UINT8_TYPE__ unsigned char +#define XCHAL_NUM_PERF_COUNTERS 2 +#define XCHAL_DCACHE_ECC_WIDTH 1 +#define __FLT_DIG__ 6 +#define __NO_INLINE__ 1 +#define XCHAL_HAVE_MPU 0 +#define __DEC_EVAL_METHOD__ 2 +#define XCHAL_HAVE_BSP3 0 +#define __FLT_MANT_DIG__ 24 +#define __LDBL_DECIMAL_DIG__ 17 +#define XCHAL_INTLEVEL1_MASK 0x000637FF +#define __VERSION__ "14.3.0" +#define XCHAL_INTLEVEL6_ANDBELOW_MASK 0xFFFFBFFF +#define XCHAL_HAVE_FUSIONG3 0 +#define __UINT64_C(c) c ## ULL +#define __XCHAL_NUM_AREGS 64 +#define XCHAL_PREFETCH_ENTRIES 0 +#define __XCHAL_HAVE_XEA3 0 +#define XCHAL_HAVE_BSP3_TRANSPOSE 0 +#define XCHAL_HAVE_DEPBITS 0 +#define XCHAL_CLOCK_GATING_FUNCUNIT 1 +#define XCHAL_HAVE_VECTOR_SELECT 1 +#define XCHAL_INT23_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_TRAX_MEM_SIZE 16384 +#define XCHAL_DATARAM0_ECC_PARITY 0 +#define XCHAL_INT20_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define __GCC_ATOMIC_INT_LOCK_FREE 2 +#define XCHAL_HAVE_HIFI5_VFPU 0 +#define __XCHAL_HAVE_DENSITY 1 +#define XCHAL_INT24_LEVEL 4 +#define XCHAL_INTLEVEL7_ANDBELOW_MASK 0xFFFFFFFF +#define XCHAL_INTTYPE_MASK_IDMA_DONE 0x00000000 +#define XCHAL_NUM_INTERRUPTS 32 +#define XCHAL_DOUBLEEXC_VECTOR_PADDR 0x400003C0 +#define XCHAL_INTLEVEL6_VECTOR_PADDR 0x40000280 +#define XCHAL_INTLEVEL7_VECOFS XCHAL_NMI_VECOFS +#define __FLT32_MANT_DIG__ 24 +#define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__ +#define __XCHAL_HAVE_CLAMPS 0 +#define XCHAL_INT22_LEVEL 3 +#define XCHAL_USER_VECOFS 0x00000340 +#define XCHAL_HAVE_DFP_DIV 0 +#define __XCHAL_HAVE_DFP_RSQRT 0 +#define XCHAL_MPU_ALIGN_REQ 1 +#define __XCHAL_HAVE_NSA 1 +#define __XCHAL_HAVE_WINDOWED 1 +#define XCHAL_EXTINT20_NUM 25 +#define XCHAL_HAVE_USER_SPFPU 0 +#define XCHAL_HAVE_CACHEATTR 0 +#define XCHAL_EXTINT5_NUM 5 +#define __SCHAR_WIDTH__ 8 +#define XCHAL_KERNEL_VECTOR_VADDR 0x40000300 +#define __INT32_C(c) c ## L +#define __ORDER_PDP_ENDIAN__ 3412 +#define XCHAL_HAVE_BBE16 0 +#define XCHAL_DEBUG_VECTOR_PADDR XCHAL_INTLEVEL6_VECTOR_PADDR +#define XCHAL_HAVE_FULL_RESET 1 +#define XCHAL_DCACHE_LINESIZE 16 +#define __INT_FAST32_TYPE__ int +#define XCHAL_EXCM_LEVEL 3 +#define XCHAL_HAVE_VISION_HISTOGRAM 0 +#define XCHAL_INT4_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT26_LEVEL 5 +#define XCHAL_HAVE_XLT_CACHEATTR 0 +#define __UINT_LEAST16_TYPE__ short unsigned int +#define XCHAL_HAVE_BBP16 0 +#define XCHAL_RESET_VECTOR0_PADDR 0x50000000 +#define XCHAL_INTLEVEL7_VECTOR_PADDR XCHAL_NMI_VECTOR_PADDR +#define XCHAL_HAVE_DIV32 1 +#define XCHAL_HAVE_AXI_ECC 0 +#define __XCHAL_HAVE_DEBUG 1 +#define XCHAL_NUM_DATAROM 0 +#define __UINT64_MAX__ 0xffffffffffffffffULL +#define __FLT_IS_IEC_60559__ 1 +#define XCHAL_DOUBLEEXC_VECTOR_VADDR 0x400003C0 +#define __GNUC_WIDE_EXECUTION_CHARSET_NAME "UTF-16LE" +#define XCHAL_USER_VECTOR_PADDR 0x40000340 +#define XCHAL_INT23_LEVEL 3 +#define XCHAL_HAVE_FUSION_SOFTDEMAP 0 +#define __INT8_TYPE__ signed char +#define __ELF__ 1 +#define XCHAL_HW_REL_LX7_0 1 +#define XCHAL_INTLEVEL2_MASK 0x00380000 +#define __XSHAL_ABI 0 +#define __xtensa__ 1 +#define XCHAL_DCACHE_SIZE 0 +#define XCHAL_INT0_LEVEL 1 +#define __FLT_RADIX__ 2 +#define __INT_LEAST16_TYPE__ short int +#define __LDBL_EPSILON__ 2.2204460492503131e-16L +#define __UINTMAX_C(c) c ## ULL +#define XCHAL_HAVE_VISIONC 0 +#define XCHAL_HAVE_BOOLEANS 1 +#define XCHAL_INT21_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_RESET_VECTOR_VADDR 0x40000400 +#define __FLT32X_MIN__ 2.2250738585072014e-308F32x +#define __XCHAL_HAVE_DFP_SQRT 0 +#define __SIG_ATOMIC_MAX__ 0x7fffffff +#define XCHAL_DATARAM0_PADDR 0x3C000000 +#define XCHAL_DCACHE_IS_WRITEBACK 0 +#define __XCHAL_HAVE_MAC16 1 +#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2 +#define __USER_LABEL_PREFIX__ +#define XCHAL_DCACHE_SETWIDTH 0 +#define XCHAL_ICACHE_ECC_WIDTH 1 +#define __SIZEOF_PTRDIFF_T__ 4 +#define XCHAL_RESET_VECTOR1_VADDR 0x40000400 +#define __XCHAL_MMU_MIN_PTE_PAGE_SIZE 1 +#define XCHAL_TIMER1_INTERRUPT 15 +#define XCHAL_NUM_XLMI 0 +#define XCHAL_EXTINT4_NUM 4 +#define XCHAL_HAVE_DCACHE_DYN_WAYS 0 +#define XCHAL_HAVE_MIMIC_CACHEATTR 1 +#define __FLT32_HAS_INFINITY__ 1 +#define XCHAL_NMILEVEL 7 +#define __SIZEOF_LONG__ 4 +#define XCHAL_INT10_EXTNUM 8 +#define __LDBL_DIG__ 15 +#define __FLT64_IS_IEC_60559__ 1 +#define __XCHAL_MAX_INSTRUCTION_SIZE 4 +#define XCHAL_NUM_IBREAK 2 +#define __FLT32X_MIN_EXP__ (-1021) +#define __INT_FAST16_MAX__ 0x7fffffff +#define XCHAL_USER_VECTOR_VADDR 0x40000340 +#define XCHAL_INT24_EXTNUM 19 +#define XCHAL_INTLEVEL3_ANDBELOW_MASK 0x28FEBFFF +#define XCHAL_NUM_MISC_REGS 4 +#define XCHAL_HAVE_USER_DPFPU 0 +#define __FLT64_DIG__ 15 +#define XCHAL_ICACHE_LINESIZE 4 +#define __UINT_FAST32_MAX__ 0xffffffffU +#define __UINT_LEAST64_TYPE__ long long unsigned int +#define XCHAL_INSTRAM0_SIZE 67108864 +#define XCHAL_EXTINT15_NUM 20 +#define __FLT_HAS_QUIET_NAN__ 1 +#define __FLT_MAX_10_EXP__ 38 +#define XCHAL_INT9_LEVEL 1 +#define __LONG_MAX__ 0x7fffffffL +#define XCHAL_INT18_LEVEL 1 +#define XCHAL_INT5_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define __FLT_HAS_INFINITY__ 1 +#define __GNUC_EXECUTION_CHARSET_NAME "UTF-8" +#define __CHAR_UNSIGNED__ 1 +#define __UINT_FAST16_TYPE__ unsigned int +#define __INT_FAST32_WIDTH__ 32 +#define __CHAR16_TYPE__ short unsigned int +#define __PRAGMA_REDEFINE_EXTNAME 1 +#define __XCHAL_HAVE_FP_RECIP 1 +#define XCHAL_HAVE_PDX4 0 +#define XCHAL_HAVE_PDX8 0 +#define __SIZE_WIDTH__ 32 +#define XCHAL_HAVE_DEBUG_APB 0 +#define XCHAL_INTLEVEL3_VECOFS 0x000001C0 +#define __INT_LEAST16_MAX__ 0x7fff +#define XCHAL_INT7_LEVEL 1 +#define XCHAL_HAVE_SPANNING_WAY 1 +#define __INT64_MAX__ 0x7fffffffffffffffLL +#define XCHAL_HAVE_VECTORFPU2005 0 +#define __FLT32_DENORM_MIN__ 1.4012984643248171e-45F32 +#define __SIG_ATOMIC_WIDTH__ 32 +#define XCHAL_INTLEVEL3_MASK 0x28C08800 +#define __INT_LEAST64_TYPE__ long long int +#define XCHAL_SW_VERSION 1200012 +#define __INT16_TYPE__ short int +#define __INT_LEAST8_TYPE__ signed char +#define XCHAL_HAVE_BBE16_RSQRT 0 +#define __STDC_VERSION__ 201710L +#define XCHAL_SPANNING_WAY 0 +#define __INT_FAST8_MAX__ 0x7fffffff +#define __INTPTR_MAX__ 0x7fffffff +#define XCHAL_EXTINT3_NUM 3 +#define XCHAL_INT17_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT5_LEVEL 1 +#define XCHAL_INT14_LEVEL 7 +#define XCHAL_HAVE_FP_SQRT 1 +#define __FLT64_HAS_QUIET_NAN__ 1 +#define XCHAL_INT22_TYPE XTHAL_INTTYPE_EXTERN_EDGE +#define XCHAL_INTLEVEL6_VECOFS 0x00000280 +#define XCHAL_NUM_AREGS 64 +#define XCHAL_INT27_LEVEL 3 +#define XCHAL_HAVE_XEA2 1 +#define __FLT32_MIN_10_EXP__ (-37) +#define XCHAL_HAVE_XEAX 0 +#define __FLT32X_DIG__ 15 +#define XCHAL_CA_BITS 4 +#define __UINT16_C(c) c +#define __XCHAL_M_STAGE 2 +#define XCHAL_HAVE_ICACHE_DYN_WAYS 0 +#define XCHAL_HAVE_CACHE_BLOCKOPS 0 +#define __PTRDIFF_WIDTH__ 32 +#define __LDBL_MANT_DIG__ 53 +#define _XTENSA_CORE_CONFIGURATION_H +#define XCHAL_ICACHE_ECC_PARITY 0 +#define XCHAL_HAVE_DENSITY 1 +#define XCHAL_HAVE_HIFI_MINI 0 +#define XCHAL_INT3_LEVEL 1 +#define XCHAL_INT12_LEVEL 1 +#define XCHAL_WINDOW_VECTORS_PADDR 0x40000000 +#define __FLT64_HAS_INFINITY__ 1 +#define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1) +#define __XCHAL_ICACHE_SIZE 0 +#define XCHAL_HAVE_IDMA_TRANSPOSE 0 +#define __INTPTR_TYPE__ int +#define __UINT16_TYPE__ short unsigned int +#define __WCHAR_TYPE__ short unsigned int +#define __XCHAL_HAVE_DEPBITS 0 +#define XCHAL_NUM_CONTEXTS 1 +#define __SIZEOF_FLOAT__ 4 +#define XCHAL_HAVE_EXTERN_REGS 1 +#define XCHAL_HAVE_INTERRUPTS 1 +#define XCHAL_INTTYPE_MASK_NMI 0x00004000 +#define XCHAL_INT1_LEVEL 1 +#define XCHAL_HAVE_GRIVPEP 0 +#define XCHAL_INT10_LEVEL 1 +#define __UINTPTR_MAX__ 0xffffffffU +#define __INT_FAST64_WIDTH__ 64 +#define XCHAL_HW_CONFIGID_RELIABLE 1 +#define XCHAL_HAVE_NMI 1 +#define __FLT32_DECIMAL_DIG__ 9 +#define XCHAL_HAVE_ICACHE_TEST 0 +#define XCHAL_HAVE_VISION_SP_VFPU 0 +#define XCHAL_MPU_ALIGN 0 +#define __INT_FAST64_MAX__ 0x7fffffffffffffffLL +#define XCHAL_HAVE_HIFI5_NN_MAC 0 +#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1 +#define XCHAL_HAVE_DFP_RECIP 0 +#define __FLT_NORM_MAX__ 3.4028234663852886e+38F +#define __XCHAL_HAVE_DFP 0 +#define __UINT_FAST64_TYPE__ long long unsigned int +#define XCHAL_HAVE_SSP16_VITERBI 0 +#define XCHAL_INT6_TYPE XTHAL_INTTYPE_TIMER +#define XCHAL_INTLEVEL4_VECTOR_PADDR 0x40000200 +#define __INT_MAX__ 0x7fffffff +#define __XCHAL_HAVE_EXCLUSIVE 0 +#define XCHAL_HW_REL_LX7_0_12 1 +#define XCHAL_INT2_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_HAVE_MP_INTERRUPTS 0 +#define XCHAL_HAVE_NSA 1 +#define __INT64_TYPE__ long long int +#define __XCHAL_HAVE_DFP_DIV 0 +#define __FLT_MAX_EXP__ 128 +#define XCHAL_HAVE_PREDICTED_BRANCHES 0 +#define XCHAL_INTLEVEL5_VECTOR_PADDR 0x40000240 +#define __XCHAL_INST_FETCH_WIDTH 4 +#define XCHAL_HAVE_BE 0 +#define XCHAL_INT0_EXTNUM 0 +#define __DBL_MANT_DIG__ 53 +#define XCHAL_INTLEVEL4_MASK 0x53000000 +#define XCHAL_HAVE_DEBUG_ERI 1 +#define XCHAL_HAVE_CP 1 +#define __INT_LEAST64_MAX__ 0x7fffffffffffffffLL +#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2 +#define __FP_FAST_FMAF32 1 +#define XCHAL_HW_CONFIGID0 0xC2F0FFFE +#define XCHAL_HW_CONFIGID1 0x23090F1F +#define __WINT_TYPE__ unsigned int +#define __UINT_LEAST32_TYPE__ long unsigned int +#define __SIZEOF_SHORT__ 2 +#define __FLT32_NORM_MAX__ 3.4028234663852886e+38F32 +#define XCHAL_WINDOW_OF8_VECOFS 0x00000080 +#define __LDBL_MIN_EXP__ (-1021) +#define __XCHAL_HAVE_S32C1I 1 +#define XCHAL_NUM_INTERRUPTS_LOG2 5 +#define XCHAL_PREFETCH_BLOCK_ENTRIES 0 +#define __FLT64_MAX__ 1.7976931348623157e+308F64 +#define XCHAL_VISION_QUAD_MAC_TYPE 0 +#define XCHAL_HAVE_FP 1 +#define XCHAL_INT18_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define __WINT_WIDTH__ 32 +#define __INT_LEAST8_MAX__ 0x7f +#define __INT_LEAST64_WIDTH__ 64 +#define XCHAL_INTTYPE_MASK_EXTERN_LEVEL 0x8FBE333F +#define __FLT32X_MAX_10_EXP__ 308 +#define XCHAL_HAVE_DEBUG 1 +#define __LDBL_MAX_10_EXP__ 308 +#define __ATOMIC_RELAXED 0 +#define XCHAL_HAVE_TLBS 1 +#define XCHAL_INT1_EXTNUM 1 +#define __DBL_EPSILON__ ((double)2.2204460492503131e-16L) +#define __XCHAL_HAVE_SEXT 1 +#define __INT_LEAST32_TYPE__ long int +#define __XTENSA_WINDOWED_ABI__ 1 +#define XCHAL_MPU_ENTRIES 0 +#define XCHAL_KERNEL_VECOFS 0x00000300 +#define __UINT8_C(c) c +#define __FLT64_MAX_EXP__ 1024 +#define XCHAL_HAVE_BBENEP_SP_VFPU 0 +#define __SIZEOF_WCHAR_T__ 2 +#define __UINT64_TYPE__ long long unsigned int +#define __XCHAL_HAVE_FP_POSTINC 1 +#define XCHAL_HAVE_MX 0 +#define XCHAL_UNALIGNED_STORE_EXCEPTION 0 +#define XCHAL_INT23_EXTNUM 18 +#define XCHAL_HW_VERSION_MINOR 12 +#define XCHAL_HW_REL_LX7 1 +#define __FLT64_NORM_MAX__ 1.7976931348623157e+308F64 +#define __INTMAX_MAX__ 0x7fffffffffffffffLL +#define __INT_FAST8_TYPE__ int +#define XCHAL_INT19_EXTNUM 14 +#define XCHAL_INTLEVEL1_ANDBELOW_MASK 0x000637FF +#define XCHAL_EXTINT1_NUM 1 +#define __XCHAL_HAVE_MUL32_HIGH 1 +#define __GNUC_STDC_INLINE__ 1 +#define XCHAL_HAVE_TRAX 1 +#define __FLT64_HAS_DENORM__ 1 +#define __FLT32_EPSILON__ 1.1920928955078125e-7F32 +#define __DBL_DECIMAL_DIG__ 17 +#define __STDC_UTF_32__ 1 +#define __XCHAL_HAVE_FP_DIV 1 +#define __INT_FAST8_WIDTH__ 32 +#define XCHAL_HAVE_BBE16_VECDIV 0 +#define XCHAL_HAVE_PSO 0 +#define XCHAL_INT7_TYPE XTHAL_INTTYPE_SOFTWARE +#define __FLT32X_MAX__ 1.7976931348623157e+308F32x +#define XCHAL_HAVE_BOOTLOADER 0 +#define __DBL_NORM_MAX__ ((double)1.7976931348623157e+308L) +#define XCHAL_NMI_VECOFS 0x000002C0 +#define XCHAL_HAVE_S32C1I 1 +#define XCHAL_ICACHE_SETWIDTH 0 +#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ +#define XCHAL_MPU_BG_CACHEADRDIS 0 +#define XCHAL_INTLEVEL4_ANDBELOW_MASK 0x7BFEBFFF +#define XCHAL_INT5_EXTNUM 5 +#define XCHAL_INT31_LEVEL 5 +#define XCHAL_NMI_VECTOR_VADDR 0x400002C0 +#define XCHAL_NUM_AREGS_LOG2 6 +#define __XTENSA__ 1 +#define XCHAL_EXTINT18_NUM 23 +#define __INTMAX_WIDTH__ 64 +#define __ORDER_BIG_ENDIAN__ 4321 +#define __XTHAL_ABI_CALL0 1 +#define XCHAL_HW_MIN_VERSION_MINOR 12 +#define __FLT32_DIG__ 6 +#define XCHAL_INSTRAM0_ECC_PARITY 0 +#define XCHAL_HAVE_FP_RSQRT 1 +#define __UINT32_C(c) c ## UL +#define XCHAL_HAVE_WINDOWED 1 +#define XCHAL_HW_VERSION_MAJOR 2700 +#define XCHAL_INTLEVEL5_MASK 0x84010000 +#define __FLT_DENORM_MIN__ 1.4012984643248171e-45F +#define XCHAL_HAVE_MINMAX 1 +#define XCHAL_HAVE_HIFI3Z_VFPU 0 +#define XCHAL_TRAX_MEM_SHAREABLE 1 +#define __INT8_MAX__ 0x7f +#define __LONG_WIDTH__ 32 +#define XCHAL_HAVE_XEA1 0 +#define XCHAL_HW_MIN_VERSION 270012 +#define __UINT_FAST32_TYPE__ unsigned int +#define XCHAL_LOOP_BUFFER_SIZE 256 +#define XCHAL_INTLEVEL2_VECTOR_VADDR 0x40000180 +#define __FLT32X_NORM_MAX__ 1.7976931348623157e+308F32x +#define __CHAR32_TYPE__ long unsigned int +#define XCHAL_INT19_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define __FLT_MAX__ 3.4028234663852886e+38F +#define __XCHAL_UNALIGNED_STORE_EXCEPTION 1 +#define XCHAL_TRAX_ATB_WIDTH 0 +#define XCHAL_INTLEVEL7_NUM 14 +#define XCHAL_DATA_PIPE_DELAY 1 +#define XCHAL_INT14_EXTNUM 11 +#define __XCHAL_HAVE_FP_RSQRT 1 +#define XCHAL_TIMER0_INTERRUPT 6 +#define XCHAL_HAVE_FUSION_AES 0 +#define __INT32_TYPE__ long int +#define XCHAL_ICACHE_LINEWIDTH 2 +#define __SIZEOF_DOUBLE__ 8 +#define __FLT_MIN_10_EXP__ (-37) +#define XCHAL_KERNEL_VECTOR_PADDR 0x40000300 +#define __FLT64_MIN__ 2.2250738585072014e-308F64 +#define __INT_LEAST32_WIDTH__ 32 +#define __INTMAX_TYPE__ long long int +#define XCHAL_INT28_EXTNUM 23 +#define __XCHAL_HAVE_ABS 1 +#define XCHAL_MAX_INSTRUCTION_SIZE 4 +#define XCHAL_EXTINT0_NUM 0 +#define XCHAL_INT16_TYPE XTHAL_INTTYPE_TIMER +#define XCHAL_HW_MIN_VERSION_MAJOR 2700 +#define XCHAL_INSTRAM0_VADDR 0x40000000 +#define __FLT32X_HAS_QUIET_NAN__ 1 +#define __ATOMIC_CONSUME 1 +#define XCHAL_HAVE_IDENTITY_MAP 1 +#define __XCHAL_NUM_DBREAK 2 +#define __XCHAL_HAVE_WIDE_BRANCHES 0 +#define __GNUC_MINOR__ 3 +#define __INT_FAST16_WIDTH__ 32 +#define __UINTMAX_MAX__ 0xffffffffffffffffULL +#define __FLT32X_DENORM_MIN__ 4.9406564584124654e-324F32x +#define XCHAL_HAVE_FUSION_FP 0 +#define XCHAL_HAVE_FUSIONG 0 +#define XCHAL_INTTYPE_MASK_IDMA_ERR 0x00000000 +#define __DBL_MAX_10_EXP__ 308 +#define __LDBL_DENORM_MIN__ 4.9406564584124654e-324L +#define XCHAL_HAVE_DEBUG_JTAG 1 +#define XCHAL_TRAX_TIME_WIDTH 0 +#define __INT16_C(c) c +#define __ATOMIC_RELEASE 3 +#define XCHAL_WINDOW_OF4_VECOFS 0x00000000 +#define XCHAL_INTLEVEL3_VECTOR_VADDR 0x400001C0 +#define __STDC__ 1 +#define XCHAL_EXTINT17_NUM 22 +#define __PTRDIFF_TYPE__ int +#define XCHAL_INT26_EXTNUM 21 +#define XCHAL_HAVE_VECTRALX 0 +#define XCHAL_HAVE_HALT 0 +#define XCHAL_UNALIGNED_LOAD_HW 1 +#define XCHAL_HAVE_CCOUNT 1 +#define XCHAL_INT8_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define __XCHAL_HAVE_FP_SQRT 1 +#define __UINT32_TYPE__ long unsigned int +#define __FLT32X_MIN_10_EXP__ (-307) +#define __UINTPTR_TYPE__ unsigned int +#define XCHAL_HAVE_FUSION_BITOPS 0 +#define __LDBL_MIN_10_EXP__ (-307) +#define XCHAL_EXTINT2_NUM 2 +#define XCHAL_INT29_LEVEL 3 +#define __SIZEOF_LONG_LONG__ 8 +#define XCHAL_FUSIONG_SIMD32 0 +#define XCHAL_INTLEVEL2_VECOFS 0x00000180 +#define XCHAL_HAVE_FUSION_16BIT_BASEBAND 0 +#define XCHAL_INT31_EXTNUM 25 +#define __GCC_ATOMIC_LLONG_LOCK_FREE 1 +#define XCHAL_HAVE_DFP_SQRT 0 +#define XCHAL_INTTYPE_MASK_WRITE_ERROR 0x00000000 +#define XCHAL_HAVE_FUSION_AVS 0 +#define XCHAL_HAVE_HIFI2EP 0 +#define XCHAL_EXTINT19_NUM 24 +#define __XCHAL_UNALIGNED_LOAD_EXCEPTION 1 +#define __FLT_DECIMAL_DIG__ 9 +#define __UINT_FAST16_MAX__ 0xffffffffU +#define XCHAL_HAVE_DFP 0 +#define __LDBL_NORM_MAX__ 1.7976931348623157e+308L +#define XCHAL_HAVE_OCD 1 +#define __GCC_ATOMIC_SHORT_LOCK_FREE 2 +#define XCHAL_HAVE_WIDE_BRANCHES 0 +#define __XCHAL_HAVE_BE 0 +#define __UINT_FAST8_TYPE__ unsigned int +#define XCHAL_HAVE_HIFI2 0 +#define XCHAL_HAVE_HIFI3 0 +#define XCHAL_HAVE_HIFI4 0 +#define XCHAL_HAVE_HIFI5 0 +#define XCHAL_INTLEVEL4_VECTOR_VADDR 0x40000200 +#define XCHAL_HAVE_PREFETCH_L1 0 +#define XCHAL_HAVE_HIFIPRO 0 +#define __ATOMIC_ACQ_REL 4 +#define XCHAL_INT25_TYPE XTHAL_INTTYPE_EXTERN_LEVEL diff --git a/build/zephyr/include/generated/zephyr/devicetree_generated.h b/build/zephyr/include/generated/zephyr/devicetree_generated.h new file mode 100644 index 0000000..a3e491e --- /dev/null +++ b/build/zephyr/include/generated/zephyr/devicetree_generated.h @@ -0,0 +1,15324 @@ +/* + * Generated by gen_defines.py + * + * DTS input file: + * /Volumes/External/Work/radio/loramodem/build/zephyr/zephyr.dts.pre + * + * Directories with bindings: + * /Volumes/External/Work/radio/loramodem/dts/bindings, $ZEPHYR_BASE/dts/bindings + * + * Node dependency ordering (ordinal and path): + * 0 / + * 1 /aliases + * 2 /chosen + * 3 /connector + * 4 /esp32_bt_hci + * 5 /wifi + * 6 /cpus + * 7 /cpus/power-states + * 8 /cpus/power-states/deep_sleep + * 9 /cpus/power-states/light_sleep + * 10 /cpus/cpu@0 + * 11 /cpus/cpu@1 + * 12 /soc + * 13 /soc/gpio + * 14 /soc/interrupt-controller@600c2000 + * 15 /soc/gpio/gpio@60004000 + * 16 /leds + * 17 /leds/led_0 + * 18 /pin-controller + * 19 /pin-controller/i2c0_default + * 20 /pin-controller/i2c0_default/group1 + * 21 /pin-controller/i2c1_default + * 22 /pin-controller/i2c1_default/group1 + * 23 /pin-controller/lcd_cam_default + * 24 /pin-controller/lcd_cam_default/group1 + * 25 /pin-controller/lcd_cam_default/group2 + * 26 /pin-controller/spim2_default + * 27 /pin-controller/spim2_default/group1 + * 28 /pin-controller/spim2_default/group2 + * 29 /pin-controller/twai_default + * 30 /pin-controller/twai_default/group1 + * 31 /pin-controller/uart0_default + * 32 /pin-controller/uart0_default/group1 + * 33 /pin-controller/uart0_default/group2 + * 34 /clock + * 35 /soc/adc@60040000 + * 36 /soc/adc@60040004 + * 37 /soc/aes@6003a000 + * 38 /soc/can@6002b000 + * 39 /soc/coretemp@60008800 + * 40 /soc/i2c@60013000 + * 41 /soc/i2c@60027000 + * 42 /soc/dma@6003f000 + * 43 /soc/i2s@6000f000 + * 44 /soc/i2s@6002d000 + * 45 /soc/memory@3fce5000 + * 46 /soc/ipm@3fce9400 + * 47 /soc/ledc@60019000 + * 48 /soc/mbox@3fce9408 + * 49 /soc/mcpwm@6001e000 + * 50 /soc/mcpwm@6002c000 + * 51 /soc/memory@3fc88000 + * 52 /soc/memory@3fce5400 + * 53 /soc/memory@3fcf0000 + * 54 /soc/memory@40370000 + * 55 /soc/memory@42000000 + * 56 /soc/memory@50000000 + * 57 /soc/memory@600fe000 + * 58 /soc/pcnt@60017000 + * 59 /soc/rtc_timer@60008004 + * 60 /soc/sha@6003b000 + * 61 /soc/spi@60025000 + * 62 /soc/touch@6000885c + * 63 /soc/trng@6003507c + * 64 /soc/uart@60000000 + * 65 /soc/uart@60010000 + * 66 /soc/uart@6002e000 + * 67 /soc/uart@60038000 + * 68 /soc/usb_otg@60080000 + * 69 /soc/watchdog@6001f048 + * 70 /soc/watchdog@60020048 + * 71 /soc/xt_wdt@60021004 + * 72 /soc/counter@6001f000 + * 73 /soc/counter@6001f000/counter + * 74 /soc/counter@6001f024 + * 75 /soc/counter@6001f024/counter + * 76 /soc/counter@60020000 + * 77 /soc/counter@60020000/counter + * 78 /soc/counter@60020024 + * 79 /soc/counter@60020024/counter + * 80 /soc/flash-controller@60002000 + * 81 /soc/flash-controller@60002000/flash@0 + * 82 /soc/flash-controller@60002000/flash@0/partitions + * 83 /soc/flash-controller@60002000/flash@0/partitions/partition@0 + * 84 /soc/flash-controller@60002000/flash@0/partitions/partition@10000 + * 85 /soc/flash-controller@60002000/flash@0/partitions/partition@20000 + * 86 /soc/flash-controller@60002000/flash@0/partitions/partition@170000 + * 87 /soc/flash-controller@60002000/flash@0/partitions/partition@2c0000 + * 88 /soc/flash-controller@60002000/flash@0/partitions/partition@330000 + * 89 /soc/flash-controller@60002000/flash@0/partitions/partition@3a0000 + * 90 /soc/flash-controller@60002000/flash@0/partitions/partition@3a8000 + * 91 /soc/flash-controller@60002000/flash@0/partitions/partition@3b0000 + * 92 /soc/flash-controller@60002000/flash@0/partitions/partition@3e0000 + * 93 /soc/flash-controller@60002000/flash@0/partitions/partition@3ff000 + * 94 /soc/gpio/gpio@60004800 + * 95 /soc/lcd_cam@60041000 + * 96 /soc/lcd_cam@60041000/lcd_cam_disp + * 97 /soc/lcd_cam@60041000/lcd_cam_dvp + * 98 /soc/memory@3c000000 + * 99 /soc/memory@3c000000/psram0 + * 100 /soc/sdhc@60028000 + * 101 /soc/sdhc@60028000/sdhc@0 + * 102 /soc/sdhc@60028000/sdhc@1 + * 103 /soc/spi@60024000 + * 104 /soc/spi@60024000/lora@0 + * + * Definitions derived from these nodes in dependency order are next, + * followed by /chosen nodes. + */ + +/* Used to remove brackets from around a single argument */ +#define DT_DEBRACKET_INTERNAL(...) __VA_ARGS__ + +/* + * Devicetree node: / + * + * Node identifier: DT_N + */ + +/* Node's full path: */ +#define DT_N_PATH "/" + +/* Node's name with unit-address: */ +#define DT_N_FULL_NAME "/" +#define DT_N_FULL_NAME_UNQUOTED / +#define DT_N_FULL_NAME_TOKEN _ +#define DT_N_FULL_NAME_UPPER_TOKEN _ + +/* Helpers for dealing with node labels: */ +#define DT_N_NODELABEL_NUM 0 +#define DT_N_FOREACH_NODELABEL(fn) +#define DT_N_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_FOREACH_ANCESTOR(fn) + +/* Helper macros for child nodes of this node. */ +#define DT_N_CHILD_NUM 10 +#define DT_N_CHILD_NUM_STATUS_OKAY 10 +#define DT_N_FOREACH_CHILD(fn) fn(DT_N_S_chosen) fn(DT_N_S_aliases) fn(DT_N_S_soc) fn(DT_N_S_cpus) fn(DT_N_S_wifi) fn(DT_N_S_esp32_bt_hci) fn(DT_N_S_pin_controller) fn(DT_N_S_clock) fn(DT_N_S_connector) fn(DT_N_S_leds) +#define DT_N_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_chosen) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_aliases) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_wifi) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_esp32_bt_hci) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clock) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_connector) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_leds) +#define DT_N_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_chosen, __VA_ARGS__) fn(DT_N_S_aliases, __VA_ARGS__) fn(DT_N_S_soc, __VA_ARGS__) fn(DT_N_S_cpus, __VA_ARGS__) fn(DT_N_S_wifi, __VA_ARGS__) fn(DT_N_S_esp32_bt_hci, __VA_ARGS__) fn(DT_N_S_pin_controller, __VA_ARGS__) fn(DT_N_S_clock, __VA_ARGS__) fn(DT_N_S_connector, __VA_ARGS__) fn(DT_N_S_leds, __VA_ARGS__) +#define DT_N_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_chosen, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_aliases, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_wifi, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_esp32_bt_hci, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clock, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_connector, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_leds, __VA_ARGS__) +#define DT_N_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_chosen) fn(DT_N_S_aliases) fn(DT_N_S_soc) fn(DT_N_S_cpus) fn(DT_N_S_wifi) fn(DT_N_S_esp32_bt_hci) fn(DT_N_S_pin_controller) fn(DT_N_S_clock) fn(DT_N_S_connector) fn(DT_N_S_leds) +#define DT_N_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_chosen) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_aliases) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_wifi) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_esp32_bt_hci) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clock) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_connector) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_leds) +#define DT_N_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_chosen, __VA_ARGS__) fn(DT_N_S_aliases, __VA_ARGS__) fn(DT_N_S_soc, __VA_ARGS__) fn(DT_N_S_cpus, __VA_ARGS__) fn(DT_N_S_wifi, __VA_ARGS__) fn(DT_N_S_esp32_bt_hci, __VA_ARGS__) fn(DT_N_S_pin_controller, __VA_ARGS__) fn(DT_N_S_clock, __VA_ARGS__) fn(DT_N_S_connector, __VA_ARGS__) fn(DT_N_S_leds, __VA_ARGS__) +#define DT_N_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_chosen, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_aliases, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_wifi, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_esp32_bt_hci, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_clock, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_connector, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_leds, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_HASH il7asoJjJEMhngUeSt4tHVu8Zxx4EFG_FDeJfL3_oPE + +/* Node's dependency ordinal: */ +#define DT_N_ORD 0 +#define DT_N_ORD_STR_SORTABLE 00000 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_REQUIRES_ORDS /* nothing */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_SUPPORTS_ORDS \ + 1, /* /aliases */ \ + 2, /* /chosen */ \ + 3, /* /connector */ \ + 4, /* /esp32_bt_hci */ \ + 5, /* /wifi */ \ + 6, /* /cpus */ \ + 12, /* /soc */ \ + 16, /* /leds */ \ + 18, /* /pin-controller */ \ + 34, /* /clock */ + +/* Existence and alternate IDs: */ +#define DT_N_EXISTS 1 +#define DT_N_INST_0_seeed_xiao_esp32s3 DT_N + +/* Macros for properties that are special in the specification: */ +#define DT_N_REG_NUM 0 +#define DT_N_FOREACH_REG(fn) +#define DT_N_FOREACH_REG_SEP(fn, sep) +#define DT_N_FOREACH_REG_VARGS(fn, ...) +#define DT_N_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_RANGES_NUM 0 +#define DT_N_FOREACH_RANGE(fn) +#define DT_N_IRQ_NUM 0 +#define DT_N_IRQ_LEVEL 0 +#define DT_N_COMPAT_MATCHES_seeed_xiao_esp32s3 1 +#define DT_N_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_COMPAT_VENDOR_IDX_0 "Seeed Technology Co., Ltd" +#define DT_N_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_COMPAT_MODEL_IDX_0 "xiao-esp32s3" +#define DT_N_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_P_compatible {"seeed,xiao-esp32s3"} +#define DT_N_P_compatible_IDX_0_EXISTS 1 +#define DT_N_P_compatible_IDX_0 "seeed,xiao-esp32s3" +#define DT_N_P_compatible_IDX_0_STRING_UNQUOTED seeed,xiao-esp32s3 +#define DT_N_P_compatible_IDX_0_STRING_TOKEN seeed_xiao_esp32s3 +#define DT_N_P_compatible_IDX_0_STRING_UPPER_TOKEN SEEED_XIAO_ESP32S3 +#define DT_N_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N, compatible, 0) +#define DT_N_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N, compatible, 0) +#define DT_N_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N, compatible, 0, __VA_ARGS__) +#define DT_N_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N, compatible, 0, __VA_ARGS__) +#define DT_N_P_compatible_LEN 1 +#define DT_N_P_compatible_EXISTS 1 + +/* + * Devicetree node: /aliases + * + * Node identifier: DT_N_S_aliases + */ + +/* Node's full path: */ +#define DT_N_S_aliases_PATH "/aliases" + +/* Node's name with unit-address: */ +#define DT_N_S_aliases_FULL_NAME "aliases" +#define DT_N_S_aliases_FULL_NAME_UNQUOTED aliases +#define DT_N_S_aliases_FULL_NAME_TOKEN aliases +#define DT_N_S_aliases_FULL_NAME_UPPER_TOKEN ALIASES + +/* Node parent (/) identifier: */ +#define DT_N_S_aliases_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_aliases_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_aliases_NODELABEL_NUM 0 +#define DT_N_S_aliases_FOREACH_NODELABEL(fn) +#define DT_N_S_aliases_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_aliases_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_aliases_CHILD_NUM 0 +#define DT_N_S_aliases_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_aliases_FOREACH_CHILD(fn) +#define DT_N_S_aliases_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_aliases_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_aliases_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_aliases_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_aliases_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_aliases_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_aliases_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_aliases_HASH QavYY6yplHKhLPRKsRzaLCGlR0CWZ0JUNJakcBCfDXA + +/* Node's dependency ordinal: */ +#define DT_N_S_aliases_ORD 1 +#define DT_N_S_aliases_ORD_STR_SORTABLE 00001 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_aliases_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_aliases_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_aliases_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_aliases_REG_NUM 0 +#define DT_N_S_aliases_FOREACH_REG(fn) +#define DT_N_S_aliases_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_aliases_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_aliases_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_aliases_RANGES_NUM 0 +#define DT_N_S_aliases_FOREACH_RANGE(fn) +#define DT_N_S_aliases_IRQ_NUM 0 +#define DT_N_S_aliases_IRQ_LEVEL 0 +#define DT_N_S_aliases_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_aliases_PINCTRL_NUM 0 + +/* (No generic property macros) */ + +/* + * Devicetree node: /chosen + * + * Node identifier: DT_N_S_chosen + */ + +/* Node's full path: */ +#define DT_N_S_chosen_PATH "/chosen" + +/* Node's name with unit-address: */ +#define DT_N_S_chosen_FULL_NAME "chosen" +#define DT_N_S_chosen_FULL_NAME_UNQUOTED chosen +#define DT_N_S_chosen_FULL_NAME_TOKEN chosen +#define DT_N_S_chosen_FULL_NAME_UPPER_TOKEN CHOSEN + +/* Node parent (/) identifier: */ +#define DT_N_S_chosen_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_chosen_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_chosen_NODELABEL_NUM 0 +#define DT_N_S_chosen_FOREACH_NODELABEL(fn) +#define DT_N_S_chosen_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_chosen_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_chosen_CHILD_NUM 0 +#define DT_N_S_chosen_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_chosen_FOREACH_CHILD(fn) +#define DT_N_S_chosen_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_chosen_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_chosen_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_chosen_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_chosen_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_chosen_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_chosen_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_chosen_HASH qNExeeLInzqaWpm1KroyYDk4lRIxVO2ig78mq_hOnA8 + +/* Node's dependency ordinal: */ +#define DT_N_S_chosen_ORD 2 +#define DT_N_S_chosen_ORD_STR_SORTABLE 00002 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_chosen_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_chosen_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_chosen_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_chosen_REG_NUM 0 +#define DT_N_S_chosen_FOREACH_REG(fn) +#define DT_N_S_chosen_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_chosen_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_chosen_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_chosen_RANGES_NUM 0 +#define DT_N_S_chosen_FOREACH_RANGE(fn) +#define DT_N_S_chosen_IRQ_NUM 0 +#define DT_N_S_chosen_IRQ_LEVEL 0 +#define DT_N_S_chosen_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_chosen_PINCTRL_NUM 0 + +/* (No generic property macros) */ + +/* + * Devicetree node: /connector + * + * Node identifier: DT_N_S_connector + * + * Binding (compatible = seeed,xiao-gpio): + * $ZEPHYR_BASE/dts/bindings/gpio/seeed,xiao-gpio.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_connector_PATH "/connector" + +/* Node's name with unit-address: */ +#define DT_N_S_connector_FULL_NAME "connector" +#define DT_N_S_connector_FULL_NAME_UNQUOTED connector +#define DT_N_S_connector_FULL_NAME_TOKEN connector +#define DT_N_S_connector_FULL_NAME_UPPER_TOKEN CONNECTOR + +/* Node parent (/) identifier: */ +#define DT_N_S_connector_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_connector_CHILD_IDX 8 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_connector_NODELABEL_NUM 1 +#define DT_N_S_connector_FOREACH_NODELABEL(fn) fn(xiao_d) +#define DT_N_S_connector_FOREACH_NODELABEL_VARGS(fn, ...) fn(xiao_d, __VA_ARGS__) +#define DT_N_S_connector_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_connector_CHILD_NUM 0 +#define DT_N_S_connector_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_connector_FOREACH_CHILD(fn) +#define DT_N_S_connector_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_connector_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_connector_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_connector_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_connector_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_connector_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_connector_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_connector_HASH 1hNYiTso4N65bku_L_0pzRcHL_5NCz8DqiXd1i5KK7Q + +/* Node's dependency ordinal: */ +#define DT_N_S_connector_ORD 3 +#define DT_N_S_connector_ORD_STR_SORTABLE 00003 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_connector_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_connector_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_connector_EXISTS 1 +#define DT_N_INST_0_seeed_xiao_gpio DT_N_S_connector +#define DT_N_NODELABEL_xiao_d DT_N_S_connector + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_connector_REG_NUM 0 +#define DT_N_S_connector_FOREACH_REG(fn) +#define DT_N_S_connector_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_connector_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_connector_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_connector_RANGES_NUM 0 +#define DT_N_S_connector_FOREACH_RANGE(fn) +#define DT_N_S_connector_IRQ_NUM 0 +#define DT_N_S_connector_IRQ_LEVEL 0 +#define DT_N_S_connector_COMPAT_MATCHES_seeed_xiao_gpio 1 +#define DT_N_S_connector_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_connector_COMPAT_VENDOR_IDX_0 "Seeed Technology Co., Ltd" +#define DT_N_S_connector_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_connector_COMPAT_MODEL_IDX_0 "xiao-gpio" +#define DT_N_S_connector_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_connector_PINCTRL_NUM 0 + +/* Map properties: */ +#define DT_N_S_connector_P_gpio_map_LEN 11 +#define DT_N_S_connector_P_gpio_map_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_0_CHILD_ADDRESS_LEN 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_0_CHILD_SPECIFIER_LEN 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_0_CHILD_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_0_CHILD_SPECIFIER_IDX_0 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_0_CHILD_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_0_CHILD_SPECIFIER_IDX_1 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_0_PARENT DT_N_S_soc_S_gpio_S_gpio_60004000 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_0_PARENT_ADDRESS_LEN 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_0_PARENT_SPECIFIER_LEN 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_0_PARENT_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_0_PARENT_SPECIFIER_IDX_0 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_0_PARENT_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_0_PARENT_SPECIFIER_IDX_1 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_1_CHILD_ADDRESS_LEN 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_1_CHILD_SPECIFIER_LEN 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_1_CHILD_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_1_CHILD_SPECIFIER_IDX_0 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_1_CHILD_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_1_CHILD_SPECIFIER_IDX_1 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_1_PARENT DT_N_S_soc_S_gpio_S_gpio_60004000 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_1_PARENT_ADDRESS_LEN 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_1_PARENT_SPECIFIER_LEN 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_1_PARENT_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_1_PARENT_SPECIFIER_IDX_0 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_1_PARENT_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_1_PARENT_SPECIFIER_IDX_1 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_2_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_2_CHILD_ADDRESS_LEN 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_2_CHILD_SPECIFIER_LEN 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_2_CHILD_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_2_CHILD_SPECIFIER_IDX_0 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_2_CHILD_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_2_CHILD_SPECIFIER_IDX_1 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_2_PARENT DT_N_S_soc_S_gpio_S_gpio_60004000 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_2_PARENT_ADDRESS_LEN 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_2_PARENT_SPECIFIER_LEN 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_2_PARENT_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_2_PARENT_SPECIFIER_IDX_0 3 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_2_PARENT_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_2_PARENT_SPECIFIER_IDX_1 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_3_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_3_CHILD_ADDRESS_LEN 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_3_CHILD_SPECIFIER_LEN 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_3_CHILD_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_3_CHILD_SPECIFIER_IDX_0 3 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_3_CHILD_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_3_CHILD_SPECIFIER_IDX_1 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_3_PARENT DT_N_S_soc_S_gpio_S_gpio_60004000 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_3_PARENT_ADDRESS_LEN 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_3_PARENT_SPECIFIER_LEN 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_3_PARENT_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_3_PARENT_SPECIFIER_IDX_0 4 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_3_PARENT_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_3_PARENT_SPECIFIER_IDX_1 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_4_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_4_CHILD_ADDRESS_LEN 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_4_CHILD_SPECIFIER_LEN 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_4_CHILD_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_4_CHILD_SPECIFIER_IDX_0 4 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_4_CHILD_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_4_CHILD_SPECIFIER_IDX_1 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_4_PARENT DT_N_S_soc_S_gpio_S_gpio_60004000 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_4_PARENT_ADDRESS_LEN 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_4_PARENT_SPECIFIER_LEN 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_4_PARENT_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_4_PARENT_SPECIFIER_IDX_0 5 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_4_PARENT_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_4_PARENT_SPECIFIER_IDX_1 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_5_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_5_CHILD_ADDRESS_LEN 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_5_CHILD_SPECIFIER_LEN 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_5_CHILD_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_5_CHILD_SPECIFIER_IDX_0 5 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_5_CHILD_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_5_CHILD_SPECIFIER_IDX_1 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_5_PARENT DT_N_S_soc_S_gpio_S_gpio_60004000 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_5_PARENT_ADDRESS_LEN 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_5_PARENT_SPECIFIER_LEN 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_5_PARENT_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_5_PARENT_SPECIFIER_IDX_0 6 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_5_PARENT_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_5_PARENT_SPECIFIER_IDX_1 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_6_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_6_CHILD_ADDRESS_LEN 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_6_CHILD_SPECIFIER_LEN 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_6_CHILD_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_6_CHILD_SPECIFIER_IDX_0 6 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_6_CHILD_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_6_CHILD_SPECIFIER_IDX_1 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_6_PARENT DT_N_S_soc_S_gpio_S_gpio_60004800 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_6_PARENT_ADDRESS_LEN 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_6_PARENT_SPECIFIER_LEN 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_6_PARENT_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_6_PARENT_SPECIFIER_IDX_0 11 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_6_PARENT_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_6_PARENT_SPECIFIER_IDX_1 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_7_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_7_CHILD_ADDRESS_LEN 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_7_CHILD_SPECIFIER_LEN 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_7_CHILD_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_7_CHILD_SPECIFIER_IDX_0 7 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_7_CHILD_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_7_CHILD_SPECIFIER_IDX_1 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_7_PARENT DT_N_S_soc_S_gpio_S_gpio_60004800 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_7_PARENT_ADDRESS_LEN 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_7_PARENT_SPECIFIER_LEN 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_7_PARENT_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_7_PARENT_SPECIFIER_IDX_0 12 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_7_PARENT_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_7_PARENT_SPECIFIER_IDX_1 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_8_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_8_CHILD_ADDRESS_LEN 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_8_CHILD_SPECIFIER_LEN 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_8_CHILD_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_8_CHILD_SPECIFIER_IDX_0 8 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_8_CHILD_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_8_CHILD_SPECIFIER_IDX_1 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_8_PARENT DT_N_S_soc_S_gpio_S_gpio_60004000 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_8_PARENT_ADDRESS_LEN 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_8_PARENT_SPECIFIER_LEN 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_8_PARENT_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_8_PARENT_SPECIFIER_IDX_0 7 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_8_PARENT_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_8_PARENT_SPECIFIER_IDX_1 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_9_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_9_CHILD_ADDRESS_LEN 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_9_CHILD_SPECIFIER_LEN 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_9_CHILD_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_9_CHILD_SPECIFIER_IDX_0 9 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_9_CHILD_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_9_CHILD_SPECIFIER_IDX_1 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_9_PARENT DT_N_S_soc_S_gpio_S_gpio_60004000 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_9_PARENT_ADDRESS_LEN 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_9_PARENT_SPECIFIER_LEN 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_9_PARENT_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_9_PARENT_SPECIFIER_IDX_0 8 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_9_PARENT_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_9_PARENT_SPECIFIER_IDX_1 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_10_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_10_CHILD_ADDRESS_LEN 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_10_CHILD_SPECIFIER_LEN 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_10_CHILD_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_10_CHILD_SPECIFIER_IDX_0 10 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_10_CHILD_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_10_CHILD_SPECIFIER_IDX_1 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_10_PARENT DT_N_S_soc_S_gpio_S_gpio_60004000 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_10_PARENT_ADDRESS_LEN 0 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_10_PARENT_SPECIFIER_LEN 2 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_10_PARENT_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_10_PARENT_SPECIFIER_IDX_0 9 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_10_PARENT_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_MAP_ENTRY_10_PARENT_SPECIFIER_IDX_1 0 +#define DT_N_S_connector_P_gpio_map_FOREACH_MAP_ENTRY(fn) fn(DT_N_S_connector, gpio_map, 0) \ + fn(DT_N_S_connector, gpio_map, 1) \ + fn(DT_N_S_connector, gpio_map, 2) \ + fn(DT_N_S_connector, gpio_map, 3) \ + fn(DT_N_S_connector, gpio_map, 4) \ + fn(DT_N_S_connector, gpio_map, 5) \ + fn(DT_N_S_connector, gpio_map, 6) \ + fn(DT_N_S_connector, gpio_map, 7) \ + fn(DT_N_S_connector, gpio_map, 8) \ + fn(DT_N_S_connector, gpio_map, 9) \ + fn(DT_N_S_connector, gpio_map, 10) +#define DT_N_S_connector_P_gpio_map_FOREACH_MAP_ENTRY_SEP(fn, sep) fn(DT_N_S_connector, gpio_map, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map, 1) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map, 2) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map, 3) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map, 4) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map, 5) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map, 6) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map, 7) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map, 8) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map, 9) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map, 10) +#define DT_N_S_connector_P_gpio_map_FOREACH_MAP_ENTRY_VARGS(fn, ...) fn(DT_N_S_connector, gpio_map, 0, __VA_ARGS__) \ + fn(DT_N_S_connector, gpio_map, 1, __VA_ARGS__) \ + fn(DT_N_S_connector, gpio_map, 2, __VA_ARGS__) \ + fn(DT_N_S_connector, gpio_map, 3, __VA_ARGS__) \ + fn(DT_N_S_connector, gpio_map, 4, __VA_ARGS__) \ + fn(DT_N_S_connector, gpio_map, 5, __VA_ARGS__) \ + fn(DT_N_S_connector, gpio_map, 6, __VA_ARGS__) \ + fn(DT_N_S_connector, gpio_map, 7, __VA_ARGS__) \ + fn(DT_N_S_connector, gpio_map, 8, __VA_ARGS__) \ + fn(DT_N_S_connector, gpio_map, 9, __VA_ARGS__) \ + fn(DT_N_S_connector, gpio_map, 10, __VA_ARGS__) +#define DT_N_S_connector_P_gpio_map_FOREACH_MAP_ENTRY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_connector, gpio_map, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map, 1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map, 2, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map, 3, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map, 4, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map, 5, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map, 6, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map, 7, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map, 8, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map, 9, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map, 10, __VA_ARGS__) + +/* Generic property macros: */ +#define DT_N_S_connector_P_gpio_map_mask {4294967295 /* 0xffffffff */, 4294967232 /* 0xffffffc0 */} +#define DT_N_S_connector_P_gpio_map_mask_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_mask_IDX_0 4294967295 +#define DT_N_S_connector_P_gpio_map_mask_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_mask_IDX_1 4294967232 +#define DT_N_S_connector_P_gpio_map_mask_FOREACH_PROP_ELEM(fn) fn(DT_N_S_connector, gpio_map_mask, 0) \ + fn(DT_N_S_connector, gpio_map_mask, 1) +#define DT_N_S_connector_P_gpio_map_mask_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_connector, gpio_map_mask, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map_mask, 1) +#define DT_N_S_connector_P_gpio_map_mask_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_connector, gpio_map_mask, 0, __VA_ARGS__) \ + fn(DT_N_S_connector, gpio_map_mask, 1, __VA_ARGS__) +#define DT_N_S_connector_P_gpio_map_mask_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_connector, gpio_map_mask, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map_mask, 1, __VA_ARGS__) +#define DT_N_S_connector_P_gpio_map_mask_LEN 2 +#define DT_N_S_connector_P_gpio_map_mask_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_pass_thru {0 /* 0x0 */, 63 /* 0x3f */} +#define DT_N_S_connector_P_gpio_map_pass_thru_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_pass_thru_IDX_0 0 +#define DT_N_S_connector_P_gpio_map_pass_thru_IDX_1_EXISTS 1 +#define DT_N_S_connector_P_gpio_map_pass_thru_IDX_1 63 +#define DT_N_S_connector_P_gpio_map_pass_thru_FOREACH_PROP_ELEM(fn) fn(DT_N_S_connector, gpio_map_pass_thru, 0) \ + fn(DT_N_S_connector, gpio_map_pass_thru, 1) +#define DT_N_S_connector_P_gpio_map_pass_thru_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_connector, gpio_map_pass_thru, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map_pass_thru, 1) +#define DT_N_S_connector_P_gpio_map_pass_thru_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_connector, gpio_map_pass_thru, 0, __VA_ARGS__) \ + fn(DT_N_S_connector, gpio_map_pass_thru, 1, __VA_ARGS__) +#define DT_N_S_connector_P_gpio_map_pass_thru_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_connector, gpio_map_pass_thru, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_connector, gpio_map_pass_thru, 1, __VA_ARGS__) +#define DT_N_S_connector_P_gpio_map_pass_thru_LEN 2 +#define DT_N_S_connector_P_gpio_map_pass_thru_EXISTS 1 +#define DT_N_S_connector_P_compatible {"seeed,xiao-gpio"} +#define DT_N_S_connector_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_connector_P_compatible_IDX_0 "seeed,xiao-gpio" +#define DT_N_S_connector_P_compatible_IDX_0_STRING_UNQUOTED seeed,xiao-gpio +#define DT_N_S_connector_P_compatible_IDX_0_STRING_TOKEN seeed_xiao_gpio +#define DT_N_S_connector_P_compatible_IDX_0_STRING_UPPER_TOKEN SEEED_XIAO_GPIO +#define DT_N_S_connector_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_connector, compatible, 0) +#define DT_N_S_connector_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_connector, compatible, 0) +#define DT_N_S_connector_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_connector, compatible, 0, __VA_ARGS__) +#define DT_N_S_connector_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_connector, compatible, 0, __VA_ARGS__) +#define DT_N_S_connector_P_compatible_LEN 1 +#define DT_N_S_connector_P_compatible_EXISTS 1 +#define DT_N_S_connector_P_zephyr_deferred_init 0 +#define DT_N_S_connector_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_connector_P_wakeup_source 0 +#define DT_N_S_connector_P_wakeup_source_EXISTS 1 +#define DT_N_S_connector_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_connector_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /esp32_bt_hci + * + * Node identifier: DT_N_S_esp32_bt_hci + * + * Binding (compatible = espressif,esp32-bt-hci): + * $ZEPHYR_BASE/dts/bindings/bluetooth/espressif,esp32-bt-hci.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_esp32_bt_hci_PATH "/esp32_bt_hci" + +/* Node's name with unit-address: */ +#define DT_N_S_esp32_bt_hci_FULL_NAME "esp32_bt_hci" +#define DT_N_S_esp32_bt_hci_FULL_NAME_UNQUOTED esp32_bt_hci +#define DT_N_S_esp32_bt_hci_FULL_NAME_TOKEN esp32_bt_hci +#define DT_N_S_esp32_bt_hci_FULL_NAME_UPPER_TOKEN ESP32_BT_HCI + +/* Node parent (/) identifier: */ +#define DT_N_S_esp32_bt_hci_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_esp32_bt_hci_CHILD_IDX 5 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_esp32_bt_hci_NODELABEL_NUM 1 +#define DT_N_S_esp32_bt_hci_FOREACH_NODELABEL(fn) fn(esp32_bt_hci) +#define DT_N_S_esp32_bt_hci_FOREACH_NODELABEL_VARGS(fn, ...) fn(esp32_bt_hci, __VA_ARGS__) +#define DT_N_S_esp32_bt_hci_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_esp32_bt_hci_CHILD_NUM 0 +#define DT_N_S_esp32_bt_hci_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_esp32_bt_hci_FOREACH_CHILD(fn) +#define DT_N_S_esp32_bt_hci_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_esp32_bt_hci_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_esp32_bt_hci_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_esp32_bt_hci_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_esp32_bt_hci_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_esp32_bt_hci_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_esp32_bt_hci_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_esp32_bt_hci_HASH WzQFLnWOli81_h6U7zBvNN_8VSeDs53nERgPVwn7L3U + +/* Node's dependency ordinal: */ +#define DT_N_S_esp32_bt_hci_ORD 4 +#define DT_N_S_esp32_bt_hci_ORD_STR_SORTABLE 00004 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_esp32_bt_hci_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_esp32_bt_hci_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_esp32_bt_hci_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_bt_hci DT_N_S_esp32_bt_hci +#define DT_N_NODELABEL_esp32_bt_hci DT_N_S_esp32_bt_hci + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_esp32_bt_hci_REG_NUM 0 +#define DT_N_S_esp32_bt_hci_FOREACH_REG(fn) +#define DT_N_S_esp32_bt_hci_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_esp32_bt_hci_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_esp32_bt_hci_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_esp32_bt_hci_RANGES_NUM 0 +#define DT_N_S_esp32_bt_hci_FOREACH_RANGE(fn) +#define DT_N_S_esp32_bt_hci_IRQ_NUM 0 +#define DT_N_S_esp32_bt_hci_IRQ_LEVEL 0 +#define DT_N_S_esp32_bt_hci_COMPAT_MATCHES_espressif_esp32_bt_hci 1 +#define DT_N_S_esp32_bt_hci_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_esp32_bt_hci_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_esp32_bt_hci_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_esp32_bt_hci_COMPAT_MODEL_IDX_0 "esp32-bt-hci" +#define DT_N_S_esp32_bt_hci_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_esp32_bt_hci_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_esp32_bt_hci_P_bt_hci_name "BT ESP32" +#define DT_N_S_esp32_bt_hci_P_bt_hci_name_STRING_UNQUOTED BT ESP32 +#define DT_N_S_esp32_bt_hci_P_bt_hci_name_STRING_TOKEN BT_ESP32 +#define DT_N_S_esp32_bt_hci_P_bt_hci_name_STRING_UPPER_TOKEN BT_ESP32 +#define DT_N_S_esp32_bt_hci_P_bt_hci_name_IDX_0 "BT ESP32" +#define DT_N_S_esp32_bt_hci_P_bt_hci_name_IDX_0_EXISTS 1 +#define DT_N_S_esp32_bt_hci_P_bt_hci_name_FOREACH_PROP_ELEM(fn) fn(DT_N_S_esp32_bt_hci, bt_hci_name, 0) +#define DT_N_S_esp32_bt_hci_P_bt_hci_name_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_esp32_bt_hci, bt_hci_name, 0) +#define DT_N_S_esp32_bt_hci_P_bt_hci_name_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_esp32_bt_hci, bt_hci_name, 0, __VA_ARGS__) +#define DT_N_S_esp32_bt_hci_P_bt_hci_name_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_esp32_bt_hci, bt_hci_name, 0, __VA_ARGS__) +#define DT_N_S_esp32_bt_hci_P_bt_hci_name_LEN 1 +#define DT_N_S_esp32_bt_hci_P_bt_hci_name_EXISTS 1 +#define DT_N_S_esp32_bt_hci_P_bt_hci_bus "ipc" +#define DT_N_S_esp32_bt_hci_P_bt_hci_bus_STRING_UNQUOTED ipc +#define DT_N_S_esp32_bt_hci_P_bt_hci_bus_STRING_TOKEN ipc +#define DT_N_S_esp32_bt_hci_P_bt_hci_bus_STRING_UPPER_TOKEN IPC +#define DT_N_S_esp32_bt_hci_P_bt_hci_bus_IDX_0 "ipc" +#define DT_N_S_esp32_bt_hci_P_bt_hci_bus_IDX_0_EXISTS 1 +#define DT_N_S_esp32_bt_hci_P_bt_hci_bus_IDX_0_ENUM_IDX 11 +#define DT_N_S_esp32_bt_hci_P_bt_hci_bus_IDX_0_ENUM_VAL_ipc_EXISTS 1 +#define DT_N_S_esp32_bt_hci_P_bt_hci_bus_ENUM_VAL_ipc_EXISTS 1 +#define DT_N_S_esp32_bt_hci_P_bt_hci_bus_FOREACH_PROP_ELEM(fn) fn(DT_N_S_esp32_bt_hci, bt_hci_bus, 0) +#define DT_N_S_esp32_bt_hci_P_bt_hci_bus_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_esp32_bt_hci, bt_hci_bus, 0) +#define DT_N_S_esp32_bt_hci_P_bt_hci_bus_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_esp32_bt_hci, bt_hci_bus, 0, __VA_ARGS__) +#define DT_N_S_esp32_bt_hci_P_bt_hci_bus_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_esp32_bt_hci, bt_hci_bus, 0, __VA_ARGS__) +#define DT_N_S_esp32_bt_hci_P_bt_hci_bus_LEN 1 +#define DT_N_S_esp32_bt_hci_P_bt_hci_bus_EXISTS 1 +#define DT_N_S_esp32_bt_hci_P_bt_hci_quirks {"no-auto-dle"} +#define DT_N_S_esp32_bt_hci_P_bt_hci_quirks_IDX_0_ENUM_IDX 1 +#define DT_N_S_esp32_bt_hci_P_bt_hci_quirks_IDX_0_EXISTS 1 +#define DT_N_S_esp32_bt_hci_P_bt_hci_quirks_IDX_0_ENUM_VAL_no_auto_dle_EXISTS 1 +#define DT_N_S_esp32_bt_hci_P_bt_hci_quirks_ENUM_VAL_no_auto_dle_EXISTS 1 +#define DT_N_S_esp32_bt_hci_P_bt_hci_quirks_IDX_0 "no-auto-dle" +#define DT_N_S_esp32_bt_hci_P_bt_hci_quirks_IDX_0_STRING_UNQUOTED no-auto-dle +#define DT_N_S_esp32_bt_hci_P_bt_hci_quirks_IDX_0_STRING_TOKEN no_auto_dle +#define DT_N_S_esp32_bt_hci_P_bt_hci_quirks_IDX_0_STRING_UPPER_TOKEN NO_AUTO_DLE +#define DT_N_S_esp32_bt_hci_P_bt_hci_quirks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_esp32_bt_hci, bt_hci_quirks, 0) +#define DT_N_S_esp32_bt_hci_P_bt_hci_quirks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_esp32_bt_hci, bt_hci_quirks, 0) +#define DT_N_S_esp32_bt_hci_P_bt_hci_quirks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_esp32_bt_hci, bt_hci_quirks, 0, __VA_ARGS__) +#define DT_N_S_esp32_bt_hci_P_bt_hci_quirks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_esp32_bt_hci, bt_hci_quirks, 0, __VA_ARGS__) +#define DT_N_S_esp32_bt_hci_P_bt_hci_quirks_LEN 1 +#define DT_N_S_esp32_bt_hci_P_bt_hci_quirks_EXISTS 1 +#define DT_N_S_esp32_bt_hci_P_bt_hci_vs_ext 1 +#define DT_N_S_esp32_bt_hci_P_bt_hci_vs_ext_EXISTS 1 +#define DT_N_S_esp32_bt_hci_P_status "okay" +#define DT_N_S_esp32_bt_hci_P_status_STRING_UNQUOTED okay +#define DT_N_S_esp32_bt_hci_P_status_STRING_TOKEN okay +#define DT_N_S_esp32_bt_hci_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_esp32_bt_hci_P_status_IDX_0 "okay" +#define DT_N_S_esp32_bt_hci_P_status_IDX_0_EXISTS 1 +#define DT_N_S_esp32_bt_hci_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_esp32_bt_hci_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_esp32_bt_hci_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_esp32_bt_hci_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_esp32_bt_hci, status, 0) +#define DT_N_S_esp32_bt_hci_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_esp32_bt_hci, status, 0) +#define DT_N_S_esp32_bt_hci_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_esp32_bt_hci, status, 0, __VA_ARGS__) +#define DT_N_S_esp32_bt_hci_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_esp32_bt_hci, status, 0, __VA_ARGS__) +#define DT_N_S_esp32_bt_hci_P_status_LEN 1 +#define DT_N_S_esp32_bt_hci_P_status_EXISTS 1 +#define DT_N_S_esp32_bt_hci_P_compatible {"espressif,esp32-bt-hci"} +#define DT_N_S_esp32_bt_hci_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_esp32_bt_hci_P_compatible_IDX_0 "espressif,esp32-bt-hci" +#define DT_N_S_esp32_bt_hci_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-bt-hci +#define DT_N_S_esp32_bt_hci_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_bt_hci +#define DT_N_S_esp32_bt_hci_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_BT_HCI +#define DT_N_S_esp32_bt_hci_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_esp32_bt_hci, compatible, 0) +#define DT_N_S_esp32_bt_hci_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_esp32_bt_hci, compatible, 0) +#define DT_N_S_esp32_bt_hci_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_esp32_bt_hci, compatible, 0, __VA_ARGS__) +#define DT_N_S_esp32_bt_hci_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_esp32_bt_hci, compatible, 0, __VA_ARGS__) +#define DT_N_S_esp32_bt_hci_P_compatible_LEN 1 +#define DT_N_S_esp32_bt_hci_P_compatible_EXISTS 1 +#define DT_N_S_esp32_bt_hci_P_zephyr_deferred_init 0 +#define DT_N_S_esp32_bt_hci_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_esp32_bt_hci_P_wakeup_source 0 +#define DT_N_S_esp32_bt_hci_P_wakeup_source_EXISTS 1 +#define DT_N_S_esp32_bt_hci_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_esp32_bt_hci_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /wifi + * + * Node identifier: DT_N_S_wifi + * + * Binding (compatible = espressif,esp32-wifi): + * $ZEPHYR_BASE/dts/bindings/wifi/espressif,esp32-wifi.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_wifi_PATH "/wifi" + +/* Node's name with unit-address: */ +#define DT_N_S_wifi_FULL_NAME "wifi" +#define DT_N_S_wifi_FULL_NAME_UNQUOTED wifi +#define DT_N_S_wifi_FULL_NAME_TOKEN wifi +#define DT_N_S_wifi_FULL_NAME_UPPER_TOKEN WIFI + +/* Node parent (/) identifier: */ +#define DT_N_S_wifi_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_wifi_CHILD_IDX 4 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_wifi_NODELABEL_NUM 1 +#define DT_N_S_wifi_FOREACH_NODELABEL(fn) fn(wifi) +#define DT_N_S_wifi_FOREACH_NODELABEL_VARGS(fn, ...) fn(wifi, __VA_ARGS__) +#define DT_N_S_wifi_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_wifi_CHILD_NUM 0 +#define DT_N_S_wifi_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_wifi_FOREACH_CHILD(fn) +#define DT_N_S_wifi_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_wifi_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_wifi_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_wifi_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_wifi_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_wifi_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_wifi_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_wifi_HASH rr0vN_kubTtnlX0gdAC83Y08AGdecB14WmkrlyFB8RE + +/* Node's dependency ordinal: */ +#define DT_N_S_wifi_ORD 5 +#define DT_N_S_wifi_ORD_STR_SORTABLE 00005 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_wifi_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_wifi_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_wifi_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_wifi DT_N_S_wifi +#define DT_N_NODELABEL_wifi DT_N_S_wifi + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_wifi_REG_NUM 0 +#define DT_N_S_wifi_FOREACH_REG(fn) +#define DT_N_S_wifi_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_wifi_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_wifi_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_wifi_RANGES_NUM 0 +#define DT_N_S_wifi_FOREACH_RANGE(fn) +#define DT_N_S_wifi_IRQ_NUM 0 +#define DT_N_S_wifi_IRQ_LEVEL 0 +#define DT_N_S_wifi_COMPAT_MATCHES_espressif_esp32_wifi 1 +#define DT_N_S_wifi_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_wifi_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_wifi_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_wifi_COMPAT_MODEL_IDX_0 "esp32-wifi" +#define DT_N_S_wifi_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_wifi_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_wifi_P_compatible {"espressif,esp32-wifi"} +#define DT_N_S_wifi_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_wifi_P_compatible_IDX_0 "espressif,esp32-wifi" +#define DT_N_S_wifi_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-wifi +#define DT_N_S_wifi_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_wifi +#define DT_N_S_wifi_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_WIFI +#define DT_N_S_wifi_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_wifi, compatible, 0) +#define DT_N_S_wifi_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_wifi, compatible, 0) +#define DT_N_S_wifi_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_wifi, compatible, 0, __VA_ARGS__) +#define DT_N_S_wifi_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_wifi, compatible, 0, __VA_ARGS__) +#define DT_N_S_wifi_P_compatible_LEN 1 +#define DT_N_S_wifi_P_compatible_EXISTS 1 +#define DT_N_S_wifi_P_status "okay" +#define DT_N_S_wifi_P_status_STRING_UNQUOTED okay +#define DT_N_S_wifi_P_status_STRING_TOKEN okay +#define DT_N_S_wifi_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_wifi_P_status_IDX_0 "okay" +#define DT_N_S_wifi_P_status_IDX_0_EXISTS 1 +#define DT_N_S_wifi_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_wifi_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_wifi_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_wifi_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_wifi, status, 0) +#define DT_N_S_wifi_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_wifi, status, 0) +#define DT_N_S_wifi_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_wifi, status, 0, __VA_ARGS__) +#define DT_N_S_wifi_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_wifi, status, 0, __VA_ARGS__) +#define DT_N_S_wifi_P_status_LEN 1 +#define DT_N_S_wifi_P_status_EXISTS 1 + +/* + * Devicetree node: /cpus + * + * Node identifier: DT_N_S_cpus + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_cpus_PATH "/cpus" + +/* Node's name with unit-address: */ +#define DT_N_S_cpus_FULL_NAME "cpus" +#define DT_N_S_cpus_FULL_NAME_UNQUOTED cpus +#define DT_N_S_cpus_FULL_NAME_TOKEN cpus +#define DT_N_S_cpus_FULL_NAME_UPPER_TOKEN CPUS + +/* Node parent (/) identifier: */ +#define DT_N_S_cpus_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_cpus_CHILD_IDX 3 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_cpus_NODELABEL_NUM 0 +#define DT_N_S_cpus_FOREACH_NODELABEL(fn) +#define DT_N_S_cpus_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_cpus_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_cpus_CHILD_NUM 3 +#define DT_N_S_cpus_CHILD_NUM_STATUS_OKAY 3 +#define DT_N_S_cpus_CHILD_UNIT_ADDR_INT_0 DT_N_S_cpus_S_cpu_0 +#define DT_N_S_cpus_CHILD_UNIT_ADDR_INT_1 DT_N_S_cpus_S_cpu_1 +#define DT_N_S_cpus_FOREACH_CHILD(fn) fn(DT_N_S_cpus_S_cpu_0) fn(DT_N_S_cpus_S_cpu_1) fn(DT_N_S_cpus_S_power_states) +#define DT_N_S_cpus_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_cpus_S_cpu_0) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus_S_cpu_1) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus_S_power_states) +#define DT_N_S_cpus_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_cpus_S_cpu_0, __VA_ARGS__) fn(DT_N_S_cpus_S_cpu_1, __VA_ARGS__) fn(DT_N_S_cpus_S_power_states, __VA_ARGS__) +#define DT_N_S_cpus_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_cpu_0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus_S_cpu_1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus_S_power_states, __VA_ARGS__) +#define DT_N_S_cpus_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_cpus_S_cpu_0) fn(DT_N_S_cpus_S_cpu_1) fn(DT_N_S_cpus_S_power_states) +#define DT_N_S_cpus_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_cpus_S_cpu_0) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus_S_cpu_1) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus_S_power_states) +#define DT_N_S_cpus_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_cpus_S_cpu_0, __VA_ARGS__) fn(DT_N_S_cpus_S_cpu_1, __VA_ARGS__) fn(DT_N_S_cpus_S_power_states, __VA_ARGS__) +#define DT_N_S_cpus_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_cpu_0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus_S_cpu_1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus_S_power_states, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_cpus_HASH iL3XRGZVvvtpNJqKV0_jvtuXF7m6kgky4nI2ifizwdg + +/* Node's dependency ordinal: */ +#define DT_N_S_cpus_ORD 6 +#define DT_N_S_cpus_ORD_STR_SORTABLE 00006 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_cpus_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_cpus_SUPPORTS_ORDS \ + 7, /* /cpus/power-states */ \ + 10, /* /cpus/cpu@0 */ \ + 11, /* /cpus/cpu@1 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_cpus_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_cpus_REG_NUM 0 +#define DT_N_S_cpus_FOREACH_REG(fn) +#define DT_N_S_cpus_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_cpus_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_cpus_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_cpus_RANGES_NUM 0 +#define DT_N_S_cpus_FOREACH_RANGE(fn) +#define DT_N_S_cpus_IRQ_NUM 0 +#define DT_N_S_cpus_IRQ_LEVEL 0 +#define DT_N_S_cpus_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_cpus_PINCTRL_NUM 0 + +/* (No generic property macros) */ + +/* + * Devicetree node: /cpus/power-states + * + * Node identifier: DT_N_S_cpus_S_power_states + */ + +/* Node's full path: */ +#define DT_N_S_cpus_S_power_states_PATH "/cpus/power-states" + +/* Node's name with unit-address: */ +#define DT_N_S_cpus_S_power_states_FULL_NAME "power-states" +#define DT_N_S_cpus_S_power_states_FULL_NAME_UNQUOTED power-states +#define DT_N_S_cpus_S_power_states_FULL_NAME_TOKEN power_states +#define DT_N_S_cpus_S_power_states_FULL_NAME_UPPER_TOKEN POWER_STATES + +/* Node parent (/cpus) identifier: */ +#define DT_N_S_cpus_S_power_states_PARENT DT_N_S_cpus + +/* Node's index in its parent's list of children: */ +#define DT_N_S_cpus_S_power_states_CHILD_IDX 2 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_cpus_S_power_states_NODELABEL_NUM 0 +#define DT_N_S_cpus_S_power_states_FOREACH_NODELABEL(fn) +#define DT_N_S_cpus_S_power_states_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_cpus_S_power_states_FOREACH_ANCESTOR(fn) fn(DT_N_S_cpus) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_cpus_S_power_states_CHILD_NUM 2 +#define DT_N_S_cpus_S_power_states_CHILD_NUM_STATUS_OKAY 1 +#define DT_N_S_cpus_S_power_states_FOREACH_CHILD(fn) fn(DT_N_S_cpus_S_power_states_S_light_sleep) fn(DT_N_S_cpus_S_power_states_S_deep_sleep) +#define DT_N_S_cpus_S_power_states_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_cpus_S_power_states_S_light_sleep) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus_S_power_states_S_deep_sleep) +#define DT_N_S_cpus_S_power_states_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_cpus_S_power_states_S_light_sleep, __VA_ARGS__) fn(DT_N_S_cpus_S_power_states_S_deep_sleep, __VA_ARGS__) +#define DT_N_S_cpus_S_power_states_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_power_states_S_light_sleep, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_cpus_S_power_states_S_deep_sleep, __VA_ARGS__) +#define DT_N_S_cpus_S_power_states_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_cpus_S_power_states_S_light_sleep) +#define DT_N_S_cpus_S_power_states_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_cpus_S_power_states_S_light_sleep) +#define DT_N_S_cpus_S_power_states_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_cpus_S_power_states_S_light_sleep, __VA_ARGS__) +#define DT_N_S_cpus_S_power_states_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_power_states_S_light_sleep, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_cpus_S_power_states_HASH qMexuiO6C_SHOSQQCC_3by3odasm1z5VRx723zYLVgY + +/* Node's dependency ordinal: */ +#define DT_N_S_cpus_S_power_states_ORD 7 +#define DT_N_S_cpus_S_power_states_ORD_STR_SORTABLE 00007 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_cpus_S_power_states_REQUIRES_ORDS \ + 6, /* /cpus */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_cpus_S_power_states_SUPPORTS_ORDS \ + 8, /* /cpus/power-states/deep_sleep */ \ + 9, /* /cpus/power-states/light_sleep */ + +/* Existence and alternate IDs: */ +#define DT_N_S_cpus_S_power_states_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_cpus_S_power_states_REG_NUM 0 +#define DT_N_S_cpus_S_power_states_FOREACH_REG(fn) +#define DT_N_S_cpus_S_power_states_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_cpus_S_power_states_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_cpus_S_power_states_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_cpus_S_power_states_RANGES_NUM 0 +#define DT_N_S_cpus_S_power_states_FOREACH_RANGE(fn) +#define DT_N_S_cpus_S_power_states_IRQ_NUM 0 +#define DT_N_S_cpus_S_power_states_IRQ_LEVEL 0 +#define DT_N_S_cpus_S_power_states_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_cpus_S_power_states_PINCTRL_NUM 0 + +/* (No generic property macros) */ + +/* + * Devicetree node: /cpus/power-states/deep_sleep + * + * Node identifier: DT_N_S_cpus_S_power_states_S_deep_sleep + * + * Binding (compatible = zephyr,power-state): + * $ZEPHYR_BASE/dts/bindings/power/zephyr,power-state.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_cpus_S_power_states_S_deep_sleep_PATH "/cpus/power-states/deep_sleep" + +/* Node's name with unit-address: */ +#define DT_N_S_cpus_S_power_states_S_deep_sleep_FULL_NAME "deep_sleep" +#define DT_N_S_cpus_S_power_states_S_deep_sleep_FULL_NAME_UNQUOTED deep_sleep +#define DT_N_S_cpus_S_power_states_S_deep_sleep_FULL_NAME_TOKEN deep_sleep +#define DT_N_S_cpus_S_power_states_S_deep_sleep_FULL_NAME_UPPER_TOKEN DEEP_SLEEP + +/* Node parent (/cpus/power-states) identifier: */ +#define DT_N_S_cpus_S_power_states_S_deep_sleep_PARENT DT_N_S_cpus_S_power_states + +/* Node's index in its parent's list of children: */ +#define DT_N_S_cpus_S_power_states_S_deep_sleep_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_cpus_S_power_states_S_deep_sleep_NODELABEL_NUM 1 +#define DT_N_S_cpus_S_power_states_S_deep_sleep_FOREACH_NODELABEL(fn) fn(deep_sleep) +#define DT_N_S_cpus_S_power_states_S_deep_sleep_FOREACH_NODELABEL_VARGS(fn, ...) fn(deep_sleep, __VA_ARGS__) +#define DT_N_S_cpus_S_power_states_S_deep_sleep_FOREACH_ANCESTOR(fn) fn(DT_N_S_cpus_S_power_states) fn(DT_N_S_cpus) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_cpus_S_power_states_S_deep_sleep_CHILD_NUM 0 +#define DT_N_S_cpus_S_power_states_S_deep_sleep_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_cpus_S_power_states_S_deep_sleep_FOREACH_CHILD(fn) +#define DT_N_S_cpus_S_power_states_S_deep_sleep_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_cpus_S_power_states_S_deep_sleep_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_cpus_S_power_states_S_deep_sleep_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_cpus_S_power_states_S_deep_sleep_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_cpus_S_power_states_S_deep_sleep_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_cpus_S_power_states_S_deep_sleep_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_cpus_S_power_states_S_deep_sleep_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_cpus_S_power_states_S_deep_sleep_HASH C7SKg2fWhdBJ3bgnNKxXYtXGHxBOLRajGXBHhDGlgA0 + +/* Node's dependency ordinal: */ +#define DT_N_S_cpus_S_power_states_S_deep_sleep_ORD 8 +#define DT_N_S_cpus_S_power_states_S_deep_sleep_ORD_STR_SORTABLE 00008 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_cpus_S_power_states_S_deep_sleep_REQUIRES_ORDS \ + 7, /* /cpus/power-states */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_cpus_S_power_states_S_deep_sleep_SUPPORTS_ORDS \ + 10, /* /cpus/cpu@0 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_cpus_S_power_states_S_deep_sleep_EXISTS 1 +#define DT_N_INST_1_zephyr_power_state DT_N_S_cpus_S_power_states_S_deep_sleep +#define DT_N_NODELABEL_deep_sleep DT_N_S_cpus_S_power_states_S_deep_sleep + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_cpus_S_power_states_S_deep_sleep_REG_NUM 0 +#define DT_N_S_cpus_S_power_states_S_deep_sleep_FOREACH_REG(fn) +#define DT_N_S_cpus_S_power_states_S_deep_sleep_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_cpus_S_power_states_S_deep_sleep_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_cpus_S_power_states_S_deep_sleep_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_cpus_S_power_states_S_deep_sleep_RANGES_NUM 0 +#define DT_N_S_cpus_S_power_states_S_deep_sleep_FOREACH_RANGE(fn) +#define DT_N_S_cpus_S_power_states_S_deep_sleep_IRQ_NUM 0 +#define DT_N_S_cpus_S_power_states_S_deep_sleep_IRQ_LEVEL 0 +#define DT_N_S_cpus_S_power_states_S_deep_sleep_COMPAT_MATCHES_zephyr_power_state 1 +#define DT_N_S_cpus_S_power_states_S_deep_sleep_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_deep_sleep_COMPAT_VENDOR_IDX_0 "Zephyr Project" +#define DT_N_S_cpus_S_power_states_S_deep_sleep_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_deep_sleep_COMPAT_MODEL_IDX_0 "power-state" +#define DT_N_S_cpus_S_power_states_S_deep_sleep_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_cpus_S_power_states_S_deep_sleep_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_cpus_S_power_states_S_deep_sleep_P_power_state_name "soft-off" +#define DT_N_S_cpus_S_power_states_S_deep_sleep_P_power_state_name_STRING_UNQUOTED soft-off +#define DT_N_S_cpus_S_power_states_S_deep_sleep_P_power_state_name_STRING_TOKEN soft_off +#define DT_N_S_cpus_S_power_states_S_deep_sleep_P_power_state_name_STRING_UPPER_TOKEN SOFT_OFF +#define DT_N_S_cpus_S_power_states_S_deep_sleep_P_power_state_name_IDX_0 "soft-off" +#define DT_N_S_cpus_S_power_states_S_deep_sleep_P_power_state_name_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_deep_sleep_P_power_state_name_IDX_0_ENUM_IDX 6 +#define DT_N_S_cpus_S_power_states_S_deep_sleep_P_power_state_name_IDX_0_ENUM_VAL_soft_off_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_deep_sleep_P_power_state_name_ENUM_VAL_soft_off_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_deep_sleep_P_power_state_name_FOREACH_PROP_ELEM(fn) fn(DT_N_S_cpus_S_power_states_S_deep_sleep, power_state_name, 0) +#define DT_N_S_cpus_S_power_states_S_deep_sleep_P_power_state_name_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_cpus_S_power_states_S_deep_sleep, power_state_name, 0) +#define DT_N_S_cpus_S_power_states_S_deep_sleep_P_power_state_name_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_cpus_S_power_states_S_deep_sleep, power_state_name, 0, __VA_ARGS__) +#define DT_N_S_cpus_S_power_states_S_deep_sleep_P_power_state_name_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_power_states_S_deep_sleep, power_state_name, 0, __VA_ARGS__) +#define DT_N_S_cpus_S_power_states_S_deep_sleep_P_power_state_name_LEN 1 +#define DT_N_S_cpus_S_power_states_S_deep_sleep_P_power_state_name_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_deep_sleep_P_zephyr_pm_device_disabled 0 +#define DT_N_S_cpus_S_power_states_S_deep_sleep_P_zephyr_pm_device_disabled_EXISTS 1 + +/* + * Devicetree node: /cpus/power-states/light_sleep + * + * Node identifier: DT_N_S_cpus_S_power_states_S_light_sleep + * + * Binding (compatible = zephyr,power-state): + * $ZEPHYR_BASE/dts/bindings/power/zephyr,power-state.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_cpus_S_power_states_S_light_sleep_PATH "/cpus/power-states/light_sleep" + +/* Node's name with unit-address: */ +#define DT_N_S_cpus_S_power_states_S_light_sleep_FULL_NAME "light_sleep" +#define DT_N_S_cpus_S_power_states_S_light_sleep_FULL_NAME_UNQUOTED light_sleep +#define DT_N_S_cpus_S_power_states_S_light_sleep_FULL_NAME_TOKEN light_sleep +#define DT_N_S_cpus_S_power_states_S_light_sleep_FULL_NAME_UPPER_TOKEN LIGHT_SLEEP + +/* Node parent (/cpus/power-states) identifier: */ +#define DT_N_S_cpus_S_power_states_S_light_sleep_PARENT DT_N_S_cpus_S_power_states + +/* Node's index in its parent's list of children: */ +#define DT_N_S_cpus_S_power_states_S_light_sleep_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_cpus_S_power_states_S_light_sleep_NODELABEL_NUM 1 +#define DT_N_S_cpus_S_power_states_S_light_sleep_FOREACH_NODELABEL(fn) fn(light_sleep) +#define DT_N_S_cpus_S_power_states_S_light_sleep_FOREACH_NODELABEL_VARGS(fn, ...) fn(light_sleep, __VA_ARGS__) +#define DT_N_S_cpus_S_power_states_S_light_sleep_FOREACH_ANCESTOR(fn) fn(DT_N_S_cpus_S_power_states) fn(DT_N_S_cpus) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_cpus_S_power_states_S_light_sleep_CHILD_NUM 0 +#define DT_N_S_cpus_S_power_states_S_light_sleep_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_cpus_S_power_states_S_light_sleep_FOREACH_CHILD(fn) +#define DT_N_S_cpus_S_power_states_S_light_sleep_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_cpus_S_power_states_S_light_sleep_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_cpus_S_power_states_S_light_sleep_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_cpus_S_power_states_S_light_sleep_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_cpus_S_power_states_S_light_sleep_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_cpus_S_power_states_S_light_sleep_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_cpus_S_power_states_S_light_sleep_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_cpus_S_power_states_S_light_sleep_HASH trFhKUS39giGuBIU4RugUjCmoAFGXREORn8cmi85czc + +/* Node's dependency ordinal: */ +#define DT_N_S_cpus_S_power_states_S_light_sleep_ORD 9 +#define DT_N_S_cpus_S_power_states_S_light_sleep_ORD_STR_SORTABLE 00009 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_cpus_S_power_states_S_light_sleep_REQUIRES_ORDS \ + 7, /* /cpus/power-states */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_cpus_S_power_states_S_light_sleep_SUPPORTS_ORDS \ + 10, /* /cpus/cpu@0 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_cpus_S_power_states_S_light_sleep_EXISTS 1 +#define DT_N_INST_0_zephyr_power_state DT_N_S_cpus_S_power_states_S_light_sleep +#define DT_N_NODELABEL_light_sleep DT_N_S_cpus_S_power_states_S_light_sleep + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_cpus_S_power_states_S_light_sleep_REG_NUM 0 +#define DT_N_S_cpus_S_power_states_S_light_sleep_FOREACH_REG(fn) +#define DT_N_S_cpus_S_power_states_S_light_sleep_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_cpus_S_power_states_S_light_sleep_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_cpus_S_power_states_S_light_sleep_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_cpus_S_power_states_S_light_sleep_RANGES_NUM 0 +#define DT_N_S_cpus_S_power_states_S_light_sleep_FOREACH_RANGE(fn) +#define DT_N_S_cpus_S_power_states_S_light_sleep_IRQ_NUM 0 +#define DT_N_S_cpus_S_power_states_S_light_sleep_IRQ_LEVEL 0 +#define DT_N_S_cpus_S_power_states_S_light_sleep_COMPAT_MATCHES_zephyr_power_state 1 +#define DT_N_S_cpus_S_power_states_S_light_sleep_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_light_sleep_COMPAT_VENDOR_IDX_0 "Zephyr Project" +#define DT_N_S_cpus_S_power_states_S_light_sleep_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_light_sleep_COMPAT_MODEL_IDX_0 "power-state" +#define DT_N_S_cpus_S_power_states_S_light_sleep_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_cpus_S_power_states_S_light_sleep_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_cpus_S_power_states_S_light_sleep_P_power_state_name "standby" +#define DT_N_S_cpus_S_power_states_S_light_sleep_P_power_state_name_STRING_UNQUOTED standby +#define DT_N_S_cpus_S_power_states_S_light_sleep_P_power_state_name_STRING_TOKEN standby +#define DT_N_S_cpus_S_power_states_S_light_sleep_P_power_state_name_STRING_UPPER_TOKEN STANDBY +#define DT_N_S_cpus_S_power_states_S_light_sleep_P_power_state_name_IDX_0 "standby" +#define DT_N_S_cpus_S_power_states_S_light_sleep_P_power_state_name_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_light_sleep_P_power_state_name_IDX_0_ENUM_IDX 3 +#define DT_N_S_cpus_S_power_states_S_light_sleep_P_power_state_name_IDX_0_ENUM_VAL_standby_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_light_sleep_P_power_state_name_ENUM_VAL_standby_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_light_sleep_P_power_state_name_FOREACH_PROP_ELEM(fn) fn(DT_N_S_cpus_S_power_states_S_light_sleep, power_state_name, 0) +#define DT_N_S_cpus_S_power_states_S_light_sleep_P_power_state_name_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_cpus_S_power_states_S_light_sleep, power_state_name, 0) +#define DT_N_S_cpus_S_power_states_S_light_sleep_P_power_state_name_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_cpus_S_power_states_S_light_sleep, power_state_name, 0, __VA_ARGS__) +#define DT_N_S_cpus_S_power_states_S_light_sleep_P_power_state_name_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_power_states_S_light_sleep, power_state_name, 0, __VA_ARGS__) +#define DT_N_S_cpus_S_power_states_S_light_sleep_P_power_state_name_LEN 1 +#define DT_N_S_cpus_S_power_states_S_light_sleep_P_power_state_name_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_light_sleep_P_min_residency_us 1000 +#define DT_N_S_cpus_S_power_states_S_light_sleep_P_min_residency_us_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_light_sleep_P_exit_latency_us 50 +#define DT_N_S_cpus_S_power_states_S_light_sleep_P_exit_latency_us_EXISTS 1 +#define DT_N_S_cpus_S_power_states_S_light_sleep_P_zephyr_pm_device_disabled 0 +#define DT_N_S_cpus_S_power_states_S_light_sleep_P_zephyr_pm_device_disabled_EXISTS 1 + +/* + * Devicetree node: /cpus/cpu@0 + * + * Node identifier: DT_N_S_cpus_S_cpu_0 + * + * Binding (compatible = espressif,xtensa-lx7): + * $ZEPHYR_BASE/dts/bindings/cpu/espressif,xtensa-lx7.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_cpus_S_cpu_0_PATH "/cpus/cpu@0" + +/* Node's name with unit-address: */ +#define DT_N_S_cpus_S_cpu_0_FULL_NAME "cpu@0" +#define DT_N_S_cpus_S_cpu_0_FULL_NAME_UNQUOTED cpu@0 +#define DT_N_S_cpus_S_cpu_0_FULL_NAME_TOKEN cpu_0 +#define DT_N_S_cpus_S_cpu_0_FULL_NAME_UPPER_TOKEN CPU_0 + +/* Node parent (/cpus) identifier: */ +#define DT_N_S_cpus_S_cpu_0_PARENT DT_N_S_cpus + +/* Node's index in its parent's list of children: */ +#define DT_N_S_cpus_S_cpu_0_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_cpus_S_cpu_0_NODELABEL_NUM 1 +#define DT_N_S_cpus_S_cpu_0_FOREACH_NODELABEL(fn) fn(cpu0) +#define DT_N_S_cpus_S_cpu_0_FOREACH_NODELABEL_VARGS(fn, ...) fn(cpu0, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_0_FOREACH_ANCESTOR(fn) fn(DT_N_S_cpus) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_cpus_S_cpu_0_CHILD_NUM 0 +#define DT_N_S_cpus_S_cpu_0_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD(fn) +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_cpus_S_cpu_0_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_cpus_S_cpu_0_HASH Su0JBbOtM0QIxe_1ka2Xvgw4rk1QaIlMIj8Rp_v4yVQ + +/* Node's dependency ordinal: */ +#define DT_N_S_cpus_S_cpu_0_ORD 10 +#define DT_N_S_cpus_S_cpu_0_ORD_STR_SORTABLE 00010 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_cpus_S_cpu_0_REQUIRES_ORDS \ + 6, /* /cpus */ \ + 8, /* /cpus/power-states/deep_sleep */ \ + 9, /* /cpus/power-states/light_sleep */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_cpus_S_cpu_0_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_cpus_S_cpu_0_EXISTS 1 +#define DT_N_INST_0_espressif_xtensa_lx7 DT_N_S_cpus_S_cpu_0 +#define DT_N_NODELABEL_cpu0 DT_N_S_cpus_S_cpu_0 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_cpus_S_cpu_0_REG_NUM 1 +#define DT_N_S_cpus_S_cpu_0_REG_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_REG_IDX_0_VAL_ADDRESS 0 /* 0x0 */ +#define DT_N_S_cpus_S_cpu_0_FOREACH_REG(fn) fn(DT_N_S_cpus_S_cpu_0, 0) +#define DT_N_S_cpus_S_cpu_0_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_cpus_S_cpu_0, 0) +#define DT_N_S_cpus_S_cpu_0_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_cpus_S_cpu_0, 0, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_0_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_cpu_0, 0, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_0_RANGES_NUM 0 +#define DT_N_S_cpus_S_cpu_0_FOREACH_RANGE(fn) +#define DT_N_S_cpus_S_cpu_0_IRQ_NUM 0 +#define DT_N_S_cpus_S_cpu_0_IRQ_LEVEL 0 +#define DT_N_S_cpus_S_cpu_0_COMPAT_MATCHES_espressif_xtensa_lx7 1 +#define DT_N_S_cpus_S_cpu_0_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_cpus_S_cpu_0_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_COMPAT_MODEL_IDX_0 "xtensa-lx7" +#define DT_N_S_cpus_S_cpu_0_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_cpus_S_cpu_0_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_cpus_S_cpu_0_P_clock_source 1 +#define DT_N_S_cpus_S_cpu_0_P_clock_source_IDX_0_ENUM_IDX 1 +#define DT_N_S_cpus_S_cpu_0_P_clock_source_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_clock_source_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_clock_source_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_clock_source_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_xtal_freq 40000000 +#define DT_N_S_cpus_S_cpu_0_P_xtal_freq_IDX_0_ENUM_IDX 0 +#define DT_N_S_cpus_S_cpu_0_P_xtal_freq_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_xtal_freq_IDX_0_ENUM_VAL_40000000_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_xtal_freq_ENUM_VAL_40000000_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_xtal_freq_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_clock_frequency 240000000 +#define DT_N_S_cpus_S_cpu_0_P_clock_frequency_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_IDX_0 DT_N_S_cpus_S_power_states_S_light_sleep +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_IDX_0_PH DT_N_S_cpus_S_power_states_S_light_sleep +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_IDX_1 DT_N_S_cpus_S_power_states_S_deep_sleep +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_IDX_1_PH DT_N_S_cpus_S_power_states_S_deep_sleep +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_IDX_1_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_FOREACH_PROP_ELEM(fn) fn(DT_N_S_cpus_S_cpu_0, cpu_power_states, 0) \ + fn(DT_N_S_cpus_S_cpu_0, cpu_power_states, 1) +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_cpus_S_cpu_0, cpu_power_states, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_cpus_S_cpu_0, cpu_power_states, 1) +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_cpus_S_cpu_0, cpu_power_states, 0, __VA_ARGS__) \ + fn(DT_N_S_cpus_S_cpu_0, cpu_power_states, 1, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_cpu_0, cpu_power_states, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_cpus_S_cpu_0, cpu_power_states, 1, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_LEN 2 +#define DT_N_S_cpus_S_cpu_0_P_cpu_power_states_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_compatible {"espressif,xtensa-lx7"} +#define DT_N_S_cpus_S_cpu_0_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_compatible_IDX_0 "espressif,xtensa-lx7" +#define DT_N_S_cpus_S_cpu_0_P_compatible_IDX_0_STRING_UNQUOTED espressif,xtensa-lx7 +#define DT_N_S_cpus_S_cpu_0_P_compatible_IDX_0_STRING_TOKEN espressif_xtensa_lx7 +#define DT_N_S_cpus_S_cpu_0_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_XTENSA_LX7 +#define DT_N_S_cpus_S_cpu_0_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_cpus_S_cpu_0, compatible, 0) +#define DT_N_S_cpus_S_cpu_0_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_cpus_S_cpu_0, compatible, 0) +#define DT_N_S_cpus_S_cpu_0_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_cpus_S_cpu_0, compatible, 0, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_0_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_cpu_0, compatible, 0, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_0_P_compatible_LEN 1 +#define DT_N_S_cpus_S_cpu_0_P_compatible_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_reg {0 /* 0x0 */} +#define DT_N_S_cpus_S_cpu_0_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_reg_IDX_0 0 +#define DT_N_S_cpus_S_cpu_0_P_reg_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_zephyr_deferred_init 0 +#define DT_N_S_cpus_S_cpu_0_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_wakeup_source 0 +#define DT_N_S_cpus_S_cpu_0_P_wakeup_source_EXISTS 1 +#define DT_N_S_cpus_S_cpu_0_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_cpus_S_cpu_0_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /cpus/cpu@1 + * + * Node identifier: DT_N_S_cpus_S_cpu_1 + * + * Binding (compatible = espressif,xtensa-lx7): + * $ZEPHYR_BASE/dts/bindings/cpu/espressif,xtensa-lx7.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_cpus_S_cpu_1_PATH "/cpus/cpu@1" + +/* Node's name with unit-address: */ +#define DT_N_S_cpus_S_cpu_1_FULL_NAME "cpu@1" +#define DT_N_S_cpus_S_cpu_1_FULL_NAME_UNQUOTED cpu@1 +#define DT_N_S_cpus_S_cpu_1_FULL_NAME_TOKEN cpu_1 +#define DT_N_S_cpus_S_cpu_1_FULL_NAME_UPPER_TOKEN CPU_1 + +/* Node parent (/cpus) identifier: */ +#define DT_N_S_cpus_S_cpu_1_PARENT DT_N_S_cpus + +/* Node's index in its parent's list of children: */ +#define DT_N_S_cpus_S_cpu_1_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_cpus_S_cpu_1_NODELABEL_NUM 1 +#define DT_N_S_cpus_S_cpu_1_FOREACH_NODELABEL(fn) fn(cpu1) +#define DT_N_S_cpus_S_cpu_1_FOREACH_NODELABEL_VARGS(fn, ...) fn(cpu1, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_1_FOREACH_ANCESTOR(fn) fn(DT_N_S_cpus) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_cpus_S_cpu_1_CHILD_NUM 0 +#define DT_N_S_cpus_S_cpu_1_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_cpus_S_cpu_1_FOREACH_CHILD(fn) +#define DT_N_S_cpus_S_cpu_1_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_cpus_S_cpu_1_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_cpus_S_cpu_1_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_cpus_S_cpu_1_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_cpus_S_cpu_1_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_cpus_S_cpu_1_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_cpus_S_cpu_1_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_cpus_S_cpu_1_HASH 9JjWVNk3G1ibyc8ZwlqKxfoxH3N71yBfTFpYJTDe_oU + +/* Node's dependency ordinal: */ +#define DT_N_S_cpus_S_cpu_1_ORD 11 +#define DT_N_S_cpus_S_cpu_1_ORD_STR_SORTABLE 00011 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_cpus_S_cpu_1_REQUIRES_ORDS \ + 6, /* /cpus */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_cpus_S_cpu_1_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_cpus_S_cpu_1_EXISTS 1 +#define DT_N_INST_1_espressif_xtensa_lx7 DT_N_S_cpus_S_cpu_1 +#define DT_N_NODELABEL_cpu1 DT_N_S_cpus_S_cpu_1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_cpus_S_cpu_1_REG_NUM 1 +#define DT_N_S_cpus_S_cpu_1_REG_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_1_REG_IDX_0_VAL_ADDRESS 1 /* 0x1 */ +#define DT_N_S_cpus_S_cpu_1_FOREACH_REG(fn) fn(DT_N_S_cpus_S_cpu_1, 0) +#define DT_N_S_cpus_S_cpu_1_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_cpus_S_cpu_1, 0) +#define DT_N_S_cpus_S_cpu_1_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_cpus_S_cpu_1, 0, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_1_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_cpu_1, 0, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_1_RANGES_NUM 0 +#define DT_N_S_cpus_S_cpu_1_FOREACH_RANGE(fn) +#define DT_N_S_cpus_S_cpu_1_IRQ_NUM 0 +#define DT_N_S_cpus_S_cpu_1_IRQ_LEVEL 0 +#define DT_N_S_cpus_S_cpu_1_COMPAT_MATCHES_espressif_xtensa_lx7 1 +#define DT_N_S_cpus_S_cpu_1_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_1_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_cpus_S_cpu_1_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_1_COMPAT_MODEL_IDX_0 "xtensa-lx7" +#define DT_N_S_cpus_S_cpu_1_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_cpus_S_cpu_1_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_cpus_S_cpu_1_P_clock_source 1 +#define DT_N_S_cpus_S_cpu_1_P_clock_source_IDX_0_ENUM_IDX 1 +#define DT_N_S_cpus_S_cpu_1_P_clock_source_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_1_P_clock_source_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_cpus_S_cpu_1_P_clock_source_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_cpus_S_cpu_1_P_clock_source_EXISTS 1 +#define DT_N_S_cpus_S_cpu_1_P_xtal_freq 40000000 +#define DT_N_S_cpus_S_cpu_1_P_xtal_freq_IDX_0_ENUM_IDX 0 +#define DT_N_S_cpus_S_cpu_1_P_xtal_freq_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_1_P_xtal_freq_IDX_0_ENUM_VAL_40000000_EXISTS 1 +#define DT_N_S_cpus_S_cpu_1_P_xtal_freq_ENUM_VAL_40000000_EXISTS 1 +#define DT_N_S_cpus_S_cpu_1_P_xtal_freq_EXISTS 1 +#define DT_N_S_cpus_S_cpu_1_P_clock_frequency 240000000 +#define DT_N_S_cpus_S_cpu_1_P_clock_frequency_EXISTS 1 +#define DT_N_S_cpus_S_cpu_1_P_compatible {"espressif,xtensa-lx7"} +#define DT_N_S_cpus_S_cpu_1_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_1_P_compatible_IDX_0 "espressif,xtensa-lx7" +#define DT_N_S_cpus_S_cpu_1_P_compatible_IDX_0_STRING_UNQUOTED espressif,xtensa-lx7 +#define DT_N_S_cpus_S_cpu_1_P_compatible_IDX_0_STRING_TOKEN espressif_xtensa_lx7 +#define DT_N_S_cpus_S_cpu_1_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_XTENSA_LX7 +#define DT_N_S_cpus_S_cpu_1_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_cpus_S_cpu_1, compatible, 0) +#define DT_N_S_cpus_S_cpu_1_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_cpus_S_cpu_1, compatible, 0) +#define DT_N_S_cpus_S_cpu_1_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_cpus_S_cpu_1, compatible, 0, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_1_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_cpus_S_cpu_1, compatible, 0, __VA_ARGS__) +#define DT_N_S_cpus_S_cpu_1_P_compatible_LEN 1 +#define DT_N_S_cpus_S_cpu_1_P_compatible_EXISTS 1 +#define DT_N_S_cpus_S_cpu_1_P_reg {1 /* 0x1 */} +#define DT_N_S_cpus_S_cpu_1_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_cpus_S_cpu_1_P_reg_IDX_0 1 +#define DT_N_S_cpus_S_cpu_1_P_reg_EXISTS 1 +#define DT_N_S_cpus_S_cpu_1_P_zephyr_deferred_init 0 +#define DT_N_S_cpus_S_cpu_1_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_cpus_S_cpu_1_P_wakeup_source 0 +#define DT_N_S_cpus_S_cpu_1_P_wakeup_source_EXISTS 1 +#define DT_N_S_cpus_S_cpu_1_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_cpus_S_cpu_1_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc + * + * Node identifier: DT_N_S_soc + */ + +/* Node's full path: */ +#define DT_N_S_soc_PATH "/soc" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_FULL_NAME "soc" +#define DT_N_S_soc_FULL_NAME_UNQUOTED soc +#define DT_N_S_soc_FULL_NAME_TOKEN soc +#define DT_N_S_soc_FULL_NAME_UPPER_TOKEN SOC + +/* Node parent (/) identifier: */ +#define DT_N_S_soc_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_CHILD_IDX 2 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_NODELABEL_NUM 0 +#define DT_N_S_soc_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_CHILD_NUM 48 +#define DT_N_S_soc_CHILD_NUM_STATUS_OKAY 25 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1107296256 DT_N_S_soc_S_memory_42000000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1006632960 DT_N_S_soc_S_memory_3c000000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1077346304 DT_N_S_soc_S_memory_40370000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1070104576 DT_N_S_soc_S_memory_3fc88000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1070530560 DT_N_S_soc_S_memory_3fcf0000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1070485504 DT_N_S_soc_S_memory_3fce5000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1070486528 DT_N_S_soc_S_memory_3fce5400 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1070502912 DT_N_S_soc_S_ipm_3fce9400 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1070502920 DT_N_S_soc_S_mbox_3fce9408 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1342177280 DT_N_S_soc_S_memory_50000000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1611653120 DT_N_S_soc_S_memory_600fe000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1611407360 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610747908 DT_N_S_soc_S_xt_wdt_60021004 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610645508 DT_N_S_soc_S_rtc_timer_60008004 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610620928 DT_N_S_soc_S_flash_controller_60002000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610612736 DT_N_S_soc_S_uart_60000000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610678272 DT_N_S_soc_S_uart_60010000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610801152 DT_N_S_soc_S_uart_6002e000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610647644 DT_N_S_soc_S_touch_6000885c +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610690560 DT_N_S_soc_S_i2c_60013000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610772480 DT_N_S_soc_S_i2c_60027000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610674176 DT_N_S_soc_S_i2s_6000f000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610797056 DT_N_S_soc_S_i2s_6002d000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610760192 DT_N_S_soc_S_spi_60024000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610764288 DT_N_S_soc_S_spi_60025000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610647552 DT_N_S_soc_S_coretemp_60008800 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610874880 DT_N_S_soc_S_adc_60040000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610874884 DT_N_S_soc_S_adc_60040004 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610788864 DT_N_S_soc_S_can_6002b000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610878976 DT_N_S_soc_S_lcd_cam_60041000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610842112 DT_N_S_soc_S_uart_60038000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1611137024 DT_N_S_soc_S_usb_otg_60080000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610739712 DT_N_S_soc_S_counter_6001f000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610739748 DT_N_S_soc_S_counter_6001f024 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610743808 DT_N_S_soc_S_counter_60020000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610743844 DT_N_S_soc_S_counter_60020024 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610739784 DT_N_S_soc_S_watchdog_6001f048 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610743880 DT_N_S_soc_S_watchdog_60020048 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610829948 DT_N_S_soc_S_trng_6003507c +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610715136 DT_N_S_soc_S_ledc_60019000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610735616 DT_N_S_soc_S_mcpwm_6001e000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610792960 DT_N_S_soc_S_mcpwm_6002c000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610706944 DT_N_S_soc_S_pcnt_60017000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610870784 DT_N_S_soc_S_dma_6003f000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610776576 DT_N_S_soc_S_sdhc_60028000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610854400 DT_N_S_soc_S_sha_6003b000 +#define DT_N_S_soc_CHILD_UNIT_ADDR_INT_1610850304 DT_N_S_soc_S_aes_6003a000 +#define DT_N_S_soc_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_memory_42000000) fn(DT_N_S_soc_S_memory_3c000000) fn(DT_N_S_soc_S_memory_40370000) fn(DT_N_S_soc_S_memory_3fc88000) fn(DT_N_S_soc_S_memory_3fcf0000) fn(DT_N_S_soc_S_memory_3fce5000) fn(DT_N_S_soc_S_memory_3fce5400) fn(DT_N_S_soc_S_ipm_3fce9400) fn(DT_N_S_soc_S_mbox_3fce9408) fn(DT_N_S_soc_S_memory_50000000) fn(DT_N_S_soc_S_memory_600fe000) fn(DT_N_S_soc_S_interrupt_controller_600c2000) fn(DT_N_S_soc_S_xt_wdt_60021004) fn(DT_N_S_soc_S_rtc_timer_60008004) fn(DT_N_S_soc_S_flash_controller_60002000) fn(DT_N_S_soc_S_uart_60000000) fn(DT_N_S_soc_S_uart_60010000) fn(DT_N_S_soc_S_uart_6002e000) fn(DT_N_S_soc_S_gpio) fn(DT_N_S_soc_S_touch_6000885c) fn(DT_N_S_soc_S_i2c_60013000) fn(DT_N_S_soc_S_i2c_60027000) fn(DT_N_S_soc_S_i2s_6000f000) fn(DT_N_S_soc_S_i2s_6002d000) fn(DT_N_S_soc_S_spi_60024000) fn(DT_N_S_soc_S_spi_60025000) fn(DT_N_S_soc_S_coretemp_60008800) fn(DT_N_S_soc_S_adc_60040000) fn(DT_N_S_soc_S_adc_60040004) fn(DT_N_S_soc_S_can_6002b000) fn(DT_N_S_soc_S_lcd_cam_60041000) fn(DT_N_S_soc_S_uart_60038000) fn(DT_N_S_soc_S_usb_otg_60080000) fn(DT_N_S_soc_S_counter_6001f000) fn(DT_N_S_soc_S_counter_6001f024) fn(DT_N_S_soc_S_counter_60020000) fn(DT_N_S_soc_S_counter_60020024) fn(DT_N_S_soc_S_watchdog_6001f048) fn(DT_N_S_soc_S_watchdog_60020048) fn(DT_N_S_soc_S_trng_6003507c) fn(DT_N_S_soc_S_ledc_60019000) fn(DT_N_S_soc_S_mcpwm_6001e000) fn(DT_N_S_soc_S_mcpwm_6002c000) fn(DT_N_S_soc_S_pcnt_60017000) fn(DT_N_S_soc_S_dma_6003f000) fn(DT_N_S_soc_S_sdhc_60028000) fn(DT_N_S_soc_S_sha_6003b000) fn(DT_N_S_soc_S_aes_6003a000) +#define DT_N_S_soc_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_memory_42000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_3c000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_40370000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_3fc88000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_3fcf0000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_3fce5000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_3fce5400) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ipm_3fce9400) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_mbox_3fce9408) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_50000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_600fe000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_interrupt_controller_600c2000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_xt_wdt_60021004) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_rtc_timer_60008004) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_uart_60000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_uart_60010000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_uart_6002e000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_gpio) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_touch_6000885c) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_i2c_60013000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_i2c_60027000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_i2s_6000f000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_i2s_6002d000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_spi_60024000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_spi_60025000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_coretemp_60008800) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_adc_60040000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_adc_60040004) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_can_6002b000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_lcd_cam_60041000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_uart_60038000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_usb_otg_60080000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_counter_6001f000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_counter_6001f024) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_counter_60020000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_counter_60020024) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_watchdog_6001f048) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_watchdog_60020048) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_trng_6003507c) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ledc_60019000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_mcpwm_6001e000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_mcpwm_6002c000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pcnt_60017000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_dma_6003f000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_sdhc_60028000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_sha_6003b000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_aes_6003a000) +#define DT_N_S_soc_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_42000000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3c000000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_40370000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3fc88000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3fcf0000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3fce5000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3fce5400, __VA_ARGS__) fn(DT_N_S_soc_S_ipm_3fce9400, __VA_ARGS__) fn(DT_N_S_soc_S_mbox_3fce9408, __VA_ARGS__) fn(DT_N_S_soc_S_memory_50000000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_600fe000, __VA_ARGS__) fn(DT_N_S_soc_S_interrupt_controller_600c2000, __VA_ARGS__) fn(DT_N_S_soc_S_xt_wdt_60021004, __VA_ARGS__) fn(DT_N_S_soc_S_rtc_timer_60008004, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000, __VA_ARGS__) fn(DT_N_S_soc_S_uart_60000000, __VA_ARGS__) fn(DT_N_S_soc_S_uart_60010000, __VA_ARGS__) fn(DT_N_S_soc_S_uart_6002e000, __VA_ARGS__) fn(DT_N_S_soc_S_gpio, __VA_ARGS__) fn(DT_N_S_soc_S_touch_6000885c, __VA_ARGS__) fn(DT_N_S_soc_S_i2c_60013000, __VA_ARGS__) fn(DT_N_S_soc_S_i2c_60027000, __VA_ARGS__) fn(DT_N_S_soc_S_i2s_6000f000, __VA_ARGS__) fn(DT_N_S_soc_S_i2s_6002d000, __VA_ARGS__) fn(DT_N_S_soc_S_spi_60024000, __VA_ARGS__) fn(DT_N_S_soc_S_spi_60025000, __VA_ARGS__) fn(DT_N_S_soc_S_coretemp_60008800, __VA_ARGS__) fn(DT_N_S_soc_S_adc_60040000, __VA_ARGS__) fn(DT_N_S_soc_S_adc_60040004, __VA_ARGS__) fn(DT_N_S_soc_S_can_6002b000, __VA_ARGS__) fn(DT_N_S_soc_S_lcd_cam_60041000, __VA_ARGS__) fn(DT_N_S_soc_S_uart_60038000, __VA_ARGS__) fn(DT_N_S_soc_S_usb_otg_60080000, __VA_ARGS__) fn(DT_N_S_soc_S_counter_6001f000, __VA_ARGS__) fn(DT_N_S_soc_S_counter_6001f024, __VA_ARGS__) fn(DT_N_S_soc_S_counter_60020000, __VA_ARGS__) fn(DT_N_S_soc_S_counter_60020024, __VA_ARGS__) fn(DT_N_S_soc_S_watchdog_6001f048, __VA_ARGS__) fn(DT_N_S_soc_S_watchdog_60020048, __VA_ARGS__) fn(DT_N_S_soc_S_trng_6003507c, __VA_ARGS__) fn(DT_N_S_soc_S_ledc_60019000, __VA_ARGS__) fn(DT_N_S_soc_S_mcpwm_6001e000, __VA_ARGS__) fn(DT_N_S_soc_S_mcpwm_6002c000, __VA_ARGS__) fn(DT_N_S_soc_S_pcnt_60017000, __VA_ARGS__) fn(DT_N_S_soc_S_dma_6003f000, __VA_ARGS__) fn(DT_N_S_soc_S_sdhc_60028000, __VA_ARGS__) fn(DT_N_S_soc_S_sha_6003b000, __VA_ARGS__) fn(DT_N_S_soc_S_aes_6003a000, __VA_ARGS__) +#define DT_N_S_soc_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_42000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_3c000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_40370000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_3fc88000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_3fcf0000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_3fce5000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_3fce5400, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ipm_3fce9400, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_mbox_3fce9408, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_50000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_600fe000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_interrupt_controller_600c2000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_xt_wdt_60021004, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_rtc_timer_60008004, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_uart_60000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_uart_60010000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_uart_6002e000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_gpio, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_touch_6000885c, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_i2c_60013000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_i2c_60027000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_i2s_6000f000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_i2s_6002d000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_spi_60024000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_spi_60025000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_coretemp_60008800, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_adc_60040000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_adc_60040004, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_can_6002b000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_lcd_cam_60041000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_uart_60038000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_usb_otg_60080000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_counter_6001f000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_counter_6001f024, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_counter_60020000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_counter_60020024, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_watchdog_6001f048, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_watchdog_60020048, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_trng_6003507c, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_ledc_60019000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_mcpwm_6001e000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_mcpwm_6002c000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_pcnt_60017000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_dma_6003f000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_sdhc_60028000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_sha_6003b000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_aes_6003a000, __VA_ARGS__) +#define DT_N_S_soc_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_soc_S_memory_42000000) fn(DT_N_S_soc_S_memory_3c000000) fn(DT_N_S_soc_S_memory_40370000) fn(DT_N_S_soc_S_memory_3fc88000) fn(DT_N_S_soc_S_memory_3fcf0000) fn(DT_N_S_soc_S_memory_3fce5000) fn(DT_N_S_soc_S_memory_3fce5400) fn(DT_N_S_soc_S_memory_50000000) fn(DT_N_S_soc_S_memory_600fe000) fn(DT_N_S_soc_S_interrupt_controller_600c2000) fn(DT_N_S_soc_S_flash_controller_60002000) fn(DT_N_S_soc_S_uart_60000000) fn(DT_N_S_soc_S_gpio) fn(DT_N_S_soc_S_i2c_60013000) fn(DT_N_S_soc_S_spi_60024000) fn(DT_N_S_soc_S_lcd_cam_60041000) fn(DT_N_S_soc_S_uart_60038000) fn(DT_N_S_soc_S_counter_6001f000) fn(DT_N_S_soc_S_counter_6001f024) fn(DT_N_S_soc_S_counter_60020024) fn(DT_N_S_soc_S_watchdog_6001f048) fn(DT_N_S_soc_S_trng_6003507c) fn(DT_N_S_soc_S_sdhc_60028000) fn(DT_N_S_soc_S_sha_6003b000) fn(DT_N_S_soc_S_aes_6003a000) +#define DT_N_S_soc_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_soc_S_memory_42000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_3c000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_40370000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_3fc88000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_3fcf0000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_3fce5000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_3fce5400) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_50000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_600fe000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_interrupt_controller_600c2000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_uart_60000000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_gpio) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_i2c_60013000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_spi_60024000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_lcd_cam_60041000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_uart_60038000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_counter_6001f000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_counter_6001f024) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_counter_60020024) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_watchdog_6001f048) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_trng_6003507c) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_sdhc_60028000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_sha_6003b000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_aes_6003a000) +#define DT_N_S_soc_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_42000000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3c000000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_40370000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3fc88000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3fcf0000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3fce5000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3fce5400, __VA_ARGS__) fn(DT_N_S_soc_S_memory_50000000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_600fe000, __VA_ARGS__) fn(DT_N_S_soc_S_interrupt_controller_600c2000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000, __VA_ARGS__) fn(DT_N_S_soc_S_uart_60000000, __VA_ARGS__) fn(DT_N_S_soc_S_gpio, __VA_ARGS__) fn(DT_N_S_soc_S_i2c_60013000, __VA_ARGS__) fn(DT_N_S_soc_S_spi_60024000, __VA_ARGS__) fn(DT_N_S_soc_S_lcd_cam_60041000, __VA_ARGS__) fn(DT_N_S_soc_S_uart_60038000, __VA_ARGS__) fn(DT_N_S_soc_S_counter_6001f000, __VA_ARGS__) fn(DT_N_S_soc_S_counter_6001f024, __VA_ARGS__) fn(DT_N_S_soc_S_counter_60020024, __VA_ARGS__) fn(DT_N_S_soc_S_watchdog_6001f048, __VA_ARGS__) fn(DT_N_S_soc_S_trng_6003507c, __VA_ARGS__) fn(DT_N_S_soc_S_sdhc_60028000, __VA_ARGS__) fn(DT_N_S_soc_S_sha_6003b000, __VA_ARGS__) fn(DT_N_S_soc_S_aes_6003a000, __VA_ARGS__) +#define DT_N_S_soc_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_42000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_3c000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_40370000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_3fc88000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_3fcf0000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_3fce5000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_3fce5400, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_50000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_memory_600fe000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_interrupt_controller_600c2000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_uart_60000000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_gpio, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_i2c_60013000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_spi_60024000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_lcd_cam_60041000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_uart_60038000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_counter_6001f000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_counter_6001f024, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_counter_60020024, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_watchdog_6001f048, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_trng_6003507c, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_sdhc_60028000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_sha_6003b000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_aes_6003a000, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_soc_HASH DcVqqq9YzG86l3_Hk7pNncUh2rnHG8USjbVY6wBdFts + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_ORD 12 +#define DT_N_S_soc_ORD_STR_SORTABLE 00012 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_SUPPORTS_ORDS \ + 13, /* /soc/gpio */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 35, /* /soc/adc@60040000 */ \ + 36, /* /soc/adc@60040004 */ \ + 37, /* /soc/aes@6003a000 */ \ + 38, /* /soc/can@6002b000 */ \ + 39, /* /soc/coretemp@60008800 */ \ + 40, /* /soc/i2c@60013000 */ \ + 41, /* /soc/i2c@60027000 */ \ + 42, /* /soc/dma@6003f000 */ \ + 43, /* /soc/i2s@6000f000 */ \ + 44, /* /soc/i2s@6002d000 */ \ + 45, /* /soc/memory@3fce5000 */ \ + 46, /* /soc/ipm@3fce9400 */ \ + 47, /* /soc/ledc@60019000 */ \ + 48, /* /soc/mbox@3fce9408 */ \ + 49, /* /soc/mcpwm@6001e000 */ \ + 50, /* /soc/mcpwm@6002c000 */ \ + 51, /* /soc/memory@3fc88000 */ \ + 52, /* /soc/memory@3fce5400 */ \ + 53, /* /soc/memory@3fcf0000 */ \ + 54, /* /soc/memory@40370000 */ \ + 55, /* /soc/memory@42000000 */ \ + 56, /* /soc/memory@50000000 */ \ + 57, /* /soc/memory@600fe000 */ \ + 58, /* /soc/pcnt@60017000 */ \ + 59, /* /soc/rtc_timer@60008004 */ \ + 60, /* /soc/sha@6003b000 */ \ + 61, /* /soc/spi@60025000 */ \ + 62, /* /soc/touch@6000885c */ \ + 63, /* /soc/trng@6003507c */ \ + 64, /* /soc/uart@60000000 */ \ + 65, /* /soc/uart@60010000 */ \ + 66, /* /soc/uart@6002e000 */ \ + 67, /* /soc/uart@60038000 */ \ + 68, /* /soc/usb_otg@60080000 */ \ + 69, /* /soc/watchdog@6001f048 */ \ + 70, /* /soc/watchdog@60020048 */ \ + 71, /* /soc/xt_wdt@60021004 */ \ + 72, /* /soc/counter@6001f000 */ \ + 74, /* /soc/counter@6001f024 */ \ + 76, /* /soc/counter@60020000 */ \ + 78, /* /soc/counter@60020024 */ \ + 80, /* /soc/flash-controller@60002000 */ \ + 95, /* /soc/lcd_cam@60041000 */ \ + 98, /* /soc/memory@3c000000 */ \ + 100, /* /soc/sdhc@60028000 */ \ + 103, /* /soc/spi@60024000 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_EXISTS 1 +#define DT_N_INST_0_simple_bus DT_N_S_soc + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_REG_NUM 0 +#define DT_N_S_soc_FOREACH_REG(fn) +#define DT_N_S_soc_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_soc_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_soc_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_RANGES_NUM 0 +#define DT_N_S_soc_FOREACH_RANGE(fn) +#define DT_N_S_soc_IRQ_NUM 0 +#define DT_N_S_soc_IRQ_LEVEL 0 +#define DT_N_S_soc_COMPAT_MATCHES_simple_bus 1 +#define DT_N_S_soc_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_P_compatible {"simple-bus"} +#define DT_N_S_soc_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_P_compatible_IDX_0 "simple-bus" +#define DT_N_S_soc_P_compatible_IDX_0_STRING_UNQUOTED simple-bus +#define DT_N_S_soc_P_compatible_IDX_0_STRING_TOKEN simple_bus +#define DT_N_S_soc_P_compatible_IDX_0_STRING_UPPER_TOKEN SIMPLE_BUS +#define DT_N_S_soc_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc, compatible, 0) +#define DT_N_S_soc_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc, compatible, 0) +#define DT_N_S_soc_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_P_compatible_LEN 1 +#define DT_N_S_soc_P_compatible_EXISTS 1 +#define DT_N_S_soc_P_ranges_EXISTS 1 + +/* + * Devicetree node: /soc/gpio + * + * Node identifier: DT_N_S_soc_S_gpio + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_gpio_PATH "/soc/gpio" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_gpio_FULL_NAME "gpio" +#define DT_N_S_soc_S_gpio_FULL_NAME_UNQUOTED gpio +#define DT_N_S_soc_S_gpio_FULL_NAME_TOKEN gpio +#define DT_N_S_soc_S_gpio_FULL_NAME_UPPER_TOKEN GPIO + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_gpio_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_gpio_CHILD_IDX 18 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_gpio_NODELABEL_NUM 1 +#define DT_N_S_soc_S_gpio_FOREACH_NODELABEL(fn) fn(gpio) +#define DT_N_S_soc_S_gpio_FOREACH_NODELABEL_VARGS(fn, ...) fn(gpio, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_gpio_CHILD_NUM 2 +#define DT_N_S_soc_S_gpio_CHILD_NUM_STATUS_OKAY 2 +#define DT_N_S_soc_S_gpio_CHILD_UNIT_ADDR_INT_1610629120 DT_N_S_soc_S_gpio_S_gpio_60004000 +#define DT_N_S_soc_S_gpio_CHILD_UNIT_ADDR_INT_1610631168 DT_N_S_soc_S_gpio_S_gpio_60004800 +#define DT_N_S_soc_S_gpio_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_gpio_S_gpio_60004000) fn(DT_N_S_soc_S_gpio_S_gpio_60004800) +#define DT_N_S_soc_S_gpio_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_gpio_S_gpio_60004000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_gpio_S_gpio_60004800) +#define DT_N_S_soc_S_gpio_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, __VA_ARGS__) fn(DT_N_S_soc_S_gpio_S_gpio_60004800, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_gpio_S_gpio_60004800, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_soc_S_gpio_S_gpio_60004000) fn(DT_N_S_soc_S_gpio_S_gpio_60004800) +#define DT_N_S_soc_S_gpio_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_soc_S_gpio_S_gpio_60004000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_gpio_S_gpio_60004800) +#define DT_N_S_soc_S_gpio_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, __VA_ARGS__) fn(DT_N_S_soc_S_gpio_S_gpio_60004800, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_gpio_S_gpio_60004800, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_soc_S_gpio_HASH _Rog3Qc6JJHktlTnUGxRyVgQ8fH7dhqdBaaNvGKrX_E + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_gpio_ORD 13 +#define DT_N_S_soc_S_gpio_ORD_STR_SORTABLE 00013 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_gpio_REQUIRES_ORDS \ + 12, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_gpio_SUPPORTS_ORDS \ + 15, /* /soc/gpio/gpio@60004000 */ \ + 94, /* /soc/gpio/gpio@60004800 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_gpio_EXISTS 1 +#define DT_N_INST_1_simple_bus DT_N_S_soc_S_gpio +#define DT_N_NODELABEL_gpio DT_N_S_soc_S_gpio + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_gpio_REG_NUM 0 +#define DT_N_S_soc_S_gpio_FOREACH_REG(fn) +#define DT_N_S_soc_S_gpio_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_soc_S_gpio_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_soc_S_gpio_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_gpio_RANGES_NUM 0 +#define DT_N_S_soc_S_gpio_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_gpio_IRQ_NUM 0 +#define DT_N_S_soc_S_gpio_IRQ_LEVEL 0 +#define DT_N_S_soc_S_gpio_COMPAT_MATCHES_simple_bus 1 +#define DT_N_S_soc_S_gpio_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_gpio_PINCTRL_NUM 0 + +/* Map properties: */ +#define DT_N_S_soc_S_gpio_P_gpio_map_LEN 2 +#define DT_N_S_soc_S_gpio_P_gpio_map_EXISTS 1 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_0_CHILD_ADDRESS_LEN 0 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_0_CHILD_SPECIFIER_LEN 2 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_0_CHILD_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_0_CHILD_SPECIFIER_IDX_0 0 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_0_CHILD_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_0_CHILD_SPECIFIER_IDX_1 0 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_0_PARENT DT_N_S_soc_S_gpio_S_gpio_60004000 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_0_PARENT_ADDRESS_LEN 0 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_0_PARENT_SPECIFIER_LEN 2 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_0_PARENT_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_0_PARENT_SPECIFIER_IDX_0 0 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_0_PARENT_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_0_PARENT_SPECIFIER_IDX_1 0 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_1_EXISTS 1 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_1_CHILD_ADDRESS_LEN 0 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_1_CHILD_SPECIFIER_LEN 2 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_1_CHILD_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_1_CHILD_SPECIFIER_IDX_0 32 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_1_CHILD_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_1_CHILD_SPECIFIER_IDX_1 0 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_1_PARENT DT_N_S_soc_S_gpio_S_gpio_60004800 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_1_PARENT_ADDRESS_LEN 0 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_1_PARENT_SPECIFIER_LEN 2 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_1_PARENT_SPECIFIER_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_1_PARENT_SPECIFIER_IDX_0 0 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_1_PARENT_SPECIFIER_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_gpio_P_gpio_map_MAP_ENTRY_1_PARENT_SPECIFIER_IDX_1 0 +#define DT_N_S_soc_S_gpio_P_gpio_map_FOREACH_MAP_ENTRY(fn) fn(DT_N_S_soc_S_gpio, gpio_map, 0) \ + fn(DT_N_S_soc_S_gpio, gpio_map, 1) +#define DT_N_S_soc_S_gpio_P_gpio_map_FOREACH_MAP_ENTRY_SEP(fn, sep) fn(DT_N_S_soc_S_gpio, gpio_map, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_gpio, gpio_map, 1) +#define DT_N_S_soc_S_gpio_P_gpio_map_FOREACH_MAP_ENTRY_VARGS(fn, ...) fn(DT_N_S_soc_S_gpio, gpio_map, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_gpio, gpio_map, 1, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_P_gpio_map_FOREACH_MAP_ENTRY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_gpio, gpio_map, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_gpio, gpio_map, 1, __VA_ARGS__) + +/* Generic property macros: */ +#define DT_N_S_soc_S_gpio_P_compatible {"simple-bus"} +#define DT_N_S_soc_S_gpio_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_P_compatible_IDX_0 "simple-bus" +#define DT_N_S_soc_S_gpio_P_compatible_IDX_0_STRING_UNQUOTED simple-bus +#define DT_N_S_soc_S_gpio_P_compatible_IDX_0_STRING_TOKEN simple_bus +#define DT_N_S_soc_S_gpio_P_compatible_IDX_0_STRING_UPPER_TOKEN SIMPLE_BUS +#define DT_N_S_soc_S_gpio_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_gpio, compatible, 0) +#define DT_N_S_soc_S_gpio_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_gpio, compatible, 0) +#define DT_N_S_soc_S_gpio_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_gpio, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_gpio, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_P_compatible_LEN 1 +#define DT_N_S_soc_S_gpio_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_gpio_P_ranges_EXISTS 1 + +/* + * Devicetree node: /soc/interrupt-controller@600c2000 + * + * Node identifier: DT_N_S_soc_S_interrupt_controller_600c2000 + * + * Binding (compatible = espressif,esp32-intc): + * $ZEPHYR_BASE/dts/bindings/interrupt-controller/espressif,esp32-intc.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_interrupt_controller_600c2000_PATH "/soc/interrupt-controller@600c2000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_interrupt_controller_600c2000_FULL_NAME "interrupt-controller@600c2000" +#define DT_N_S_soc_S_interrupt_controller_600c2000_FULL_NAME_UNQUOTED interrupt-controller@600c2000 +#define DT_N_S_soc_S_interrupt_controller_600c2000_FULL_NAME_TOKEN interrupt_controller_600c2000 +#define DT_N_S_soc_S_interrupt_controller_600c2000_FULL_NAME_UPPER_TOKEN INTERRUPT_CONTROLLER_600C2000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_interrupt_controller_600c2000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_interrupt_controller_600c2000_CHILD_IDX 11 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_interrupt_controller_600c2000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_interrupt_controller_600c2000_FOREACH_NODELABEL(fn) fn(intc) +#define DT_N_S_soc_S_interrupt_controller_600c2000_FOREACH_NODELABEL_VARGS(fn, ...) fn(intc, __VA_ARGS__) +#define DT_N_S_soc_S_interrupt_controller_600c2000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_interrupt_controller_600c2000_CHILD_NUM 0 +#define DT_N_S_soc_S_interrupt_controller_600c2000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_interrupt_controller_600c2000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_interrupt_controller_600c2000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_interrupt_controller_600c2000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_interrupt_controller_600c2000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_interrupt_controller_600c2000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_interrupt_controller_600c2000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_interrupt_controller_600c2000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_interrupt_controller_600c2000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_interrupt_controller_600c2000_HASH aa_5tLsFNt_1Ms9EfqWWh5Pcx4U3A5ZqRyYhanacFig + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_interrupt_controller_600c2000_ORD 14 +#define DT_N_S_soc_S_interrupt_controller_600c2000_ORD_STR_SORTABLE 00014 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_interrupt_controller_600c2000_REQUIRES_ORDS \ + 12, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_interrupt_controller_600c2000_SUPPORTS_ORDS \ + 15, /* /soc/gpio/gpio@60004000 */ \ + 38, /* /soc/can@6002b000 */ \ + 40, /* /soc/i2c@60013000 */ \ + 41, /* /soc/i2c@60027000 */ \ + 42, /* /soc/dma@6003f000 */ \ + 43, /* /soc/i2s@6000f000 */ \ + 44, /* /soc/i2s@6002d000 */ \ + 46, /* /soc/ipm@3fce9400 */ \ + 48, /* /soc/mbox@3fce9408 */ \ + 49, /* /soc/mcpwm@6001e000 */ \ + 50, /* /soc/mcpwm@6002c000 */ \ + 58, /* /soc/pcnt@60017000 */ \ + 59, /* /soc/rtc_timer@60008004 */ \ + 61, /* /soc/spi@60025000 */ \ + 62, /* /soc/touch@6000885c */ \ + 64, /* /soc/uart@60000000 */ \ + 65, /* /soc/uart@60010000 */ \ + 66, /* /soc/uart@6002e000 */ \ + 67, /* /soc/uart@60038000 */ \ + 68, /* /soc/usb_otg@60080000 */ \ + 69, /* /soc/watchdog@6001f048 */ \ + 70, /* /soc/watchdog@60020048 */ \ + 71, /* /soc/xt_wdt@60021004 */ \ + 72, /* /soc/counter@6001f000 */ \ + 74, /* /soc/counter@6001f024 */ \ + 76, /* /soc/counter@60020000 */ \ + 78, /* /soc/counter@60020024 */ \ + 94, /* /soc/gpio/gpio@60004800 */ \ + 95, /* /soc/lcd_cam@60041000 */ \ + 100, /* /soc/sdhc@60028000 */ \ + 103, /* /soc/spi@60024000 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_interrupt_controller_600c2000_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_intc DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_NODELABEL_intc DT_N_S_soc_S_interrupt_controller_600c2000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_interrupt_controller_600c2000_REG_NUM 1 +#define DT_N_S_soc_S_interrupt_controller_600c2000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_600c2000_REG_IDX_0_VAL_ADDRESS 1611407360 /* 0x600c2000 */ +#define DT_N_S_soc_S_interrupt_controller_600c2000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_interrupt_controller_600c2000_FOREACH_REG(fn) fn(DT_N_S_soc_S_interrupt_controller_600c2000, 0) +#define DT_N_S_soc_S_interrupt_controller_600c2000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_interrupt_controller_600c2000, 0) +#define DT_N_S_soc_S_interrupt_controller_600c2000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_interrupt_controller_600c2000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_interrupt_controller_600c2000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_interrupt_controller_600c2000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_interrupt_controller_600c2000_RANGES_NUM 0 +#define DT_N_S_soc_S_interrupt_controller_600c2000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_interrupt_controller_600c2000_IRQ_NUM 0 +#define DT_N_S_soc_S_interrupt_controller_600c2000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_interrupt_controller_600c2000_COMPAT_MATCHES_espressif_esp32_intc 1 +#define DT_N_S_soc_S_interrupt_controller_600c2000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_600c2000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_interrupt_controller_600c2000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_600c2000_COMPAT_MODEL_IDX_0 "esp32-intc" +#define DT_N_S_soc_S_interrupt_controller_600c2000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_interrupt_controller_600c2000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_reg {1611407360 /* 0x600c2000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_reg_IDX_0 1611407360 +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_interrupt_controller 1 +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_interrupt_controller_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_status "okay" +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_interrupt_controller_600c2000, status, 0) +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_interrupt_controller_600c2000, status, 0) +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_interrupt_controller_600c2000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_interrupt_controller_600c2000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_status_LEN 1 +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_status_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_compatible {"espressif,esp32-intc"} +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_compatible_IDX_0 "espressif,esp32-intc" +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-intc +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_intc +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_INTC +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_interrupt_controller_600c2000, compatible, 0) +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_interrupt_controller_600c2000, compatible, 0) +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_interrupt_controller_600c2000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_interrupt_controller_600c2000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_compatible_LEN 1 +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_wakeup_source 0 +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_interrupt_controller_600c2000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/gpio/gpio@60004000 + * + * Node identifier: DT_N_S_soc_S_gpio_S_gpio_60004000 + * + * Binding (compatible = espressif,esp32-gpio): + * $ZEPHYR_BASE/dts/bindings/gpio/espressif,esp32-gpio.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004000_PATH "/soc/gpio/gpio@60004000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004000_FULL_NAME "gpio@60004000" +#define DT_N_S_soc_S_gpio_S_gpio_60004000_FULL_NAME_UNQUOTED gpio@60004000 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_FULL_NAME_TOKEN gpio_60004000 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_FULL_NAME_UPPER_TOKEN GPIO_60004000 + +/* Node parent (/soc/gpio) identifier: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004000_PARENT DT_N_S_soc_S_gpio + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004000_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_FOREACH_NODELABEL(fn) fn(gpio0) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_FOREACH_NODELABEL_VARGS(fn, ...) fn(gpio0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_gpio) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_gpio_S_gpio_60004000_CHILD_NUM 0 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004000_HASH xpyrJ0_bMgu640HOnNuFv0VJvKP3RQSicpWnLHTEkZ8 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004000_ORD 15 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_ORD_STR_SORTABLE 00015 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004000_REQUIRES_ORDS \ + 13, /* /soc/gpio */ \ + 14, /* /soc/interrupt-controller@600c2000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004000_SUPPORTS_ORDS \ + 16, /* /leds */ \ + 17, /* /leds/led_0 */ \ + 103, /* /soc/spi@60024000 */ \ + 104, /* /soc/spi@60024000/lora@0 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004000_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_gpio DT_N_S_soc_S_gpio_S_gpio_60004000 +#define DT_N_NODELABEL_gpio0 DT_N_S_soc_S_gpio_S_gpio_60004000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004000_REG_NUM 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_REG_IDX_0_VAL_ADDRESS 1610629120 /* 0x60004000 */ +#define DT_N_S_soc_S_gpio_S_gpio_60004000_REG_IDX_0_VAL_SIZE 2048 /* 0x800 */ +#define DT_N_S_soc_S_gpio_S_gpio_60004000_FOREACH_REG(fn) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, 0) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, 0) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_RANGES_NUM 0 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_IRQ_NUM 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_IRQ_IDX_0_VAL_irq 16 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_COMPAT_MATCHES_espressif_esp32_gpio 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_gpio_S_gpio_60004000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_COMPAT_MODEL_IDX_0 "esp32-gpio" +#define DT_N_S_soc_S_gpio_S_gpio_60004000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_reg {1610629120 /* 0x60004000 */, 2048 /* 0x800 */} +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_reg_IDX_0 1610629120 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_reg_IDX_1 2048 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_gpio_controller 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_gpio_controller_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_ngpios 32 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_ngpios_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_status "okay" +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, status, 0) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, status, 0) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_status_LEN 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_status_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_compatible {"espressif,esp32-gpio"} +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_compatible_IDX_0 "espressif,esp32-gpio" +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-gpio +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_gpio +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_GPIO +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, compatible, 0) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, compatible, 0) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_compatible_LEN 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_interrupts {16 /* 0x10 */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_interrupts_IDX_0 16 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, interrupt_parent, 0) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, interrupt_parent, 0) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_wakeup_source 0 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_gpio_S_gpio_60004000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /leds + * + * Node identifier: DT_N_S_leds + * + * Binding (compatible = gpio-leds): + * $ZEPHYR_BASE/dts/bindings/led/gpio-leds.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_leds_PATH "/leds" + +/* Node's name with unit-address: */ +#define DT_N_S_leds_FULL_NAME "leds" +#define DT_N_S_leds_FULL_NAME_UNQUOTED leds +#define DT_N_S_leds_FULL_NAME_TOKEN leds +#define DT_N_S_leds_FULL_NAME_UPPER_TOKEN LEDS + +/* Node parent (/) identifier: */ +#define DT_N_S_leds_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_leds_CHILD_IDX 9 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_leds_NODELABEL_NUM 0 +#define DT_N_S_leds_FOREACH_NODELABEL(fn) +#define DT_N_S_leds_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_leds_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_leds_CHILD_NUM 1 +#define DT_N_S_leds_CHILD_NUM_STATUS_OKAY 1 +#define DT_N_S_leds_FOREACH_CHILD(fn) fn(DT_N_S_leds_S_led_0) +#define DT_N_S_leds_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_leds_S_led_0) +#define DT_N_S_leds_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_leds_S_led_0, __VA_ARGS__) +#define DT_N_S_leds_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_leds_S_led_0, __VA_ARGS__) +#define DT_N_S_leds_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_leds_S_led_0) +#define DT_N_S_leds_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_leds_S_led_0) +#define DT_N_S_leds_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_leds_S_led_0, __VA_ARGS__) +#define DT_N_S_leds_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_leds_S_led_0, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_leds_HASH bMroFUocDdjE3kJ38dK18mDvlCOPoyya5kIIs76irj8 + +/* Node's dependency ordinal: */ +#define DT_N_S_leds_ORD 16 +#define DT_N_S_leds_ORD_STR_SORTABLE 00016 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_leds_REQUIRES_ORDS \ + 0, /* / */ \ + 15, /* /soc/gpio/gpio@60004000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_leds_SUPPORTS_ORDS \ + 17, /* /leds/led_0 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_leds_EXISTS 1 +#define DT_N_INST_0_gpio_leds DT_N_S_leds + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_leds_REG_NUM 0 +#define DT_N_S_leds_FOREACH_REG(fn) +#define DT_N_S_leds_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_leds_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_leds_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_leds_RANGES_NUM 0 +#define DT_N_S_leds_FOREACH_RANGE(fn) +#define DT_N_S_leds_IRQ_NUM 0 +#define DT_N_S_leds_IRQ_LEVEL 0 +#define DT_N_S_leds_COMPAT_MATCHES_gpio_leds 1 +#define DT_N_S_leds_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_leds_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_leds_P_compatible {"gpio-leds"} +#define DT_N_S_leds_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_leds_P_compatible_IDX_0 "gpio-leds" +#define DT_N_S_leds_P_compatible_IDX_0_STRING_UNQUOTED gpio-leds +#define DT_N_S_leds_P_compatible_IDX_0_STRING_TOKEN gpio_leds +#define DT_N_S_leds_P_compatible_IDX_0_STRING_UPPER_TOKEN GPIO_LEDS +#define DT_N_S_leds_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_leds, compatible, 0) +#define DT_N_S_leds_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_leds, compatible, 0) +#define DT_N_S_leds_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_leds, compatible, 0, __VA_ARGS__) +#define DT_N_S_leds_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_leds, compatible, 0, __VA_ARGS__) +#define DT_N_S_leds_P_compatible_LEN 1 +#define DT_N_S_leds_P_compatible_EXISTS 1 + +/* + * Devicetree node: /leds/led_0 + * + * Node identifier: DT_N_S_leds_S_led_0 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_leds_S_led_0_PATH "/leds/led_0" + +/* Node's name with unit-address: */ +#define DT_N_S_leds_S_led_0_FULL_NAME "led_0" +#define DT_N_S_leds_S_led_0_FULL_NAME_UNQUOTED led_0 +#define DT_N_S_leds_S_led_0_FULL_NAME_TOKEN led_0 +#define DT_N_S_leds_S_led_0_FULL_NAME_UPPER_TOKEN LED_0 + +/* Node parent (/leds) identifier: */ +#define DT_N_S_leds_S_led_0_PARENT DT_N_S_leds + +/* Node's index in its parent's list of children: */ +#define DT_N_S_leds_S_led_0_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_leds_S_led_0_NODELABEL_NUM 1 +#define DT_N_S_leds_S_led_0_FOREACH_NODELABEL(fn) fn(led0) +#define DT_N_S_leds_S_led_0_FOREACH_NODELABEL_VARGS(fn, ...) fn(led0, __VA_ARGS__) +#define DT_N_S_leds_S_led_0_FOREACH_ANCESTOR(fn) fn(DT_N_S_leds) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_leds_S_led_0_CHILD_NUM 0 +#define DT_N_S_leds_S_led_0_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_leds_S_led_0_FOREACH_CHILD(fn) +#define DT_N_S_leds_S_led_0_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_leds_S_led_0_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_leds_S_led_0_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_leds_S_led_0_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_leds_S_led_0_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_leds_S_led_0_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_leds_S_led_0_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_leds_S_led_0_HASH kqSZv01Dnr_1hPdmxPVlr9u8kLMk_UWHIyVHG3GknSY + +/* Node's dependency ordinal: */ +#define DT_N_S_leds_S_led_0_ORD 17 +#define DT_N_S_leds_S_led_0_ORD_STR_SORTABLE 00017 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_leds_S_led_0_REQUIRES_ORDS \ + 15, /* /soc/gpio/gpio@60004000 */ \ + 16, /* /leds */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_leds_S_led_0_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_leds_S_led_0_EXISTS 1 +#define DT_N_ALIAS_led0 DT_N_S_leds_S_led_0 +#define DT_N_NODELABEL_led0 DT_N_S_leds_S_led_0 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_leds_S_led_0_REG_NUM 0 +#define DT_N_S_leds_S_led_0_FOREACH_REG(fn) +#define DT_N_S_leds_S_led_0_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_leds_S_led_0_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_leds_S_led_0_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_leds_S_led_0_RANGES_NUM 0 +#define DT_N_S_leds_S_led_0_FOREACH_RANGE(fn) +#define DT_N_S_leds_S_led_0_IRQ_NUM 0 +#define DT_N_S_leds_S_led_0_IRQ_LEVEL 0 +#define DT_N_S_leds_S_led_0_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_leds_S_led_0_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_EXISTS 1 +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_PH DT_N_S_soc_S_gpio_S_gpio_60004000 +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_VAL_pin 21 +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_VAL_flags 1 +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_leds_S_led_0, gpios, 0, pin) \ + fn(DT_N_S_leds_S_led_0, gpios, 0, flags) +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_leds_S_led_0, gpios, 0, pin) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_leds_S_led_0, gpios, 0, flags) +#define DT_N_S_leds_S_led_0_P_gpios_IDX_0_NUM_CELLS 2 +#define DT_N_S_leds_S_led_0_P_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_leds_S_led_0, gpios, 0) +#define DT_N_S_leds_S_led_0_P_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_leds_S_led_0, gpios, 0) +#define DT_N_S_leds_S_led_0_P_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_leds_S_led_0, gpios, 0, __VA_ARGS__) +#define DT_N_S_leds_S_led_0_P_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_leds_S_led_0, gpios, 0, __VA_ARGS__) +#define DT_N_S_leds_S_led_0_P_gpios_LEN 1 +#define DT_N_S_leds_S_led_0_P_gpios_EXISTS 1 +#define DT_N_S_leds_S_led_0_P_label "BUILTIN LED" +#define DT_N_S_leds_S_led_0_P_label_STRING_UNQUOTED BUILTIN LED +#define DT_N_S_leds_S_led_0_P_label_STRING_TOKEN BUILTIN_LED +#define DT_N_S_leds_S_led_0_P_label_STRING_UPPER_TOKEN BUILTIN_LED +#define DT_N_S_leds_S_led_0_P_label_IDX_0 "BUILTIN LED" +#define DT_N_S_leds_S_led_0_P_label_IDX_0_EXISTS 1 +#define DT_N_S_leds_S_led_0_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_leds_S_led_0, label, 0) +#define DT_N_S_leds_S_led_0_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_leds_S_led_0, label, 0) +#define DT_N_S_leds_S_led_0_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_leds_S_led_0, label, 0, __VA_ARGS__) +#define DT_N_S_leds_S_led_0_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_leds_S_led_0, label, 0, __VA_ARGS__) +#define DT_N_S_leds_S_led_0_P_label_LEN 1 +#define DT_N_S_leds_S_led_0_P_label_EXISTS 1 + +/* + * Devicetree node: /pin-controller + * + * Node identifier: DT_N_S_pin_controller + * + * Binding (compatible = espressif,esp32-pinctrl): + * $ZEPHYR_BASE/dts/bindings/pinctrl/espressif,esp32-pinctrl.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_pin_controller_PATH "/pin-controller" + +/* Node's name with unit-address: */ +#define DT_N_S_pin_controller_FULL_NAME "pin-controller" +#define DT_N_S_pin_controller_FULL_NAME_UNQUOTED pin-controller +#define DT_N_S_pin_controller_FULL_NAME_TOKEN pin_controller +#define DT_N_S_pin_controller_FULL_NAME_UPPER_TOKEN PIN_CONTROLLER + +/* Node parent (/) identifier: */ +#define DT_N_S_pin_controller_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_pin_controller_CHILD_IDX 6 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_pin_controller_NODELABEL_NUM 1 +#define DT_N_S_pin_controller_FOREACH_NODELABEL(fn) fn(pinctrl) +#define DT_N_S_pin_controller_FOREACH_NODELABEL_VARGS(fn, ...) fn(pinctrl, __VA_ARGS__) +#define DT_N_S_pin_controller_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_pin_controller_CHILD_NUM 6 +#define DT_N_S_pin_controller_CHILD_NUM_STATUS_OKAY 6 +#define DT_N_S_pin_controller_FOREACH_CHILD(fn) fn(DT_N_S_pin_controller_S_uart0_default) fn(DT_N_S_pin_controller_S_spim2_default) fn(DT_N_S_pin_controller_S_i2c0_default) fn(DT_N_S_pin_controller_S_i2c1_default) fn(DT_N_S_pin_controller_S_lcd_cam_default) fn(DT_N_S_pin_controller_S_twai_default) +#define DT_N_S_pin_controller_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_pin_controller_S_uart0_default) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_spim2_default) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_i2c0_default) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_i2c1_default) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_lcd_cam_default) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_twai_default) +#define DT_N_S_pin_controller_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_uart0_default, __VA_ARGS__) fn(DT_N_S_pin_controller_S_spim2_default, __VA_ARGS__) fn(DT_N_S_pin_controller_S_i2c0_default, __VA_ARGS__) fn(DT_N_S_pin_controller_S_i2c1_default, __VA_ARGS__) fn(DT_N_S_pin_controller_S_lcd_cam_default, __VA_ARGS__) fn(DT_N_S_pin_controller_S_twai_default, __VA_ARGS__) +#define DT_N_S_pin_controller_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_uart0_default, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_spim2_default, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_i2c0_default, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_i2c1_default, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_lcd_cam_default, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_twai_default, __VA_ARGS__) +#define DT_N_S_pin_controller_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_pin_controller_S_uart0_default) fn(DT_N_S_pin_controller_S_spim2_default) fn(DT_N_S_pin_controller_S_i2c0_default) fn(DT_N_S_pin_controller_S_i2c1_default) fn(DT_N_S_pin_controller_S_lcd_cam_default) fn(DT_N_S_pin_controller_S_twai_default) +#define DT_N_S_pin_controller_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_pin_controller_S_uart0_default) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_spim2_default) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_i2c0_default) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_i2c1_default) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_lcd_cam_default) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_twai_default) +#define DT_N_S_pin_controller_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_uart0_default, __VA_ARGS__) fn(DT_N_S_pin_controller_S_spim2_default, __VA_ARGS__) fn(DT_N_S_pin_controller_S_i2c0_default, __VA_ARGS__) fn(DT_N_S_pin_controller_S_i2c1_default, __VA_ARGS__) fn(DT_N_S_pin_controller_S_lcd_cam_default, __VA_ARGS__) fn(DT_N_S_pin_controller_S_twai_default, __VA_ARGS__) +#define DT_N_S_pin_controller_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_uart0_default, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_spim2_default, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_i2c0_default, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_i2c1_default, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_lcd_cam_default, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_twai_default, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_pin_controller_HASH bWf59uCG_pY5hQAcoRx7FSfuctl8KNxAtmdgsI6QClA + +/* Node's dependency ordinal: */ +#define DT_N_S_pin_controller_ORD 18 +#define DT_N_S_pin_controller_ORD_STR_SORTABLE 00018 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_pin_controller_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_pin_controller_SUPPORTS_ORDS \ + 19, /* /pin-controller/i2c0_default */ \ + 21, /* /pin-controller/i2c1_default */ \ + 23, /* /pin-controller/lcd_cam_default */ \ + 26, /* /pin-controller/spim2_default */ \ + 29, /* /pin-controller/twai_default */ \ + 31, /* /pin-controller/uart0_default */ + +/* Existence and alternate IDs: */ +#define DT_N_S_pin_controller_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_pinctrl DT_N_S_pin_controller +#define DT_N_NODELABEL_pinctrl DT_N_S_pin_controller + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_pin_controller_REG_NUM 0 +#define DT_N_S_pin_controller_FOREACH_REG(fn) +#define DT_N_S_pin_controller_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_pin_controller_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_pin_controller_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_RANGES_NUM 0 +#define DT_N_S_pin_controller_FOREACH_RANGE(fn) +#define DT_N_S_pin_controller_IRQ_NUM 0 +#define DT_N_S_pin_controller_IRQ_LEVEL 0 +#define DT_N_S_pin_controller_COMPAT_MATCHES_espressif_esp32_pinctrl 1 +#define DT_N_S_pin_controller_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_pin_controller_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_pin_controller_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_pin_controller_COMPAT_MODEL_IDX_0 "esp32-pinctrl" +#define DT_N_S_pin_controller_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_pin_controller_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_pin_controller_P_status "okay" +#define DT_N_S_pin_controller_P_status_STRING_UNQUOTED okay +#define DT_N_S_pin_controller_P_status_STRING_TOKEN okay +#define DT_N_S_pin_controller_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_pin_controller_P_status_IDX_0 "okay" +#define DT_N_S_pin_controller_P_status_IDX_0_EXISTS 1 +#define DT_N_S_pin_controller_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_pin_controller_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_pin_controller_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_pin_controller_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_pin_controller, status, 0) +#define DT_N_S_pin_controller_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_pin_controller, status, 0) +#define DT_N_S_pin_controller_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_pin_controller, status, 0, __VA_ARGS__) +#define DT_N_S_pin_controller_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller, status, 0, __VA_ARGS__) +#define DT_N_S_pin_controller_P_status_LEN 1 +#define DT_N_S_pin_controller_P_status_EXISTS 1 +#define DT_N_S_pin_controller_P_compatible {"espressif,esp32-pinctrl"} +#define DT_N_S_pin_controller_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_pin_controller_P_compatible_IDX_0 "espressif,esp32-pinctrl" +#define DT_N_S_pin_controller_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-pinctrl +#define DT_N_S_pin_controller_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_pinctrl +#define DT_N_S_pin_controller_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_PINCTRL +#define DT_N_S_pin_controller_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_pin_controller, compatible, 0) +#define DT_N_S_pin_controller_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_pin_controller, compatible, 0) +#define DT_N_S_pin_controller_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_pin_controller, compatible, 0, __VA_ARGS__) +#define DT_N_S_pin_controller_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller, compatible, 0, __VA_ARGS__) +#define DT_N_S_pin_controller_P_compatible_LEN 1 +#define DT_N_S_pin_controller_P_compatible_EXISTS 1 +#define DT_N_S_pin_controller_P_zephyr_deferred_init 0 +#define DT_N_S_pin_controller_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_pin_controller_P_wakeup_source 0 +#define DT_N_S_pin_controller_P_wakeup_source_EXISTS 1 +#define DT_N_S_pin_controller_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_pin_controller_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /pin-controller/i2c0_default + * + * Node identifier: DT_N_S_pin_controller_S_i2c0_default + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_pin_controller_S_i2c0_default_PATH "/pin-controller/i2c0_default" + +/* Node's name with unit-address: */ +#define DT_N_S_pin_controller_S_i2c0_default_FULL_NAME "i2c0_default" +#define DT_N_S_pin_controller_S_i2c0_default_FULL_NAME_UNQUOTED i2c0_default +#define DT_N_S_pin_controller_S_i2c0_default_FULL_NAME_TOKEN i2c0_default +#define DT_N_S_pin_controller_S_i2c0_default_FULL_NAME_UPPER_TOKEN I2C0_DEFAULT + +/* Node parent (/pin-controller) identifier: */ +#define DT_N_S_pin_controller_S_i2c0_default_PARENT DT_N_S_pin_controller + +/* Node's index in its parent's list of children: */ +#define DT_N_S_pin_controller_S_i2c0_default_CHILD_IDX 2 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_pin_controller_S_i2c0_default_NODELABEL_NUM 1 +#define DT_N_S_pin_controller_S_i2c0_default_FOREACH_NODELABEL(fn) fn(i2c0_default) +#define DT_N_S_pin_controller_S_i2c0_default_FOREACH_NODELABEL_VARGS(fn, ...) fn(i2c0_default, __VA_ARGS__) +#define DT_N_S_pin_controller_S_i2c0_default_FOREACH_ANCESTOR(fn) fn(DT_N_S_pin_controller) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_pin_controller_S_i2c0_default_CHILD_NUM 1 +#define DT_N_S_pin_controller_S_i2c0_default_CHILD_NUM_STATUS_OKAY 1 +#define DT_N_S_pin_controller_S_i2c0_default_FOREACH_CHILD(fn) fn(DT_N_S_pin_controller_S_i2c0_default_S_group1) +#define DT_N_S_pin_controller_S_i2c0_default_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_pin_controller_S_i2c0_default_S_group1) +#define DT_N_S_pin_controller_S_i2c0_default_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_i2c0_default_S_group1, __VA_ARGS__) +#define DT_N_S_pin_controller_S_i2c0_default_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_i2c0_default_S_group1, __VA_ARGS__) +#define DT_N_S_pin_controller_S_i2c0_default_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_pin_controller_S_i2c0_default_S_group1) +#define DT_N_S_pin_controller_S_i2c0_default_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_pin_controller_S_i2c0_default_S_group1) +#define DT_N_S_pin_controller_S_i2c0_default_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_i2c0_default_S_group1, __VA_ARGS__) +#define DT_N_S_pin_controller_S_i2c0_default_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_i2c0_default_S_group1, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_pin_controller_S_i2c0_default_HASH jwLAya2l1n5eq23pU58aJBqJOApGFQeY8GlS09jN_X8 + +/* Node's dependency ordinal: */ +#define DT_N_S_pin_controller_S_i2c0_default_ORD 19 +#define DT_N_S_pin_controller_S_i2c0_default_ORD_STR_SORTABLE 00019 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_pin_controller_S_i2c0_default_REQUIRES_ORDS \ + 18, /* /pin-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_pin_controller_S_i2c0_default_SUPPORTS_ORDS \ + 20, /* /pin-controller/i2c0_default/group1 */ \ + 40, /* /soc/i2c@60013000 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_pin_controller_S_i2c0_default_EXISTS 1 +#define DT_N_NODELABEL_i2c0_default DT_N_S_pin_controller_S_i2c0_default + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_pin_controller_S_i2c0_default_REG_NUM 0 +#define DT_N_S_pin_controller_S_i2c0_default_FOREACH_REG(fn) +#define DT_N_S_pin_controller_S_i2c0_default_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_pin_controller_S_i2c0_default_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_i2c0_default_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_i2c0_default_RANGES_NUM 0 +#define DT_N_S_pin_controller_S_i2c0_default_FOREACH_RANGE(fn) +#define DT_N_S_pin_controller_S_i2c0_default_IRQ_NUM 0 +#define DT_N_S_pin_controller_S_i2c0_default_IRQ_LEVEL 0 +#define DT_N_S_pin_controller_S_i2c0_default_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_pin_controller_S_i2c0_default_PINCTRL_NUM 0 + +/* (No generic property macros) */ + +/* + * Devicetree node: /pin-controller/i2c0_default/group1 + * + * Node identifier: DT_N_S_pin_controller_S_i2c0_default_S_group1 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_PATH "/pin-controller/i2c0_default/group1" + +/* Node's name with unit-address: */ +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_FULL_NAME "group1" +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_FULL_NAME_UNQUOTED group1 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_FULL_NAME_TOKEN group1 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_FULL_NAME_UPPER_TOKEN GROUP1 + +/* Node parent (/pin-controller/i2c0_default) identifier: */ +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_PARENT DT_N_S_pin_controller_S_i2c0_default + +/* Node's index in its parent's list of children: */ +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_NODELABEL_NUM 0 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_FOREACH_NODELABEL(fn) +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_FOREACH_ANCESTOR(fn) fn(DT_N_S_pin_controller_S_i2c0_default) fn(DT_N_S_pin_controller) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_CHILD_NUM 0 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_FOREACH_CHILD(fn) +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_HASH _HSqkKDjPxhuu0z84CDy13StRYiLrOnhQel0xHxUxuM + +/* Node's dependency ordinal: */ +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_ORD 20 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_ORD_STR_SORTABLE 00020 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_REQUIRES_ORDS \ + 19, /* /pin-controller/i2c0_default */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_REG_NUM 0 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_FOREACH_REG(fn) +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_RANGES_NUM 0 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_FOREACH_RANGE(fn) +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_IRQ_NUM 0 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_IRQ_LEVEL 0 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_pinmux {2954885 /* 0x2d1685 */, 2922054 /* 0x2c9646 */} +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_pinmux_IDX_0_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_pinmux_IDX_0 2954885 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_pinmux_IDX_1_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_pinmux_IDX_1 2922054 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_pinmux_FOREACH_PROP_ELEM(fn) fn(DT_N_S_pin_controller_S_i2c0_default_S_group1, pinmux, 0) \ + fn(DT_N_S_pin_controller_S_i2c0_default_S_group1, pinmux, 1) +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_pinmux_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_pin_controller_S_i2c0_default_S_group1, pinmux, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_i2c0_default_S_group1, pinmux, 1) +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_pinmux_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_i2c0_default_S_group1, pinmux, 0, __VA_ARGS__) \ + fn(DT_N_S_pin_controller_S_i2c0_default_S_group1, pinmux, 1, __VA_ARGS__) +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_pinmux_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_i2c0_default_S_group1, pinmux, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_i2c0_default_S_group1, pinmux, 1, __VA_ARGS__) +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_pinmux_LEN 2 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_pinmux_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_sleep_hold_en 0 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_sleep_hold_en_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_bias_disable 0 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_bias_disable_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_bias_pull_up 1 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_bias_pull_up_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_bias_pull_down 0 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_bias_pull_down_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_drive_push_pull 0 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_drive_push_pull_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_drive_open_drain 1 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_drive_open_drain_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_input_enable 0 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_input_enable_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_output_enable 0 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_output_enable_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_output_low 0 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_output_low_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_output_high 1 +#define DT_N_S_pin_controller_S_i2c0_default_S_group1_P_output_high_EXISTS 1 + +/* + * Devicetree node: /pin-controller/i2c1_default + * + * Node identifier: DT_N_S_pin_controller_S_i2c1_default + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_pin_controller_S_i2c1_default_PATH "/pin-controller/i2c1_default" + +/* Node's name with unit-address: */ +#define DT_N_S_pin_controller_S_i2c1_default_FULL_NAME "i2c1_default" +#define DT_N_S_pin_controller_S_i2c1_default_FULL_NAME_UNQUOTED i2c1_default +#define DT_N_S_pin_controller_S_i2c1_default_FULL_NAME_TOKEN i2c1_default +#define DT_N_S_pin_controller_S_i2c1_default_FULL_NAME_UPPER_TOKEN I2C1_DEFAULT + +/* Node parent (/pin-controller) identifier: */ +#define DT_N_S_pin_controller_S_i2c1_default_PARENT DT_N_S_pin_controller + +/* Node's index in its parent's list of children: */ +#define DT_N_S_pin_controller_S_i2c1_default_CHILD_IDX 3 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_pin_controller_S_i2c1_default_NODELABEL_NUM 1 +#define DT_N_S_pin_controller_S_i2c1_default_FOREACH_NODELABEL(fn) fn(i2c1_default) +#define DT_N_S_pin_controller_S_i2c1_default_FOREACH_NODELABEL_VARGS(fn, ...) fn(i2c1_default, __VA_ARGS__) +#define DT_N_S_pin_controller_S_i2c1_default_FOREACH_ANCESTOR(fn) fn(DT_N_S_pin_controller) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_pin_controller_S_i2c1_default_CHILD_NUM 1 +#define DT_N_S_pin_controller_S_i2c1_default_CHILD_NUM_STATUS_OKAY 1 +#define DT_N_S_pin_controller_S_i2c1_default_FOREACH_CHILD(fn) fn(DT_N_S_pin_controller_S_i2c1_default_S_group1) +#define DT_N_S_pin_controller_S_i2c1_default_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_pin_controller_S_i2c1_default_S_group1) +#define DT_N_S_pin_controller_S_i2c1_default_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_i2c1_default_S_group1, __VA_ARGS__) +#define DT_N_S_pin_controller_S_i2c1_default_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_i2c1_default_S_group1, __VA_ARGS__) +#define DT_N_S_pin_controller_S_i2c1_default_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_pin_controller_S_i2c1_default_S_group1) +#define DT_N_S_pin_controller_S_i2c1_default_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_pin_controller_S_i2c1_default_S_group1) +#define DT_N_S_pin_controller_S_i2c1_default_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_i2c1_default_S_group1, __VA_ARGS__) +#define DT_N_S_pin_controller_S_i2c1_default_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_i2c1_default_S_group1, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_pin_controller_S_i2c1_default_HASH XO1mymgcvFsuC9DhMfptRTCQBeKGbvb0Ib2nQh8oc7M + +/* Node's dependency ordinal: */ +#define DT_N_S_pin_controller_S_i2c1_default_ORD 21 +#define DT_N_S_pin_controller_S_i2c1_default_ORD_STR_SORTABLE 00021 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_pin_controller_S_i2c1_default_REQUIRES_ORDS \ + 18, /* /pin-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_pin_controller_S_i2c1_default_SUPPORTS_ORDS \ + 22, /* /pin-controller/i2c1_default/group1 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_pin_controller_S_i2c1_default_EXISTS 1 +#define DT_N_NODELABEL_i2c1_default DT_N_S_pin_controller_S_i2c1_default + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_pin_controller_S_i2c1_default_REG_NUM 0 +#define DT_N_S_pin_controller_S_i2c1_default_FOREACH_REG(fn) +#define DT_N_S_pin_controller_S_i2c1_default_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_pin_controller_S_i2c1_default_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_i2c1_default_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_i2c1_default_RANGES_NUM 0 +#define DT_N_S_pin_controller_S_i2c1_default_FOREACH_RANGE(fn) +#define DT_N_S_pin_controller_S_i2c1_default_IRQ_NUM 0 +#define DT_N_S_pin_controller_S_i2c1_default_IRQ_LEVEL 0 +#define DT_N_S_pin_controller_S_i2c1_default_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_pin_controller_S_i2c1_default_PINCTRL_NUM 0 + +/* (No generic property macros) */ + +/* + * Devicetree node: /pin-controller/i2c1_default/group1 + * + * Node identifier: DT_N_S_pin_controller_S_i2c1_default_S_group1 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_PATH "/pin-controller/i2c1_default/group1" + +/* Node's name with unit-address: */ +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_FULL_NAME "group1" +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_FULL_NAME_UNQUOTED group1 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_FULL_NAME_TOKEN group1 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_FULL_NAME_UPPER_TOKEN GROUP1 + +/* Node parent (/pin-controller/i2c1_default) identifier: */ +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_PARENT DT_N_S_pin_controller_S_i2c1_default + +/* Node's index in its parent's list of children: */ +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_NODELABEL_NUM 0 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_FOREACH_NODELABEL(fn) +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_FOREACH_ANCESTOR(fn) fn(DT_N_S_pin_controller_S_i2c1_default) fn(DT_N_S_pin_controller) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_CHILD_NUM 0 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_FOREACH_CHILD(fn) +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_HASH cUGMjaLJ_EMYBWGL8KTvzJXC89iE0MLZ6zre2oO0xVA + +/* Node's dependency ordinal: */ +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_ORD 22 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_ORD_STR_SORTABLE 00022 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_REQUIRES_ORDS \ + 21, /* /pin-controller/i2c1_default */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_REG_NUM 0 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_FOREACH_REG(fn) +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_RANGES_NUM 0 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_FOREACH_RANGE(fn) +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_IRQ_NUM 0 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_IRQ_LEVEL 0 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_pinmux {3020584 /* 0x2e1728 */, 2987751 /* 0x2d96e7 */} +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_pinmux_IDX_0_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_pinmux_IDX_0 3020584 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_pinmux_IDX_1_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_pinmux_IDX_1 2987751 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_pinmux_FOREACH_PROP_ELEM(fn) fn(DT_N_S_pin_controller_S_i2c1_default_S_group1, pinmux, 0) \ + fn(DT_N_S_pin_controller_S_i2c1_default_S_group1, pinmux, 1) +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_pinmux_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_pin_controller_S_i2c1_default_S_group1, pinmux, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_i2c1_default_S_group1, pinmux, 1) +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_pinmux_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_i2c1_default_S_group1, pinmux, 0, __VA_ARGS__) \ + fn(DT_N_S_pin_controller_S_i2c1_default_S_group1, pinmux, 1, __VA_ARGS__) +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_pinmux_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_i2c1_default_S_group1, pinmux, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_i2c1_default_S_group1, pinmux, 1, __VA_ARGS__) +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_pinmux_LEN 2 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_pinmux_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_sleep_hold_en 0 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_sleep_hold_en_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_bias_disable 0 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_bias_disable_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_bias_pull_up 1 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_bias_pull_up_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_bias_pull_down 0 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_bias_pull_down_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_drive_push_pull 0 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_drive_push_pull_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_drive_open_drain 1 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_drive_open_drain_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_input_enable 0 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_input_enable_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_output_enable 0 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_output_enable_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_output_low 0 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_output_low_EXISTS 1 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_output_high 1 +#define DT_N_S_pin_controller_S_i2c1_default_S_group1_P_output_high_EXISTS 1 + +/* + * Devicetree node: /pin-controller/lcd_cam_default + * + * Node identifier: DT_N_S_pin_controller_S_lcd_cam_default + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_PATH "/pin-controller/lcd_cam_default" + +/* Node's name with unit-address: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_FULL_NAME "lcd_cam_default" +#define DT_N_S_pin_controller_S_lcd_cam_default_FULL_NAME_UNQUOTED lcd_cam_default +#define DT_N_S_pin_controller_S_lcd_cam_default_FULL_NAME_TOKEN lcd_cam_default +#define DT_N_S_pin_controller_S_lcd_cam_default_FULL_NAME_UPPER_TOKEN LCD_CAM_DEFAULT + +/* Node parent (/pin-controller) identifier: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_PARENT DT_N_S_pin_controller + +/* Node's index in its parent's list of children: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_CHILD_IDX 4 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_NODELABEL_NUM 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_FOREACH_NODELABEL(fn) fn(lcd_cam_default) +#define DT_N_S_pin_controller_S_lcd_cam_default_FOREACH_NODELABEL_VARGS(fn, ...) fn(lcd_cam_default, __VA_ARGS__) +#define DT_N_S_pin_controller_S_lcd_cam_default_FOREACH_ANCESTOR(fn) fn(DT_N_S_pin_controller) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_pin_controller_S_lcd_cam_default_CHILD_NUM 2 +#define DT_N_S_pin_controller_S_lcd_cam_default_CHILD_NUM_STATUS_OKAY 2 +#define DT_N_S_pin_controller_S_lcd_cam_default_FOREACH_CHILD(fn) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group1) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2) +#define DT_N_S_pin_controller_S_lcd_cam_default_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group1) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2) +#define DT_N_S_pin_controller_S_lcd_cam_default_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group1, __VA_ARGS__) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, __VA_ARGS__) +#define DT_N_S_pin_controller_S_lcd_cam_default_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, __VA_ARGS__) +#define DT_N_S_pin_controller_S_lcd_cam_default_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group1) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2) +#define DT_N_S_pin_controller_S_lcd_cam_default_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group1) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2) +#define DT_N_S_pin_controller_S_lcd_cam_default_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group1, __VA_ARGS__) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, __VA_ARGS__) +#define DT_N_S_pin_controller_S_lcd_cam_default_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_HASH cc4nd9Q_bntppLXPFXNAdS9VMYoHotw76QqHsq3y4ag + +/* Node's dependency ordinal: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_ORD 23 +#define DT_N_S_pin_controller_S_lcd_cam_default_ORD_STR_SORTABLE 00023 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_REQUIRES_ORDS \ + 18, /* /pin-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_SUPPORTS_ORDS \ + 24, /* /pin-controller/lcd_cam_default/group1 */ \ + 25, /* /pin-controller/lcd_cam_default/group2 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_EXISTS 1 +#define DT_N_NODELABEL_lcd_cam_default DT_N_S_pin_controller_S_lcd_cam_default + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_REG_NUM 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_FOREACH_REG(fn) +#define DT_N_S_pin_controller_S_lcd_cam_default_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_pin_controller_S_lcd_cam_default_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_lcd_cam_default_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_lcd_cam_default_RANGES_NUM 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_FOREACH_RANGE(fn) +#define DT_N_S_pin_controller_S_lcd_cam_default_IRQ_NUM 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_IRQ_LEVEL 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_PINCTRL_NUM 0 + +/* (No generic property macros) */ + +/* + * Devicetree node: /pin-controller/lcd_cam_default/group1 + * + * Node identifier: DT_N_S_pin_controller_S_lcd_cam_default_S_group1 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_PATH "/pin-controller/lcd_cam_default/group1" + +/* Node's name with unit-address: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_FULL_NAME "group1" +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_FULL_NAME_UNQUOTED group1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_FULL_NAME_TOKEN group1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_FULL_NAME_UPPER_TOKEN GROUP1 + +/* Node parent (/pin-controller/lcd_cam_default) identifier: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_PARENT DT_N_S_pin_controller_S_lcd_cam_default + +/* Node's index in its parent's list of children: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_NODELABEL_NUM 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_FOREACH_NODELABEL(fn) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_FOREACH_ANCESTOR(fn) fn(DT_N_S_pin_controller_S_lcd_cam_default) fn(DT_N_S_pin_controller) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_CHILD_NUM 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_FOREACH_CHILD(fn) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_HASH u4lv_6aO7I4Z5kQqBWuFZ892RNzEQD9zNw0xNRIyZDc + +/* Node's dependency ordinal: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_ORD 24 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_ORD_STR_SORTABLE 00024 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_REQUIRES_ORDS \ + 23, /* /pin-controller/lcd_cam_default */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_REG_NUM 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_FOREACH_REG(fn) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_RANGES_NUM 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_FOREACH_RANGE(fn) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_IRQ_NUM 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_IRQ_LEVEL 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_pinmux {4915146 /* 0x4affca */} +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_pinmux_IDX_0_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_pinmux_IDX_0 4915146 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_pinmux_FOREACH_PROP_ELEM(fn) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group1, pinmux, 0) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_pinmux_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group1, pinmux, 0) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_pinmux_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group1, pinmux, 0, __VA_ARGS__) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_pinmux_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group1, pinmux, 0, __VA_ARGS__) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_pinmux_LEN 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_pinmux_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_sleep_hold_en 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_sleep_hold_en_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_bias_disable 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_bias_disable_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_bias_pull_up 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_bias_pull_up_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_bias_pull_down 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_bias_pull_down_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_drive_push_pull 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_drive_push_pull_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_drive_open_drain 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_drive_open_drain_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_input_enable 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_input_enable_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_output_enable 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_output_enable_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_output_low 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_output_low_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_output_high 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group1_P_output_high_EXISTS 1 + +/* + * Devicetree node: /pin-controller/lcd_cam_default/group2 + * + * Node identifier: DT_N_S_pin_controller_S_lcd_cam_default_S_group2 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_PATH "/pin-controller/lcd_cam_default/group2" + +/* Node's name with unit-address: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_FULL_NAME "group2" +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_FULL_NAME_UNQUOTED group2 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_FULL_NAME_TOKEN group2 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_FULL_NAME_UPPER_TOKEN GROUP2 + +/* Node parent (/pin-controller/lcd_cam_default) identifier: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_PARENT DT_N_S_pin_controller_S_lcd_cam_default + +/* Node's index in its parent's list of children: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_NODELABEL_NUM 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_FOREACH_NODELABEL(fn) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_FOREACH_ANCESTOR(fn) fn(DT_N_S_pin_controller_S_lcd_cam_default) fn(DT_N_S_pin_controller) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_CHILD_NUM 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_FOREACH_CHILD(fn) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_HASH uk5XAHy9CB_Fe_ZvzvA8d1asntYcOssg_OgqIILy5Vc + +/* Node's dependency ordinal: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_ORD 25 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_ORD_STR_SORTABLE 00025 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_REQUIRES_ORDS \ + 23, /* /pin-controller/lcd_cam_default */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_REG_NUM 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_FOREACH_REG(fn) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_RANGES_NUM 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_FOREACH_RANGE(fn) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_IRQ_NUM 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_IRQ_LEVEL 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux {16754214 /* 0xffa626 */, 16754095 /* 0xffa5af */, 16753997 /* 0xffa54d */, 16752975 /* 0xffa14f */, 16753041 /* 0xffa191 */, 16753106 /* 0xffa1d2 */, 16753168 /* 0xffa210 */, 16753230 /* 0xffa24e */, 16753292 /* 0xffa28c */, 16753355 /* 0xffa2cb */, 16753456 /* 0xffa330 */} +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_IDX_0_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_IDX_0 16754214 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_IDX_1_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_IDX_1 16754095 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_IDX_2_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_IDX_2 16753997 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_IDX_3_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_IDX_3 16752975 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_IDX_4_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_IDX_4 16753041 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_IDX_5_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_IDX_5 16753106 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_IDX_6_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_IDX_6 16753168 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_IDX_7_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_IDX_7 16753230 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_IDX_8_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_IDX_8 16753292 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_IDX_9_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_IDX_9 16753355 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_IDX_10_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_IDX_10 16753456 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_FOREACH_PROP_ELEM(fn) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 0) \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 1) \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 2) \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 3) \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 4) \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 5) \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 6) \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 7) \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 8) \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 9) \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 10) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 1) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 2) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 3) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 4) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 5) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 6) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 7) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 8) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 9) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 10) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 0, __VA_ARGS__) \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 1, __VA_ARGS__) \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 2, __VA_ARGS__) \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 3, __VA_ARGS__) \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 4, __VA_ARGS__) \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 5, __VA_ARGS__) \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 6, __VA_ARGS__) \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 7, __VA_ARGS__) \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 8, __VA_ARGS__) \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 9, __VA_ARGS__) \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 10, __VA_ARGS__) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 2, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 3, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 4, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 5, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 6, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 7, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 8, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 9, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, pinmux, 10, __VA_ARGS__) +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_LEN 11 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_pinmux_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_sleep_hold_en 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_sleep_hold_en_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_bias_disable 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_bias_disable_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_bias_pull_up 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_bias_pull_up_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_bias_pull_down 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_bias_pull_down_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_drive_push_pull 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_drive_push_pull_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_drive_open_drain 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_drive_open_drain_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_input_enable 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_input_enable_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_output_enable 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_output_enable_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_output_low 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_output_low_EXISTS 1 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_output_high 0 +#define DT_N_S_pin_controller_S_lcd_cam_default_S_group2_P_output_high_EXISTS 1 + +/* + * Devicetree node: /pin-controller/spim2_default + * + * Node identifier: DT_N_S_pin_controller_S_spim2_default + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_pin_controller_S_spim2_default_PATH "/pin-controller/spim2_default" + +/* Node's name with unit-address: */ +#define DT_N_S_pin_controller_S_spim2_default_FULL_NAME "spim2_default" +#define DT_N_S_pin_controller_S_spim2_default_FULL_NAME_UNQUOTED spim2_default +#define DT_N_S_pin_controller_S_spim2_default_FULL_NAME_TOKEN spim2_default +#define DT_N_S_pin_controller_S_spim2_default_FULL_NAME_UPPER_TOKEN SPIM2_DEFAULT + +/* Node parent (/pin-controller) identifier: */ +#define DT_N_S_pin_controller_S_spim2_default_PARENT DT_N_S_pin_controller + +/* Node's index in its parent's list of children: */ +#define DT_N_S_pin_controller_S_spim2_default_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_pin_controller_S_spim2_default_NODELABEL_NUM 1 +#define DT_N_S_pin_controller_S_spim2_default_FOREACH_NODELABEL(fn) fn(spim2_default) +#define DT_N_S_pin_controller_S_spim2_default_FOREACH_NODELABEL_VARGS(fn, ...) fn(spim2_default, __VA_ARGS__) +#define DT_N_S_pin_controller_S_spim2_default_FOREACH_ANCESTOR(fn) fn(DT_N_S_pin_controller) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_pin_controller_S_spim2_default_CHILD_NUM 2 +#define DT_N_S_pin_controller_S_spim2_default_CHILD_NUM_STATUS_OKAY 2 +#define DT_N_S_pin_controller_S_spim2_default_FOREACH_CHILD(fn) fn(DT_N_S_pin_controller_S_spim2_default_S_group1) fn(DT_N_S_pin_controller_S_spim2_default_S_group2) +#define DT_N_S_pin_controller_S_spim2_default_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_pin_controller_S_spim2_default_S_group1) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_spim2_default_S_group2) +#define DT_N_S_pin_controller_S_spim2_default_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_spim2_default_S_group1, __VA_ARGS__) fn(DT_N_S_pin_controller_S_spim2_default_S_group2, __VA_ARGS__) +#define DT_N_S_pin_controller_S_spim2_default_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_spim2_default_S_group1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_spim2_default_S_group2, __VA_ARGS__) +#define DT_N_S_pin_controller_S_spim2_default_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_pin_controller_S_spim2_default_S_group1) fn(DT_N_S_pin_controller_S_spim2_default_S_group2) +#define DT_N_S_pin_controller_S_spim2_default_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_pin_controller_S_spim2_default_S_group1) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_spim2_default_S_group2) +#define DT_N_S_pin_controller_S_spim2_default_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_spim2_default_S_group1, __VA_ARGS__) fn(DT_N_S_pin_controller_S_spim2_default_S_group2, __VA_ARGS__) +#define DT_N_S_pin_controller_S_spim2_default_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_spim2_default_S_group1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_spim2_default_S_group2, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_pin_controller_S_spim2_default_HASH yQ9p_zZ49maZmOnOVWRekcc6Lo5_twi_vyjzjg0jqIA + +/* Node's dependency ordinal: */ +#define DT_N_S_pin_controller_S_spim2_default_ORD 26 +#define DT_N_S_pin_controller_S_spim2_default_ORD_STR_SORTABLE 00026 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_pin_controller_S_spim2_default_REQUIRES_ORDS \ + 18, /* /pin-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_pin_controller_S_spim2_default_SUPPORTS_ORDS \ + 27, /* /pin-controller/spim2_default/group1 */ \ + 28, /* /pin-controller/spim2_default/group2 */ \ + 103, /* /soc/spi@60024000 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_pin_controller_S_spim2_default_EXISTS 1 +#define DT_N_NODELABEL_spim2_default DT_N_S_pin_controller_S_spim2_default + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_pin_controller_S_spim2_default_REG_NUM 0 +#define DT_N_S_pin_controller_S_spim2_default_FOREACH_REG(fn) +#define DT_N_S_pin_controller_S_spim2_default_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_pin_controller_S_spim2_default_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_spim2_default_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_spim2_default_RANGES_NUM 0 +#define DT_N_S_pin_controller_S_spim2_default_FOREACH_RANGE(fn) +#define DT_N_S_pin_controller_S_spim2_default_IRQ_NUM 0 +#define DT_N_S_pin_controller_S_spim2_default_IRQ_LEVEL 0 +#define DT_N_S_pin_controller_S_spim2_default_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_pin_controller_S_spim2_default_PINCTRL_NUM 0 + +/* (No generic property macros) */ + +/* + * Devicetree node: /pin-controller/spim2_default/group1 + * + * Node identifier: DT_N_S_pin_controller_S_spim2_default_S_group1 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group1_PATH "/pin-controller/spim2_default/group1" + +/* Node's name with unit-address: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group1_FULL_NAME "group1" +#define DT_N_S_pin_controller_S_spim2_default_S_group1_FULL_NAME_UNQUOTED group1 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_FULL_NAME_TOKEN group1 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_FULL_NAME_UPPER_TOKEN GROUP1 + +/* Node parent (/pin-controller/spim2_default) identifier: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group1_PARENT DT_N_S_pin_controller_S_spim2_default + +/* Node's index in its parent's list of children: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group1_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group1_NODELABEL_NUM 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_FOREACH_NODELABEL(fn) +#define DT_N_S_pin_controller_S_spim2_default_S_group1_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_spim2_default_S_group1_FOREACH_ANCESTOR(fn) fn(DT_N_S_pin_controller_S_spim2_default) fn(DT_N_S_pin_controller) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_pin_controller_S_spim2_default_S_group1_CHILD_NUM 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_FOREACH_CHILD(fn) +#define DT_N_S_pin_controller_S_spim2_default_S_group1_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_pin_controller_S_spim2_default_S_group1_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_spim2_default_S_group1_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_spim2_default_S_group1_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_pin_controller_S_spim2_default_S_group1_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_pin_controller_S_spim2_default_S_group1_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_spim2_default_S_group1_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group1_HASH p70n6PMDj1QKr_sTZSVNVgh8FWjeQJk5mPn3eq_6lJ0 + +/* Node's dependency ordinal: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group1_ORD 27 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_ORD_STR_SORTABLE 00027 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group1_REQUIRES_ORDS \ + 26, /* /pin-controller/spim2_default */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group1_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group1_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group1_REG_NUM 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_FOREACH_REG(fn) +#define DT_N_S_pin_controller_S_spim2_default_S_group1_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_pin_controller_S_spim2_default_S_group1_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_spim2_default_S_group1_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_spim2_default_S_group1_RANGES_NUM 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_FOREACH_RANGE(fn) +#define DT_N_S_pin_controller_S_spim2_default_S_group1_IRQ_NUM 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_IRQ_LEVEL 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group1_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_pinmux {16750984 /* 0xff9988 */, 3342279 /* 0x32ffc7 */} +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_pinmux_IDX_0_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_pinmux_IDX_0 16750984 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_pinmux_IDX_1_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_pinmux_IDX_1 3342279 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_pinmux_FOREACH_PROP_ELEM(fn) fn(DT_N_S_pin_controller_S_spim2_default_S_group1, pinmux, 0) \ + fn(DT_N_S_pin_controller_S_spim2_default_S_group1, pinmux, 1) +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_pinmux_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_pin_controller_S_spim2_default_S_group1, pinmux, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_spim2_default_S_group1, pinmux, 1) +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_pinmux_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_spim2_default_S_group1, pinmux, 0, __VA_ARGS__) \ + fn(DT_N_S_pin_controller_S_spim2_default_S_group1, pinmux, 1, __VA_ARGS__) +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_pinmux_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_spim2_default_S_group1, pinmux, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_spim2_default_S_group1, pinmux, 1, __VA_ARGS__) +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_pinmux_LEN 2 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_pinmux_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_sleep_hold_en 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_sleep_hold_en_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_bias_disable 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_bias_disable_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_bias_pull_up 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_bias_pull_up_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_bias_pull_down 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_bias_pull_down_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_drive_push_pull 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_drive_push_pull_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_drive_open_drain 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_drive_open_drain_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_input_enable 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_input_enable_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_output_enable 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_output_enable_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_output_low 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_output_low_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_output_high 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group1_P_output_high_EXISTS 1 + +/* + * Devicetree node: /pin-controller/spim2_default/group2 + * + * Node identifier: DT_N_S_pin_controller_S_spim2_default_S_group2 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group2_PATH "/pin-controller/spim2_default/group2" + +/* Node's name with unit-address: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group2_FULL_NAME "group2" +#define DT_N_S_pin_controller_S_spim2_default_S_group2_FULL_NAME_UNQUOTED group2 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_FULL_NAME_TOKEN group2 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_FULL_NAME_UPPER_TOKEN GROUP2 + +/* Node parent (/pin-controller/spim2_default) identifier: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group2_PARENT DT_N_S_pin_controller_S_spim2_default + +/* Node's index in its parent's list of children: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group2_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group2_NODELABEL_NUM 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_FOREACH_NODELABEL(fn) +#define DT_N_S_pin_controller_S_spim2_default_S_group2_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_spim2_default_S_group2_FOREACH_ANCESTOR(fn) fn(DT_N_S_pin_controller_S_spim2_default) fn(DT_N_S_pin_controller) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_pin_controller_S_spim2_default_S_group2_CHILD_NUM 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_FOREACH_CHILD(fn) +#define DT_N_S_pin_controller_S_spim2_default_S_group2_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_pin_controller_S_spim2_default_S_group2_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_spim2_default_S_group2_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_spim2_default_S_group2_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_pin_controller_S_spim2_default_S_group2_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_pin_controller_S_spim2_default_S_group2_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_spim2_default_S_group2_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group2_HASH 8QjmDqnyBap6vP7Vx84h2_Dt9Pvj6PnRYgLNX1RakyE + +/* Node's dependency ordinal: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group2_ORD 28 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_ORD_STR_SORTABLE 00028 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group2_REQUIRES_ORDS \ + 26, /* /pin-controller/spim2_default */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group2_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group2_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group2_REG_NUM 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_FOREACH_REG(fn) +#define DT_N_S_pin_controller_S_spim2_default_S_group2_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_pin_controller_S_spim2_default_S_group2_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_spim2_default_S_group2_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_spim2_default_S_group2_RANGES_NUM 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_FOREACH_RANGE(fn) +#define DT_N_S_pin_controller_S_spim2_default_S_group2_IRQ_NUM 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_IRQ_LEVEL 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group2_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_pinmux {3407817 /* 0x33ffc9 */} +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_pinmux_IDX_0_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_pinmux_IDX_0 3407817 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_pinmux_FOREACH_PROP_ELEM(fn) fn(DT_N_S_pin_controller_S_spim2_default_S_group2, pinmux, 0) +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_pinmux_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_pin_controller_S_spim2_default_S_group2, pinmux, 0) +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_pinmux_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_spim2_default_S_group2, pinmux, 0, __VA_ARGS__) +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_pinmux_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_spim2_default_S_group2, pinmux, 0, __VA_ARGS__) +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_pinmux_LEN 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_pinmux_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_sleep_hold_en 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_sleep_hold_en_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_bias_disable 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_bias_disable_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_bias_pull_up 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_bias_pull_up_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_bias_pull_down 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_bias_pull_down_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_drive_push_pull 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_drive_push_pull_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_drive_open_drain 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_drive_open_drain_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_input_enable 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_input_enable_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_output_enable 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_output_enable_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_output_low 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_output_low_EXISTS 1 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_output_high 0 +#define DT_N_S_pin_controller_S_spim2_default_S_group2_P_output_high_EXISTS 1 + +/* + * Devicetree node: /pin-controller/twai_default + * + * Node identifier: DT_N_S_pin_controller_S_twai_default + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_pin_controller_S_twai_default_PATH "/pin-controller/twai_default" + +/* Node's name with unit-address: */ +#define DT_N_S_pin_controller_S_twai_default_FULL_NAME "twai_default" +#define DT_N_S_pin_controller_S_twai_default_FULL_NAME_UNQUOTED twai_default +#define DT_N_S_pin_controller_S_twai_default_FULL_NAME_TOKEN twai_default +#define DT_N_S_pin_controller_S_twai_default_FULL_NAME_UPPER_TOKEN TWAI_DEFAULT + +/* Node parent (/pin-controller) identifier: */ +#define DT_N_S_pin_controller_S_twai_default_PARENT DT_N_S_pin_controller + +/* Node's index in its parent's list of children: */ +#define DT_N_S_pin_controller_S_twai_default_CHILD_IDX 5 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_pin_controller_S_twai_default_NODELABEL_NUM 1 +#define DT_N_S_pin_controller_S_twai_default_FOREACH_NODELABEL(fn) fn(twai_default) +#define DT_N_S_pin_controller_S_twai_default_FOREACH_NODELABEL_VARGS(fn, ...) fn(twai_default, __VA_ARGS__) +#define DT_N_S_pin_controller_S_twai_default_FOREACH_ANCESTOR(fn) fn(DT_N_S_pin_controller) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_pin_controller_S_twai_default_CHILD_NUM 1 +#define DT_N_S_pin_controller_S_twai_default_CHILD_NUM_STATUS_OKAY 1 +#define DT_N_S_pin_controller_S_twai_default_FOREACH_CHILD(fn) fn(DT_N_S_pin_controller_S_twai_default_S_group1) +#define DT_N_S_pin_controller_S_twai_default_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_pin_controller_S_twai_default_S_group1) +#define DT_N_S_pin_controller_S_twai_default_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_twai_default_S_group1, __VA_ARGS__) +#define DT_N_S_pin_controller_S_twai_default_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_twai_default_S_group1, __VA_ARGS__) +#define DT_N_S_pin_controller_S_twai_default_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_pin_controller_S_twai_default_S_group1) +#define DT_N_S_pin_controller_S_twai_default_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_pin_controller_S_twai_default_S_group1) +#define DT_N_S_pin_controller_S_twai_default_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_twai_default_S_group1, __VA_ARGS__) +#define DT_N_S_pin_controller_S_twai_default_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_twai_default_S_group1, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_pin_controller_S_twai_default_HASH cEr2u_JuEoEHCq3kPvei4M__t8osI1CvuALLllai_uU + +/* Node's dependency ordinal: */ +#define DT_N_S_pin_controller_S_twai_default_ORD 29 +#define DT_N_S_pin_controller_S_twai_default_ORD_STR_SORTABLE 00029 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_pin_controller_S_twai_default_REQUIRES_ORDS \ + 18, /* /pin-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_pin_controller_S_twai_default_SUPPORTS_ORDS \ + 30, /* /pin-controller/twai_default/group1 */ \ + 38, /* /soc/can@6002b000 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_pin_controller_S_twai_default_EXISTS 1 +#define DT_N_NODELABEL_twai_default DT_N_S_pin_controller_S_twai_default + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_pin_controller_S_twai_default_REG_NUM 0 +#define DT_N_S_pin_controller_S_twai_default_FOREACH_REG(fn) +#define DT_N_S_pin_controller_S_twai_default_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_pin_controller_S_twai_default_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_twai_default_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_twai_default_RANGES_NUM 0 +#define DT_N_S_pin_controller_S_twai_default_FOREACH_RANGE(fn) +#define DT_N_S_pin_controller_S_twai_default_IRQ_NUM 0 +#define DT_N_S_pin_controller_S_twai_default_IRQ_LEVEL 0 +#define DT_N_S_pin_controller_S_twai_default_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_pin_controller_S_twai_default_PINCTRL_NUM 0 + +/* (No generic property macros) */ + +/* + * Devicetree node: /pin-controller/twai_default/group1 + * + * Node identifier: DT_N_S_pin_controller_S_twai_default_S_group1 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_pin_controller_S_twai_default_S_group1_PATH "/pin-controller/twai_default/group1" + +/* Node's name with unit-address: */ +#define DT_N_S_pin_controller_S_twai_default_S_group1_FULL_NAME "group1" +#define DT_N_S_pin_controller_S_twai_default_S_group1_FULL_NAME_UNQUOTED group1 +#define DT_N_S_pin_controller_S_twai_default_S_group1_FULL_NAME_TOKEN group1 +#define DT_N_S_pin_controller_S_twai_default_S_group1_FULL_NAME_UPPER_TOKEN GROUP1 + +/* Node parent (/pin-controller/twai_default) identifier: */ +#define DT_N_S_pin_controller_S_twai_default_S_group1_PARENT DT_N_S_pin_controller_S_twai_default + +/* Node's index in its parent's list of children: */ +#define DT_N_S_pin_controller_S_twai_default_S_group1_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_pin_controller_S_twai_default_S_group1_NODELABEL_NUM 0 +#define DT_N_S_pin_controller_S_twai_default_S_group1_FOREACH_NODELABEL(fn) +#define DT_N_S_pin_controller_S_twai_default_S_group1_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_twai_default_S_group1_FOREACH_ANCESTOR(fn) fn(DT_N_S_pin_controller_S_twai_default) fn(DT_N_S_pin_controller) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_pin_controller_S_twai_default_S_group1_CHILD_NUM 0 +#define DT_N_S_pin_controller_S_twai_default_S_group1_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_pin_controller_S_twai_default_S_group1_FOREACH_CHILD(fn) +#define DT_N_S_pin_controller_S_twai_default_S_group1_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_pin_controller_S_twai_default_S_group1_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_twai_default_S_group1_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_twai_default_S_group1_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_pin_controller_S_twai_default_S_group1_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_pin_controller_S_twai_default_S_group1_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_twai_default_S_group1_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_pin_controller_S_twai_default_S_group1_HASH _ZgFg5F7NoK6z5R4_vAnmRSqhaS7xGTIFjL00CcXRSE + +/* Node's dependency ordinal: */ +#define DT_N_S_pin_controller_S_twai_default_S_group1_ORD 30 +#define DT_N_S_pin_controller_S_twai_default_S_group1_ORD_STR_SORTABLE 00030 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_pin_controller_S_twai_default_S_group1_REQUIRES_ORDS \ + 29, /* /pin-controller/twai_default */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_pin_controller_S_twai_default_S_group1_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_pin_controller_S_twai_default_S_group1_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_pin_controller_S_twai_default_S_group1_REG_NUM 0 +#define DT_N_S_pin_controller_S_twai_default_S_group1_FOREACH_REG(fn) +#define DT_N_S_pin_controller_S_twai_default_S_group1_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_pin_controller_S_twai_default_S_group1_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_twai_default_S_group1_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_twai_default_S_group1_RANGES_NUM 0 +#define DT_N_S_pin_controller_S_twai_default_S_group1_FOREACH_RANGE(fn) +#define DT_N_S_pin_controller_S_twai_default_S_group1_IRQ_NUM 0 +#define DT_N_S_pin_controller_S_twai_default_S_group1_IRQ_LEVEL 0 +#define DT_N_S_pin_controller_S_twai_default_S_group1_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_pin_controller_S_twai_default_S_group1_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_pinmux {3833795 /* 0x3a7fc3 */, 16751876 /* 0xff9d04 */} +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_pinmux_IDX_0_EXISTS 1 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_pinmux_IDX_0 3833795 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_pinmux_IDX_1_EXISTS 1 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_pinmux_IDX_1 16751876 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_pinmux_FOREACH_PROP_ELEM(fn) fn(DT_N_S_pin_controller_S_twai_default_S_group1, pinmux, 0) \ + fn(DT_N_S_pin_controller_S_twai_default_S_group1, pinmux, 1) +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_pinmux_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_pin_controller_S_twai_default_S_group1, pinmux, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_twai_default_S_group1, pinmux, 1) +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_pinmux_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_twai_default_S_group1, pinmux, 0, __VA_ARGS__) \ + fn(DT_N_S_pin_controller_S_twai_default_S_group1, pinmux, 1, __VA_ARGS__) +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_pinmux_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_twai_default_S_group1, pinmux, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_pin_controller_S_twai_default_S_group1, pinmux, 1, __VA_ARGS__) +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_pinmux_LEN 2 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_pinmux_EXISTS 1 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_sleep_hold_en 0 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_sleep_hold_en_EXISTS 1 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_bias_disable 0 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_bias_disable_EXISTS 1 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_bias_pull_up 0 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_bias_pull_up_EXISTS 1 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_bias_pull_down 0 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_bias_pull_down_EXISTS 1 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_drive_push_pull 0 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_drive_push_pull_EXISTS 1 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_drive_open_drain 0 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_drive_open_drain_EXISTS 1 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_input_enable 0 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_input_enable_EXISTS 1 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_output_enable 0 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_output_enable_EXISTS 1 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_output_low 0 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_output_low_EXISTS 1 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_output_high 0 +#define DT_N_S_pin_controller_S_twai_default_S_group1_P_output_high_EXISTS 1 + +/* + * Devicetree node: /pin-controller/uart0_default + * + * Node identifier: DT_N_S_pin_controller_S_uart0_default + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_pin_controller_S_uart0_default_PATH "/pin-controller/uart0_default" + +/* Node's name with unit-address: */ +#define DT_N_S_pin_controller_S_uart0_default_FULL_NAME "uart0_default" +#define DT_N_S_pin_controller_S_uart0_default_FULL_NAME_UNQUOTED uart0_default +#define DT_N_S_pin_controller_S_uart0_default_FULL_NAME_TOKEN uart0_default +#define DT_N_S_pin_controller_S_uart0_default_FULL_NAME_UPPER_TOKEN UART0_DEFAULT + +/* Node parent (/pin-controller) identifier: */ +#define DT_N_S_pin_controller_S_uart0_default_PARENT DT_N_S_pin_controller + +/* Node's index in its parent's list of children: */ +#define DT_N_S_pin_controller_S_uart0_default_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_pin_controller_S_uart0_default_NODELABEL_NUM 1 +#define DT_N_S_pin_controller_S_uart0_default_FOREACH_NODELABEL(fn) fn(uart0_default) +#define DT_N_S_pin_controller_S_uart0_default_FOREACH_NODELABEL_VARGS(fn, ...) fn(uart0_default, __VA_ARGS__) +#define DT_N_S_pin_controller_S_uart0_default_FOREACH_ANCESTOR(fn) fn(DT_N_S_pin_controller) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_pin_controller_S_uart0_default_CHILD_NUM 2 +#define DT_N_S_pin_controller_S_uart0_default_CHILD_NUM_STATUS_OKAY 2 +#define DT_N_S_pin_controller_S_uart0_default_FOREACH_CHILD(fn) fn(DT_N_S_pin_controller_S_uart0_default_S_group1) fn(DT_N_S_pin_controller_S_uart0_default_S_group2) +#define DT_N_S_pin_controller_S_uart0_default_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_pin_controller_S_uart0_default_S_group1) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_uart0_default_S_group2) +#define DT_N_S_pin_controller_S_uart0_default_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_uart0_default_S_group1, __VA_ARGS__) fn(DT_N_S_pin_controller_S_uart0_default_S_group2, __VA_ARGS__) +#define DT_N_S_pin_controller_S_uart0_default_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_uart0_default_S_group1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_uart0_default_S_group2, __VA_ARGS__) +#define DT_N_S_pin_controller_S_uart0_default_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_pin_controller_S_uart0_default_S_group1) fn(DT_N_S_pin_controller_S_uart0_default_S_group2) +#define DT_N_S_pin_controller_S_uart0_default_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_pin_controller_S_uart0_default_S_group1) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_uart0_default_S_group2) +#define DT_N_S_pin_controller_S_uart0_default_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_uart0_default_S_group1, __VA_ARGS__) fn(DT_N_S_pin_controller_S_uart0_default_S_group2, __VA_ARGS__) +#define DT_N_S_pin_controller_S_uart0_default_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_uart0_default_S_group1, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_pin_controller_S_uart0_default_S_group2, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_pin_controller_S_uart0_default_HASH hpPoQq5QYEcDym1g2JBVllTKxA90m_i7KnAuJScDL4o + +/* Node's dependency ordinal: */ +#define DT_N_S_pin_controller_S_uart0_default_ORD 31 +#define DT_N_S_pin_controller_S_uart0_default_ORD_STR_SORTABLE 00031 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_pin_controller_S_uart0_default_REQUIRES_ORDS \ + 18, /* /pin-controller */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_pin_controller_S_uart0_default_SUPPORTS_ORDS \ + 32, /* /pin-controller/uart0_default/group1 */ \ + 33, /* /pin-controller/uart0_default/group2 */ \ + 64, /* /soc/uart@60000000 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_pin_controller_S_uart0_default_EXISTS 1 +#define DT_N_NODELABEL_uart0_default DT_N_S_pin_controller_S_uart0_default + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_pin_controller_S_uart0_default_REG_NUM 0 +#define DT_N_S_pin_controller_S_uart0_default_FOREACH_REG(fn) +#define DT_N_S_pin_controller_S_uart0_default_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_pin_controller_S_uart0_default_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_uart0_default_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_uart0_default_RANGES_NUM 0 +#define DT_N_S_pin_controller_S_uart0_default_FOREACH_RANGE(fn) +#define DT_N_S_pin_controller_S_uart0_default_IRQ_NUM 0 +#define DT_N_S_pin_controller_S_uart0_default_IRQ_LEVEL 0 +#define DT_N_S_pin_controller_S_uart0_default_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_pin_controller_S_uart0_default_PINCTRL_NUM 0 + +/* (No generic property macros) */ + +/* + * Devicetree node: /pin-controller/uart0_default/group1 + * + * Node identifier: DT_N_S_pin_controller_S_uart0_default_S_group1 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group1_PATH "/pin-controller/uart0_default/group1" + +/* Node's name with unit-address: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group1_FULL_NAME "group1" +#define DT_N_S_pin_controller_S_uart0_default_S_group1_FULL_NAME_UNQUOTED group1 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_FULL_NAME_TOKEN group1 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_FULL_NAME_UPPER_TOKEN GROUP1 + +/* Node parent (/pin-controller/uart0_default) identifier: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group1_PARENT DT_N_S_pin_controller_S_uart0_default + +/* Node's index in its parent's list of children: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group1_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group1_NODELABEL_NUM 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_FOREACH_NODELABEL(fn) +#define DT_N_S_pin_controller_S_uart0_default_S_group1_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_uart0_default_S_group1_FOREACH_ANCESTOR(fn) fn(DT_N_S_pin_controller_S_uart0_default) fn(DT_N_S_pin_controller) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_pin_controller_S_uart0_default_S_group1_CHILD_NUM 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_FOREACH_CHILD(fn) +#define DT_N_S_pin_controller_S_uart0_default_S_group1_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_pin_controller_S_uart0_default_S_group1_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_uart0_default_S_group1_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_uart0_default_S_group1_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_pin_controller_S_uart0_default_S_group1_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_pin_controller_S_uart0_default_S_group1_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_uart0_default_S_group1_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group1_HASH mw9A94JnX0K15LdzaqSiBYHstgeiBk__IFPWTJ90zX0 + +/* Node's dependency ordinal: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group1_ORD 32 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_ORD_STR_SORTABLE 00032 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group1_REQUIRES_ORDS \ + 31, /* /pin-controller/uart0_default */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group1_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group1_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group1_REG_NUM 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_FOREACH_REG(fn) +#define DT_N_S_pin_controller_S_uart0_default_S_group1_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_pin_controller_S_uart0_default_S_group1_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_uart0_default_S_group1_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_uart0_default_S_group1_RANGES_NUM 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_FOREACH_RANGE(fn) +#define DT_N_S_pin_controller_S_uart0_default_S_group1_IRQ_NUM 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_IRQ_LEVEL 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group1_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_pinmux {425963 /* 0x67feb */} +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_pinmux_IDX_0_EXISTS 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_pinmux_IDX_0 425963 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_pinmux_FOREACH_PROP_ELEM(fn) fn(DT_N_S_pin_controller_S_uart0_default_S_group1, pinmux, 0) +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_pinmux_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_pin_controller_S_uart0_default_S_group1, pinmux, 0) +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_pinmux_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_uart0_default_S_group1, pinmux, 0, __VA_ARGS__) +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_pinmux_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_uart0_default_S_group1, pinmux, 0, __VA_ARGS__) +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_pinmux_LEN 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_pinmux_EXISTS 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_sleep_hold_en 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_sleep_hold_en_EXISTS 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_bias_disable 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_bias_disable_EXISTS 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_bias_pull_up 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_bias_pull_up_EXISTS 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_bias_pull_down 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_bias_pull_down_EXISTS 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_drive_push_pull 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_drive_push_pull_EXISTS 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_drive_open_drain 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_drive_open_drain_EXISTS 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_input_enable 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_input_enable_EXISTS 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_output_enable 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_output_enable_EXISTS 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_output_low 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_output_low_EXISTS 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_output_high 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group1_P_output_high_EXISTS 1 + +/* + * Devicetree node: /pin-controller/uart0_default/group2 + * + * Node identifier: DT_N_S_pin_controller_S_uart0_default_S_group2 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group2_PATH "/pin-controller/uart0_default/group2" + +/* Node's name with unit-address: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group2_FULL_NAME "group2" +#define DT_N_S_pin_controller_S_uart0_default_S_group2_FULL_NAME_UNQUOTED group2 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_FULL_NAME_TOKEN group2 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_FULL_NAME_UPPER_TOKEN GROUP2 + +/* Node parent (/pin-controller/uart0_default) identifier: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group2_PARENT DT_N_S_pin_controller_S_uart0_default + +/* Node's index in its parent's list of children: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group2_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group2_NODELABEL_NUM 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_FOREACH_NODELABEL(fn) +#define DT_N_S_pin_controller_S_uart0_default_S_group2_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_uart0_default_S_group2_FOREACH_ANCESTOR(fn) fn(DT_N_S_pin_controller_S_uart0_default) fn(DT_N_S_pin_controller) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_pin_controller_S_uart0_default_S_group2_CHILD_NUM 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_FOREACH_CHILD(fn) +#define DT_N_S_pin_controller_S_uart0_default_S_group2_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_pin_controller_S_uart0_default_S_group2_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_uart0_default_S_group2_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_uart0_default_S_group2_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_pin_controller_S_uart0_default_S_group2_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_pin_controller_S_uart0_default_S_group2_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_uart0_default_S_group2_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group2_HASH OhplDHWYl94QPNbqB4nVbAksIsz36XFx3_uS1MnAXRo + +/* Node's dependency ordinal: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group2_ORD 33 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_ORD_STR_SORTABLE 00033 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group2_REQUIRES_ORDS \ + 31, /* /pin-controller/uart0_default */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group2_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group2_EXISTS 1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group2_REG_NUM 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_FOREACH_REG(fn) +#define DT_N_S_pin_controller_S_uart0_default_S_group2_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_pin_controller_S_uart0_default_S_group2_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_pin_controller_S_uart0_default_S_group2_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_pin_controller_S_uart0_default_S_group2_RANGES_NUM 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_FOREACH_RANGE(fn) +#define DT_N_S_pin_controller_S_uart0_default_S_group2_IRQ_NUM 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_IRQ_LEVEL 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group2_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_pinmux {16745260 /* 0xff832c */} +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_pinmux_IDX_0_EXISTS 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_pinmux_IDX_0 16745260 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_pinmux_FOREACH_PROP_ELEM(fn) fn(DT_N_S_pin_controller_S_uart0_default_S_group2, pinmux, 0) +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_pinmux_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_pin_controller_S_uart0_default_S_group2, pinmux, 0) +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_pinmux_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_pin_controller_S_uart0_default_S_group2, pinmux, 0, __VA_ARGS__) +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_pinmux_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_pin_controller_S_uart0_default_S_group2, pinmux, 0, __VA_ARGS__) +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_pinmux_LEN 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_pinmux_EXISTS 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_sleep_hold_en 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_sleep_hold_en_EXISTS 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_bias_disable 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_bias_disable_EXISTS 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_bias_pull_up 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_bias_pull_up_EXISTS 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_bias_pull_down 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_bias_pull_down_EXISTS 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_drive_push_pull 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_drive_push_pull_EXISTS 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_drive_open_drain 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_drive_open_drain_EXISTS 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_input_enable 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_input_enable_EXISTS 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_output_enable 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_output_enable_EXISTS 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_output_low 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_output_low_EXISTS 1 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_output_high 0 +#define DT_N_S_pin_controller_S_uart0_default_S_group2_P_output_high_EXISTS 1 + +/* + * Devicetree node: /clock + * + * Node identifier: DT_N_S_clock + * + * Binding (compatible = espressif,esp32-clock): + * $ZEPHYR_BASE/dts/bindings/clock/espressif,esp32-clock.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_clock_PATH "/clock" + +/* Node's name with unit-address: */ +#define DT_N_S_clock_FULL_NAME "clock" +#define DT_N_S_clock_FULL_NAME_UNQUOTED clock +#define DT_N_S_clock_FULL_NAME_TOKEN clock +#define DT_N_S_clock_FULL_NAME_UPPER_TOKEN CLOCK + +/* Node parent (/) identifier: */ +#define DT_N_S_clock_PARENT DT_N + +/* Node's index in its parent's list of children: */ +#define DT_N_S_clock_CHILD_IDX 7 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_clock_NODELABEL_NUM 1 +#define DT_N_S_clock_FOREACH_NODELABEL(fn) fn(clock) +#define DT_N_S_clock_FOREACH_NODELABEL_VARGS(fn, ...) fn(clock, __VA_ARGS__) +#define DT_N_S_clock_FOREACH_ANCESTOR(fn) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_clock_CHILD_NUM 0 +#define DT_N_S_clock_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_clock_FOREACH_CHILD(fn) +#define DT_N_S_clock_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_clock_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_clock_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_clock_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_clock_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_clock_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_clock_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_clock_HASH QnKLwDxmAK_PaPqjnffzth94QNFQAD6J185NwWdLjGI + +/* Node's dependency ordinal: */ +#define DT_N_S_clock_ORD 34 +#define DT_N_S_clock_ORD_STR_SORTABLE 00034 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_clock_REQUIRES_ORDS \ + 0, /* / */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_clock_SUPPORTS_ORDS \ + 35, /* /soc/adc@60040000 */ \ + 36, /* /soc/adc@60040004 */ \ + 37, /* /soc/aes@6003a000 */ \ + 38, /* /soc/can@6002b000 */ \ + 40, /* /soc/i2c@60013000 */ \ + 41, /* /soc/i2c@60027000 */ \ + 42, /* /soc/dma@6003f000 */ \ + 43, /* /soc/i2s@6000f000 */ \ + 44, /* /soc/i2s@6002d000 */ \ + 47, /* /soc/ledc@60019000 */ \ + 49, /* /soc/mcpwm@6001e000 */ \ + 50, /* /soc/mcpwm@6002c000 */ \ + 58, /* /soc/pcnt@60017000 */ \ + 59, /* /soc/rtc_timer@60008004 */ \ + 60, /* /soc/sha@6003b000 */ \ + 61, /* /soc/spi@60025000 */ \ + 63, /* /soc/trng@6003507c */ \ + 64, /* /soc/uart@60000000 */ \ + 65, /* /soc/uart@60010000 */ \ + 66, /* /soc/uart@6002e000 */ \ + 67, /* /soc/uart@60038000 */ \ + 68, /* /soc/usb_otg@60080000 */ \ + 69, /* /soc/watchdog@6001f048 */ \ + 70, /* /soc/watchdog@60020048 */ \ + 71, /* /soc/xt_wdt@60021004 */ \ + 72, /* /soc/counter@6001f000 */ \ + 74, /* /soc/counter@6001f024 */ \ + 76, /* /soc/counter@60020000 */ \ + 78, /* /soc/counter@60020024 */ \ + 95, /* /soc/lcd_cam@60041000 */ \ + 100, /* /soc/sdhc@60028000 */ \ + 103, /* /soc/spi@60024000 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_clock_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_clock DT_N_S_clock +#define DT_N_NODELABEL_clock DT_N_S_clock + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_clock_REG_NUM 0 +#define DT_N_S_clock_FOREACH_REG(fn) +#define DT_N_S_clock_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_clock_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_clock_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_clock_RANGES_NUM 0 +#define DT_N_S_clock_FOREACH_RANGE(fn) +#define DT_N_S_clock_IRQ_NUM 0 +#define DT_N_S_clock_IRQ_LEVEL 0 +#define DT_N_S_clock_COMPAT_MATCHES_espressif_esp32_clock 1 +#define DT_N_S_clock_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_clock_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_clock_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_clock_COMPAT_MODEL_IDX_0 "esp32-clock" +#define DT_N_S_clock_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_clock_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_clock_P_fast_clk_src 1 +#define DT_N_S_clock_P_fast_clk_src_IDX_0_ENUM_IDX 1 +#define DT_N_S_clock_P_fast_clk_src_IDX_0_EXISTS 1 +#define DT_N_S_clock_P_fast_clk_src_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_clock_P_fast_clk_src_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_clock_P_fast_clk_src_EXISTS 1 +#define DT_N_S_clock_P_slow_clk_src 0 +#define DT_N_S_clock_P_slow_clk_src_IDX_0_ENUM_IDX 0 +#define DT_N_S_clock_P_slow_clk_src_IDX_0_EXISTS 1 +#define DT_N_S_clock_P_slow_clk_src_IDX_0_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_clock_P_slow_clk_src_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_clock_P_slow_clk_src_EXISTS 1 + +/* + * Devicetree node: /soc/adc@60040000 + * + * Node identifier: DT_N_S_soc_S_adc_60040000 + * + * Binding (compatible = espressif,esp32-adc): + * $ZEPHYR_BASE/dts/bindings/adc/espressif,esp32-adc.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_adc_60040000_PATH "/soc/adc@60040000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_adc_60040000_FULL_NAME "adc@60040000" +#define DT_N_S_soc_S_adc_60040000_FULL_NAME_UNQUOTED adc@60040000 +#define DT_N_S_soc_S_adc_60040000_FULL_NAME_TOKEN adc_60040000 +#define DT_N_S_soc_S_adc_60040000_FULL_NAME_UPPER_TOKEN ADC_60040000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_adc_60040000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_adc_60040000_CHILD_IDX 27 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_adc_60040000_NODELABEL_NUM 2 +#define DT_N_S_soc_S_adc_60040000_FOREACH_NODELABEL(fn) fn(adc0) fn(xiao_adc) +#define DT_N_S_soc_S_adc_60040000_FOREACH_NODELABEL_VARGS(fn, ...) fn(adc0, __VA_ARGS__) fn(xiao_adc, __VA_ARGS__) +#define DT_N_S_soc_S_adc_60040000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_adc_60040000_CHILD_NUM 0 +#define DT_N_S_soc_S_adc_60040000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_adc_60040000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_adc_60040000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_adc_60040000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_adc_60040000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_adc_60040000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_adc_60040000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_adc_60040000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_adc_60040000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_adc_60040000_HASH kIFkITTsWHxDzqiccZgKpCp6UYxr1Xa1kpKjb_sgujM + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_adc_60040000_ORD 35 +#define DT_N_S_soc_S_adc_60040000_ORD_STR_SORTABLE 00035 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_adc_60040000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_adc_60040000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_adc_60040000_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_adc DT_N_S_soc_S_adc_60040000 +#define DT_N_NODELABEL_adc0 DT_N_S_soc_S_adc_60040000 +#define DT_N_NODELABEL_xiao_adc DT_N_S_soc_S_adc_60040000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_adc_60040000_REG_NUM 1 +#define DT_N_S_soc_S_adc_60040000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_60040000_REG_IDX_0_VAL_ADDRESS 1610874880 /* 0x60040000 */ +#define DT_N_S_soc_S_adc_60040000_REG_IDX_0_VAL_SIZE 4 /* 0x4 */ +#define DT_N_S_soc_S_adc_60040000_FOREACH_REG(fn) fn(DT_N_S_soc_S_adc_60040000, 0) +#define DT_N_S_soc_S_adc_60040000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_adc_60040000, 0) +#define DT_N_S_soc_S_adc_60040000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_60040000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_60040000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_60040000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_60040000_RANGES_NUM 0 +#define DT_N_S_soc_S_adc_60040000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_adc_60040000_IRQ_NUM 0 +#define DT_N_S_soc_S_adc_60040000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_adc_60040000_COMPAT_MATCHES_espressif_esp32_adc 1 +#define DT_N_S_soc_S_adc_60040000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_60040000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_adc_60040000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_60040000_COMPAT_MODEL_IDX_0 "esp32-adc" +#define DT_N_S_soc_S_adc_60040000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_adc_60040000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_adc_60040000_P_unit 1 +#define DT_N_S_soc_S_adc_60040000_P_unit_EXISTS 1 +#define DT_N_S_soc_S_adc_60040000_P_channel_count 10 +#define DT_N_S_soc_S_adc_60040000_P_channel_count_EXISTS 1 +#define DT_N_S_soc_S_adc_60040000_P_status "disabled" +#define DT_N_S_soc_S_adc_60040000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_adc_60040000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_adc_60040000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_adc_60040000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_adc_60040000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_60040000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_adc_60040000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_adc_60040000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_adc_60040000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_adc_60040000, status, 0) +#define DT_N_S_soc_S_adc_60040000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_adc_60040000, status, 0) +#define DT_N_S_soc_S_adc_60040000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_60040000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_60040000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_60040000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_60040000_P_status_LEN 1 +#define DT_N_S_soc_S_adc_60040000_P_status_EXISTS 1 +#define DT_N_S_soc_S_adc_60040000_P_compatible {"espressif,esp32-adc"} +#define DT_N_S_soc_S_adc_60040000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_60040000_P_compatible_IDX_0 "espressif,esp32-adc" +#define DT_N_S_soc_S_adc_60040000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-adc +#define DT_N_S_soc_S_adc_60040000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_adc +#define DT_N_S_soc_S_adc_60040000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_ADC +#define DT_N_S_soc_S_adc_60040000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_adc_60040000, compatible, 0) +#define DT_N_S_soc_S_adc_60040000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_adc_60040000, compatible, 0) +#define DT_N_S_soc_S_adc_60040000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_60040000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_60040000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_60040000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_60040000_P_compatible_LEN 1 +#define DT_N_S_soc_S_adc_60040000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_adc_60040000_P_reg {1610874880 /* 0x60040000 */, 4 /* 0x4 */} +#define DT_N_S_soc_S_adc_60040000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_60040000_P_reg_IDX_0 1610874880 +#define DT_N_S_soc_S_adc_60040000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_adc_60040000_P_reg_IDX_1 4 +#define DT_N_S_soc_S_adc_60040000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_adc_60040000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_60040000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_adc_60040000_P_clocks_IDX_0_VAL_offset 128 +#define DT_N_S_soc_S_adc_60040000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_adc_60040000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_adc_60040000, clocks, 0, offset) +#define DT_N_S_soc_S_adc_60040000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_adc_60040000, clocks, 0, offset) +#define DT_N_S_soc_S_adc_60040000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_adc_60040000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_adc_60040000, clocks, 0) +#define DT_N_S_soc_S_adc_60040000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_adc_60040000, clocks, 0) +#define DT_N_S_soc_S_adc_60040000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_60040000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_60040000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_60040000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_60040000_P_clocks_LEN 1 +#define DT_N_S_soc_S_adc_60040000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_adc_60040000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_adc_60040000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_adc_60040000_P_wakeup_source 0 +#define DT_N_S_soc_S_adc_60040000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_adc_60040000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_adc_60040000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/adc@60040004 + * + * Node identifier: DT_N_S_soc_S_adc_60040004 + * + * Binding (compatible = espressif,esp32-adc): + * $ZEPHYR_BASE/dts/bindings/adc/espressif,esp32-adc.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_adc_60040004_PATH "/soc/adc@60040004" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_adc_60040004_FULL_NAME "adc@60040004" +#define DT_N_S_soc_S_adc_60040004_FULL_NAME_UNQUOTED adc@60040004 +#define DT_N_S_soc_S_adc_60040004_FULL_NAME_TOKEN adc_60040004 +#define DT_N_S_soc_S_adc_60040004_FULL_NAME_UPPER_TOKEN ADC_60040004 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_adc_60040004_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_adc_60040004_CHILD_IDX 28 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_adc_60040004_NODELABEL_NUM 1 +#define DT_N_S_soc_S_adc_60040004_FOREACH_NODELABEL(fn) fn(adc1) +#define DT_N_S_soc_S_adc_60040004_FOREACH_NODELABEL_VARGS(fn, ...) fn(adc1, __VA_ARGS__) +#define DT_N_S_soc_S_adc_60040004_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_adc_60040004_CHILD_NUM 0 +#define DT_N_S_soc_S_adc_60040004_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_adc_60040004_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_adc_60040004_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_adc_60040004_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_adc_60040004_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_adc_60040004_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_adc_60040004_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_adc_60040004_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_adc_60040004_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_adc_60040004_HASH dFVLk3VrlMmJwBVWr8Jb6bwSyE0wZMGrTZeOcWrrwus + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_adc_60040004_ORD 36 +#define DT_N_S_soc_S_adc_60040004_ORD_STR_SORTABLE 00036 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_adc_60040004_REQUIRES_ORDS \ + 12, /* /soc */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_adc_60040004_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_adc_60040004_EXISTS 1 +#define DT_N_INST_1_espressif_esp32_adc DT_N_S_soc_S_adc_60040004 +#define DT_N_NODELABEL_adc1 DT_N_S_soc_S_adc_60040004 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_adc_60040004_REG_NUM 1 +#define DT_N_S_soc_S_adc_60040004_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_60040004_REG_IDX_0_VAL_ADDRESS 1610874884 /* 0x60040004 */ +#define DT_N_S_soc_S_adc_60040004_REG_IDX_0_VAL_SIZE 4 /* 0x4 */ +#define DT_N_S_soc_S_adc_60040004_FOREACH_REG(fn) fn(DT_N_S_soc_S_adc_60040004, 0) +#define DT_N_S_soc_S_adc_60040004_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_adc_60040004, 0) +#define DT_N_S_soc_S_adc_60040004_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_60040004, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_60040004_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_60040004, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_60040004_RANGES_NUM 0 +#define DT_N_S_soc_S_adc_60040004_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_adc_60040004_IRQ_NUM 0 +#define DT_N_S_soc_S_adc_60040004_IRQ_LEVEL 0 +#define DT_N_S_soc_S_adc_60040004_COMPAT_MATCHES_espressif_esp32_adc 1 +#define DT_N_S_soc_S_adc_60040004_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_60040004_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_adc_60040004_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_60040004_COMPAT_MODEL_IDX_0 "esp32-adc" +#define DT_N_S_soc_S_adc_60040004_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_adc_60040004_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_adc_60040004_P_unit 2 +#define DT_N_S_soc_S_adc_60040004_P_unit_EXISTS 1 +#define DT_N_S_soc_S_adc_60040004_P_channel_count 10 +#define DT_N_S_soc_S_adc_60040004_P_channel_count_EXISTS 1 +#define DT_N_S_soc_S_adc_60040004_P_status "disabled" +#define DT_N_S_soc_S_adc_60040004_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_adc_60040004_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_adc_60040004_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_adc_60040004_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_adc_60040004_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_60040004_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_adc_60040004_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_adc_60040004_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_adc_60040004_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_adc_60040004, status, 0) +#define DT_N_S_soc_S_adc_60040004_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_adc_60040004, status, 0) +#define DT_N_S_soc_S_adc_60040004_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_60040004, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_60040004_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_60040004, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_60040004_P_status_LEN 1 +#define DT_N_S_soc_S_adc_60040004_P_status_EXISTS 1 +#define DT_N_S_soc_S_adc_60040004_P_compatible {"espressif,esp32-adc"} +#define DT_N_S_soc_S_adc_60040004_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_60040004_P_compatible_IDX_0 "espressif,esp32-adc" +#define DT_N_S_soc_S_adc_60040004_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-adc +#define DT_N_S_soc_S_adc_60040004_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_adc +#define DT_N_S_soc_S_adc_60040004_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_ADC +#define DT_N_S_soc_S_adc_60040004_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_adc_60040004, compatible, 0) +#define DT_N_S_soc_S_adc_60040004_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_adc_60040004, compatible, 0) +#define DT_N_S_soc_S_adc_60040004_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_60040004, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_60040004_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_60040004, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_60040004_P_compatible_LEN 1 +#define DT_N_S_soc_S_adc_60040004_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_adc_60040004_P_reg {1610874884 /* 0x60040004 */, 4 /* 0x4 */} +#define DT_N_S_soc_S_adc_60040004_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_60040004_P_reg_IDX_0 1610874884 +#define DT_N_S_soc_S_adc_60040004_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_adc_60040004_P_reg_IDX_1 4 +#define DT_N_S_soc_S_adc_60040004_P_reg_EXISTS 1 +#define DT_N_S_soc_S_adc_60040004_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_adc_60040004_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_adc_60040004_P_clocks_IDX_0_VAL_offset 128 +#define DT_N_S_soc_S_adc_60040004_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_adc_60040004_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_adc_60040004, clocks, 0, offset) +#define DT_N_S_soc_S_adc_60040004_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_adc_60040004, clocks, 0, offset) +#define DT_N_S_soc_S_adc_60040004_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_adc_60040004_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_adc_60040004, clocks, 0) +#define DT_N_S_soc_S_adc_60040004_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_adc_60040004, clocks, 0) +#define DT_N_S_soc_S_adc_60040004_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_adc_60040004, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_60040004_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_adc_60040004, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_adc_60040004_P_clocks_LEN 1 +#define DT_N_S_soc_S_adc_60040004_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_adc_60040004_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_adc_60040004_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_adc_60040004_P_wakeup_source 0 +#define DT_N_S_soc_S_adc_60040004_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_adc_60040004_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_adc_60040004_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/aes@6003a000 + * + * Node identifier: DT_N_S_soc_S_aes_6003a000 + * + * Binding (compatible = espressif,esp32-aes): + * $ZEPHYR_BASE/dts/bindings/crypto/espressif,esp32-aes.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_aes_6003a000_PATH "/soc/aes@6003a000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_aes_6003a000_FULL_NAME "aes@6003a000" +#define DT_N_S_soc_S_aes_6003a000_FULL_NAME_UNQUOTED aes@6003a000 +#define DT_N_S_soc_S_aes_6003a000_FULL_NAME_TOKEN aes_6003a000 +#define DT_N_S_soc_S_aes_6003a000_FULL_NAME_UPPER_TOKEN AES_6003A000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_aes_6003a000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_aes_6003a000_CHILD_IDX 47 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_aes_6003a000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_aes_6003a000_FOREACH_NODELABEL(fn) fn(aes) +#define DT_N_S_soc_S_aes_6003a000_FOREACH_NODELABEL_VARGS(fn, ...) fn(aes, __VA_ARGS__) +#define DT_N_S_soc_S_aes_6003a000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_aes_6003a000_CHILD_NUM 0 +#define DT_N_S_soc_S_aes_6003a000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_aes_6003a000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_aes_6003a000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_aes_6003a000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_aes_6003a000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_aes_6003a000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_aes_6003a000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_aes_6003a000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_aes_6003a000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_aes_6003a000_HASH MFS__ZEns9tRDXy96omnCTc6M43c63zQYT_5yZPvHEM + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_aes_6003a000_ORD 37 +#define DT_N_S_soc_S_aes_6003a000_ORD_STR_SORTABLE 00037 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_aes_6003a000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_aes_6003a000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_aes_6003a000_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_aes DT_N_S_soc_S_aes_6003a000 +#define DT_N_NODELABEL_aes DT_N_S_soc_S_aes_6003a000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_aes_6003a000_REG_NUM 1 +#define DT_N_S_soc_S_aes_6003a000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_aes_6003a000_REG_IDX_0_VAL_ADDRESS 1610850304 /* 0x6003a000 */ +#define DT_N_S_soc_S_aes_6003a000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_aes_6003a000_FOREACH_REG(fn) fn(DT_N_S_soc_S_aes_6003a000, 0) +#define DT_N_S_soc_S_aes_6003a000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_aes_6003a000, 0) +#define DT_N_S_soc_S_aes_6003a000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_aes_6003a000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_aes_6003a000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_aes_6003a000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_aes_6003a000_RANGES_NUM 0 +#define DT_N_S_soc_S_aes_6003a000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_aes_6003a000_IRQ_NUM 0 +#define DT_N_S_soc_S_aes_6003a000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_aes_6003a000_COMPAT_MATCHES_espressif_esp32_aes 1 +#define DT_N_S_soc_S_aes_6003a000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_aes_6003a000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_aes_6003a000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_aes_6003a000_COMPAT_MODEL_IDX_0 "esp32-aes" +#define DT_N_S_soc_S_aes_6003a000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_aes_6003a000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_aes_6003a000_P_status "okay" +#define DT_N_S_soc_S_aes_6003a000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_aes_6003a000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_aes_6003a000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_aes_6003a000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_aes_6003a000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_aes_6003a000_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_aes_6003a000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_aes_6003a000_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_aes_6003a000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_aes_6003a000, status, 0) +#define DT_N_S_soc_S_aes_6003a000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_aes_6003a000, status, 0) +#define DT_N_S_soc_S_aes_6003a000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_aes_6003a000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_aes_6003a000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_aes_6003a000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_aes_6003a000_P_status_LEN 1 +#define DT_N_S_soc_S_aes_6003a000_P_status_EXISTS 1 +#define DT_N_S_soc_S_aes_6003a000_P_compatible {"espressif,esp32-aes"} +#define DT_N_S_soc_S_aes_6003a000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_aes_6003a000_P_compatible_IDX_0 "espressif,esp32-aes" +#define DT_N_S_soc_S_aes_6003a000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-aes +#define DT_N_S_soc_S_aes_6003a000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_aes +#define DT_N_S_soc_S_aes_6003a000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_AES +#define DT_N_S_soc_S_aes_6003a000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_aes_6003a000, compatible, 0) +#define DT_N_S_soc_S_aes_6003a000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_aes_6003a000, compatible, 0) +#define DT_N_S_soc_S_aes_6003a000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_aes_6003a000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_aes_6003a000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_aes_6003a000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_aes_6003a000_P_compatible_LEN 1 +#define DT_N_S_soc_S_aes_6003a000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_aes_6003a000_P_reg {1610850304 /* 0x6003a000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_aes_6003a000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_aes_6003a000_P_reg_IDX_0 1610850304 +#define DT_N_S_soc_S_aes_6003a000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_aes_6003a000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_aes_6003a000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_aes_6003a000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_aes_6003a000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_aes_6003a000_P_clocks_IDX_0_VAL_offset 121 +#define DT_N_S_soc_S_aes_6003a000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_aes_6003a000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_aes_6003a000, clocks, 0, offset) +#define DT_N_S_soc_S_aes_6003a000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_aes_6003a000, clocks, 0, offset) +#define DT_N_S_soc_S_aes_6003a000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_aes_6003a000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_aes_6003a000, clocks, 0) +#define DT_N_S_soc_S_aes_6003a000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_aes_6003a000, clocks, 0) +#define DT_N_S_soc_S_aes_6003a000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_aes_6003a000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_aes_6003a000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_aes_6003a000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_aes_6003a000_P_clocks_LEN 1 +#define DT_N_S_soc_S_aes_6003a000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_aes_6003a000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_aes_6003a000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_aes_6003a000_P_wakeup_source 0 +#define DT_N_S_soc_S_aes_6003a000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_aes_6003a000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_aes_6003a000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/can@6002b000 + * + * Node identifier: DT_N_S_soc_S_can_6002b000 + * + * Binding (compatible = espressif,esp32-twai): + * $ZEPHYR_BASE/dts/bindings/can/espressif,esp32-twai.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_can_6002b000_PATH "/soc/can@6002b000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_can_6002b000_FULL_NAME "can@6002b000" +#define DT_N_S_soc_S_can_6002b000_FULL_NAME_UNQUOTED can@6002b000 +#define DT_N_S_soc_S_can_6002b000_FULL_NAME_TOKEN can_6002b000 +#define DT_N_S_soc_S_can_6002b000_FULL_NAME_UPPER_TOKEN CAN_6002B000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_can_6002b000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_can_6002b000_CHILD_IDX 29 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_can_6002b000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_can_6002b000_FOREACH_NODELABEL(fn) fn(twai) +#define DT_N_S_soc_S_can_6002b000_FOREACH_NODELABEL_VARGS(fn, ...) fn(twai, __VA_ARGS__) +#define DT_N_S_soc_S_can_6002b000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_can_6002b000_CHILD_NUM 0 +#define DT_N_S_soc_S_can_6002b000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_can_6002b000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_can_6002b000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_can_6002b000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_can_6002b000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_can_6002b000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_can_6002b000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_can_6002b000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_can_6002b000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_can_6002b000_HASH 5r5gdCmTNDc_BaL_yCWZJGUz9pqM5G_LAQAzeh6ftoA + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_can_6002b000_ORD 38 +#define DT_N_S_soc_S_can_6002b000_ORD_STR_SORTABLE 00038 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_can_6002b000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 29, /* /pin-controller/twai_default */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_can_6002b000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_can_6002b000_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_twai DT_N_S_soc_S_can_6002b000 +#define DT_N_NODELABEL_twai DT_N_S_soc_S_can_6002b000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_can_6002b000_REG_NUM 1 +#define DT_N_S_soc_S_can_6002b000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_REG_IDX_0_VAL_ADDRESS 1610788864 /* 0x6002b000 */ +#define DT_N_S_soc_S_can_6002b000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_can_6002b000_FOREACH_REG(fn) fn(DT_N_S_soc_S_can_6002b000, 0) +#define DT_N_S_soc_S_can_6002b000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_can_6002b000, 0) +#define DT_N_S_soc_S_can_6002b000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_can_6002b000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_6002b000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_can_6002b000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_6002b000_RANGES_NUM 0 +#define DT_N_S_soc_S_can_6002b000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_can_6002b000_IRQ_NUM 1 +#define DT_N_S_soc_S_can_6002b000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_IRQ_IDX_0_VAL_irq 37 +#define DT_N_S_soc_S_can_6002b000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_can_6002b000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_can_6002b000_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_can_6002b000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_can_6002b000_COMPAT_MATCHES_espressif_esp32_twai 1 +#define DT_N_S_soc_S_can_6002b000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_can_6002b000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_COMPAT_MODEL_IDX_0 "esp32-twai" +#define DT_N_S_soc_S_can_6002b000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_can_6002b000_PINCTRL_NUM 1 +#define DT_N_S_soc_S_can_6002b000_PINCTRL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_PINCTRL_IDX_0_TOKEN default +#define DT_N_S_soc_S_can_6002b000_PINCTRL_IDX_0_UPPER_TOKEN DEFAULT +#define DT_N_S_soc_S_can_6002b000_PINCTRL_NAME_default_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_PINCTRL_NAME_default_IDX 0 +#define DT_N_S_soc_S_can_6002b000_PINCTRL_NAME_default_IDX_0_PH DT_N_S_pin_controller_S_twai_default + +/* Generic property macros: */ +#define DT_N_S_soc_S_can_6002b000_P_reg {1610788864 /* 0x6002b000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_can_6002b000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_reg_IDX_0 1610788864 +#define DT_N_S_soc_S_can_6002b000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_can_6002b000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_interrupts {37 /* 0x25 */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_can_6002b000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_interrupts_IDX_0 37 +#define DT_N_S_soc_S_can_6002b000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_can_6002b000_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_can_6002b000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_can_6002b000_P_clocks_IDX_0_VAL_offset 118 +#define DT_N_S_soc_S_can_6002b000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_can_6002b000, clocks, 0, offset) +#define DT_N_S_soc_S_can_6002b000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_can_6002b000, clocks, 0, offset) +#define DT_N_S_soc_S_can_6002b000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_can_6002b000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_can_6002b000, clocks, 0) +#define DT_N_S_soc_S_can_6002b000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_can_6002b000, clocks, 0) +#define DT_N_S_soc_S_can_6002b000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_can_6002b000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_6002b000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_can_6002b000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_6002b000_P_clocks_LEN 1 +#define DT_N_S_soc_S_can_6002b000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_pinctrl_0_IDX_0 DT_N_S_pin_controller_S_twai_default +#define DT_N_S_soc_S_can_6002b000_P_pinctrl_0_IDX_0_PH DT_N_S_pin_controller_S_twai_default +#define DT_N_S_soc_S_can_6002b000_P_pinctrl_0_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_pinctrl_0_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_can_6002b000, pinctrl_0, 0) +#define DT_N_S_soc_S_can_6002b000_P_pinctrl_0_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_can_6002b000, pinctrl_0, 0) +#define DT_N_S_soc_S_can_6002b000_P_pinctrl_0_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_can_6002b000, pinctrl_0, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_6002b000_P_pinctrl_0_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_can_6002b000, pinctrl_0, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_6002b000_P_pinctrl_0_LEN 1 +#define DT_N_S_soc_S_can_6002b000_P_pinctrl_0_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_pinctrl_names {"default"} +#define DT_N_S_soc_S_can_6002b000_P_pinctrl_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_pinctrl_names_IDX_0 "default" +#define DT_N_S_soc_S_can_6002b000_P_pinctrl_names_IDX_0_STRING_UNQUOTED default +#define DT_N_S_soc_S_can_6002b000_P_pinctrl_names_IDX_0_STRING_TOKEN default +#define DT_N_S_soc_S_can_6002b000_P_pinctrl_names_IDX_0_STRING_UPPER_TOKEN DEFAULT +#define DT_N_S_soc_S_can_6002b000_P_pinctrl_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_can_6002b000, pinctrl_names, 0) +#define DT_N_S_soc_S_can_6002b000_P_pinctrl_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_can_6002b000, pinctrl_names, 0) +#define DT_N_S_soc_S_can_6002b000_P_pinctrl_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_can_6002b000, pinctrl_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_6002b000_P_pinctrl_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_can_6002b000, pinctrl_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_6002b000_P_pinctrl_names_LEN 1 +#define DT_N_S_soc_S_can_6002b000_P_pinctrl_names_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_status "disabled" +#define DT_N_S_soc_S_can_6002b000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_can_6002b000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_can_6002b000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_can_6002b000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_can_6002b000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_can_6002b000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_can_6002b000, status, 0) +#define DT_N_S_soc_S_can_6002b000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_can_6002b000, status, 0) +#define DT_N_S_soc_S_can_6002b000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_can_6002b000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_6002b000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_can_6002b000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_6002b000_P_status_LEN 1 +#define DT_N_S_soc_S_can_6002b000_P_status_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_compatible {"espressif,esp32-twai"} +#define DT_N_S_soc_S_can_6002b000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_compatible_IDX_0 "espressif,esp32-twai" +#define DT_N_S_soc_S_can_6002b000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-twai +#define DT_N_S_soc_S_can_6002b000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_twai +#define DT_N_S_soc_S_can_6002b000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_TWAI +#define DT_N_S_soc_S_can_6002b000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_can_6002b000, compatible, 0) +#define DT_N_S_soc_S_can_6002b000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_can_6002b000, compatible, 0) +#define DT_N_S_soc_S_can_6002b000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_can_6002b000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_6002b000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_can_6002b000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_6002b000_P_compatible_LEN 1 +#define DT_N_S_soc_S_can_6002b000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_can_6002b000_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_can_6002b000_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_can_6002b000_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_can_6002b000, interrupt_parent, 0) +#define DT_N_S_soc_S_can_6002b000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_can_6002b000, interrupt_parent, 0) +#define DT_N_S_soc_S_can_6002b000_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_can_6002b000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_6002b000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_can_6002b000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_can_6002b000_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_can_6002b000_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_can_6002b000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_wakeup_source 0 +#define DT_N_S_soc_S_can_6002b000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_can_6002b000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_can_6002b000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/coretemp@60008800 + * + * Node identifier: DT_N_S_soc_S_coretemp_60008800 + * + * Binding (compatible = espressif,esp32-temp): + * $ZEPHYR_BASE/dts/bindings/sensor/espressif,esp32-temp.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_coretemp_60008800_PATH "/soc/coretemp@60008800" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_coretemp_60008800_FULL_NAME "coretemp@60008800" +#define DT_N_S_soc_S_coretemp_60008800_FULL_NAME_UNQUOTED coretemp@60008800 +#define DT_N_S_soc_S_coretemp_60008800_FULL_NAME_TOKEN coretemp_60008800 +#define DT_N_S_soc_S_coretemp_60008800_FULL_NAME_UPPER_TOKEN CORETEMP_60008800 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_coretemp_60008800_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_coretemp_60008800_CHILD_IDX 26 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_coretemp_60008800_NODELABEL_NUM 1 +#define DT_N_S_soc_S_coretemp_60008800_FOREACH_NODELABEL(fn) fn(coretemp) +#define DT_N_S_soc_S_coretemp_60008800_FOREACH_NODELABEL_VARGS(fn, ...) fn(coretemp, __VA_ARGS__) +#define DT_N_S_soc_S_coretemp_60008800_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_coretemp_60008800_CHILD_NUM 0 +#define DT_N_S_soc_S_coretemp_60008800_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_coretemp_60008800_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_coretemp_60008800_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_coretemp_60008800_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_coretemp_60008800_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_coretemp_60008800_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_coretemp_60008800_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_coretemp_60008800_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_coretemp_60008800_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_coretemp_60008800_HASH s570n_MdF8JSOwZbhQjCHHlLF8TLPdTfxDKC5TQAz0Y + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_coretemp_60008800_ORD 39 +#define DT_N_S_soc_S_coretemp_60008800_ORD_STR_SORTABLE 00039 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_coretemp_60008800_REQUIRES_ORDS \ + 12, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_coretemp_60008800_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_coretemp_60008800_EXISTS 1 +#define DT_N_ALIAS_die_temp0 DT_N_S_soc_S_coretemp_60008800 +#define DT_N_INST_0_espressif_esp32_temp DT_N_S_soc_S_coretemp_60008800 +#define DT_N_NODELABEL_coretemp DT_N_S_soc_S_coretemp_60008800 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_coretemp_60008800_REG_NUM 1 +#define DT_N_S_soc_S_coretemp_60008800_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_coretemp_60008800_REG_IDX_0_VAL_ADDRESS 1610647552 /* 0x60008800 */ +#define DT_N_S_soc_S_coretemp_60008800_REG_IDX_0_VAL_SIZE 4 /* 0x4 */ +#define DT_N_S_soc_S_coretemp_60008800_FOREACH_REG(fn) fn(DT_N_S_soc_S_coretemp_60008800, 0) +#define DT_N_S_soc_S_coretemp_60008800_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_coretemp_60008800, 0) +#define DT_N_S_soc_S_coretemp_60008800_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_coretemp_60008800, 0, __VA_ARGS__) +#define DT_N_S_soc_S_coretemp_60008800_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_coretemp_60008800, 0, __VA_ARGS__) +#define DT_N_S_soc_S_coretemp_60008800_RANGES_NUM 0 +#define DT_N_S_soc_S_coretemp_60008800_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_coretemp_60008800_IRQ_NUM 0 +#define DT_N_S_soc_S_coretemp_60008800_IRQ_LEVEL 0 +#define DT_N_S_soc_S_coretemp_60008800_COMPAT_MATCHES_espressif_esp32_temp 1 +#define DT_N_S_soc_S_coretemp_60008800_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_coretemp_60008800_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_coretemp_60008800_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_coretemp_60008800_COMPAT_MODEL_IDX_0 "esp32-temp" +#define DT_N_S_soc_S_coretemp_60008800_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_coretemp_60008800_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_coretemp_60008800_P_range_min -10 +#define DT_N_S_soc_S_coretemp_60008800_P_range_min_EXISTS 1 +#define DT_N_S_soc_S_coretemp_60008800_P_range_max 80 +#define DT_N_S_soc_S_coretemp_60008800_P_range_max_EXISTS 1 +#define DT_N_S_soc_S_coretemp_60008800_P_friendly_name "coretemp" +#define DT_N_S_soc_S_coretemp_60008800_P_friendly_name_STRING_UNQUOTED coretemp +#define DT_N_S_soc_S_coretemp_60008800_P_friendly_name_STRING_TOKEN coretemp +#define DT_N_S_soc_S_coretemp_60008800_P_friendly_name_STRING_UPPER_TOKEN CORETEMP +#define DT_N_S_soc_S_coretemp_60008800_P_friendly_name_IDX_0 "coretemp" +#define DT_N_S_soc_S_coretemp_60008800_P_friendly_name_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_coretemp_60008800_P_friendly_name_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_coretemp_60008800, friendly_name, 0) +#define DT_N_S_soc_S_coretemp_60008800_P_friendly_name_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_coretemp_60008800, friendly_name, 0) +#define DT_N_S_soc_S_coretemp_60008800_P_friendly_name_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_coretemp_60008800, friendly_name, 0, __VA_ARGS__) +#define DT_N_S_soc_S_coretemp_60008800_P_friendly_name_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_coretemp_60008800, friendly_name, 0, __VA_ARGS__) +#define DT_N_S_soc_S_coretemp_60008800_P_friendly_name_LEN 1 +#define DT_N_S_soc_S_coretemp_60008800_P_friendly_name_EXISTS 1 +#define DT_N_S_soc_S_coretemp_60008800_P_status "disabled" +#define DT_N_S_soc_S_coretemp_60008800_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_coretemp_60008800_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_coretemp_60008800_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_coretemp_60008800_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_coretemp_60008800_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_coretemp_60008800_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_coretemp_60008800_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_coretemp_60008800_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_coretemp_60008800_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_coretemp_60008800, status, 0) +#define DT_N_S_soc_S_coretemp_60008800_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_coretemp_60008800, status, 0) +#define DT_N_S_soc_S_coretemp_60008800_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_coretemp_60008800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_coretemp_60008800_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_coretemp_60008800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_coretemp_60008800_P_status_LEN 1 +#define DT_N_S_soc_S_coretemp_60008800_P_status_EXISTS 1 +#define DT_N_S_soc_S_coretemp_60008800_P_compatible {"espressif,esp32-temp"} +#define DT_N_S_soc_S_coretemp_60008800_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_coretemp_60008800_P_compatible_IDX_0 "espressif,esp32-temp" +#define DT_N_S_soc_S_coretemp_60008800_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-temp +#define DT_N_S_soc_S_coretemp_60008800_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_temp +#define DT_N_S_soc_S_coretemp_60008800_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_TEMP +#define DT_N_S_soc_S_coretemp_60008800_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_coretemp_60008800, compatible, 0) +#define DT_N_S_soc_S_coretemp_60008800_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_coretemp_60008800, compatible, 0) +#define DT_N_S_soc_S_coretemp_60008800_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_coretemp_60008800, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_coretemp_60008800_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_coretemp_60008800, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_coretemp_60008800_P_compatible_LEN 1 +#define DT_N_S_soc_S_coretemp_60008800_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_coretemp_60008800_P_reg {1610647552 /* 0x60008800 */, 4 /* 0x4 */} +#define DT_N_S_soc_S_coretemp_60008800_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_coretemp_60008800_P_reg_IDX_0 1610647552 +#define DT_N_S_soc_S_coretemp_60008800_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_coretemp_60008800_P_reg_IDX_1 4 +#define DT_N_S_soc_S_coretemp_60008800_P_reg_EXISTS 1 +#define DT_N_S_soc_S_coretemp_60008800_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_coretemp_60008800_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_coretemp_60008800_P_wakeup_source 0 +#define DT_N_S_soc_S_coretemp_60008800_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_coretemp_60008800_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_coretemp_60008800_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/i2c@60013000 + * + * Node identifier: DT_N_S_soc_S_i2c_60013000 + * + * Binding (compatible = espressif,esp32-i2c): + * $ZEPHYR_BASE/dts/bindings/i2c/espressif,esp32-i2c.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_i2c_60013000_PATH "/soc/i2c@60013000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_i2c_60013000_FULL_NAME "i2c@60013000" +#define DT_N_S_soc_S_i2c_60013000_FULL_NAME_UNQUOTED i2c@60013000 +#define DT_N_S_soc_S_i2c_60013000_FULL_NAME_TOKEN i2c_60013000 +#define DT_N_S_soc_S_i2c_60013000_FULL_NAME_UPPER_TOKEN I2C_60013000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_i2c_60013000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_i2c_60013000_CHILD_IDX 20 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_i2c_60013000_NODELABEL_NUM 2 +#define DT_N_S_soc_S_i2c_60013000_FOREACH_NODELABEL(fn) fn(i2c0) fn(xiao_i2c) +#define DT_N_S_soc_S_i2c_60013000_FOREACH_NODELABEL_VARGS(fn, ...) fn(i2c0, __VA_ARGS__) fn(xiao_i2c, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60013000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_i2c_60013000_CHILD_NUM 0 +#define DT_N_S_soc_S_i2c_60013000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_i2c_60013000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_i2c_60013000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_i2c_60013000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_i2c_60013000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_i2c_60013000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_i2c_60013000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_i2c_60013000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_i2c_60013000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_i2c_60013000_HASH diC9FjkAugIysmEE2Y8Og0QD8HpYHFYLio2pDvLOy8c + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_i2c_60013000_ORD 40 +#define DT_N_S_soc_S_i2c_60013000_ORD_STR_SORTABLE 00040 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_i2c_60013000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 19, /* /pin-controller/i2c0_default */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_i2c_60013000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_i2c_60013000_EXISTS 1 +#define DT_N_ALIAS_i2c_0 DT_N_S_soc_S_i2c_60013000 +#define DT_N_INST_0_espressif_esp32_i2c DT_N_S_soc_S_i2c_60013000 +#define DT_N_NODELABEL_i2c0 DT_N_S_soc_S_i2c_60013000 +#define DT_N_NODELABEL_xiao_i2c DT_N_S_soc_S_i2c_60013000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_i2c_60013000_REG_NUM 1 +#define DT_N_S_soc_S_i2c_60013000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_REG_IDX_0_VAL_ADDRESS 1610690560 /* 0x60013000 */ +#define DT_N_S_soc_S_i2c_60013000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_i2c_60013000_FOREACH_REG(fn) fn(DT_N_S_soc_S_i2c_60013000, 0) +#define DT_N_S_soc_S_i2c_60013000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_60013000, 0) +#define DT_N_S_soc_S_i2c_60013000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_60013000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60013000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_60013000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60013000_RANGES_NUM 0 +#define DT_N_S_soc_S_i2c_60013000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_i2c_60013000_IRQ_NUM 1 +#define DT_N_S_soc_S_i2c_60013000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_IRQ_IDX_0_VAL_irq 42 +#define DT_N_S_soc_S_i2c_60013000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_i2c_60013000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_i2c_60013000_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_i2c_60013000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_i2c_60013000_COMPAT_MATCHES_espressif_esp32_i2c 1 +#define DT_N_S_soc_S_i2c_60013000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_i2c_60013000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_COMPAT_MODEL_IDX_0 "esp32-i2c" +#define DT_N_S_soc_S_i2c_60013000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_i2c_60013000_PINCTRL_NUM 1 +#define DT_N_S_soc_S_i2c_60013000_PINCTRL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_PINCTRL_IDX_0_TOKEN default +#define DT_N_S_soc_S_i2c_60013000_PINCTRL_IDX_0_UPPER_TOKEN DEFAULT +#define DT_N_S_soc_S_i2c_60013000_PINCTRL_NAME_default_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_PINCTRL_NAME_default_IDX 0 +#define DT_N_S_soc_S_i2c_60013000_PINCTRL_NAME_default_IDX_0_PH DT_N_S_pin_controller_S_i2c0_default + +/* Generic property macros: */ +#define DT_N_S_soc_S_i2c_60013000_P_reg {1610690560 /* 0x60013000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_i2c_60013000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_reg_IDX_0 1610690560 +#define DT_N_S_soc_S_i2c_60013000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_i2c_60013000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_pinctrl_0_IDX_0 DT_N_S_pin_controller_S_i2c0_default +#define DT_N_S_soc_S_i2c_60013000_P_pinctrl_0_IDX_0_PH DT_N_S_pin_controller_S_i2c0_default +#define DT_N_S_soc_S_i2c_60013000_P_pinctrl_0_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_pinctrl_0_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_60013000, pinctrl_0, 0) +#define DT_N_S_soc_S_i2c_60013000_P_pinctrl_0_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_60013000, pinctrl_0, 0) +#define DT_N_S_soc_S_i2c_60013000_P_pinctrl_0_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_60013000, pinctrl_0, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60013000_P_pinctrl_0_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_60013000, pinctrl_0, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60013000_P_pinctrl_0_LEN 1 +#define DT_N_S_soc_S_i2c_60013000_P_pinctrl_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_pinctrl_names {"default"} +#define DT_N_S_soc_S_i2c_60013000_P_pinctrl_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_pinctrl_names_IDX_0 "default" +#define DT_N_S_soc_S_i2c_60013000_P_pinctrl_names_IDX_0_STRING_UNQUOTED default +#define DT_N_S_soc_S_i2c_60013000_P_pinctrl_names_IDX_0_STRING_TOKEN default +#define DT_N_S_soc_S_i2c_60013000_P_pinctrl_names_IDX_0_STRING_UPPER_TOKEN DEFAULT +#define DT_N_S_soc_S_i2c_60013000_P_pinctrl_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_60013000, pinctrl_names, 0) +#define DT_N_S_soc_S_i2c_60013000_P_pinctrl_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_60013000, pinctrl_names, 0) +#define DT_N_S_soc_S_i2c_60013000_P_pinctrl_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_60013000, pinctrl_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60013000_P_pinctrl_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_60013000, pinctrl_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60013000_P_pinctrl_names_LEN 1 +#define DT_N_S_soc_S_i2c_60013000_P_pinctrl_names_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_tx_lsb 0 +#define DT_N_S_soc_S_i2c_60013000_P_tx_lsb_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_rx_lsb 0 +#define DT_N_S_soc_S_i2c_60013000_P_rx_lsb_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_clock_frequency 100000 +#define DT_N_S_soc_S_i2c_60013000_P_clock_frequency_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_sq_size 4 +#define DT_N_S_soc_S_i2c_60013000_P_sq_size_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_cq_size 4 +#define DT_N_S_soc_S_i2c_60013000_P_cq_size_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_status "okay" +#define DT_N_S_soc_S_i2c_60013000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_i2c_60013000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_i2c_60013000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_i2c_60013000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_i2c_60013000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_i2c_60013000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_60013000, status, 0) +#define DT_N_S_soc_S_i2c_60013000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_60013000, status, 0) +#define DT_N_S_soc_S_i2c_60013000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_60013000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60013000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_60013000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60013000_P_status_LEN 1 +#define DT_N_S_soc_S_i2c_60013000_P_status_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_compatible {"espressif,esp32-i2c"} +#define DT_N_S_soc_S_i2c_60013000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_compatible_IDX_0 "espressif,esp32-i2c" +#define DT_N_S_soc_S_i2c_60013000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-i2c +#define DT_N_S_soc_S_i2c_60013000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_i2c +#define DT_N_S_soc_S_i2c_60013000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_I2C +#define DT_N_S_soc_S_i2c_60013000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_60013000, compatible, 0) +#define DT_N_S_soc_S_i2c_60013000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_60013000, compatible, 0) +#define DT_N_S_soc_S_i2c_60013000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_60013000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60013000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_60013000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60013000_P_compatible_LEN 1 +#define DT_N_S_soc_S_i2c_60013000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_interrupts {42 /* 0x2a */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_i2c_60013000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_interrupts_IDX_0 42 +#define DT_N_S_soc_S_i2c_60013000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_i2c_60013000_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_i2c_60013000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_i2c_60013000_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_i2c_60013000_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_i2c_60013000_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_60013000, interrupt_parent, 0) +#define DT_N_S_soc_S_i2c_60013000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_60013000, interrupt_parent, 0) +#define DT_N_S_soc_S_i2c_60013000_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_60013000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60013000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_60013000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60013000_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_i2c_60013000_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_i2c_60013000_P_clocks_IDX_0_VAL_offset 103 +#define DT_N_S_soc_S_i2c_60013000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_i2c_60013000, clocks, 0, offset) +#define DT_N_S_soc_S_i2c_60013000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_60013000, clocks, 0, offset) +#define DT_N_S_soc_S_i2c_60013000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_i2c_60013000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_60013000, clocks, 0) +#define DT_N_S_soc_S_i2c_60013000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_60013000, clocks, 0) +#define DT_N_S_soc_S_i2c_60013000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_60013000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60013000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_60013000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60013000_P_clocks_LEN 1 +#define DT_N_S_soc_S_i2c_60013000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_i2c_60013000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_wakeup_source 0 +#define DT_N_S_soc_S_i2c_60013000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_i2c_60013000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_i2c_60013000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/i2c@60027000 + * + * Node identifier: DT_N_S_soc_S_i2c_60027000 + * + * Binding (compatible = espressif,esp32-i2c): + * $ZEPHYR_BASE/dts/bindings/i2c/espressif,esp32-i2c.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_i2c_60027000_PATH "/soc/i2c@60027000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_i2c_60027000_FULL_NAME "i2c@60027000" +#define DT_N_S_soc_S_i2c_60027000_FULL_NAME_UNQUOTED i2c@60027000 +#define DT_N_S_soc_S_i2c_60027000_FULL_NAME_TOKEN i2c_60027000 +#define DT_N_S_soc_S_i2c_60027000_FULL_NAME_UPPER_TOKEN I2C_60027000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_i2c_60027000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_i2c_60027000_CHILD_IDX 21 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_i2c_60027000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_i2c_60027000_FOREACH_NODELABEL(fn) fn(i2c1) +#define DT_N_S_soc_S_i2c_60027000_FOREACH_NODELABEL_VARGS(fn, ...) fn(i2c1, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60027000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_i2c_60027000_CHILD_NUM 0 +#define DT_N_S_soc_S_i2c_60027000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_i2c_60027000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_i2c_60027000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_i2c_60027000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_i2c_60027000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_i2c_60027000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_i2c_60027000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_i2c_60027000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_i2c_60027000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_i2c_60027000_HASH SXFn1itkpablGfM2xYGAOJbfdg6jx0bi_lt599mkZ8w + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_i2c_60027000_ORD 41 +#define DT_N_S_soc_S_i2c_60027000_ORD_STR_SORTABLE 00041 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_i2c_60027000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_i2c_60027000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_i2c_60027000_EXISTS 1 +#define DT_N_INST_1_espressif_esp32_i2c DT_N_S_soc_S_i2c_60027000 +#define DT_N_NODELABEL_i2c1 DT_N_S_soc_S_i2c_60027000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_i2c_60027000_REG_NUM 1 +#define DT_N_S_soc_S_i2c_60027000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_REG_IDX_0_VAL_ADDRESS 1610772480 /* 0x60027000 */ +#define DT_N_S_soc_S_i2c_60027000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_i2c_60027000_FOREACH_REG(fn) fn(DT_N_S_soc_S_i2c_60027000, 0) +#define DT_N_S_soc_S_i2c_60027000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_60027000, 0) +#define DT_N_S_soc_S_i2c_60027000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_60027000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60027000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_60027000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60027000_RANGES_NUM 0 +#define DT_N_S_soc_S_i2c_60027000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_i2c_60027000_IRQ_NUM 1 +#define DT_N_S_soc_S_i2c_60027000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_IRQ_IDX_0_VAL_irq 43 +#define DT_N_S_soc_S_i2c_60027000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_i2c_60027000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_i2c_60027000_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_i2c_60027000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_i2c_60027000_COMPAT_MATCHES_espressif_esp32_i2c 1 +#define DT_N_S_soc_S_i2c_60027000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_i2c_60027000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_COMPAT_MODEL_IDX_0 "esp32-i2c" +#define DT_N_S_soc_S_i2c_60027000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_i2c_60027000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_i2c_60027000_P_reg {1610772480 /* 0x60027000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_i2c_60027000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_reg_IDX_0 1610772480 +#define DT_N_S_soc_S_i2c_60027000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_i2c_60027000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_tx_lsb 0 +#define DT_N_S_soc_S_i2c_60027000_P_tx_lsb_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_rx_lsb 0 +#define DT_N_S_soc_S_i2c_60027000_P_rx_lsb_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_sq_size 4 +#define DT_N_S_soc_S_i2c_60027000_P_sq_size_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_cq_size 4 +#define DT_N_S_soc_S_i2c_60027000_P_cq_size_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_status "disabled" +#define DT_N_S_soc_S_i2c_60027000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_i2c_60027000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_i2c_60027000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_i2c_60027000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_i2c_60027000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_i2c_60027000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_60027000, status, 0) +#define DT_N_S_soc_S_i2c_60027000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_60027000, status, 0) +#define DT_N_S_soc_S_i2c_60027000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_60027000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60027000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_60027000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60027000_P_status_LEN 1 +#define DT_N_S_soc_S_i2c_60027000_P_status_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_compatible {"espressif,esp32-i2c"} +#define DT_N_S_soc_S_i2c_60027000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_compatible_IDX_0 "espressif,esp32-i2c" +#define DT_N_S_soc_S_i2c_60027000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-i2c +#define DT_N_S_soc_S_i2c_60027000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_i2c +#define DT_N_S_soc_S_i2c_60027000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_I2C +#define DT_N_S_soc_S_i2c_60027000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_60027000, compatible, 0) +#define DT_N_S_soc_S_i2c_60027000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_60027000, compatible, 0) +#define DT_N_S_soc_S_i2c_60027000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_60027000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60027000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_60027000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60027000_P_compatible_LEN 1 +#define DT_N_S_soc_S_i2c_60027000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_interrupts {43 /* 0x2b */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_i2c_60027000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_interrupts_IDX_0 43 +#define DT_N_S_soc_S_i2c_60027000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_i2c_60027000_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_i2c_60027000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_i2c_60027000_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_i2c_60027000_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_i2c_60027000_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_60027000, interrupt_parent, 0) +#define DT_N_S_soc_S_i2c_60027000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_60027000, interrupt_parent, 0) +#define DT_N_S_soc_S_i2c_60027000_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_60027000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60027000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_60027000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60027000_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_i2c_60027000_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_i2c_60027000_P_clocks_IDX_0_VAL_offset 104 +#define DT_N_S_soc_S_i2c_60027000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_i2c_60027000, clocks, 0, offset) +#define DT_N_S_soc_S_i2c_60027000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_60027000, clocks, 0, offset) +#define DT_N_S_soc_S_i2c_60027000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_i2c_60027000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2c_60027000, clocks, 0) +#define DT_N_S_soc_S_i2c_60027000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2c_60027000, clocks, 0) +#define DT_N_S_soc_S_i2c_60027000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2c_60027000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60027000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2c_60027000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2c_60027000_P_clocks_LEN 1 +#define DT_N_S_soc_S_i2c_60027000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_i2c_60027000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_wakeup_source 0 +#define DT_N_S_soc_S_i2c_60027000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_i2c_60027000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_i2c_60027000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/dma@6003f000 + * + * Node identifier: DT_N_S_soc_S_dma_6003f000 + * + * Binding (compatible = espressif,esp32-gdma): + * $ZEPHYR_BASE/dts/bindings/dma/espressif,esp32-gdma.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_dma_6003f000_PATH "/soc/dma@6003f000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_dma_6003f000_FULL_NAME "dma@6003f000" +#define DT_N_S_soc_S_dma_6003f000_FULL_NAME_UNQUOTED dma@6003f000 +#define DT_N_S_soc_S_dma_6003f000_FULL_NAME_TOKEN dma_6003f000 +#define DT_N_S_soc_S_dma_6003f000_FULL_NAME_UPPER_TOKEN DMA_6003F000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_dma_6003f000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_dma_6003f000_CHILD_IDX 44 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_dma_6003f000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_dma_6003f000_FOREACH_NODELABEL(fn) fn(dma) +#define DT_N_S_soc_S_dma_6003f000_FOREACH_NODELABEL_VARGS(fn, ...) fn(dma, __VA_ARGS__) +#define DT_N_S_soc_S_dma_6003f000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_dma_6003f000_CHILD_NUM 0 +#define DT_N_S_soc_S_dma_6003f000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_dma_6003f000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_dma_6003f000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_dma_6003f000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_dma_6003f000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_dma_6003f000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_dma_6003f000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_dma_6003f000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_dma_6003f000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_dma_6003f000_HASH ChjKwIh8h_E_Bk6GwR2A6PxkBTP21qk6VLD9eGTpvrc + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_dma_6003f000_ORD 42 +#define DT_N_S_soc_S_dma_6003f000_ORD_STR_SORTABLE 00042 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_dma_6003f000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_dma_6003f000_SUPPORTS_ORDS \ + 43, /* /soc/i2s@6000f000 */ \ + 44, /* /soc/i2s@6002d000 */ \ + 95, /* /soc/lcd_cam@60041000 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_dma_6003f000_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_gdma DT_N_S_soc_S_dma_6003f000 +#define DT_N_NODELABEL_dma DT_N_S_soc_S_dma_6003f000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_dma_6003f000_REG_NUM 1 +#define DT_N_S_soc_S_dma_6003f000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_REG_IDX_0_VAL_ADDRESS 1610870784 /* 0x6003f000 */ +#define DT_N_S_soc_S_dma_6003f000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_dma_6003f000_FOREACH_REG(fn) fn(DT_N_S_soc_S_dma_6003f000, 0) +#define DT_N_S_soc_S_dma_6003f000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_dma_6003f000, 0) +#define DT_N_S_soc_S_dma_6003f000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_dma_6003f000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dma_6003f000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_dma_6003f000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dma_6003f000_RANGES_NUM 0 +#define DT_N_S_soc_S_dma_6003f000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_dma_6003f000_IRQ_NUM 10 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_0_VAL_irq 66 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_0_VAL_flags 256 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_1_VAL_irq 71 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_1_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_1_VAL_priority 0 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_1_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_1_VAL_flags 256 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_1_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_1_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_2_VAL_irq 67 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_2_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_2_VAL_priority 0 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_2_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_2_VAL_flags 256 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_2_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_2_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_3_VAL_irq 72 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_3_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_3_VAL_priority 0 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_3_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_3_VAL_flags 256 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_3_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_3_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_4_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_4_VAL_irq 68 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_4_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_4_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_4_VAL_priority 0 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_4_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_4_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_4_VAL_flags 256 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_4_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_4_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_5_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_5_VAL_irq 73 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_5_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_5_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_5_VAL_priority 0 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_5_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_5_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_5_VAL_flags 256 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_5_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_5_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_6_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_6_VAL_irq 69 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_6_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_6_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_6_VAL_priority 0 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_6_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_6_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_6_VAL_flags 256 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_6_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_6_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_7_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_7_VAL_irq 74 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_7_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_7_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_7_VAL_priority 0 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_7_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_7_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_7_VAL_flags 256 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_7_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_7_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_8_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_8_VAL_irq 70 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_8_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_8_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_8_VAL_priority 0 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_8_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_8_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_8_VAL_flags 256 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_8_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_8_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_9_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_9_VAL_irq 75 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_9_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_9_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_9_VAL_priority 0 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_9_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_9_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_9_VAL_flags 256 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_9_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_IRQ_IDX_9_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_dma_6003f000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_dma_6003f000_COMPAT_MATCHES_espressif_esp32_gdma 1 +#define DT_N_S_soc_S_dma_6003f000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_dma_6003f000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_COMPAT_MODEL_IDX_0 "esp32-gdma" +#define DT_N_S_soc_S_dma_6003f000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_dma_6003f000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_dma_6003f000_P_dma_channels 10 +#define DT_N_S_soc_S_dma_6003f000_P_dma_channels_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_dma_buf_addr_alignment 4 +#define DT_N_S_soc_S_dma_6003f000_P_dma_buf_addr_alignment_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_status "disabled" +#define DT_N_S_soc_S_dma_6003f000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_dma_6003f000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_dma_6003f000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_dma_6003f000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_dma_6003f000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_dma_6003f000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_dma_6003f000, status, 0) +#define DT_N_S_soc_S_dma_6003f000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_dma_6003f000, status, 0) +#define DT_N_S_soc_S_dma_6003f000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_dma_6003f000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dma_6003f000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_dma_6003f000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dma_6003f000_P_status_LEN 1 +#define DT_N_S_soc_S_dma_6003f000_P_status_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_compatible {"espressif,esp32-gdma"} +#define DT_N_S_soc_S_dma_6003f000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_compatible_IDX_0 "espressif,esp32-gdma" +#define DT_N_S_soc_S_dma_6003f000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-gdma +#define DT_N_S_soc_S_dma_6003f000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_gdma +#define DT_N_S_soc_S_dma_6003f000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_GDMA +#define DT_N_S_soc_S_dma_6003f000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_dma_6003f000, compatible, 0) +#define DT_N_S_soc_S_dma_6003f000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_dma_6003f000, compatible, 0) +#define DT_N_S_soc_S_dma_6003f000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_dma_6003f000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dma_6003f000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_dma_6003f000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dma_6003f000_P_compatible_LEN 1 +#define DT_N_S_soc_S_dma_6003f000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_reg {1610870784 /* 0x6003f000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_dma_6003f000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_reg_IDX_0 1610870784 +#define DT_N_S_soc_S_dma_6003f000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_dma_6003f000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts {66 /* 0x42 */, 0 /* 0x0 */, 256 /* 0x100 */, 71 /* 0x47 */, 0 /* 0x0 */, 256 /* 0x100 */, 67 /* 0x43 */, 0 /* 0x0 */, 256 /* 0x100 */, 72 /* 0x48 */, 0 /* 0x0 */, 256 /* 0x100 */, 68 /* 0x44 */, 0 /* 0x0 */, 256 /* 0x100 */, 73 /* 0x49 */, 0 /* 0x0 */, 256 /* 0x100 */, 69 /* 0x45 */, 0 /* 0x0 */, 256 /* 0x100 */, 74 /* 0x4a */, 0 /* 0x0 */, 256 /* 0x100 */, 70 /* 0x46 */, 0 /* 0x0 */, 256 /* 0x100 */, 75 /* 0x4b */, 0 /* 0x0 */, 256 /* 0x100 */} +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_0 66 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_2 256 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_3 71 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_4_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_4 0 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_5_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_5 256 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_6_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_6 67 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_7_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_7 0 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_8_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_8 256 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_9_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_9 72 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_10_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_10 0 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_11_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_11 256 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_12_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_12 68 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_13_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_13 0 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_14_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_14 256 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_15_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_15 73 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_16_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_16 0 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_17_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_17 256 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_18_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_18 69 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_19_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_19 0 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_20_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_20 256 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_21_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_21 74 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_22_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_22 0 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_23_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_23 256 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_24_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_24 70 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_25_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_25 0 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_26_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_26 256 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_27_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_27 75 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_28_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_28 0 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_29_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_IDX_29 256 +#define DT_N_S_soc_S_dma_6003f000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_dma_6003f000_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_dma_6003f000_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_dma_6003f000_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_dma_6003f000, interrupt_parent, 0) +#define DT_N_S_soc_S_dma_6003f000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_dma_6003f000, interrupt_parent, 0) +#define DT_N_S_soc_S_dma_6003f000_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_dma_6003f000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dma_6003f000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_dma_6003f000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dma_6003f000_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_dma_6003f000_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_dma_6003f000_P_clocks_IDX_0_VAL_offset 126 +#define DT_N_S_soc_S_dma_6003f000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_dma_6003f000, clocks, 0, offset) +#define DT_N_S_soc_S_dma_6003f000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_dma_6003f000, clocks, 0, offset) +#define DT_N_S_soc_S_dma_6003f000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_dma_6003f000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_dma_6003f000, clocks, 0) +#define DT_N_S_soc_S_dma_6003f000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_dma_6003f000, clocks, 0) +#define DT_N_S_soc_S_dma_6003f000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_dma_6003f000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dma_6003f000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_dma_6003f000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_dma_6003f000_P_clocks_LEN 1 +#define DT_N_S_soc_S_dma_6003f000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_dma_6003f000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_wakeup_source 0 +#define DT_N_S_soc_S_dma_6003f000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_dma_6003f000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_dma_6003f000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/i2s@6000f000 + * + * Node identifier: DT_N_S_soc_S_i2s_6000f000 + * + * Binding (compatible = espressif,esp32-i2s): + * $ZEPHYR_BASE/dts/bindings/i2s/espressif,esp32-i2s.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_i2s_6000f000_PATH "/soc/i2s@6000f000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_i2s_6000f000_FULL_NAME "i2s@6000f000" +#define DT_N_S_soc_S_i2s_6000f000_FULL_NAME_UNQUOTED i2s@6000f000 +#define DT_N_S_soc_S_i2s_6000f000_FULL_NAME_TOKEN i2s_6000f000 +#define DT_N_S_soc_S_i2s_6000f000_FULL_NAME_UPPER_TOKEN I2S_6000F000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_i2s_6000f000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_i2s_6000f000_CHILD_IDX 22 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_i2s_6000f000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_i2s_6000f000_FOREACH_NODELABEL(fn) fn(i2s0) +#define DT_N_S_soc_S_i2s_6000f000_FOREACH_NODELABEL_VARGS(fn, ...) fn(i2s0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6000f000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_i2s_6000f000_CHILD_NUM 0 +#define DT_N_S_soc_S_i2s_6000f000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_i2s_6000f000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_i2s_6000f000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_i2s_6000f000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_i2s_6000f000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_i2s_6000f000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_i2s_6000f000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_i2s_6000f000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_i2s_6000f000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_i2s_6000f000_HASH FjABTBTGl9eAwVAd5LyPSHuYHqhjqDz_ivspLhd8GRg + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_i2s_6000f000_ORD 43 +#define DT_N_S_soc_S_i2s_6000f000_ORD_STR_SORTABLE 00043 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_i2s_6000f000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 34, /* /clock */ \ + 42, /* /soc/dma@6003f000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_i2s_6000f000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_i2s_6000f000_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_i2s DT_N_S_soc_S_i2s_6000f000 +#define DT_N_NODELABEL_i2s0 DT_N_S_soc_S_i2s_6000f000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_i2s_6000f000_REG_NUM 1 +#define DT_N_S_soc_S_i2s_6000f000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_REG_IDX_0_VAL_ADDRESS 1610674176 /* 0x6000f000 */ +#define DT_N_S_soc_S_i2s_6000f000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_i2s_6000f000_FOREACH_REG(fn) fn(DT_N_S_soc_S_i2s_6000f000, 0) +#define DT_N_S_soc_S_i2s_6000f000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6000f000, 0) +#define DT_N_S_soc_S_i2s_6000f000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_i2s_6000f000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6000f000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2s_6000f000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6000f000_RANGES_NUM 0 +#define DT_N_S_soc_S_i2s_6000f000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_i2s_6000f000_IRQ_NUM 1 +#define DT_N_S_soc_S_i2s_6000f000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_IRQ_IDX_0_VAL_irq 25 +#define DT_N_S_soc_S_i2s_6000f000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_i2s_6000f000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_i2s_6000f000_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_i2s_6000f000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_i2s_6000f000_COMPAT_MATCHES_espressif_esp32_i2s 1 +#define DT_N_S_soc_S_i2s_6000f000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_i2s_6000f000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_COMPAT_MODEL_IDX_0 "esp32-i2s" +#define DT_N_S_soc_S_i2s_6000f000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_i2s_6000f000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_i2s_6000f000_P_reg {1610674176 /* 0x6000f000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_i2s_6000f000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_reg_IDX_0 1610674176 +#define DT_N_S_soc_S_i2s_6000f000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_i2s_6000f000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_i2s_6000f000_P_clocks_IDX_0_VAL_offset 105 +#define DT_N_S_soc_S_i2s_6000f000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_i2s_6000f000, clocks, 0, offset) +#define DT_N_S_soc_S_i2s_6000f000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6000f000, clocks, 0, offset) +#define DT_N_S_soc_S_i2s_6000f000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2s_6000f000, clocks, 0) +#define DT_N_S_soc_S_i2s_6000f000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6000f000, clocks, 0) +#define DT_N_S_soc_S_i2s_6000f000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2s_6000f000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6000f000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2s_6000f000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6000f000_P_clocks_LEN 1 +#define DT_N_S_soc_S_i2s_6000f000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_interrupts {25 /* 0x19 */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_i2s_6000f000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_interrupts_IDX_0 25 +#define DT_N_S_soc_S_i2s_6000f000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_i2s_6000f000_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_i2s_6000f000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_i2s_6000f000_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_i2s_6000f000_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_i2s_6000f000_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2s_6000f000, interrupt_parent, 0) +#define DT_N_S_soc_S_i2s_6000f000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6000f000, interrupt_parent, 0) +#define DT_N_S_soc_S_i2s_6000f000_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2s_6000f000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6000f000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2s_6000f000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6000f000_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_i2s_6000f000_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_unit 0 +#define DT_N_S_soc_S_i2s_6000f000_P_unit_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_status "disabled" +#define DT_N_S_soc_S_i2s_6000f000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_i2s_6000f000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_i2s_6000f000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_i2s_6000f000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_i2s_6000f000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_i2s_6000f000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2s_6000f000, status, 0) +#define DT_N_S_soc_S_i2s_6000f000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6000f000, status, 0) +#define DT_N_S_soc_S_i2s_6000f000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2s_6000f000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6000f000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2s_6000f000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6000f000_P_status_LEN 1 +#define DT_N_S_soc_S_i2s_6000f000_P_status_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_compatible {"espressif,esp32-i2s"} +#define DT_N_S_soc_S_i2s_6000f000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_compatible_IDX_0 "espressif,esp32-i2s" +#define DT_N_S_soc_S_i2s_6000f000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-i2s +#define DT_N_S_soc_S_i2s_6000f000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_i2s +#define DT_N_S_soc_S_i2s_6000f000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_I2S +#define DT_N_S_soc_S_i2s_6000f000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2s_6000f000, compatible, 0) +#define DT_N_S_soc_S_i2s_6000f000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6000f000, compatible, 0) +#define DT_N_S_soc_S_i2s_6000f000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2s_6000f000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6000f000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2s_6000f000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6000f000_P_compatible_LEN 1 +#define DT_N_S_soc_S_i2s_6000f000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_IDX_0_PH DT_N_S_soc_S_dma_6003f000 +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_IDX_0_VAL_channel 2 +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_IDX_0_VAL_channel_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_i2s_6000f000, dmas, 0, channel) +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6000f000, dmas, 0, channel) +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_IDX_0_NAME "rx" +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_NAME_rx_IDX 0 +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_NAME_rx_FOREACH_CELL(fn) fn(DT_N_S_soc_S_i2s_6000f000, dmas, rx, channel) +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_NAME_rx_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6000f000, dmas, rx, channel) +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_NAME_rx_NUM_CELLS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_NAME_rx_PH DT_N_S_soc_S_dma_6003f000 +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_NAME_rx_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_NAME_rx_VAL_channel DT_N_S_soc_S_i2s_6000f000_P_dmas_IDX_0_VAL_channel +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_NAME_rx_VAL_channel_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_IDX_1_PH DT_N_S_soc_S_dma_6003f000 +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_IDX_1_VAL_channel 3 +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_IDX_1_VAL_channel_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_IDX_1_FOREACH_CELL(fn) fn(DT_N_S_soc_S_i2s_6000f000, dmas, 1, channel) +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_IDX_1_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6000f000, dmas, 1, channel) +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_IDX_1_NUM_CELLS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_IDX_1_NAME "tx" +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_NAME_tx_IDX 1 +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_NAME_tx_FOREACH_CELL(fn) fn(DT_N_S_soc_S_i2s_6000f000, dmas, tx, channel) +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_NAME_tx_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6000f000, dmas, tx, channel) +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_NAME_tx_NUM_CELLS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_NAME_tx_PH DT_N_S_soc_S_dma_6003f000 +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_NAME_tx_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_NAME_tx_VAL_channel DT_N_S_soc_S_i2s_6000f000_P_dmas_IDX_1_VAL_channel +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_NAME_tx_VAL_channel_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2s_6000f000, dmas, 0) \ + fn(DT_N_S_soc_S_i2s_6000f000, dmas, 1) +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6000f000, dmas, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_i2s_6000f000, dmas, 1) +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2s_6000f000, dmas, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_i2s_6000f000, dmas, 1, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2s_6000f000, dmas, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_i2s_6000f000, dmas, 1, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_LEN 2 +#define DT_N_S_soc_S_i2s_6000f000_P_dmas_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_dma_names {"rx", "tx"} +#define DT_N_S_soc_S_i2s_6000f000_P_dma_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_dma_names_IDX_0 "rx" +#define DT_N_S_soc_S_i2s_6000f000_P_dma_names_IDX_0_STRING_UNQUOTED rx +#define DT_N_S_soc_S_i2s_6000f000_P_dma_names_IDX_0_STRING_TOKEN rx +#define DT_N_S_soc_S_i2s_6000f000_P_dma_names_IDX_0_STRING_UPPER_TOKEN RX +#define DT_N_S_soc_S_i2s_6000f000_P_dma_names_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_dma_names_IDX_1 "tx" +#define DT_N_S_soc_S_i2s_6000f000_P_dma_names_IDX_1_STRING_UNQUOTED tx +#define DT_N_S_soc_S_i2s_6000f000_P_dma_names_IDX_1_STRING_TOKEN tx +#define DT_N_S_soc_S_i2s_6000f000_P_dma_names_IDX_1_STRING_UPPER_TOKEN TX +#define DT_N_S_soc_S_i2s_6000f000_P_dma_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2s_6000f000, dma_names, 0) \ + fn(DT_N_S_soc_S_i2s_6000f000, dma_names, 1) +#define DT_N_S_soc_S_i2s_6000f000_P_dma_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6000f000, dma_names, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_i2s_6000f000, dma_names, 1) +#define DT_N_S_soc_S_i2s_6000f000_P_dma_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2s_6000f000, dma_names, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_i2s_6000f000, dma_names, 1, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6000f000_P_dma_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2s_6000f000, dma_names, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_i2s_6000f000, dma_names, 1, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6000f000_P_dma_names_LEN 2 +#define DT_N_S_soc_S_i2s_6000f000_P_dma_names_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_i2s_6000f000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_wakeup_source 0 +#define DT_N_S_soc_S_i2s_6000f000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_i2s_6000f000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_i2s_6000f000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/i2s@6002d000 + * + * Node identifier: DT_N_S_soc_S_i2s_6002d000 + * + * Binding (compatible = espressif,esp32-i2s): + * $ZEPHYR_BASE/dts/bindings/i2s/espressif,esp32-i2s.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_i2s_6002d000_PATH "/soc/i2s@6002d000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_i2s_6002d000_FULL_NAME "i2s@6002d000" +#define DT_N_S_soc_S_i2s_6002d000_FULL_NAME_UNQUOTED i2s@6002d000 +#define DT_N_S_soc_S_i2s_6002d000_FULL_NAME_TOKEN i2s_6002d000 +#define DT_N_S_soc_S_i2s_6002d000_FULL_NAME_UPPER_TOKEN I2S_6002D000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_i2s_6002d000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_i2s_6002d000_CHILD_IDX 23 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_i2s_6002d000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_i2s_6002d000_FOREACH_NODELABEL(fn) fn(i2s1) +#define DT_N_S_soc_S_i2s_6002d000_FOREACH_NODELABEL_VARGS(fn, ...) fn(i2s1, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6002d000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_i2s_6002d000_CHILD_NUM 0 +#define DT_N_S_soc_S_i2s_6002d000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_i2s_6002d000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_i2s_6002d000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_i2s_6002d000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_i2s_6002d000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_i2s_6002d000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_i2s_6002d000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_i2s_6002d000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_i2s_6002d000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_i2s_6002d000_HASH CUHU_JCAgzfutPFLKs94Sa_Ao6CXCFxQLlCNi0J1Jl0 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_i2s_6002d000_ORD 44 +#define DT_N_S_soc_S_i2s_6002d000_ORD_STR_SORTABLE 00044 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_i2s_6002d000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 34, /* /clock */ \ + 42, /* /soc/dma@6003f000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_i2s_6002d000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_i2s_6002d000_EXISTS 1 +#define DT_N_INST_1_espressif_esp32_i2s DT_N_S_soc_S_i2s_6002d000 +#define DT_N_NODELABEL_i2s1 DT_N_S_soc_S_i2s_6002d000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_i2s_6002d000_REG_NUM 1 +#define DT_N_S_soc_S_i2s_6002d000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_REG_IDX_0_VAL_ADDRESS 1610797056 /* 0x6002d000 */ +#define DT_N_S_soc_S_i2s_6002d000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_i2s_6002d000_FOREACH_REG(fn) fn(DT_N_S_soc_S_i2s_6002d000, 0) +#define DT_N_S_soc_S_i2s_6002d000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6002d000, 0) +#define DT_N_S_soc_S_i2s_6002d000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_i2s_6002d000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6002d000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2s_6002d000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6002d000_RANGES_NUM 0 +#define DT_N_S_soc_S_i2s_6002d000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_i2s_6002d000_IRQ_NUM 1 +#define DT_N_S_soc_S_i2s_6002d000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_IRQ_IDX_0_VAL_irq 26 +#define DT_N_S_soc_S_i2s_6002d000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_i2s_6002d000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_i2s_6002d000_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_i2s_6002d000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_i2s_6002d000_COMPAT_MATCHES_espressif_esp32_i2s 1 +#define DT_N_S_soc_S_i2s_6002d000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_i2s_6002d000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_COMPAT_MODEL_IDX_0 "esp32-i2s" +#define DT_N_S_soc_S_i2s_6002d000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_i2s_6002d000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_i2s_6002d000_P_reg {1610797056 /* 0x6002d000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_i2s_6002d000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_reg_IDX_0 1610797056 +#define DT_N_S_soc_S_i2s_6002d000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_i2s_6002d000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_i2s_6002d000_P_clocks_IDX_0_VAL_offset 106 +#define DT_N_S_soc_S_i2s_6002d000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_i2s_6002d000, clocks, 0, offset) +#define DT_N_S_soc_S_i2s_6002d000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6002d000, clocks, 0, offset) +#define DT_N_S_soc_S_i2s_6002d000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2s_6002d000, clocks, 0) +#define DT_N_S_soc_S_i2s_6002d000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6002d000, clocks, 0) +#define DT_N_S_soc_S_i2s_6002d000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2s_6002d000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6002d000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2s_6002d000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6002d000_P_clocks_LEN 1 +#define DT_N_S_soc_S_i2s_6002d000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_interrupts {26 /* 0x1a */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_i2s_6002d000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_interrupts_IDX_0 26 +#define DT_N_S_soc_S_i2s_6002d000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_i2s_6002d000_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_i2s_6002d000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_i2s_6002d000_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_i2s_6002d000_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_i2s_6002d000_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2s_6002d000, interrupt_parent, 0) +#define DT_N_S_soc_S_i2s_6002d000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6002d000, interrupt_parent, 0) +#define DT_N_S_soc_S_i2s_6002d000_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2s_6002d000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6002d000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2s_6002d000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6002d000_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_i2s_6002d000_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_unit 1 +#define DT_N_S_soc_S_i2s_6002d000_P_unit_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_status "disabled" +#define DT_N_S_soc_S_i2s_6002d000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_i2s_6002d000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_i2s_6002d000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_i2s_6002d000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_i2s_6002d000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_i2s_6002d000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2s_6002d000, status, 0) +#define DT_N_S_soc_S_i2s_6002d000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6002d000, status, 0) +#define DT_N_S_soc_S_i2s_6002d000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2s_6002d000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6002d000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2s_6002d000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6002d000_P_status_LEN 1 +#define DT_N_S_soc_S_i2s_6002d000_P_status_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_compatible {"espressif,esp32-i2s"} +#define DT_N_S_soc_S_i2s_6002d000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_compatible_IDX_0 "espressif,esp32-i2s" +#define DT_N_S_soc_S_i2s_6002d000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-i2s +#define DT_N_S_soc_S_i2s_6002d000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_i2s +#define DT_N_S_soc_S_i2s_6002d000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_I2S +#define DT_N_S_soc_S_i2s_6002d000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2s_6002d000, compatible, 0) +#define DT_N_S_soc_S_i2s_6002d000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6002d000, compatible, 0) +#define DT_N_S_soc_S_i2s_6002d000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2s_6002d000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6002d000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2s_6002d000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6002d000_P_compatible_LEN 1 +#define DT_N_S_soc_S_i2s_6002d000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_IDX_0_PH DT_N_S_soc_S_dma_6003f000 +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_IDX_0_VAL_channel 4 +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_IDX_0_VAL_channel_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_i2s_6002d000, dmas, 0, channel) +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6002d000, dmas, 0, channel) +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_IDX_0_NAME "rx" +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_NAME_rx_IDX 0 +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_NAME_rx_FOREACH_CELL(fn) fn(DT_N_S_soc_S_i2s_6002d000, dmas, rx, channel) +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_NAME_rx_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6002d000, dmas, rx, channel) +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_NAME_rx_NUM_CELLS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_NAME_rx_PH DT_N_S_soc_S_dma_6003f000 +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_NAME_rx_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_NAME_rx_VAL_channel DT_N_S_soc_S_i2s_6002d000_P_dmas_IDX_0_VAL_channel +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_NAME_rx_VAL_channel_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_IDX_1_PH DT_N_S_soc_S_dma_6003f000 +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_IDX_1_VAL_channel 5 +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_IDX_1_VAL_channel_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_IDX_1_FOREACH_CELL(fn) fn(DT_N_S_soc_S_i2s_6002d000, dmas, 1, channel) +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_IDX_1_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6002d000, dmas, 1, channel) +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_IDX_1_NUM_CELLS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_IDX_1_NAME "tx" +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_NAME_tx_IDX 1 +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_NAME_tx_FOREACH_CELL(fn) fn(DT_N_S_soc_S_i2s_6002d000, dmas, tx, channel) +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_NAME_tx_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6002d000, dmas, tx, channel) +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_NAME_tx_NUM_CELLS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_NAME_tx_PH DT_N_S_soc_S_dma_6003f000 +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_NAME_tx_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_NAME_tx_VAL_channel DT_N_S_soc_S_i2s_6002d000_P_dmas_IDX_1_VAL_channel +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_NAME_tx_VAL_channel_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2s_6002d000, dmas, 0) \ + fn(DT_N_S_soc_S_i2s_6002d000, dmas, 1) +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6002d000, dmas, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_i2s_6002d000, dmas, 1) +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2s_6002d000, dmas, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_i2s_6002d000, dmas, 1, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2s_6002d000, dmas, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_i2s_6002d000, dmas, 1, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_LEN 2 +#define DT_N_S_soc_S_i2s_6002d000_P_dmas_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_dma_names {"rx", "tx"} +#define DT_N_S_soc_S_i2s_6002d000_P_dma_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_dma_names_IDX_0 "rx" +#define DT_N_S_soc_S_i2s_6002d000_P_dma_names_IDX_0_STRING_UNQUOTED rx +#define DT_N_S_soc_S_i2s_6002d000_P_dma_names_IDX_0_STRING_TOKEN rx +#define DT_N_S_soc_S_i2s_6002d000_P_dma_names_IDX_0_STRING_UPPER_TOKEN RX +#define DT_N_S_soc_S_i2s_6002d000_P_dma_names_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_dma_names_IDX_1 "tx" +#define DT_N_S_soc_S_i2s_6002d000_P_dma_names_IDX_1_STRING_UNQUOTED tx +#define DT_N_S_soc_S_i2s_6002d000_P_dma_names_IDX_1_STRING_TOKEN tx +#define DT_N_S_soc_S_i2s_6002d000_P_dma_names_IDX_1_STRING_UPPER_TOKEN TX +#define DT_N_S_soc_S_i2s_6002d000_P_dma_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_i2s_6002d000, dma_names, 0) \ + fn(DT_N_S_soc_S_i2s_6002d000, dma_names, 1) +#define DT_N_S_soc_S_i2s_6002d000_P_dma_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_i2s_6002d000, dma_names, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_i2s_6002d000, dma_names, 1) +#define DT_N_S_soc_S_i2s_6002d000_P_dma_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_i2s_6002d000, dma_names, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_i2s_6002d000, dma_names, 1, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6002d000_P_dma_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_i2s_6002d000, dma_names, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_i2s_6002d000, dma_names, 1, __VA_ARGS__) +#define DT_N_S_soc_S_i2s_6002d000_P_dma_names_LEN 2 +#define DT_N_S_soc_S_i2s_6002d000_P_dma_names_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_i2s_6002d000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_wakeup_source 0 +#define DT_N_S_soc_S_i2s_6002d000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_i2s_6002d000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_i2s_6002d000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/memory@3fce5000 + * + * Node identifier: DT_N_S_soc_S_memory_3fce5000 + * + * Binding (compatible = mmio-sram): + * $ZEPHYR_BASE/dts/bindings/sram/mmio-sram.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_memory_3fce5000_PATH "/soc/memory@3fce5000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_memory_3fce5000_FULL_NAME "memory@3fce5000" +#define DT_N_S_soc_S_memory_3fce5000_FULL_NAME_UNQUOTED memory@3fce5000 +#define DT_N_S_soc_S_memory_3fce5000_FULL_NAME_TOKEN memory_3fce5000 +#define DT_N_S_soc_S_memory_3fce5000_FULL_NAME_UPPER_TOKEN MEMORY_3FCE5000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_memory_3fce5000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_memory_3fce5000_CHILD_IDX 5 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_memory_3fce5000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_memory_3fce5000_FOREACH_NODELABEL(fn) fn(ipmmem0) +#define DT_N_S_soc_S_memory_3fce5000_FOREACH_NODELABEL_VARGS(fn, ...) fn(ipmmem0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fce5000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_memory_3fce5000_CHILD_NUM 0 +#define DT_N_S_soc_S_memory_3fce5000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_memory_3fce5000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_memory_3fce5000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_memory_3fce5000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_memory_3fce5000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_memory_3fce5000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_memory_3fce5000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_memory_3fce5000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_memory_3fce5000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_memory_3fce5000_HASH ya9e7l8G8HZIHSt4qOsMkzjAb8gpBz1H5_xZF9aaKR8 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_memory_3fce5000_ORD 45 +#define DT_N_S_soc_S_memory_3fce5000_ORD_STR_SORTABLE 00045 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_memory_3fce5000_REQUIRES_ORDS \ + 12, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_memory_3fce5000_SUPPORTS_ORDS \ + 46, /* /soc/ipm@3fce9400 */ \ + 48, /* /soc/mbox@3fce9408 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_memory_3fce5000_EXISTS 1 +#define DT_N_INST_3_mmio_sram DT_N_S_soc_S_memory_3fce5000 +#define DT_N_NODELABEL_ipmmem0 DT_N_S_soc_S_memory_3fce5000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_memory_3fce5000_REG_NUM 1 +#define DT_N_S_soc_S_memory_3fce5000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3fce5000_REG_IDX_0_VAL_ADDRESS 1070485504 /* 0x3fce5000 */ +#define DT_N_S_soc_S_memory_3fce5000_REG_IDX_0_VAL_SIZE 1024 /* 0x400 */ +#define DT_N_S_soc_S_memory_3fce5000_FOREACH_REG(fn) fn(DT_N_S_soc_S_memory_3fce5000, 0) +#define DT_N_S_soc_S_memory_3fce5000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_memory_3fce5000, 0) +#define DT_N_S_soc_S_memory_3fce5000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_3fce5000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fce5000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_3fce5000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fce5000_RANGES_NUM 0 +#define DT_N_S_soc_S_memory_3fce5000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_memory_3fce5000_IRQ_NUM 0 +#define DT_N_S_soc_S_memory_3fce5000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_memory_3fce5000_COMPAT_MATCHES_mmio_sram 1 +#define DT_N_S_soc_S_memory_3fce5000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_memory_3fce5000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_memory_3fce5000_P_reg {1070485504 /* 0x3fce5000 */, 1024 /* 0x400 */} +#define DT_N_S_soc_S_memory_3fce5000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3fce5000_P_reg_IDX_0 1070485504 +#define DT_N_S_soc_S_memory_3fce5000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_memory_3fce5000_P_reg_IDX_1 1024 +#define DT_N_S_soc_S_memory_3fce5000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_memory_3fce5000_P_compatible {"mmio-sram"} +#define DT_N_S_soc_S_memory_3fce5000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3fce5000_P_compatible_IDX_0 "mmio-sram" +#define DT_N_S_soc_S_memory_3fce5000_P_compatible_IDX_0_STRING_UNQUOTED mmio-sram +#define DT_N_S_soc_S_memory_3fce5000_P_compatible_IDX_0_STRING_TOKEN mmio_sram +#define DT_N_S_soc_S_memory_3fce5000_P_compatible_IDX_0_STRING_UPPER_TOKEN MMIO_SRAM +#define DT_N_S_soc_S_memory_3fce5000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_memory_3fce5000, compatible, 0) +#define DT_N_S_soc_S_memory_3fce5000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_memory_3fce5000, compatible, 0) +#define DT_N_S_soc_S_memory_3fce5000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_3fce5000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fce5000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_3fce5000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fce5000_P_compatible_LEN 1 +#define DT_N_S_soc_S_memory_3fce5000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_memory_3fce5000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_memory_3fce5000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_memory_3fce5000_P_wakeup_source 0 +#define DT_N_S_soc_S_memory_3fce5000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_memory_3fce5000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_memory_3fce5000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/ipm@3fce9400 + * + * Node identifier: DT_N_S_soc_S_ipm_3fce9400 + * + * Binding (compatible = espressif,esp32-ipm): + * $ZEPHYR_BASE/dts/bindings/ipm/espressif,esp32-ipm.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_ipm_3fce9400_PATH "/soc/ipm@3fce9400" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_ipm_3fce9400_FULL_NAME "ipm@3fce9400" +#define DT_N_S_soc_S_ipm_3fce9400_FULL_NAME_UNQUOTED ipm@3fce9400 +#define DT_N_S_soc_S_ipm_3fce9400_FULL_NAME_TOKEN ipm_3fce9400 +#define DT_N_S_soc_S_ipm_3fce9400_FULL_NAME_UPPER_TOKEN IPM_3FCE9400 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_ipm_3fce9400_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_ipm_3fce9400_CHILD_IDX 7 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_ipm_3fce9400_NODELABEL_NUM 1 +#define DT_N_S_soc_S_ipm_3fce9400_FOREACH_NODELABEL(fn) fn(ipm0) +#define DT_N_S_soc_S_ipm_3fce9400_FOREACH_NODELABEL_VARGS(fn, ...) fn(ipm0, __VA_ARGS__) +#define DT_N_S_soc_S_ipm_3fce9400_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_ipm_3fce9400_CHILD_NUM 0 +#define DT_N_S_soc_S_ipm_3fce9400_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_ipm_3fce9400_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_ipm_3fce9400_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_ipm_3fce9400_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_ipm_3fce9400_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_ipm_3fce9400_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_ipm_3fce9400_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_ipm_3fce9400_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_ipm_3fce9400_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_ipm_3fce9400_HASH qFVyhyJjCS_P9l2H5RUk6F_EjPj1jBYx7tKjRARaO5I + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_ipm_3fce9400_ORD 46 +#define DT_N_S_soc_S_ipm_3fce9400_ORD_STR_SORTABLE 00046 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_ipm_3fce9400_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 45, /* /soc/memory@3fce5000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_ipm_3fce9400_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_ipm_3fce9400_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_ipm DT_N_S_soc_S_ipm_3fce9400 +#define DT_N_NODELABEL_ipm0 DT_N_S_soc_S_ipm_3fce9400 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_ipm_3fce9400_REG_NUM 1 +#define DT_N_S_soc_S_ipm_3fce9400_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_REG_IDX_0_VAL_ADDRESS 1070502912 /* 0x3fce9400 */ +#define DT_N_S_soc_S_ipm_3fce9400_REG_IDX_0_VAL_SIZE 8 /* 0x8 */ +#define DT_N_S_soc_S_ipm_3fce9400_FOREACH_REG(fn) fn(DT_N_S_soc_S_ipm_3fce9400, 0) +#define DT_N_S_soc_S_ipm_3fce9400_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_ipm_3fce9400, 0) +#define DT_N_S_soc_S_ipm_3fce9400_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_ipm_3fce9400, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ipm_3fce9400_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ipm_3fce9400, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ipm_3fce9400_RANGES_NUM 0 +#define DT_N_S_soc_S_ipm_3fce9400_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_ipm_3fce9400_IRQ_NUM 2 +#define DT_N_S_soc_S_ipm_3fce9400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_IRQ_IDX_0_VAL_irq 79 +#define DT_N_S_soc_S_ipm_3fce9400_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_ipm_3fce9400_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_ipm_3fce9400_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_ipm_3fce9400_IRQ_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_IRQ_IDX_1_VAL_irq 80 +#define DT_N_S_soc_S_ipm_3fce9400_IRQ_IDX_1_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_IRQ_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_IRQ_IDX_1_VAL_priority 0 +#define DT_N_S_soc_S_ipm_3fce9400_IRQ_IDX_1_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_IRQ_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_IRQ_IDX_1_VAL_flags 0 +#define DT_N_S_soc_S_ipm_3fce9400_IRQ_IDX_1_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_IRQ_IDX_1_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_ipm_3fce9400_IRQ_LEVEL 1 +#define DT_N_S_soc_S_ipm_3fce9400_COMPAT_MATCHES_espressif_esp32_ipm 1 +#define DT_N_S_soc_S_ipm_3fce9400_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_ipm_3fce9400_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_COMPAT_MODEL_IDX_0 "esp32-ipm" +#define DT_N_S_soc_S_ipm_3fce9400_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_ipm_3fce9400_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_ipm_3fce9400_P_reg {1070502912 /* 0x3fce9400 */, 8 /* 0x8 */} +#define DT_N_S_soc_S_ipm_3fce9400_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_reg_IDX_0 1070502912 +#define DT_N_S_soc_S_ipm_3fce9400_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_reg_IDX_1 8 +#define DT_N_S_soc_S_ipm_3fce9400_P_reg_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_shared_memory DT_N_S_soc_S_memory_3fce5000 +#define DT_N_S_soc_S_ipm_3fce9400_P_shared_memory_IDX_0 DT_N_S_soc_S_memory_3fce5000 +#define DT_N_S_soc_S_ipm_3fce9400_P_shared_memory_IDX_0_PH DT_N_S_soc_S_memory_3fce5000 +#define DT_N_S_soc_S_ipm_3fce9400_P_shared_memory_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_shared_memory_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_ipm_3fce9400, shared_memory, 0) +#define DT_N_S_soc_S_ipm_3fce9400_P_shared_memory_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_ipm_3fce9400, shared_memory, 0) +#define DT_N_S_soc_S_ipm_3fce9400_P_shared_memory_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_ipm_3fce9400, shared_memory, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ipm_3fce9400_P_shared_memory_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ipm_3fce9400, shared_memory, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ipm_3fce9400_P_shared_memory_LEN 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_shared_memory_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_shared_memory_size 1024 +#define DT_N_S_soc_S_ipm_3fce9400_P_shared_memory_size_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupts {79 /* 0x4f */, 0 /* 0x0 */, 0 /* 0x0 */, 80 /* 0x50 */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupts_IDX_0 79 +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupts_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupts_IDX_3 80 +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupts_IDX_4_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupts_IDX_4 0 +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupts_IDX_5_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupts_IDX_5 0 +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_status "disabled" +#define DT_N_S_soc_S_ipm_3fce9400_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_ipm_3fce9400_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_ipm_3fce9400_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_ipm_3fce9400_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_ipm_3fce9400_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_ipm_3fce9400, status, 0) +#define DT_N_S_soc_S_ipm_3fce9400_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_ipm_3fce9400, status, 0) +#define DT_N_S_soc_S_ipm_3fce9400_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_ipm_3fce9400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ipm_3fce9400_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ipm_3fce9400, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ipm_3fce9400_P_status_LEN 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_status_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_compatible {"espressif,esp32-ipm"} +#define DT_N_S_soc_S_ipm_3fce9400_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_compatible_IDX_0 "espressif,esp32-ipm" +#define DT_N_S_soc_S_ipm_3fce9400_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-ipm +#define DT_N_S_soc_S_ipm_3fce9400_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_ipm +#define DT_N_S_soc_S_ipm_3fce9400_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_IPM +#define DT_N_S_soc_S_ipm_3fce9400_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_ipm_3fce9400, compatible, 0) +#define DT_N_S_soc_S_ipm_3fce9400_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_ipm_3fce9400, compatible, 0) +#define DT_N_S_soc_S_ipm_3fce9400_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_ipm_3fce9400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ipm_3fce9400_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ipm_3fce9400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ipm_3fce9400_P_compatible_LEN 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_ipm_3fce9400, interrupt_parent, 0) +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_ipm_3fce9400, interrupt_parent, 0) +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_ipm_3fce9400, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ipm_3fce9400, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_ipm_3fce9400_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_wakeup_source 0 +#define DT_N_S_soc_S_ipm_3fce9400_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_ipm_3fce9400_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_ipm_3fce9400_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/ledc@60019000 + * + * Node identifier: DT_N_S_soc_S_ledc_60019000 + * + * Binding (compatible = espressif,esp32-ledc): + * $ZEPHYR_BASE/dts/bindings/pwm/espressif,esp32-ledc.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_ledc_60019000_PATH "/soc/ledc@60019000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_ledc_60019000_FULL_NAME "ledc@60019000" +#define DT_N_S_soc_S_ledc_60019000_FULL_NAME_UNQUOTED ledc@60019000 +#define DT_N_S_soc_S_ledc_60019000_FULL_NAME_TOKEN ledc_60019000 +#define DT_N_S_soc_S_ledc_60019000_FULL_NAME_UPPER_TOKEN LEDC_60019000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_ledc_60019000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_ledc_60019000_CHILD_IDX 40 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_ledc_60019000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_ledc_60019000_FOREACH_NODELABEL(fn) fn(ledc0) +#define DT_N_S_soc_S_ledc_60019000_FOREACH_NODELABEL_VARGS(fn, ...) fn(ledc0, __VA_ARGS__) +#define DT_N_S_soc_S_ledc_60019000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_ledc_60019000_CHILD_NUM 0 +#define DT_N_S_soc_S_ledc_60019000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_ledc_60019000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_ledc_60019000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_ledc_60019000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_ledc_60019000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_ledc_60019000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_ledc_60019000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_ledc_60019000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_ledc_60019000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_ledc_60019000_HASH ivU7PYnXftTq8IeHZYedNtxFhGTursL0wzBinUM6lpI + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_ledc_60019000_ORD 47 +#define DT_N_S_soc_S_ledc_60019000_ORD_STR_SORTABLE 00047 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_ledc_60019000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_ledc_60019000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_ledc_60019000_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_ledc DT_N_S_soc_S_ledc_60019000 +#define DT_N_NODELABEL_ledc0 DT_N_S_soc_S_ledc_60019000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_ledc_60019000_REG_NUM 1 +#define DT_N_S_soc_S_ledc_60019000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ledc_60019000_REG_IDX_0_VAL_ADDRESS 1610715136 /* 0x60019000 */ +#define DT_N_S_soc_S_ledc_60019000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_ledc_60019000_FOREACH_REG(fn) fn(DT_N_S_soc_S_ledc_60019000, 0) +#define DT_N_S_soc_S_ledc_60019000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_ledc_60019000, 0) +#define DT_N_S_soc_S_ledc_60019000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_ledc_60019000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ledc_60019000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ledc_60019000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ledc_60019000_RANGES_NUM 0 +#define DT_N_S_soc_S_ledc_60019000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_ledc_60019000_IRQ_NUM 0 +#define DT_N_S_soc_S_ledc_60019000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_ledc_60019000_COMPAT_MATCHES_espressif_esp32_ledc 1 +#define DT_N_S_soc_S_ledc_60019000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ledc_60019000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_ledc_60019000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ledc_60019000_COMPAT_MODEL_IDX_0 "esp32-ledc" +#define DT_N_S_soc_S_ledc_60019000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_ledc_60019000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_ledc_60019000_P_status "disabled" +#define DT_N_S_soc_S_ledc_60019000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_ledc_60019000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_ledc_60019000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_ledc_60019000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_ledc_60019000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ledc_60019000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_ledc_60019000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_ledc_60019000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_ledc_60019000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_ledc_60019000, status, 0) +#define DT_N_S_soc_S_ledc_60019000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_ledc_60019000, status, 0) +#define DT_N_S_soc_S_ledc_60019000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_ledc_60019000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ledc_60019000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ledc_60019000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ledc_60019000_P_status_LEN 1 +#define DT_N_S_soc_S_ledc_60019000_P_status_EXISTS 1 +#define DT_N_S_soc_S_ledc_60019000_P_compatible {"espressif,esp32-ledc"} +#define DT_N_S_soc_S_ledc_60019000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ledc_60019000_P_compatible_IDX_0 "espressif,esp32-ledc" +#define DT_N_S_soc_S_ledc_60019000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-ledc +#define DT_N_S_soc_S_ledc_60019000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_ledc +#define DT_N_S_soc_S_ledc_60019000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_LEDC +#define DT_N_S_soc_S_ledc_60019000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_ledc_60019000, compatible, 0) +#define DT_N_S_soc_S_ledc_60019000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_ledc_60019000, compatible, 0) +#define DT_N_S_soc_S_ledc_60019000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_ledc_60019000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ledc_60019000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ledc_60019000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ledc_60019000_P_compatible_LEN 1 +#define DT_N_S_soc_S_ledc_60019000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_ledc_60019000_P_reg {1610715136 /* 0x60019000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_ledc_60019000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ledc_60019000_P_reg_IDX_0 1610715136 +#define DT_N_S_soc_S_ledc_60019000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_ledc_60019000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_ledc_60019000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_ledc_60019000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_ledc_60019000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_ledc_60019000_P_clocks_IDX_0_VAL_offset 100 +#define DT_N_S_soc_S_ledc_60019000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_ledc_60019000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_ledc_60019000, clocks, 0, offset) +#define DT_N_S_soc_S_ledc_60019000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_ledc_60019000, clocks, 0, offset) +#define DT_N_S_soc_S_ledc_60019000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_ledc_60019000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_ledc_60019000, clocks, 0) +#define DT_N_S_soc_S_ledc_60019000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_ledc_60019000, clocks, 0) +#define DT_N_S_soc_S_ledc_60019000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_ledc_60019000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ledc_60019000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_ledc_60019000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_ledc_60019000_P_clocks_LEN 1 +#define DT_N_S_soc_S_ledc_60019000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_ledc_60019000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_ledc_60019000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_ledc_60019000_P_wakeup_source 0 +#define DT_N_S_soc_S_ledc_60019000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_ledc_60019000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_ledc_60019000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/mbox@3fce9408 + * + * Node identifier: DT_N_S_soc_S_mbox_3fce9408 + * + * Binding (compatible = espressif,mbox-esp32): + * $ZEPHYR_BASE/dts/bindings/mbox/espressif,mbox-esp32.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_mbox_3fce9408_PATH "/soc/mbox@3fce9408" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_mbox_3fce9408_FULL_NAME "mbox@3fce9408" +#define DT_N_S_soc_S_mbox_3fce9408_FULL_NAME_UNQUOTED mbox@3fce9408 +#define DT_N_S_soc_S_mbox_3fce9408_FULL_NAME_TOKEN mbox_3fce9408 +#define DT_N_S_soc_S_mbox_3fce9408_FULL_NAME_UPPER_TOKEN MBOX_3FCE9408 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_mbox_3fce9408_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_mbox_3fce9408_CHILD_IDX 8 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_mbox_3fce9408_NODELABEL_NUM 1 +#define DT_N_S_soc_S_mbox_3fce9408_FOREACH_NODELABEL(fn) fn(mbox0) +#define DT_N_S_soc_S_mbox_3fce9408_FOREACH_NODELABEL_VARGS(fn, ...) fn(mbox0, __VA_ARGS__) +#define DT_N_S_soc_S_mbox_3fce9408_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_mbox_3fce9408_CHILD_NUM 0 +#define DT_N_S_soc_S_mbox_3fce9408_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_mbox_3fce9408_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_mbox_3fce9408_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_mbox_3fce9408_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_mbox_3fce9408_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_mbox_3fce9408_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_mbox_3fce9408_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_mbox_3fce9408_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_mbox_3fce9408_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_mbox_3fce9408_HASH CosCUcT4QYF3AwJ9hsmzi36XhtEon24YH1I4oPBTXP0 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_mbox_3fce9408_ORD 48 +#define DT_N_S_soc_S_mbox_3fce9408_ORD_STR_SORTABLE 00048 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_mbox_3fce9408_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 45, /* /soc/memory@3fce5000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_mbox_3fce9408_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_mbox_3fce9408_EXISTS 1 +#define DT_N_INST_0_espressif_mbox_esp32 DT_N_S_soc_S_mbox_3fce9408 +#define DT_N_NODELABEL_mbox0 DT_N_S_soc_S_mbox_3fce9408 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_mbox_3fce9408_REG_NUM 1 +#define DT_N_S_soc_S_mbox_3fce9408_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_REG_IDX_0_VAL_ADDRESS 1070502920 /* 0x3fce9408 */ +#define DT_N_S_soc_S_mbox_3fce9408_REG_IDX_0_VAL_SIZE 8 /* 0x8 */ +#define DT_N_S_soc_S_mbox_3fce9408_FOREACH_REG(fn) fn(DT_N_S_soc_S_mbox_3fce9408, 0) +#define DT_N_S_soc_S_mbox_3fce9408_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_mbox_3fce9408, 0) +#define DT_N_S_soc_S_mbox_3fce9408_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_mbox_3fce9408, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mbox_3fce9408_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_mbox_3fce9408, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mbox_3fce9408_RANGES_NUM 0 +#define DT_N_S_soc_S_mbox_3fce9408_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_mbox_3fce9408_IRQ_NUM 2 +#define DT_N_S_soc_S_mbox_3fce9408_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_IRQ_IDX_0_VAL_irq 79 +#define DT_N_S_soc_S_mbox_3fce9408_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_mbox_3fce9408_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_mbox_3fce9408_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_mbox_3fce9408_IRQ_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_IRQ_IDX_1_VAL_irq 80 +#define DT_N_S_soc_S_mbox_3fce9408_IRQ_IDX_1_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_IRQ_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_IRQ_IDX_1_VAL_priority 0 +#define DT_N_S_soc_S_mbox_3fce9408_IRQ_IDX_1_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_IRQ_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_IRQ_IDX_1_VAL_flags 0 +#define DT_N_S_soc_S_mbox_3fce9408_IRQ_IDX_1_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_IRQ_IDX_1_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_mbox_3fce9408_IRQ_LEVEL 1 +#define DT_N_S_soc_S_mbox_3fce9408_COMPAT_MATCHES_espressif_mbox_esp32 1 +#define DT_N_S_soc_S_mbox_3fce9408_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_mbox_3fce9408_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_COMPAT_MODEL_IDX_0 "mbox-esp32" +#define DT_N_S_soc_S_mbox_3fce9408_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_mbox_3fce9408_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_mbox_3fce9408_P_reg {1070502920 /* 0x3fce9408 */, 8 /* 0x8 */} +#define DT_N_S_soc_S_mbox_3fce9408_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_reg_IDX_0 1070502920 +#define DT_N_S_soc_S_mbox_3fce9408_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_reg_IDX_1 8 +#define DT_N_S_soc_S_mbox_3fce9408_P_reg_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_shared_memory DT_N_S_soc_S_memory_3fce5000 +#define DT_N_S_soc_S_mbox_3fce9408_P_shared_memory_IDX_0 DT_N_S_soc_S_memory_3fce5000 +#define DT_N_S_soc_S_mbox_3fce9408_P_shared_memory_IDX_0_PH DT_N_S_soc_S_memory_3fce5000 +#define DT_N_S_soc_S_mbox_3fce9408_P_shared_memory_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_shared_memory_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_mbox_3fce9408, shared_memory, 0) +#define DT_N_S_soc_S_mbox_3fce9408_P_shared_memory_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_mbox_3fce9408, shared_memory, 0) +#define DT_N_S_soc_S_mbox_3fce9408_P_shared_memory_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_mbox_3fce9408, shared_memory, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mbox_3fce9408_P_shared_memory_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_mbox_3fce9408, shared_memory, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mbox_3fce9408_P_shared_memory_LEN 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_shared_memory_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_shared_memory_size 1024 +#define DT_N_S_soc_S_mbox_3fce9408_P_shared_memory_size_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupts {79 /* 0x4f */, 0 /* 0x0 */, 0 /* 0x0 */, 80 /* 0x50 */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupts_IDX_0 79 +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupts_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupts_IDX_3 80 +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupts_IDX_4_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupts_IDX_4 0 +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupts_IDX_5_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupts_IDX_5 0 +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_status "disabled" +#define DT_N_S_soc_S_mbox_3fce9408_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_mbox_3fce9408_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_mbox_3fce9408_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_mbox_3fce9408_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_mbox_3fce9408_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_mbox_3fce9408, status, 0) +#define DT_N_S_soc_S_mbox_3fce9408_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_mbox_3fce9408, status, 0) +#define DT_N_S_soc_S_mbox_3fce9408_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_mbox_3fce9408, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mbox_3fce9408_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_mbox_3fce9408, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mbox_3fce9408_P_status_LEN 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_status_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_compatible {"espressif,mbox-esp32"} +#define DT_N_S_soc_S_mbox_3fce9408_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_compatible_IDX_0 "espressif,mbox-esp32" +#define DT_N_S_soc_S_mbox_3fce9408_P_compatible_IDX_0_STRING_UNQUOTED espressif,mbox-esp32 +#define DT_N_S_soc_S_mbox_3fce9408_P_compatible_IDX_0_STRING_TOKEN espressif_mbox_esp32 +#define DT_N_S_soc_S_mbox_3fce9408_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_MBOX_ESP32 +#define DT_N_S_soc_S_mbox_3fce9408_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_mbox_3fce9408, compatible, 0) +#define DT_N_S_soc_S_mbox_3fce9408_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_mbox_3fce9408, compatible, 0) +#define DT_N_S_soc_S_mbox_3fce9408_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_mbox_3fce9408, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mbox_3fce9408_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_mbox_3fce9408, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mbox_3fce9408_P_compatible_LEN 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_mbox_3fce9408, interrupt_parent, 0) +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_mbox_3fce9408, interrupt_parent, 0) +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_mbox_3fce9408, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_mbox_3fce9408, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_mbox_3fce9408_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_wakeup_source 0 +#define DT_N_S_soc_S_mbox_3fce9408_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_mbox_3fce9408_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_mbox_3fce9408_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/mcpwm@6001e000 + * + * Node identifier: DT_N_S_soc_S_mcpwm_6001e000 + * + * Binding (compatible = espressif,esp32-mcpwm): + * $ZEPHYR_BASE/dts/bindings/pwm/espressif,esp32-mcpwm.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_mcpwm_6001e000_PATH "/soc/mcpwm@6001e000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_mcpwm_6001e000_FULL_NAME "mcpwm@6001e000" +#define DT_N_S_soc_S_mcpwm_6001e000_FULL_NAME_UNQUOTED mcpwm@6001e000 +#define DT_N_S_soc_S_mcpwm_6001e000_FULL_NAME_TOKEN mcpwm_6001e000 +#define DT_N_S_soc_S_mcpwm_6001e000_FULL_NAME_UPPER_TOKEN MCPWM_6001E000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_mcpwm_6001e000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_mcpwm_6001e000_CHILD_IDX 41 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_mcpwm_6001e000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_mcpwm_6001e000_FOREACH_NODELABEL(fn) fn(mcpwm0) +#define DT_N_S_soc_S_mcpwm_6001e000_FOREACH_NODELABEL_VARGS(fn, ...) fn(mcpwm0, __VA_ARGS__) +#define DT_N_S_soc_S_mcpwm_6001e000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_mcpwm_6001e000_CHILD_NUM 0 +#define DT_N_S_soc_S_mcpwm_6001e000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_mcpwm_6001e000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_mcpwm_6001e000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_mcpwm_6001e000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_mcpwm_6001e000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_mcpwm_6001e000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_mcpwm_6001e000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_mcpwm_6001e000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_mcpwm_6001e000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_mcpwm_6001e000_HASH d2zHyqMaNADc7KUR4_WygPeNIvvIsUg3nTPCIEFKSWg + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_mcpwm_6001e000_ORD 49 +#define DT_N_S_soc_S_mcpwm_6001e000_ORD_STR_SORTABLE 00049 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_mcpwm_6001e000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_mcpwm_6001e000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_mcpwm_6001e000_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_mcpwm DT_N_S_soc_S_mcpwm_6001e000 +#define DT_N_NODELABEL_mcpwm0 DT_N_S_soc_S_mcpwm_6001e000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_mcpwm_6001e000_REG_NUM 1 +#define DT_N_S_soc_S_mcpwm_6001e000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_REG_IDX_0_VAL_ADDRESS 1610735616 /* 0x6001e000 */ +#define DT_N_S_soc_S_mcpwm_6001e000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_mcpwm_6001e000_FOREACH_REG(fn) fn(DT_N_S_soc_S_mcpwm_6001e000, 0) +#define DT_N_S_soc_S_mcpwm_6001e000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_mcpwm_6001e000, 0) +#define DT_N_S_soc_S_mcpwm_6001e000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_mcpwm_6001e000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mcpwm_6001e000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_mcpwm_6001e000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mcpwm_6001e000_RANGES_NUM 0 +#define DT_N_S_soc_S_mcpwm_6001e000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_mcpwm_6001e000_IRQ_NUM 1 +#define DT_N_S_soc_S_mcpwm_6001e000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_IRQ_IDX_0_VAL_irq 31 +#define DT_N_S_soc_S_mcpwm_6001e000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_mcpwm_6001e000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_mcpwm_6001e000_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_mcpwm_6001e000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_mcpwm_6001e000_COMPAT_MATCHES_espressif_esp32_mcpwm 1 +#define DT_N_S_soc_S_mcpwm_6001e000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_mcpwm_6001e000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_COMPAT_MODEL_IDX_0 "esp32-mcpwm" +#define DT_N_S_soc_S_mcpwm_6001e000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_mcpwm_6001e000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_mcpwm_6001e000_P_status "disabled" +#define DT_N_S_soc_S_mcpwm_6001e000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_mcpwm_6001e000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_mcpwm_6001e000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_mcpwm_6001e000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_mcpwm_6001e000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_mcpwm_6001e000, status, 0) +#define DT_N_S_soc_S_mcpwm_6001e000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_mcpwm_6001e000, status, 0) +#define DT_N_S_soc_S_mcpwm_6001e000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_mcpwm_6001e000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mcpwm_6001e000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_mcpwm_6001e000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mcpwm_6001e000_P_status_LEN 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_status_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_compatible {"espressif,esp32-mcpwm"} +#define DT_N_S_soc_S_mcpwm_6001e000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_compatible_IDX_0 "espressif,esp32-mcpwm" +#define DT_N_S_soc_S_mcpwm_6001e000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-mcpwm +#define DT_N_S_soc_S_mcpwm_6001e000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_mcpwm +#define DT_N_S_soc_S_mcpwm_6001e000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_MCPWM +#define DT_N_S_soc_S_mcpwm_6001e000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_mcpwm_6001e000, compatible, 0) +#define DT_N_S_soc_S_mcpwm_6001e000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_mcpwm_6001e000, compatible, 0) +#define DT_N_S_soc_S_mcpwm_6001e000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_mcpwm_6001e000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mcpwm_6001e000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_mcpwm_6001e000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mcpwm_6001e000_P_compatible_LEN 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_reg {1610735616 /* 0x6001e000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_mcpwm_6001e000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_reg_IDX_0 1610735616 +#define DT_N_S_soc_S_mcpwm_6001e000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_mcpwm_6001e000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_interrupts {31 /* 0x1f */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_mcpwm_6001e000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_interrupts_IDX_0 31 +#define DT_N_S_soc_S_mcpwm_6001e000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_mcpwm_6001e000_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_mcpwm_6001e000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_mcpwm_6001e000_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_mcpwm_6001e000_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_mcpwm_6001e000_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_mcpwm_6001e000, interrupt_parent, 0) +#define DT_N_S_soc_S_mcpwm_6001e000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_mcpwm_6001e000, interrupt_parent, 0) +#define DT_N_S_soc_S_mcpwm_6001e000_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_mcpwm_6001e000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mcpwm_6001e000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_mcpwm_6001e000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mcpwm_6001e000_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_mcpwm_6001e000_P_clocks_IDX_0_VAL_offset 107 +#define DT_N_S_soc_S_mcpwm_6001e000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_mcpwm_6001e000, clocks, 0, offset) +#define DT_N_S_soc_S_mcpwm_6001e000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_mcpwm_6001e000, clocks, 0, offset) +#define DT_N_S_soc_S_mcpwm_6001e000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_mcpwm_6001e000, clocks, 0) +#define DT_N_S_soc_S_mcpwm_6001e000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_mcpwm_6001e000, clocks, 0) +#define DT_N_S_soc_S_mcpwm_6001e000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_mcpwm_6001e000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mcpwm_6001e000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_mcpwm_6001e000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mcpwm_6001e000_P_clocks_LEN 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_mcpwm_6001e000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_wakeup_source 0 +#define DT_N_S_soc_S_mcpwm_6001e000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6001e000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_mcpwm_6001e000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/mcpwm@6002c000 + * + * Node identifier: DT_N_S_soc_S_mcpwm_6002c000 + * + * Binding (compatible = espressif,esp32-mcpwm): + * $ZEPHYR_BASE/dts/bindings/pwm/espressif,esp32-mcpwm.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_mcpwm_6002c000_PATH "/soc/mcpwm@6002c000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_mcpwm_6002c000_FULL_NAME "mcpwm@6002c000" +#define DT_N_S_soc_S_mcpwm_6002c000_FULL_NAME_UNQUOTED mcpwm@6002c000 +#define DT_N_S_soc_S_mcpwm_6002c000_FULL_NAME_TOKEN mcpwm_6002c000 +#define DT_N_S_soc_S_mcpwm_6002c000_FULL_NAME_UPPER_TOKEN MCPWM_6002C000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_mcpwm_6002c000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_mcpwm_6002c000_CHILD_IDX 42 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_mcpwm_6002c000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_mcpwm_6002c000_FOREACH_NODELABEL(fn) fn(mcpwm1) +#define DT_N_S_soc_S_mcpwm_6002c000_FOREACH_NODELABEL_VARGS(fn, ...) fn(mcpwm1, __VA_ARGS__) +#define DT_N_S_soc_S_mcpwm_6002c000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_mcpwm_6002c000_CHILD_NUM 0 +#define DT_N_S_soc_S_mcpwm_6002c000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_mcpwm_6002c000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_mcpwm_6002c000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_mcpwm_6002c000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_mcpwm_6002c000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_mcpwm_6002c000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_mcpwm_6002c000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_mcpwm_6002c000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_mcpwm_6002c000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_mcpwm_6002c000_HASH PUT9fuKEmWfw0Ikkb4eK52xX7q1kAZDHic3xFwhvGrw + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_mcpwm_6002c000_ORD 50 +#define DT_N_S_soc_S_mcpwm_6002c000_ORD_STR_SORTABLE 00050 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_mcpwm_6002c000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_mcpwm_6002c000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_mcpwm_6002c000_EXISTS 1 +#define DT_N_INST_1_espressif_esp32_mcpwm DT_N_S_soc_S_mcpwm_6002c000 +#define DT_N_NODELABEL_mcpwm1 DT_N_S_soc_S_mcpwm_6002c000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_mcpwm_6002c000_REG_NUM 1 +#define DT_N_S_soc_S_mcpwm_6002c000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_REG_IDX_0_VAL_ADDRESS 1610792960 /* 0x6002c000 */ +#define DT_N_S_soc_S_mcpwm_6002c000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_mcpwm_6002c000_FOREACH_REG(fn) fn(DT_N_S_soc_S_mcpwm_6002c000, 0) +#define DT_N_S_soc_S_mcpwm_6002c000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_mcpwm_6002c000, 0) +#define DT_N_S_soc_S_mcpwm_6002c000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_mcpwm_6002c000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mcpwm_6002c000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_mcpwm_6002c000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mcpwm_6002c000_RANGES_NUM 0 +#define DT_N_S_soc_S_mcpwm_6002c000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_mcpwm_6002c000_IRQ_NUM 1 +#define DT_N_S_soc_S_mcpwm_6002c000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_IRQ_IDX_0_VAL_irq 32 +#define DT_N_S_soc_S_mcpwm_6002c000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_mcpwm_6002c000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_mcpwm_6002c000_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_mcpwm_6002c000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_mcpwm_6002c000_COMPAT_MATCHES_espressif_esp32_mcpwm 1 +#define DT_N_S_soc_S_mcpwm_6002c000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_mcpwm_6002c000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_COMPAT_MODEL_IDX_0 "esp32-mcpwm" +#define DT_N_S_soc_S_mcpwm_6002c000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_mcpwm_6002c000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_mcpwm_6002c000_P_status "disabled" +#define DT_N_S_soc_S_mcpwm_6002c000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_mcpwm_6002c000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_mcpwm_6002c000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_mcpwm_6002c000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_mcpwm_6002c000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_mcpwm_6002c000, status, 0) +#define DT_N_S_soc_S_mcpwm_6002c000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_mcpwm_6002c000, status, 0) +#define DT_N_S_soc_S_mcpwm_6002c000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_mcpwm_6002c000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mcpwm_6002c000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_mcpwm_6002c000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mcpwm_6002c000_P_status_LEN 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_status_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_compatible {"espressif,esp32-mcpwm"} +#define DT_N_S_soc_S_mcpwm_6002c000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_compatible_IDX_0 "espressif,esp32-mcpwm" +#define DT_N_S_soc_S_mcpwm_6002c000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-mcpwm +#define DT_N_S_soc_S_mcpwm_6002c000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_mcpwm +#define DT_N_S_soc_S_mcpwm_6002c000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_MCPWM +#define DT_N_S_soc_S_mcpwm_6002c000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_mcpwm_6002c000, compatible, 0) +#define DT_N_S_soc_S_mcpwm_6002c000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_mcpwm_6002c000, compatible, 0) +#define DT_N_S_soc_S_mcpwm_6002c000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_mcpwm_6002c000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mcpwm_6002c000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_mcpwm_6002c000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mcpwm_6002c000_P_compatible_LEN 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_reg {1610792960 /* 0x6002c000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_mcpwm_6002c000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_reg_IDX_0 1610792960 +#define DT_N_S_soc_S_mcpwm_6002c000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_mcpwm_6002c000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_interrupts {32 /* 0x20 */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_mcpwm_6002c000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_interrupts_IDX_0 32 +#define DT_N_S_soc_S_mcpwm_6002c000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_mcpwm_6002c000_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_mcpwm_6002c000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_mcpwm_6002c000_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_mcpwm_6002c000_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_mcpwm_6002c000_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_mcpwm_6002c000, interrupt_parent, 0) +#define DT_N_S_soc_S_mcpwm_6002c000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_mcpwm_6002c000, interrupt_parent, 0) +#define DT_N_S_soc_S_mcpwm_6002c000_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_mcpwm_6002c000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mcpwm_6002c000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_mcpwm_6002c000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mcpwm_6002c000_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_mcpwm_6002c000_P_clocks_IDX_0_VAL_offset 108 +#define DT_N_S_soc_S_mcpwm_6002c000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_mcpwm_6002c000, clocks, 0, offset) +#define DT_N_S_soc_S_mcpwm_6002c000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_mcpwm_6002c000, clocks, 0, offset) +#define DT_N_S_soc_S_mcpwm_6002c000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_mcpwm_6002c000, clocks, 0) +#define DT_N_S_soc_S_mcpwm_6002c000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_mcpwm_6002c000, clocks, 0) +#define DT_N_S_soc_S_mcpwm_6002c000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_mcpwm_6002c000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mcpwm_6002c000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_mcpwm_6002c000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_mcpwm_6002c000_P_clocks_LEN 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_mcpwm_6002c000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_wakeup_source 0 +#define DT_N_S_soc_S_mcpwm_6002c000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_mcpwm_6002c000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_mcpwm_6002c000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/memory@3fc88000 + * + * Node identifier: DT_N_S_soc_S_memory_3fc88000 + * + * Binding (compatible = zephyr,memory-region): + * $ZEPHYR_BASE/dts/bindings/base/zephyr,memory-region.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_memory_3fc88000_PATH "/soc/memory@3fc88000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_memory_3fc88000_FULL_NAME "memory@3fc88000" +#define DT_N_S_soc_S_memory_3fc88000_FULL_NAME_UNQUOTED memory@3fc88000 +#define DT_N_S_soc_S_memory_3fc88000_FULL_NAME_TOKEN memory_3fc88000 +#define DT_N_S_soc_S_memory_3fc88000_FULL_NAME_UPPER_TOKEN MEMORY_3FC88000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_memory_3fc88000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_memory_3fc88000_CHILD_IDX 3 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_memory_3fc88000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_memory_3fc88000_FOREACH_NODELABEL(fn) fn(sram1) +#define DT_N_S_soc_S_memory_3fc88000_FOREACH_NODELABEL_VARGS(fn, ...) fn(sram1, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fc88000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_memory_3fc88000_CHILD_NUM 0 +#define DT_N_S_soc_S_memory_3fc88000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_memory_3fc88000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_memory_3fc88000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_memory_3fc88000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_memory_3fc88000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_memory_3fc88000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_memory_3fc88000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_memory_3fc88000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_memory_3fc88000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_memory_3fc88000_HASH dREbOCBoDHQVTmeX36l4_QWq7LHenwdZ_LEoY85fiiI + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_memory_3fc88000_ORD 51 +#define DT_N_S_soc_S_memory_3fc88000_ORD_STR_SORTABLE 00051 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_memory_3fc88000_REQUIRES_ORDS \ + 12, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_memory_3fc88000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_memory_3fc88000_EXISTS 1 +#define DT_N_INST_3_zephyr_memory_region DT_N_S_soc_S_memory_3fc88000 +#define DT_N_INST_1_mmio_sram DT_N_S_soc_S_memory_3fc88000 +#define DT_N_NODELABEL_sram1 DT_N_S_soc_S_memory_3fc88000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_memory_3fc88000_REG_NUM 1 +#define DT_N_S_soc_S_memory_3fc88000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3fc88000_REG_IDX_0_VAL_ADDRESS 1070104576 /* 0x3fc88000 */ +#define DT_N_S_soc_S_memory_3fc88000_REG_IDX_0_VAL_SIZE 425984 /* 0x68000 */ +#define DT_N_S_soc_S_memory_3fc88000_FOREACH_REG(fn) fn(DT_N_S_soc_S_memory_3fc88000, 0) +#define DT_N_S_soc_S_memory_3fc88000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_memory_3fc88000, 0) +#define DT_N_S_soc_S_memory_3fc88000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_3fc88000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fc88000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_3fc88000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fc88000_RANGES_NUM 0 +#define DT_N_S_soc_S_memory_3fc88000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_memory_3fc88000_IRQ_NUM 0 +#define DT_N_S_soc_S_memory_3fc88000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_memory_3fc88000_COMPAT_MATCHES_zephyr_memory_region 1 +#define DT_N_S_soc_S_memory_3fc88000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3fc88000_COMPAT_VENDOR_IDX_0 "Zephyr Project" +#define DT_N_S_soc_S_memory_3fc88000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3fc88000_COMPAT_MODEL_IDX_0 "memory-region" +#define DT_N_S_soc_S_memory_3fc88000_COMPAT_MATCHES_mmio_sram 1 +#define DT_N_S_soc_S_memory_3fc88000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_memory_3fc88000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_memory_3fc88000_P_zephyr_memory_region "SRAM1" +#define DT_N_S_soc_S_memory_3fc88000_P_zephyr_memory_region_STRING_UNQUOTED SRAM1 +#define DT_N_S_soc_S_memory_3fc88000_P_zephyr_memory_region_STRING_TOKEN SRAM1 +#define DT_N_S_soc_S_memory_3fc88000_P_zephyr_memory_region_STRING_UPPER_TOKEN SRAM1 +#define DT_N_S_soc_S_memory_3fc88000_P_zephyr_memory_region_IDX_0 "SRAM1" +#define DT_N_S_soc_S_memory_3fc88000_P_zephyr_memory_region_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3fc88000_P_zephyr_memory_region_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_memory_3fc88000, zephyr_memory_region, 0) +#define DT_N_S_soc_S_memory_3fc88000_P_zephyr_memory_region_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_memory_3fc88000, zephyr_memory_region, 0) +#define DT_N_S_soc_S_memory_3fc88000_P_zephyr_memory_region_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_3fc88000, zephyr_memory_region, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fc88000_P_zephyr_memory_region_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_3fc88000, zephyr_memory_region, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fc88000_P_zephyr_memory_region_LEN 1 +#define DT_N_S_soc_S_memory_3fc88000_P_zephyr_memory_region_EXISTS 1 +#define DT_N_S_soc_S_memory_3fc88000_P_compatible {"zephyr,memory-region", "mmio-sram"} +#define DT_N_S_soc_S_memory_3fc88000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3fc88000_P_compatible_IDX_0 "zephyr,memory-region" +#define DT_N_S_soc_S_memory_3fc88000_P_compatible_IDX_0_STRING_UNQUOTED zephyr,memory-region +#define DT_N_S_soc_S_memory_3fc88000_P_compatible_IDX_0_STRING_TOKEN zephyr_memory_region +#define DT_N_S_soc_S_memory_3fc88000_P_compatible_IDX_0_STRING_UPPER_TOKEN ZEPHYR_MEMORY_REGION +#define DT_N_S_soc_S_memory_3fc88000_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_memory_3fc88000_P_compatible_IDX_1 "mmio-sram" +#define DT_N_S_soc_S_memory_3fc88000_P_compatible_IDX_1_STRING_UNQUOTED mmio-sram +#define DT_N_S_soc_S_memory_3fc88000_P_compatible_IDX_1_STRING_TOKEN mmio_sram +#define DT_N_S_soc_S_memory_3fc88000_P_compatible_IDX_1_STRING_UPPER_TOKEN MMIO_SRAM +#define DT_N_S_soc_S_memory_3fc88000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_memory_3fc88000, compatible, 0) \ + fn(DT_N_S_soc_S_memory_3fc88000, compatible, 1) +#define DT_N_S_soc_S_memory_3fc88000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_memory_3fc88000, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_memory_3fc88000, compatible, 1) +#define DT_N_S_soc_S_memory_3fc88000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_3fc88000, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_memory_3fc88000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fc88000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_3fc88000, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_memory_3fc88000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fc88000_P_compatible_LEN 2 +#define DT_N_S_soc_S_memory_3fc88000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_memory_3fc88000_P_reg {1070104576 /* 0x3fc88000 */, 425984 /* 0x68000 */} +#define DT_N_S_soc_S_memory_3fc88000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3fc88000_P_reg_IDX_0 1070104576 +#define DT_N_S_soc_S_memory_3fc88000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_memory_3fc88000_P_reg_IDX_1 425984 +#define DT_N_S_soc_S_memory_3fc88000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_memory_3fc88000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_memory_3fc88000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_memory_3fc88000_P_wakeup_source 0 +#define DT_N_S_soc_S_memory_3fc88000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_memory_3fc88000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_memory_3fc88000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/memory@3fce5400 + * + * Node identifier: DT_N_S_soc_S_memory_3fce5400 + * + * Binding (compatible = mmio-sram): + * $ZEPHYR_BASE/dts/bindings/sram/mmio-sram.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_memory_3fce5400_PATH "/soc/memory@3fce5400" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_memory_3fce5400_FULL_NAME "memory@3fce5400" +#define DT_N_S_soc_S_memory_3fce5400_FULL_NAME_UNQUOTED memory@3fce5400 +#define DT_N_S_soc_S_memory_3fce5400_FULL_NAME_TOKEN memory_3fce5400 +#define DT_N_S_soc_S_memory_3fce5400_FULL_NAME_UPPER_TOKEN MEMORY_3FCE5400 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_memory_3fce5400_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_memory_3fce5400_CHILD_IDX 6 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_memory_3fce5400_NODELABEL_NUM 1 +#define DT_N_S_soc_S_memory_3fce5400_FOREACH_NODELABEL(fn) fn(shm0) +#define DT_N_S_soc_S_memory_3fce5400_FOREACH_NODELABEL_VARGS(fn, ...) fn(shm0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fce5400_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_memory_3fce5400_CHILD_NUM 0 +#define DT_N_S_soc_S_memory_3fce5400_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_memory_3fce5400_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_memory_3fce5400_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_memory_3fce5400_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_memory_3fce5400_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_memory_3fce5400_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_memory_3fce5400_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_memory_3fce5400_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_memory_3fce5400_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_memory_3fce5400_HASH HyL82Z6ujffmB6CBSFiHfwfgvsYwqIL4lYGisoVn_Gc + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_memory_3fce5400_ORD 52 +#define DT_N_S_soc_S_memory_3fce5400_ORD_STR_SORTABLE 00052 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_memory_3fce5400_REQUIRES_ORDS \ + 12, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_memory_3fce5400_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_memory_3fce5400_EXISTS 1 +#define DT_N_INST_4_mmio_sram DT_N_S_soc_S_memory_3fce5400 +#define DT_N_NODELABEL_shm0 DT_N_S_soc_S_memory_3fce5400 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_memory_3fce5400_REG_NUM 1 +#define DT_N_S_soc_S_memory_3fce5400_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3fce5400_REG_IDX_0_VAL_ADDRESS 1070486528 /* 0x3fce5400 */ +#define DT_N_S_soc_S_memory_3fce5400_REG_IDX_0_VAL_SIZE 16384 /* 0x4000 */ +#define DT_N_S_soc_S_memory_3fce5400_FOREACH_REG(fn) fn(DT_N_S_soc_S_memory_3fce5400, 0) +#define DT_N_S_soc_S_memory_3fce5400_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_memory_3fce5400, 0) +#define DT_N_S_soc_S_memory_3fce5400_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_3fce5400, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fce5400_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_3fce5400, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fce5400_RANGES_NUM 0 +#define DT_N_S_soc_S_memory_3fce5400_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_memory_3fce5400_IRQ_NUM 0 +#define DT_N_S_soc_S_memory_3fce5400_IRQ_LEVEL 0 +#define DT_N_S_soc_S_memory_3fce5400_COMPAT_MATCHES_mmio_sram 1 +#define DT_N_S_soc_S_memory_3fce5400_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_memory_3fce5400_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_memory_3fce5400_P_reg {1070486528 /* 0x3fce5400 */, 16384 /* 0x4000 */} +#define DT_N_S_soc_S_memory_3fce5400_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3fce5400_P_reg_IDX_0 1070486528 +#define DT_N_S_soc_S_memory_3fce5400_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_memory_3fce5400_P_reg_IDX_1 16384 +#define DT_N_S_soc_S_memory_3fce5400_P_reg_EXISTS 1 +#define DT_N_S_soc_S_memory_3fce5400_P_compatible {"mmio-sram"} +#define DT_N_S_soc_S_memory_3fce5400_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3fce5400_P_compatible_IDX_0 "mmio-sram" +#define DT_N_S_soc_S_memory_3fce5400_P_compatible_IDX_0_STRING_UNQUOTED mmio-sram +#define DT_N_S_soc_S_memory_3fce5400_P_compatible_IDX_0_STRING_TOKEN mmio_sram +#define DT_N_S_soc_S_memory_3fce5400_P_compatible_IDX_0_STRING_UPPER_TOKEN MMIO_SRAM +#define DT_N_S_soc_S_memory_3fce5400_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_memory_3fce5400, compatible, 0) +#define DT_N_S_soc_S_memory_3fce5400_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_memory_3fce5400, compatible, 0) +#define DT_N_S_soc_S_memory_3fce5400_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_3fce5400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fce5400_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_3fce5400, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fce5400_P_compatible_LEN 1 +#define DT_N_S_soc_S_memory_3fce5400_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_memory_3fce5400_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_memory_3fce5400_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_memory_3fce5400_P_wakeup_source 0 +#define DT_N_S_soc_S_memory_3fce5400_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_memory_3fce5400_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_memory_3fce5400_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/memory@3fcf0000 + * + * Node identifier: DT_N_S_soc_S_memory_3fcf0000 + * + * Binding (compatible = zephyr,memory-region): + * $ZEPHYR_BASE/dts/bindings/base/zephyr,memory-region.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_memory_3fcf0000_PATH "/soc/memory@3fcf0000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_memory_3fcf0000_FULL_NAME "memory@3fcf0000" +#define DT_N_S_soc_S_memory_3fcf0000_FULL_NAME_UNQUOTED memory@3fcf0000 +#define DT_N_S_soc_S_memory_3fcf0000_FULL_NAME_TOKEN memory_3fcf0000 +#define DT_N_S_soc_S_memory_3fcf0000_FULL_NAME_UPPER_TOKEN MEMORY_3FCF0000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_memory_3fcf0000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_memory_3fcf0000_CHILD_IDX 4 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_memory_3fcf0000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_memory_3fcf0000_FOREACH_NODELABEL(fn) fn(sram2) +#define DT_N_S_soc_S_memory_3fcf0000_FOREACH_NODELABEL_VARGS(fn, ...) fn(sram2, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fcf0000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_memory_3fcf0000_CHILD_NUM 0 +#define DT_N_S_soc_S_memory_3fcf0000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_memory_3fcf0000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_memory_3fcf0000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_memory_3fcf0000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_memory_3fcf0000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_memory_3fcf0000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_memory_3fcf0000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_memory_3fcf0000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_memory_3fcf0000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_memory_3fcf0000_HASH NKnNQ0S6nCfKDGsu2JCJzWz3KO4lwmSTxQ7YFL2YaIA + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_memory_3fcf0000_ORD 53 +#define DT_N_S_soc_S_memory_3fcf0000_ORD_STR_SORTABLE 00053 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_memory_3fcf0000_REQUIRES_ORDS \ + 12, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_memory_3fcf0000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_memory_3fcf0000_EXISTS 1 +#define DT_N_INST_4_zephyr_memory_region DT_N_S_soc_S_memory_3fcf0000 +#define DT_N_INST_2_mmio_sram DT_N_S_soc_S_memory_3fcf0000 +#define DT_N_NODELABEL_sram2 DT_N_S_soc_S_memory_3fcf0000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_memory_3fcf0000_REG_NUM 1 +#define DT_N_S_soc_S_memory_3fcf0000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3fcf0000_REG_IDX_0_VAL_ADDRESS 1070530560 /* 0x3fcf0000 */ +#define DT_N_S_soc_S_memory_3fcf0000_REG_IDX_0_VAL_SIZE 65536 /* 0x10000 */ +#define DT_N_S_soc_S_memory_3fcf0000_FOREACH_REG(fn) fn(DT_N_S_soc_S_memory_3fcf0000, 0) +#define DT_N_S_soc_S_memory_3fcf0000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_memory_3fcf0000, 0) +#define DT_N_S_soc_S_memory_3fcf0000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_3fcf0000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fcf0000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_3fcf0000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fcf0000_RANGES_NUM 0 +#define DT_N_S_soc_S_memory_3fcf0000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_memory_3fcf0000_IRQ_NUM 0 +#define DT_N_S_soc_S_memory_3fcf0000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_memory_3fcf0000_COMPAT_MATCHES_zephyr_memory_region 1 +#define DT_N_S_soc_S_memory_3fcf0000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3fcf0000_COMPAT_VENDOR_IDX_0 "Zephyr Project" +#define DT_N_S_soc_S_memory_3fcf0000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3fcf0000_COMPAT_MODEL_IDX_0 "memory-region" +#define DT_N_S_soc_S_memory_3fcf0000_COMPAT_MATCHES_mmio_sram 1 +#define DT_N_S_soc_S_memory_3fcf0000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_memory_3fcf0000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_memory_3fcf0000_P_zephyr_memory_region "SRAM2" +#define DT_N_S_soc_S_memory_3fcf0000_P_zephyr_memory_region_STRING_UNQUOTED SRAM2 +#define DT_N_S_soc_S_memory_3fcf0000_P_zephyr_memory_region_STRING_TOKEN SRAM2 +#define DT_N_S_soc_S_memory_3fcf0000_P_zephyr_memory_region_STRING_UPPER_TOKEN SRAM2 +#define DT_N_S_soc_S_memory_3fcf0000_P_zephyr_memory_region_IDX_0 "SRAM2" +#define DT_N_S_soc_S_memory_3fcf0000_P_zephyr_memory_region_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3fcf0000_P_zephyr_memory_region_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_memory_3fcf0000, zephyr_memory_region, 0) +#define DT_N_S_soc_S_memory_3fcf0000_P_zephyr_memory_region_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_memory_3fcf0000, zephyr_memory_region, 0) +#define DT_N_S_soc_S_memory_3fcf0000_P_zephyr_memory_region_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_3fcf0000, zephyr_memory_region, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fcf0000_P_zephyr_memory_region_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_3fcf0000, zephyr_memory_region, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fcf0000_P_zephyr_memory_region_LEN 1 +#define DT_N_S_soc_S_memory_3fcf0000_P_zephyr_memory_region_EXISTS 1 +#define DT_N_S_soc_S_memory_3fcf0000_P_compatible {"zephyr,memory-region", "mmio-sram"} +#define DT_N_S_soc_S_memory_3fcf0000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3fcf0000_P_compatible_IDX_0 "zephyr,memory-region" +#define DT_N_S_soc_S_memory_3fcf0000_P_compatible_IDX_0_STRING_UNQUOTED zephyr,memory-region +#define DT_N_S_soc_S_memory_3fcf0000_P_compatible_IDX_0_STRING_TOKEN zephyr_memory_region +#define DT_N_S_soc_S_memory_3fcf0000_P_compatible_IDX_0_STRING_UPPER_TOKEN ZEPHYR_MEMORY_REGION +#define DT_N_S_soc_S_memory_3fcf0000_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_memory_3fcf0000_P_compatible_IDX_1 "mmio-sram" +#define DT_N_S_soc_S_memory_3fcf0000_P_compatible_IDX_1_STRING_UNQUOTED mmio-sram +#define DT_N_S_soc_S_memory_3fcf0000_P_compatible_IDX_1_STRING_TOKEN mmio_sram +#define DT_N_S_soc_S_memory_3fcf0000_P_compatible_IDX_1_STRING_UPPER_TOKEN MMIO_SRAM +#define DT_N_S_soc_S_memory_3fcf0000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_memory_3fcf0000, compatible, 0) \ + fn(DT_N_S_soc_S_memory_3fcf0000, compatible, 1) +#define DT_N_S_soc_S_memory_3fcf0000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_memory_3fcf0000, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_memory_3fcf0000, compatible, 1) +#define DT_N_S_soc_S_memory_3fcf0000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_3fcf0000, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_memory_3fcf0000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fcf0000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_3fcf0000, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_memory_3fcf0000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3fcf0000_P_compatible_LEN 2 +#define DT_N_S_soc_S_memory_3fcf0000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_memory_3fcf0000_P_reg {1070530560 /* 0x3fcf0000 */, 65536 /* 0x10000 */} +#define DT_N_S_soc_S_memory_3fcf0000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3fcf0000_P_reg_IDX_0 1070530560 +#define DT_N_S_soc_S_memory_3fcf0000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_memory_3fcf0000_P_reg_IDX_1 65536 +#define DT_N_S_soc_S_memory_3fcf0000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_memory_3fcf0000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_memory_3fcf0000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_memory_3fcf0000_P_wakeup_source 0 +#define DT_N_S_soc_S_memory_3fcf0000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_memory_3fcf0000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_memory_3fcf0000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/memory@40370000 + * + * Node identifier: DT_N_S_soc_S_memory_40370000 + * + * Binding (compatible = zephyr,memory-region): + * $ZEPHYR_BASE/dts/bindings/base/zephyr,memory-region.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_memory_40370000_PATH "/soc/memory@40370000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_memory_40370000_FULL_NAME "memory@40370000" +#define DT_N_S_soc_S_memory_40370000_FULL_NAME_UNQUOTED memory@40370000 +#define DT_N_S_soc_S_memory_40370000_FULL_NAME_TOKEN memory_40370000 +#define DT_N_S_soc_S_memory_40370000_FULL_NAME_UPPER_TOKEN MEMORY_40370000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_memory_40370000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_memory_40370000_CHILD_IDX 2 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_memory_40370000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_memory_40370000_FOREACH_NODELABEL(fn) fn(sram0) +#define DT_N_S_soc_S_memory_40370000_FOREACH_NODELABEL_VARGS(fn, ...) fn(sram0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_40370000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_memory_40370000_CHILD_NUM 0 +#define DT_N_S_soc_S_memory_40370000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_memory_40370000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_memory_40370000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_memory_40370000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_memory_40370000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_memory_40370000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_memory_40370000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_memory_40370000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_memory_40370000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_memory_40370000_HASH bOVAfly2sNW3W_XQpUFYqABhHFpTF6t1SKi4LCt6XeM + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_memory_40370000_ORD 54 +#define DT_N_S_soc_S_memory_40370000_ORD_STR_SORTABLE 00054 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_memory_40370000_REQUIRES_ORDS \ + 12, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_memory_40370000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_memory_40370000_EXISTS 1 +#define DT_N_INST_2_zephyr_memory_region DT_N_S_soc_S_memory_40370000 +#define DT_N_INST_0_mmio_sram DT_N_S_soc_S_memory_40370000 +#define DT_N_NODELABEL_sram0 DT_N_S_soc_S_memory_40370000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_memory_40370000_REG_NUM 1 +#define DT_N_S_soc_S_memory_40370000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_40370000_REG_IDX_0_VAL_ADDRESS 1077346304 /* 0x40370000 */ +#define DT_N_S_soc_S_memory_40370000_REG_IDX_0_VAL_SIZE 32768 /* 0x8000 */ +#define DT_N_S_soc_S_memory_40370000_FOREACH_REG(fn) fn(DT_N_S_soc_S_memory_40370000, 0) +#define DT_N_S_soc_S_memory_40370000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_memory_40370000, 0) +#define DT_N_S_soc_S_memory_40370000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_40370000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_40370000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_40370000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_40370000_RANGES_NUM 0 +#define DT_N_S_soc_S_memory_40370000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_memory_40370000_IRQ_NUM 0 +#define DT_N_S_soc_S_memory_40370000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_memory_40370000_COMPAT_MATCHES_zephyr_memory_region 1 +#define DT_N_S_soc_S_memory_40370000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_40370000_COMPAT_VENDOR_IDX_0 "Zephyr Project" +#define DT_N_S_soc_S_memory_40370000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_40370000_COMPAT_MODEL_IDX_0 "memory-region" +#define DT_N_S_soc_S_memory_40370000_COMPAT_MATCHES_mmio_sram 1 +#define DT_N_S_soc_S_memory_40370000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_memory_40370000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_memory_40370000_P_zephyr_memory_region "SRAM0" +#define DT_N_S_soc_S_memory_40370000_P_zephyr_memory_region_STRING_UNQUOTED SRAM0 +#define DT_N_S_soc_S_memory_40370000_P_zephyr_memory_region_STRING_TOKEN SRAM0 +#define DT_N_S_soc_S_memory_40370000_P_zephyr_memory_region_STRING_UPPER_TOKEN SRAM0 +#define DT_N_S_soc_S_memory_40370000_P_zephyr_memory_region_IDX_0 "SRAM0" +#define DT_N_S_soc_S_memory_40370000_P_zephyr_memory_region_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_40370000_P_zephyr_memory_region_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_memory_40370000, zephyr_memory_region, 0) +#define DT_N_S_soc_S_memory_40370000_P_zephyr_memory_region_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_memory_40370000, zephyr_memory_region, 0) +#define DT_N_S_soc_S_memory_40370000_P_zephyr_memory_region_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_40370000, zephyr_memory_region, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_40370000_P_zephyr_memory_region_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_40370000, zephyr_memory_region, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_40370000_P_zephyr_memory_region_LEN 1 +#define DT_N_S_soc_S_memory_40370000_P_zephyr_memory_region_EXISTS 1 +#define DT_N_S_soc_S_memory_40370000_P_compatible {"zephyr,memory-region", "mmio-sram"} +#define DT_N_S_soc_S_memory_40370000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_40370000_P_compatible_IDX_0 "zephyr,memory-region" +#define DT_N_S_soc_S_memory_40370000_P_compatible_IDX_0_STRING_UNQUOTED zephyr,memory-region +#define DT_N_S_soc_S_memory_40370000_P_compatible_IDX_0_STRING_TOKEN zephyr_memory_region +#define DT_N_S_soc_S_memory_40370000_P_compatible_IDX_0_STRING_UPPER_TOKEN ZEPHYR_MEMORY_REGION +#define DT_N_S_soc_S_memory_40370000_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_memory_40370000_P_compatible_IDX_1 "mmio-sram" +#define DT_N_S_soc_S_memory_40370000_P_compatible_IDX_1_STRING_UNQUOTED mmio-sram +#define DT_N_S_soc_S_memory_40370000_P_compatible_IDX_1_STRING_TOKEN mmio_sram +#define DT_N_S_soc_S_memory_40370000_P_compatible_IDX_1_STRING_UPPER_TOKEN MMIO_SRAM +#define DT_N_S_soc_S_memory_40370000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_memory_40370000, compatible, 0) \ + fn(DT_N_S_soc_S_memory_40370000, compatible, 1) +#define DT_N_S_soc_S_memory_40370000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_memory_40370000, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_memory_40370000, compatible, 1) +#define DT_N_S_soc_S_memory_40370000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_40370000, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_memory_40370000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_memory_40370000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_40370000, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_memory_40370000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_memory_40370000_P_compatible_LEN 2 +#define DT_N_S_soc_S_memory_40370000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_memory_40370000_P_reg {1077346304 /* 0x40370000 */, 32768 /* 0x8000 */} +#define DT_N_S_soc_S_memory_40370000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_40370000_P_reg_IDX_0 1077346304 +#define DT_N_S_soc_S_memory_40370000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_memory_40370000_P_reg_IDX_1 32768 +#define DT_N_S_soc_S_memory_40370000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_memory_40370000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_memory_40370000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_memory_40370000_P_wakeup_source 0 +#define DT_N_S_soc_S_memory_40370000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_memory_40370000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_memory_40370000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/memory@42000000 + * + * Node identifier: DT_N_S_soc_S_memory_42000000 + * + * Binding (compatible = zephyr,memory-region): + * $ZEPHYR_BASE/dts/bindings/base/zephyr,memory-region.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_memory_42000000_PATH "/soc/memory@42000000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_memory_42000000_FULL_NAME "memory@42000000" +#define DT_N_S_soc_S_memory_42000000_FULL_NAME_UNQUOTED memory@42000000 +#define DT_N_S_soc_S_memory_42000000_FULL_NAME_TOKEN memory_42000000 +#define DT_N_S_soc_S_memory_42000000_FULL_NAME_UPPER_TOKEN MEMORY_42000000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_memory_42000000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_memory_42000000_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_memory_42000000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_memory_42000000_FOREACH_NODELABEL(fn) fn(icache0) +#define DT_N_S_soc_S_memory_42000000_FOREACH_NODELABEL_VARGS(fn, ...) fn(icache0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_42000000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_memory_42000000_CHILD_NUM 0 +#define DT_N_S_soc_S_memory_42000000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_memory_42000000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_memory_42000000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_memory_42000000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_memory_42000000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_memory_42000000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_memory_42000000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_memory_42000000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_memory_42000000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_memory_42000000_HASH MxgXaruz5v3eOd2Q__lowXsvExkVTFzT2vhBio8ss58 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_memory_42000000_ORD 55 +#define DT_N_S_soc_S_memory_42000000_ORD_STR_SORTABLE 00055 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_memory_42000000_REQUIRES_ORDS \ + 12, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_memory_42000000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_memory_42000000_EXISTS 1 +#define DT_N_INST_0_zephyr_memory_region DT_N_S_soc_S_memory_42000000 +#define DT_N_NODELABEL_icache0 DT_N_S_soc_S_memory_42000000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_memory_42000000_REG_NUM 1 +#define DT_N_S_soc_S_memory_42000000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_42000000_REG_IDX_0_VAL_ADDRESS 1107296256 /* 0x42000000 */ +#define DT_N_S_soc_S_memory_42000000_REG_IDX_0_VAL_SIZE 33554432 /* 0x2000000 */ +#define DT_N_S_soc_S_memory_42000000_FOREACH_REG(fn) fn(DT_N_S_soc_S_memory_42000000, 0) +#define DT_N_S_soc_S_memory_42000000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_memory_42000000, 0) +#define DT_N_S_soc_S_memory_42000000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_42000000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_42000000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_42000000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_42000000_RANGES_NUM 0 +#define DT_N_S_soc_S_memory_42000000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_memory_42000000_IRQ_NUM 0 +#define DT_N_S_soc_S_memory_42000000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_memory_42000000_COMPAT_MATCHES_zephyr_memory_region 1 +#define DT_N_S_soc_S_memory_42000000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_42000000_COMPAT_VENDOR_IDX_0 "Zephyr Project" +#define DT_N_S_soc_S_memory_42000000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_42000000_COMPAT_MODEL_IDX_0 "memory-region" +#define DT_N_S_soc_S_memory_42000000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_memory_42000000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_memory_42000000_P_zephyr_memory_region "ICACHE0" +#define DT_N_S_soc_S_memory_42000000_P_zephyr_memory_region_STRING_UNQUOTED ICACHE0 +#define DT_N_S_soc_S_memory_42000000_P_zephyr_memory_region_STRING_TOKEN ICACHE0 +#define DT_N_S_soc_S_memory_42000000_P_zephyr_memory_region_STRING_UPPER_TOKEN ICACHE0 +#define DT_N_S_soc_S_memory_42000000_P_zephyr_memory_region_IDX_0 "ICACHE0" +#define DT_N_S_soc_S_memory_42000000_P_zephyr_memory_region_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_42000000_P_zephyr_memory_region_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_memory_42000000, zephyr_memory_region, 0) +#define DT_N_S_soc_S_memory_42000000_P_zephyr_memory_region_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_memory_42000000, zephyr_memory_region, 0) +#define DT_N_S_soc_S_memory_42000000_P_zephyr_memory_region_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_42000000, zephyr_memory_region, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_42000000_P_zephyr_memory_region_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_42000000, zephyr_memory_region, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_42000000_P_zephyr_memory_region_LEN 1 +#define DT_N_S_soc_S_memory_42000000_P_zephyr_memory_region_EXISTS 1 +#define DT_N_S_soc_S_memory_42000000_P_compatible {"zephyr,memory-region"} +#define DT_N_S_soc_S_memory_42000000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_42000000_P_compatible_IDX_0 "zephyr,memory-region" +#define DT_N_S_soc_S_memory_42000000_P_compatible_IDX_0_STRING_UNQUOTED zephyr,memory-region +#define DT_N_S_soc_S_memory_42000000_P_compatible_IDX_0_STRING_TOKEN zephyr_memory_region +#define DT_N_S_soc_S_memory_42000000_P_compatible_IDX_0_STRING_UPPER_TOKEN ZEPHYR_MEMORY_REGION +#define DT_N_S_soc_S_memory_42000000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_memory_42000000, compatible, 0) +#define DT_N_S_soc_S_memory_42000000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_memory_42000000, compatible, 0) +#define DT_N_S_soc_S_memory_42000000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_42000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_42000000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_42000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_42000000_P_compatible_LEN 1 +#define DT_N_S_soc_S_memory_42000000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_memory_42000000_P_reg {1107296256 /* 0x42000000 */, 33554432 /* 0x2000000 */} +#define DT_N_S_soc_S_memory_42000000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_42000000_P_reg_IDX_0 1107296256 +#define DT_N_S_soc_S_memory_42000000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_memory_42000000_P_reg_IDX_1 33554432 +#define DT_N_S_soc_S_memory_42000000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_memory_42000000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_memory_42000000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_memory_42000000_P_wakeup_source 0 +#define DT_N_S_soc_S_memory_42000000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_memory_42000000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_memory_42000000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/memory@50000000 + * + * Node identifier: DT_N_S_soc_S_memory_50000000 + * + * Binding (compatible = zephyr,memory-region): + * $ZEPHYR_BASE/dts/bindings/base/zephyr,memory-region.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_memory_50000000_PATH "/soc/memory@50000000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_memory_50000000_FULL_NAME "memory@50000000" +#define DT_N_S_soc_S_memory_50000000_FULL_NAME_UNQUOTED memory@50000000 +#define DT_N_S_soc_S_memory_50000000_FULL_NAME_TOKEN memory_50000000 +#define DT_N_S_soc_S_memory_50000000_FULL_NAME_UPPER_TOKEN MEMORY_50000000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_memory_50000000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_memory_50000000_CHILD_IDX 9 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_memory_50000000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_memory_50000000_FOREACH_NODELABEL(fn) fn(rtc_slow_ram) +#define DT_N_S_soc_S_memory_50000000_FOREACH_NODELABEL_VARGS(fn, ...) fn(rtc_slow_ram, __VA_ARGS__) +#define DT_N_S_soc_S_memory_50000000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_memory_50000000_CHILD_NUM 0 +#define DT_N_S_soc_S_memory_50000000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_memory_50000000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_memory_50000000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_memory_50000000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_memory_50000000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_memory_50000000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_memory_50000000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_memory_50000000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_memory_50000000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_memory_50000000_HASH lOeq3apePEcrZ9bee_ko8WcMO3ecXZsFPMoWWQvHF2E + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_memory_50000000_ORD 56 +#define DT_N_S_soc_S_memory_50000000_ORD_STR_SORTABLE 00056 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_memory_50000000_REQUIRES_ORDS \ + 12, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_memory_50000000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_memory_50000000_EXISTS 1 +#define DT_N_INST_5_zephyr_memory_region DT_N_S_soc_S_memory_50000000 +#define DT_N_INST_5_mmio_sram DT_N_S_soc_S_memory_50000000 +#define DT_N_NODELABEL_rtc_slow_ram DT_N_S_soc_S_memory_50000000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_memory_50000000_REG_NUM 1 +#define DT_N_S_soc_S_memory_50000000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_50000000_REG_IDX_0_VAL_ADDRESS 1342177280 /* 0x50000000 */ +#define DT_N_S_soc_S_memory_50000000_REG_IDX_0_VAL_SIZE 8192 /* 0x2000 */ +#define DT_N_S_soc_S_memory_50000000_FOREACH_REG(fn) fn(DT_N_S_soc_S_memory_50000000, 0) +#define DT_N_S_soc_S_memory_50000000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_memory_50000000, 0) +#define DT_N_S_soc_S_memory_50000000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_50000000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_50000000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_50000000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_50000000_RANGES_NUM 0 +#define DT_N_S_soc_S_memory_50000000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_memory_50000000_IRQ_NUM 0 +#define DT_N_S_soc_S_memory_50000000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_memory_50000000_COMPAT_MATCHES_zephyr_memory_region 1 +#define DT_N_S_soc_S_memory_50000000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_50000000_COMPAT_VENDOR_IDX_0 "Zephyr Project" +#define DT_N_S_soc_S_memory_50000000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_50000000_COMPAT_MODEL_IDX_0 "memory-region" +#define DT_N_S_soc_S_memory_50000000_COMPAT_MATCHES_mmio_sram 1 +#define DT_N_S_soc_S_memory_50000000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_memory_50000000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_memory_50000000_P_zephyr_memory_region "RTC_SLOW_RAM" +#define DT_N_S_soc_S_memory_50000000_P_zephyr_memory_region_STRING_UNQUOTED RTC_SLOW_RAM +#define DT_N_S_soc_S_memory_50000000_P_zephyr_memory_region_STRING_TOKEN RTC_SLOW_RAM +#define DT_N_S_soc_S_memory_50000000_P_zephyr_memory_region_STRING_UPPER_TOKEN RTC_SLOW_RAM +#define DT_N_S_soc_S_memory_50000000_P_zephyr_memory_region_IDX_0 "RTC_SLOW_RAM" +#define DT_N_S_soc_S_memory_50000000_P_zephyr_memory_region_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_50000000_P_zephyr_memory_region_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_memory_50000000, zephyr_memory_region, 0) +#define DT_N_S_soc_S_memory_50000000_P_zephyr_memory_region_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_memory_50000000, zephyr_memory_region, 0) +#define DT_N_S_soc_S_memory_50000000_P_zephyr_memory_region_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_50000000, zephyr_memory_region, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_50000000_P_zephyr_memory_region_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_50000000, zephyr_memory_region, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_50000000_P_zephyr_memory_region_LEN 1 +#define DT_N_S_soc_S_memory_50000000_P_zephyr_memory_region_EXISTS 1 +#define DT_N_S_soc_S_memory_50000000_P_compatible {"zephyr,memory-region", "mmio-sram"} +#define DT_N_S_soc_S_memory_50000000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_50000000_P_compatible_IDX_0 "zephyr,memory-region" +#define DT_N_S_soc_S_memory_50000000_P_compatible_IDX_0_STRING_UNQUOTED zephyr,memory-region +#define DT_N_S_soc_S_memory_50000000_P_compatible_IDX_0_STRING_TOKEN zephyr_memory_region +#define DT_N_S_soc_S_memory_50000000_P_compatible_IDX_0_STRING_UPPER_TOKEN ZEPHYR_MEMORY_REGION +#define DT_N_S_soc_S_memory_50000000_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_memory_50000000_P_compatible_IDX_1 "mmio-sram" +#define DT_N_S_soc_S_memory_50000000_P_compatible_IDX_1_STRING_UNQUOTED mmio-sram +#define DT_N_S_soc_S_memory_50000000_P_compatible_IDX_1_STRING_TOKEN mmio_sram +#define DT_N_S_soc_S_memory_50000000_P_compatible_IDX_1_STRING_UPPER_TOKEN MMIO_SRAM +#define DT_N_S_soc_S_memory_50000000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_memory_50000000, compatible, 0) \ + fn(DT_N_S_soc_S_memory_50000000, compatible, 1) +#define DT_N_S_soc_S_memory_50000000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_memory_50000000, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_memory_50000000, compatible, 1) +#define DT_N_S_soc_S_memory_50000000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_50000000, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_memory_50000000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_memory_50000000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_50000000, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_memory_50000000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_memory_50000000_P_compatible_LEN 2 +#define DT_N_S_soc_S_memory_50000000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_memory_50000000_P_reg {1342177280 /* 0x50000000 */, 8192 /* 0x2000 */} +#define DT_N_S_soc_S_memory_50000000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_50000000_P_reg_IDX_0 1342177280 +#define DT_N_S_soc_S_memory_50000000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_memory_50000000_P_reg_IDX_1 8192 +#define DT_N_S_soc_S_memory_50000000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_memory_50000000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_memory_50000000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_memory_50000000_P_wakeup_source 0 +#define DT_N_S_soc_S_memory_50000000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_memory_50000000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_memory_50000000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/memory@600fe000 + * + * Node identifier: DT_N_S_soc_S_memory_600fe000 + * + * Binding (compatible = zephyr,memory-region): + * $ZEPHYR_BASE/dts/bindings/base/zephyr,memory-region.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_memory_600fe000_PATH "/soc/memory@600fe000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_memory_600fe000_FULL_NAME "memory@600fe000" +#define DT_N_S_soc_S_memory_600fe000_FULL_NAME_UNQUOTED memory@600fe000 +#define DT_N_S_soc_S_memory_600fe000_FULL_NAME_TOKEN memory_600fe000 +#define DT_N_S_soc_S_memory_600fe000_FULL_NAME_UPPER_TOKEN MEMORY_600FE000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_memory_600fe000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_memory_600fe000_CHILD_IDX 10 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_memory_600fe000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_memory_600fe000_FOREACH_NODELABEL(fn) fn(rtc_fast_ram) +#define DT_N_S_soc_S_memory_600fe000_FOREACH_NODELABEL_VARGS(fn, ...) fn(rtc_fast_ram, __VA_ARGS__) +#define DT_N_S_soc_S_memory_600fe000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_memory_600fe000_CHILD_NUM 0 +#define DT_N_S_soc_S_memory_600fe000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_memory_600fe000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_memory_600fe000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_memory_600fe000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_memory_600fe000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_memory_600fe000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_memory_600fe000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_memory_600fe000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_memory_600fe000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_memory_600fe000_HASH OPeu87NduGo2caF08lYYkdtfy4uVXqUP5Rr0o3ibaR0 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_memory_600fe000_ORD 57 +#define DT_N_S_soc_S_memory_600fe000_ORD_STR_SORTABLE 00057 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_memory_600fe000_REQUIRES_ORDS \ + 12, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_memory_600fe000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_memory_600fe000_EXISTS 1 +#define DT_N_INST_6_zephyr_memory_region DT_N_S_soc_S_memory_600fe000 +#define DT_N_INST_6_mmio_sram DT_N_S_soc_S_memory_600fe000 +#define DT_N_NODELABEL_rtc_fast_ram DT_N_S_soc_S_memory_600fe000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_memory_600fe000_REG_NUM 1 +#define DT_N_S_soc_S_memory_600fe000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_600fe000_REG_IDX_0_VAL_ADDRESS 1611653120 /* 0x600fe000 */ +#define DT_N_S_soc_S_memory_600fe000_REG_IDX_0_VAL_SIZE 8192 /* 0x2000 */ +#define DT_N_S_soc_S_memory_600fe000_FOREACH_REG(fn) fn(DT_N_S_soc_S_memory_600fe000, 0) +#define DT_N_S_soc_S_memory_600fe000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_memory_600fe000, 0) +#define DT_N_S_soc_S_memory_600fe000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_600fe000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_600fe000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_600fe000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_600fe000_RANGES_NUM 0 +#define DT_N_S_soc_S_memory_600fe000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_memory_600fe000_IRQ_NUM 0 +#define DT_N_S_soc_S_memory_600fe000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_memory_600fe000_COMPAT_MATCHES_zephyr_memory_region 1 +#define DT_N_S_soc_S_memory_600fe000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_600fe000_COMPAT_VENDOR_IDX_0 "Zephyr Project" +#define DT_N_S_soc_S_memory_600fe000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_600fe000_COMPAT_MODEL_IDX_0 "memory-region" +#define DT_N_S_soc_S_memory_600fe000_COMPAT_MATCHES_mmio_sram 1 +#define DT_N_S_soc_S_memory_600fe000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_memory_600fe000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_memory_600fe000_P_zephyr_memory_region "RTC_FAST_RAM" +#define DT_N_S_soc_S_memory_600fe000_P_zephyr_memory_region_STRING_UNQUOTED RTC_FAST_RAM +#define DT_N_S_soc_S_memory_600fe000_P_zephyr_memory_region_STRING_TOKEN RTC_FAST_RAM +#define DT_N_S_soc_S_memory_600fe000_P_zephyr_memory_region_STRING_UPPER_TOKEN RTC_FAST_RAM +#define DT_N_S_soc_S_memory_600fe000_P_zephyr_memory_region_IDX_0 "RTC_FAST_RAM" +#define DT_N_S_soc_S_memory_600fe000_P_zephyr_memory_region_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_600fe000_P_zephyr_memory_region_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_memory_600fe000, zephyr_memory_region, 0) +#define DT_N_S_soc_S_memory_600fe000_P_zephyr_memory_region_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_memory_600fe000, zephyr_memory_region, 0) +#define DT_N_S_soc_S_memory_600fe000_P_zephyr_memory_region_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_600fe000, zephyr_memory_region, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_600fe000_P_zephyr_memory_region_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_600fe000, zephyr_memory_region, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_600fe000_P_zephyr_memory_region_LEN 1 +#define DT_N_S_soc_S_memory_600fe000_P_zephyr_memory_region_EXISTS 1 +#define DT_N_S_soc_S_memory_600fe000_P_compatible {"zephyr,memory-region", "mmio-sram"} +#define DT_N_S_soc_S_memory_600fe000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_600fe000_P_compatible_IDX_0 "zephyr,memory-region" +#define DT_N_S_soc_S_memory_600fe000_P_compatible_IDX_0_STRING_UNQUOTED zephyr,memory-region +#define DT_N_S_soc_S_memory_600fe000_P_compatible_IDX_0_STRING_TOKEN zephyr_memory_region +#define DT_N_S_soc_S_memory_600fe000_P_compatible_IDX_0_STRING_UPPER_TOKEN ZEPHYR_MEMORY_REGION +#define DT_N_S_soc_S_memory_600fe000_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_memory_600fe000_P_compatible_IDX_1 "mmio-sram" +#define DT_N_S_soc_S_memory_600fe000_P_compatible_IDX_1_STRING_UNQUOTED mmio-sram +#define DT_N_S_soc_S_memory_600fe000_P_compatible_IDX_1_STRING_TOKEN mmio_sram +#define DT_N_S_soc_S_memory_600fe000_P_compatible_IDX_1_STRING_UPPER_TOKEN MMIO_SRAM +#define DT_N_S_soc_S_memory_600fe000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_memory_600fe000, compatible, 0) \ + fn(DT_N_S_soc_S_memory_600fe000, compatible, 1) +#define DT_N_S_soc_S_memory_600fe000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_memory_600fe000, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_memory_600fe000, compatible, 1) +#define DT_N_S_soc_S_memory_600fe000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_600fe000, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_memory_600fe000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_memory_600fe000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_600fe000, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_memory_600fe000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_memory_600fe000_P_compatible_LEN 2 +#define DT_N_S_soc_S_memory_600fe000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_memory_600fe000_P_reg {1611653120 /* 0x600fe000 */, 8192 /* 0x2000 */} +#define DT_N_S_soc_S_memory_600fe000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_600fe000_P_reg_IDX_0 1611653120 +#define DT_N_S_soc_S_memory_600fe000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_memory_600fe000_P_reg_IDX_1 8192 +#define DT_N_S_soc_S_memory_600fe000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_memory_600fe000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_memory_600fe000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_memory_600fe000_P_wakeup_source 0 +#define DT_N_S_soc_S_memory_600fe000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_memory_600fe000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_memory_600fe000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/pcnt@60017000 + * + * Node identifier: DT_N_S_soc_S_pcnt_60017000 + * + * Binding (compatible = espressif,esp32-pcnt): + * $ZEPHYR_BASE/dts/bindings/sensor/espressif,esp32-pcnt.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_pcnt_60017000_PATH "/soc/pcnt@60017000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_pcnt_60017000_FULL_NAME "pcnt@60017000" +#define DT_N_S_soc_S_pcnt_60017000_FULL_NAME_UNQUOTED pcnt@60017000 +#define DT_N_S_soc_S_pcnt_60017000_FULL_NAME_TOKEN pcnt_60017000 +#define DT_N_S_soc_S_pcnt_60017000_FULL_NAME_UPPER_TOKEN PCNT_60017000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_pcnt_60017000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_pcnt_60017000_CHILD_IDX 43 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_pcnt_60017000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_pcnt_60017000_FOREACH_NODELABEL(fn) fn(pcnt) +#define DT_N_S_soc_S_pcnt_60017000_FOREACH_NODELABEL_VARGS(fn, ...) fn(pcnt, __VA_ARGS__) +#define DT_N_S_soc_S_pcnt_60017000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_pcnt_60017000_CHILD_NUM 0 +#define DT_N_S_soc_S_pcnt_60017000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_pcnt_60017000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_pcnt_60017000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_pcnt_60017000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_pcnt_60017000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_pcnt_60017000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_pcnt_60017000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_pcnt_60017000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_pcnt_60017000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_pcnt_60017000_HASH ZClq9dISyBnVFDgypE61RUkaAu9k8TnnR9Ind07azs8 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_pcnt_60017000_ORD 58 +#define DT_N_S_soc_S_pcnt_60017000_ORD_STR_SORTABLE 00058 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_pcnt_60017000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_pcnt_60017000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_pcnt_60017000_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_pcnt DT_N_S_soc_S_pcnt_60017000 +#define DT_N_NODELABEL_pcnt DT_N_S_soc_S_pcnt_60017000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_pcnt_60017000_REG_NUM 1 +#define DT_N_S_soc_S_pcnt_60017000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_REG_IDX_0_VAL_ADDRESS 1610706944 /* 0x60017000 */ +#define DT_N_S_soc_S_pcnt_60017000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_pcnt_60017000_FOREACH_REG(fn) fn(DT_N_S_soc_S_pcnt_60017000, 0) +#define DT_N_S_soc_S_pcnt_60017000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_pcnt_60017000, 0) +#define DT_N_S_soc_S_pcnt_60017000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_pcnt_60017000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pcnt_60017000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pcnt_60017000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pcnt_60017000_RANGES_NUM 0 +#define DT_N_S_soc_S_pcnt_60017000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_pcnt_60017000_IRQ_NUM 1 +#define DT_N_S_soc_S_pcnt_60017000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_IRQ_IDX_0_VAL_irq 41 +#define DT_N_S_soc_S_pcnt_60017000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_pcnt_60017000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_pcnt_60017000_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_pcnt_60017000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_pcnt_60017000_COMPAT_MATCHES_espressif_esp32_pcnt 1 +#define DT_N_S_soc_S_pcnt_60017000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_pcnt_60017000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_COMPAT_MODEL_IDX_0 "esp32-pcnt" +#define DT_N_S_soc_S_pcnt_60017000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_pcnt_60017000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_pcnt_60017000_P_status "disabled" +#define DT_N_S_soc_S_pcnt_60017000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_pcnt_60017000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_pcnt_60017000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_pcnt_60017000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_pcnt_60017000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_pcnt_60017000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pcnt_60017000, status, 0) +#define DT_N_S_soc_S_pcnt_60017000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pcnt_60017000, status, 0) +#define DT_N_S_soc_S_pcnt_60017000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pcnt_60017000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pcnt_60017000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pcnt_60017000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pcnt_60017000_P_status_LEN 1 +#define DT_N_S_soc_S_pcnt_60017000_P_status_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_P_compatible {"espressif,esp32-pcnt"} +#define DT_N_S_soc_S_pcnt_60017000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_P_compatible_IDX_0 "espressif,esp32-pcnt" +#define DT_N_S_soc_S_pcnt_60017000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-pcnt +#define DT_N_S_soc_S_pcnt_60017000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_pcnt +#define DT_N_S_soc_S_pcnt_60017000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_PCNT +#define DT_N_S_soc_S_pcnt_60017000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pcnt_60017000, compatible, 0) +#define DT_N_S_soc_S_pcnt_60017000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pcnt_60017000, compatible, 0) +#define DT_N_S_soc_S_pcnt_60017000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pcnt_60017000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pcnt_60017000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pcnt_60017000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pcnt_60017000_P_compatible_LEN 1 +#define DT_N_S_soc_S_pcnt_60017000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_P_reg {1610706944 /* 0x60017000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_pcnt_60017000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_P_reg_IDX_0 1610706944 +#define DT_N_S_soc_S_pcnt_60017000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_pcnt_60017000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_P_interrupts {41 /* 0x29 */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_pcnt_60017000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_P_interrupts_IDX_0 41 +#define DT_N_S_soc_S_pcnt_60017000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_pcnt_60017000_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_pcnt_60017000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_pcnt_60017000_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_pcnt_60017000_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_pcnt_60017000_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pcnt_60017000, interrupt_parent, 0) +#define DT_N_S_soc_S_pcnt_60017000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pcnt_60017000, interrupt_parent, 0) +#define DT_N_S_soc_S_pcnt_60017000_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pcnt_60017000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pcnt_60017000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pcnt_60017000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pcnt_60017000_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_pcnt_60017000_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_pcnt_60017000_P_clocks_IDX_0_VAL_offset 113 +#define DT_N_S_soc_S_pcnt_60017000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_pcnt_60017000, clocks, 0, offset) +#define DT_N_S_soc_S_pcnt_60017000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_pcnt_60017000, clocks, 0, offset) +#define DT_N_S_soc_S_pcnt_60017000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_pcnt_60017000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_pcnt_60017000, clocks, 0) +#define DT_N_S_soc_S_pcnt_60017000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_pcnt_60017000, clocks, 0) +#define DT_N_S_soc_S_pcnt_60017000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_pcnt_60017000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pcnt_60017000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_pcnt_60017000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_pcnt_60017000_P_clocks_LEN 1 +#define DT_N_S_soc_S_pcnt_60017000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_pcnt_60017000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_P_wakeup_source 0 +#define DT_N_S_soc_S_pcnt_60017000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_pcnt_60017000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_pcnt_60017000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/rtc_timer@60008004 + * + * Node identifier: DT_N_S_soc_S_rtc_timer_60008004 + * + * Binding (compatible = espressif,esp32-rtc-timer): + * $ZEPHYR_BASE/dts/bindings/counter/espressif,esp32-rtc-timer.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_rtc_timer_60008004_PATH "/soc/rtc_timer@60008004" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_rtc_timer_60008004_FULL_NAME "rtc_timer@60008004" +#define DT_N_S_soc_S_rtc_timer_60008004_FULL_NAME_UNQUOTED rtc_timer@60008004 +#define DT_N_S_soc_S_rtc_timer_60008004_FULL_NAME_TOKEN rtc_timer_60008004 +#define DT_N_S_soc_S_rtc_timer_60008004_FULL_NAME_UPPER_TOKEN RTC_TIMER_60008004 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_rtc_timer_60008004_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_rtc_timer_60008004_CHILD_IDX 13 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_rtc_timer_60008004_NODELABEL_NUM 1 +#define DT_N_S_soc_S_rtc_timer_60008004_FOREACH_NODELABEL(fn) fn(rtc_timer) +#define DT_N_S_soc_S_rtc_timer_60008004_FOREACH_NODELABEL_VARGS(fn, ...) fn(rtc_timer, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_timer_60008004_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_rtc_timer_60008004_CHILD_NUM 0 +#define DT_N_S_soc_S_rtc_timer_60008004_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_rtc_timer_60008004_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_rtc_timer_60008004_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_rtc_timer_60008004_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_rtc_timer_60008004_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_rtc_timer_60008004_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_rtc_timer_60008004_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_rtc_timer_60008004_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_rtc_timer_60008004_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_rtc_timer_60008004_HASH 4qN_L8f9vx8os_4o1HY0xZa_bIOyuYblmZLW1PIJL7Q + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_rtc_timer_60008004_ORD 59 +#define DT_N_S_soc_S_rtc_timer_60008004_ORD_STR_SORTABLE 00059 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_rtc_timer_60008004_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_rtc_timer_60008004_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_rtc_timer_60008004_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_rtc_timer DT_N_S_soc_S_rtc_timer_60008004 +#define DT_N_NODELABEL_rtc_timer DT_N_S_soc_S_rtc_timer_60008004 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_rtc_timer_60008004_REG_NUM 1 +#define DT_N_S_soc_S_rtc_timer_60008004_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_REG_IDX_0_VAL_ADDRESS 1610645508 /* 0x60008004 */ +#define DT_N_S_soc_S_rtc_timer_60008004_REG_IDX_0_VAL_SIZE 12 /* 0xc */ +#define DT_N_S_soc_S_rtc_timer_60008004_FOREACH_REG(fn) fn(DT_N_S_soc_S_rtc_timer_60008004, 0) +#define DT_N_S_soc_S_rtc_timer_60008004_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_rtc_timer_60008004, 0) +#define DT_N_S_soc_S_rtc_timer_60008004_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_rtc_timer_60008004, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_timer_60008004_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_rtc_timer_60008004, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_timer_60008004_RANGES_NUM 0 +#define DT_N_S_soc_S_rtc_timer_60008004_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_rtc_timer_60008004_IRQ_NUM 1 +#define DT_N_S_soc_S_rtc_timer_60008004_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_IRQ_IDX_0_VAL_irq 39 +#define DT_N_S_soc_S_rtc_timer_60008004_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_rtc_timer_60008004_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_rtc_timer_60008004_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_rtc_timer_60008004_IRQ_LEVEL 1 +#define DT_N_S_soc_S_rtc_timer_60008004_COMPAT_MATCHES_espressif_esp32_rtc_timer 1 +#define DT_N_S_soc_S_rtc_timer_60008004_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_rtc_timer_60008004_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_COMPAT_MODEL_IDX_0 "esp32-rtc-timer" +#define DT_N_S_soc_S_rtc_timer_60008004_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_rtc_timer_60008004_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_rtc_timer_60008004_P_status "disabled" +#define DT_N_S_soc_S_rtc_timer_60008004_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_rtc_timer_60008004_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_rtc_timer_60008004_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_rtc_timer_60008004_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_rtc_timer_60008004_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_rtc_timer_60008004, status, 0) +#define DT_N_S_soc_S_rtc_timer_60008004_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_rtc_timer_60008004, status, 0) +#define DT_N_S_soc_S_rtc_timer_60008004_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_rtc_timer_60008004, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_timer_60008004_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_rtc_timer_60008004, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_timer_60008004_P_status_LEN 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_status_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_compatible {"espressif,esp32-rtc-timer"} +#define DT_N_S_soc_S_rtc_timer_60008004_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_compatible_IDX_0 "espressif,esp32-rtc-timer" +#define DT_N_S_soc_S_rtc_timer_60008004_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-rtc-timer +#define DT_N_S_soc_S_rtc_timer_60008004_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_rtc_timer +#define DT_N_S_soc_S_rtc_timer_60008004_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_RTC_TIMER +#define DT_N_S_soc_S_rtc_timer_60008004_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_rtc_timer_60008004, compatible, 0) +#define DT_N_S_soc_S_rtc_timer_60008004_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_rtc_timer_60008004, compatible, 0) +#define DT_N_S_soc_S_rtc_timer_60008004_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_rtc_timer_60008004, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_timer_60008004_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_rtc_timer_60008004, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_timer_60008004_P_compatible_LEN 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_reg {1610645508 /* 0x60008004 */, 12 /* 0xc */} +#define DT_N_S_soc_S_rtc_timer_60008004_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_reg_IDX_0 1610645508 +#define DT_N_S_soc_S_rtc_timer_60008004_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_reg_IDX_1 12 +#define DT_N_S_soc_S_rtc_timer_60008004_P_reg_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_interrupts {39 /* 0x27 */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_rtc_timer_60008004_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_interrupts_IDX_0 39 +#define DT_N_S_soc_S_rtc_timer_60008004_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_rtc_timer_60008004_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_rtc_timer_60008004_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_rtc_timer_60008004_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_rtc_timer_60008004_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_rtc_timer_60008004_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_rtc_timer_60008004, interrupt_parent, 0) +#define DT_N_S_soc_S_rtc_timer_60008004_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_rtc_timer_60008004, interrupt_parent, 0) +#define DT_N_S_soc_S_rtc_timer_60008004_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_rtc_timer_60008004, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_timer_60008004_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_rtc_timer_60008004, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_timer_60008004_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_rtc_timer_60008004_P_clocks_IDX_0_VAL_offset 12 +#define DT_N_S_soc_S_rtc_timer_60008004_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_rtc_timer_60008004, clocks, 0, offset) +#define DT_N_S_soc_S_rtc_timer_60008004_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_rtc_timer_60008004, clocks, 0, offset) +#define DT_N_S_soc_S_rtc_timer_60008004_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_rtc_timer_60008004, clocks, 0) +#define DT_N_S_soc_S_rtc_timer_60008004_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_rtc_timer_60008004, clocks, 0) +#define DT_N_S_soc_S_rtc_timer_60008004_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_rtc_timer_60008004, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_timer_60008004_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_rtc_timer_60008004, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_rtc_timer_60008004_P_clocks_LEN 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_rtc_timer_60008004_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_wakeup_source 0 +#define DT_N_S_soc_S_rtc_timer_60008004_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_rtc_timer_60008004_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_rtc_timer_60008004_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/sha@6003b000 + * + * Node identifier: DT_N_S_soc_S_sha_6003b000 + * + * Binding (compatible = espressif,esp32-sha): + * $ZEPHYR_BASE/dts/bindings/crypto/espressif,esp32-sha.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_sha_6003b000_PATH "/soc/sha@6003b000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_sha_6003b000_FULL_NAME "sha@6003b000" +#define DT_N_S_soc_S_sha_6003b000_FULL_NAME_UNQUOTED sha@6003b000 +#define DT_N_S_soc_S_sha_6003b000_FULL_NAME_TOKEN sha_6003b000 +#define DT_N_S_soc_S_sha_6003b000_FULL_NAME_UPPER_TOKEN SHA_6003B000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_sha_6003b000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_sha_6003b000_CHILD_IDX 46 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_sha_6003b000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_sha_6003b000_FOREACH_NODELABEL(fn) fn(sha) +#define DT_N_S_soc_S_sha_6003b000_FOREACH_NODELABEL_VARGS(fn, ...) fn(sha, __VA_ARGS__) +#define DT_N_S_soc_S_sha_6003b000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_sha_6003b000_CHILD_NUM 0 +#define DT_N_S_soc_S_sha_6003b000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_sha_6003b000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_sha_6003b000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_sha_6003b000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_sha_6003b000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_sha_6003b000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_sha_6003b000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_sha_6003b000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_sha_6003b000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_sha_6003b000_HASH 7OX0bTx4tdGa16cEdhK9sCwpllJb4Ei8sOPUFAW9i2o + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_sha_6003b000_ORD 60 +#define DT_N_S_soc_S_sha_6003b000_ORD_STR_SORTABLE 00060 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_sha_6003b000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_sha_6003b000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_sha_6003b000_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_sha DT_N_S_soc_S_sha_6003b000 +#define DT_N_NODELABEL_sha DT_N_S_soc_S_sha_6003b000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_sha_6003b000_REG_NUM 1 +#define DT_N_S_soc_S_sha_6003b000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sha_6003b000_REG_IDX_0_VAL_ADDRESS 1610854400 /* 0x6003b000 */ +#define DT_N_S_soc_S_sha_6003b000_REG_IDX_0_VAL_SIZE 256 /* 0x100 */ +#define DT_N_S_soc_S_sha_6003b000_FOREACH_REG(fn) fn(DT_N_S_soc_S_sha_6003b000, 0) +#define DT_N_S_soc_S_sha_6003b000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_sha_6003b000, 0) +#define DT_N_S_soc_S_sha_6003b000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_sha_6003b000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sha_6003b000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_sha_6003b000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sha_6003b000_RANGES_NUM 0 +#define DT_N_S_soc_S_sha_6003b000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_sha_6003b000_IRQ_NUM 0 +#define DT_N_S_soc_S_sha_6003b000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_sha_6003b000_COMPAT_MATCHES_espressif_esp32_sha 1 +#define DT_N_S_soc_S_sha_6003b000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sha_6003b000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_sha_6003b000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sha_6003b000_COMPAT_MODEL_IDX_0 "esp32-sha" +#define DT_N_S_soc_S_sha_6003b000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_sha_6003b000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_sha_6003b000_P_status "okay" +#define DT_N_S_soc_S_sha_6003b000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_sha_6003b000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_sha_6003b000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_sha_6003b000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_sha_6003b000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sha_6003b000_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_sha_6003b000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_sha_6003b000_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_sha_6003b000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_sha_6003b000, status, 0) +#define DT_N_S_soc_S_sha_6003b000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_sha_6003b000, status, 0) +#define DT_N_S_soc_S_sha_6003b000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_sha_6003b000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sha_6003b000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_sha_6003b000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sha_6003b000_P_status_LEN 1 +#define DT_N_S_soc_S_sha_6003b000_P_status_EXISTS 1 +#define DT_N_S_soc_S_sha_6003b000_P_compatible {"espressif,esp32-sha"} +#define DT_N_S_soc_S_sha_6003b000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sha_6003b000_P_compatible_IDX_0 "espressif,esp32-sha" +#define DT_N_S_soc_S_sha_6003b000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-sha +#define DT_N_S_soc_S_sha_6003b000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_sha +#define DT_N_S_soc_S_sha_6003b000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_SHA +#define DT_N_S_soc_S_sha_6003b000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_sha_6003b000, compatible, 0) +#define DT_N_S_soc_S_sha_6003b000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_sha_6003b000, compatible, 0) +#define DT_N_S_soc_S_sha_6003b000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_sha_6003b000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sha_6003b000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_sha_6003b000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sha_6003b000_P_compatible_LEN 1 +#define DT_N_S_soc_S_sha_6003b000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_sha_6003b000_P_reg {1610854400 /* 0x6003b000 */, 256 /* 0x100 */} +#define DT_N_S_soc_S_sha_6003b000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sha_6003b000_P_reg_IDX_0 1610854400 +#define DT_N_S_soc_S_sha_6003b000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_sha_6003b000_P_reg_IDX_1 256 +#define DT_N_S_soc_S_sha_6003b000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_sha_6003b000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sha_6003b000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_sha_6003b000_P_clocks_IDX_0_VAL_offset 122 +#define DT_N_S_soc_S_sha_6003b000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_sha_6003b000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_sha_6003b000, clocks, 0, offset) +#define DT_N_S_soc_S_sha_6003b000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_sha_6003b000, clocks, 0, offset) +#define DT_N_S_soc_S_sha_6003b000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_sha_6003b000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_sha_6003b000, clocks, 0) +#define DT_N_S_soc_S_sha_6003b000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_sha_6003b000, clocks, 0) +#define DT_N_S_soc_S_sha_6003b000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_sha_6003b000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sha_6003b000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_sha_6003b000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sha_6003b000_P_clocks_LEN 1 +#define DT_N_S_soc_S_sha_6003b000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_sha_6003b000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_sha_6003b000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_sha_6003b000_P_wakeup_source 0 +#define DT_N_S_soc_S_sha_6003b000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_sha_6003b000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_sha_6003b000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/spi@60025000 + * + * Node identifier: DT_N_S_soc_S_spi_60025000 + * + * Binding (compatible = espressif,esp32-spi): + * $ZEPHYR_BASE/dts/bindings/spi/espressif,esp32-spi.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_spi_60025000_PATH "/soc/spi@60025000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_spi_60025000_FULL_NAME "spi@60025000" +#define DT_N_S_soc_S_spi_60025000_FULL_NAME_UNQUOTED spi@60025000 +#define DT_N_S_soc_S_spi_60025000_FULL_NAME_TOKEN spi_60025000 +#define DT_N_S_soc_S_spi_60025000_FULL_NAME_UPPER_TOKEN SPI_60025000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_spi_60025000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_spi_60025000_CHILD_IDX 25 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_spi_60025000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_spi_60025000_FOREACH_NODELABEL(fn) fn(spi3) +#define DT_N_S_soc_S_spi_60025000_FOREACH_NODELABEL_VARGS(fn, ...) fn(spi3, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60025000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_spi_60025000_CHILD_NUM 0 +#define DT_N_S_soc_S_spi_60025000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_spi_60025000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_spi_60025000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_spi_60025000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_spi_60025000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_spi_60025000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_spi_60025000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_spi_60025000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_spi_60025000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_spi_60025000_HASH AznhjxWB4dhjf4qM0h7xJWMCnW1aYspNqC8gyq4ldGM + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_spi_60025000_ORD 61 +#define DT_N_S_soc_S_spi_60025000_ORD_STR_SORTABLE 00061 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_spi_60025000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_spi_60025000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_spi_60025000_EXISTS 1 +#define DT_N_INST_1_espressif_esp32_spi DT_N_S_soc_S_spi_60025000 +#define DT_N_NODELABEL_spi3 DT_N_S_soc_S_spi_60025000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_spi_60025000_REG_NUM 1 +#define DT_N_S_soc_S_spi_60025000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_REG_IDX_0_VAL_ADDRESS 1610764288 /* 0x60025000 */ +#define DT_N_S_soc_S_spi_60025000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_spi_60025000_FOREACH_REG(fn) fn(DT_N_S_soc_S_spi_60025000, 0) +#define DT_N_S_soc_S_spi_60025000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60025000, 0) +#define DT_N_S_soc_S_spi_60025000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_60025000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60025000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_60025000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60025000_RANGES_NUM 0 +#define DT_N_S_soc_S_spi_60025000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_spi_60025000_IRQ_NUM 1 +#define DT_N_S_soc_S_spi_60025000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_IRQ_IDX_0_VAL_irq 22 +#define DT_N_S_soc_S_spi_60025000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_spi_60025000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_spi_60025000_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_spi_60025000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_spi_60025000_COMPAT_MATCHES_espressif_esp32_spi 1 +#define DT_N_S_soc_S_spi_60025000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_spi_60025000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_COMPAT_MODEL_IDX_0 "esp32-spi" +#define DT_N_S_soc_S_spi_60025000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_spi_60025000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_spi_60025000_P_reg {1610764288 /* 0x60025000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_spi_60025000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_reg_IDX_0 1610764288 +#define DT_N_S_soc_S_spi_60025000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_spi_60025000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_half_duplex 0 +#define DT_N_S_soc_S_spi_60025000_P_half_duplex_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_dummy_comp 0 +#define DT_N_S_soc_S_spi_60025000_P_dummy_comp_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_sio 0 +#define DT_N_S_soc_S_spi_60025000_P_sio_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_dma_enabled 0 +#define DT_N_S_soc_S_spi_60025000_P_dma_enabled_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_dma_host 1 +#define DT_N_S_soc_S_spi_60025000_P_dma_host_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_clk_as_cs 0 +#define DT_N_S_soc_S_spi_60025000_P_clk_as_cs_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_positive_cs 0 +#define DT_N_S_soc_S_spi_60025000_P_positive_cs_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_use_iomux 0 +#define DT_N_S_soc_S_spi_60025000_P_use_iomux_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_line_idle_low 0 +#define DT_N_S_soc_S_spi_60025000_P_line_idle_low_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_status "disabled" +#define DT_N_S_soc_S_spi_60025000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_spi_60025000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_spi_60025000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_spi_60025000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_spi_60025000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_spi_60025000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_60025000, status, 0) +#define DT_N_S_soc_S_spi_60025000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60025000, status, 0) +#define DT_N_S_soc_S_spi_60025000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_60025000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60025000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_60025000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60025000_P_status_LEN 1 +#define DT_N_S_soc_S_spi_60025000_P_status_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_compatible {"espressif,esp32-spi"} +#define DT_N_S_soc_S_spi_60025000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_compatible_IDX_0 "espressif,esp32-spi" +#define DT_N_S_soc_S_spi_60025000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-spi +#define DT_N_S_soc_S_spi_60025000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_spi +#define DT_N_S_soc_S_spi_60025000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_SPI +#define DT_N_S_soc_S_spi_60025000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_60025000, compatible, 0) +#define DT_N_S_soc_S_spi_60025000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60025000, compatible, 0) +#define DT_N_S_soc_S_spi_60025000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_60025000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60025000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_60025000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60025000_P_compatible_LEN 1 +#define DT_N_S_soc_S_spi_60025000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_interrupts {22 /* 0x16 */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_spi_60025000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_interrupts_IDX_0 22 +#define DT_N_S_soc_S_spi_60025000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_spi_60025000_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_spi_60025000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_spi_60025000_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_spi_60025000_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_spi_60025000_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_60025000, interrupt_parent, 0) +#define DT_N_S_soc_S_spi_60025000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60025000, interrupt_parent, 0) +#define DT_N_S_soc_S_spi_60025000_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_60025000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60025000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_60025000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60025000_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_spi_60025000_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_spi_60025000_P_clocks_IDX_0_VAL_offset 116 +#define DT_N_S_soc_S_spi_60025000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_spi_60025000, clocks, 0, offset) +#define DT_N_S_soc_S_spi_60025000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60025000, clocks, 0, offset) +#define DT_N_S_soc_S_spi_60025000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_spi_60025000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_60025000, clocks, 0) +#define DT_N_S_soc_S_spi_60025000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60025000, clocks, 0) +#define DT_N_S_soc_S_spi_60025000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_60025000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60025000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_60025000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60025000_P_clocks_LEN 1 +#define DT_N_S_soc_S_spi_60025000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_spi_60025000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_wakeup_source 0 +#define DT_N_S_soc_S_spi_60025000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_spi_60025000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_spi_60025000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/touch@6000885c + * + * Node identifier: DT_N_S_soc_S_touch_6000885c + * + * Binding (compatible = espressif,esp32-touch): + * $ZEPHYR_BASE/dts/bindings/input/espressif,esp32-touch.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_touch_6000885c_PATH "/soc/touch@6000885c" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_touch_6000885c_FULL_NAME "touch@6000885c" +#define DT_N_S_soc_S_touch_6000885c_FULL_NAME_UNQUOTED touch@6000885c +#define DT_N_S_soc_S_touch_6000885c_FULL_NAME_TOKEN touch_6000885c +#define DT_N_S_soc_S_touch_6000885c_FULL_NAME_UPPER_TOKEN TOUCH_6000885C + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_touch_6000885c_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_touch_6000885c_CHILD_IDX 19 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_touch_6000885c_NODELABEL_NUM 1 +#define DT_N_S_soc_S_touch_6000885c_FOREACH_NODELABEL(fn) fn(touch) +#define DT_N_S_soc_S_touch_6000885c_FOREACH_NODELABEL_VARGS(fn, ...) fn(touch, __VA_ARGS__) +#define DT_N_S_soc_S_touch_6000885c_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_touch_6000885c_CHILD_NUM 0 +#define DT_N_S_soc_S_touch_6000885c_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_touch_6000885c_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_touch_6000885c_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_touch_6000885c_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_touch_6000885c_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_touch_6000885c_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_touch_6000885c_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_touch_6000885c_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_touch_6000885c_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_touch_6000885c_HASH lW5T4xPXuGhuol5FH_i1tsfAufZ7rqCd0mYWu_aMCLA + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_touch_6000885c_ORD 62 +#define DT_N_S_soc_S_touch_6000885c_ORD_STR_SORTABLE 00062 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_touch_6000885c_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_touch_6000885c_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_touch_6000885c_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_touch DT_N_S_soc_S_touch_6000885c +#define DT_N_NODELABEL_touch DT_N_S_soc_S_touch_6000885c + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_touch_6000885c_REG_NUM 2 +#define DT_N_S_soc_S_touch_6000885c_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_REG_IDX_0_VAL_ADDRESS 1610647644 /* 0x6000885c */ +#define DT_N_S_soc_S_touch_6000885c_REG_IDX_0_VAL_SIZE 136 /* 0x88 */ +#define DT_N_S_soc_S_touch_6000885c_REG_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_REG_IDX_1_VAL_ADDRESS 1610647816 /* 0x60008908 */ +#define DT_N_S_soc_S_touch_6000885c_REG_IDX_1_VAL_SIZE 24 /* 0x18 */ +#define DT_N_S_soc_S_touch_6000885c_FOREACH_REG(fn) fn(DT_N_S_soc_S_touch_6000885c, 0) fn(DT_N_S_soc_S_touch_6000885c, 1) +#define DT_N_S_soc_S_touch_6000885c_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_touch_6000885c, 0) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_touch_6000885c, 1) +#define DT_N_S_soc_S_touch_6000885c_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_touch_6000885c, 0, __VA_ARGS__) fn(DT_N_S_soc_S_touch_6000885c, 1, __VA_ARGS__) +#define DT_N_S_soc_S_touch_6000885c_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_touch_6000885c, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_touch_6000885c, 1, __VA_ARGS__) +#define DT_N_S_soc_S_touch_6000885c_RANGES_NUM 0 +#define DT_N_S_soc_S_touch_6000885c_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_touch_6000885c_IRQ_NUM 1 +#define DT_N_S_soc_S_touch_6000885c_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_IRQ_IDX_0_VAL_irq 39 +#define DT_N_S_soc_S_touch_6000885c_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_touch_6000885c_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_touch_6000885c_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_touch_6000885c_IRQ_LEVEL 1 +#define DT_N_S_soc_S_touch_6000885c_COMPAT_MATCHES_espressif_esp32_touch 1 +#define DT_N_S_soc_S_touch_6000885c_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_touch_6000885c_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_COMPAT_MODEL_IDX_0 "esp32-touch" +#define DT_N_S_soc_S_touch_6000885c_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_touch_6000885c_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_touch_6000885c_P_debounce_interval_ms 30 +#define DT_N_S_soc_S_touch_6000885c_P_debounce_interval_ms_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_href_microvolt 2700000 +#define DT_N_S_soc_S_touch_6000885c_P_href_microvolt_IDX_0_ENUM_IDX 3 +#define DT_N_S_soc_S_touch_6000885c_P_href_microvolt_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_href_microvolt_IDX_0_ENUM_VAL_2700000_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_href_microvolt_ENUM_VAL_2700000_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_href_microvolt_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_lref_microvolt 500000 +#define DT_N_S_soc_S_touch_6000885c_P_lref_microvolt_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_touch_6000885c_P_lref_microvolt_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_lref_microvolt_IDX_0_ENUM_VAL_500000_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_lref_microvolt_ENUM_VAL_500000_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_lref_microvolt_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_href_atten_microvolt 1000000 +#define DT_N_S_soc_S_touch_6000885c_P_href_atten_microvolt_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_touch_6000885c_P_href_atten_microvolt_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_href_atten_microvolt_IDX_0_ENUM_VAL_1000000_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_href_atten_microvolt_ENUM_VAL_1000000_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_href_atten_microvolt_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_filter_mode 2 +#define DT_N_S_soc_S_touch_6000885c_P_filter_mode_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_filter_debounce_cnt 1 +#define DT_N_S_soc_S_touch_6000885c_P_filter_debounce_cnt_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_filter_noise_thr 0 +#define DT_N_S_soc_S_touch_6000885c_P_filter_noise_thr_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_filter_jitter_step 4 +#define DT_N_S_soc_S_touch_6000885c_P_filter_jitter_step_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_filter_smooth_level 1 +#define DT_N_S_soc_S_touch_6000885c_P_filter_smooth_level_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_status "disabled" +#define DT_N_S_soc_S_touch_6000885c_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_touch_6000885c_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_touch_6000885c_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_touch_6000885c_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_touch_6000885c_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_touch_6000885c_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_touch_6000885c, status, 0) +#define DT_N_S_soc_S_touch_6000885c_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_touch_6000885c, status, 0) +#define DT_N_S_soc_S_touch_6000885c_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_touch_6000885c, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_touch_6000885c_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_touch_6000885c, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_touch_6000885c_P_status_LEN 1 +#define DT_N_S_soc_S_touch_6000885c_P_status_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_compatible {"espressif,esp32-touch"} +#define DT_N_S_soc_S_touch_6000885c_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_compatible_IDX_0 "espressif,esp32-touch" +#define DT_N_S_soc_S_touch_6000885c_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-touch +#define DT_N_S_soc_S_touch_6000885c_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_touch +#define DT_N_S_soc_S_touch_6000885c_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_TOUCH +#define DT_N_S_soc_S_touch_6000885c_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_touch_6000885c, compatible, 0) +#define DT_N_S_soc_S_touch_6000885c_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_touch_6000885c, compatible, 0) +#define DT_N_S_soc_S_touch_6000885c_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_touch_6000885c, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_touch_6000885c_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_touch_6000885c, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_touch_6000885c_P_compatible_LEN 1 +#define DT_N_S_soc_S_touch_6000885c_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_reg {1610647644 /* 0x6000885c */, 136 /* 0x88 */, 1610647816 /* 0x60008908 */, 24 /* 0x18 */} +#define DT_N_S_soc_S_touch_6000885c_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_reg_IDX_0 1610647644 +#define DT_N_S_soc_S_touch_6000885c_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_reg_IDX_1 136 +#define DT_N_S_soc_S_touch_6000885c_P_reg_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_reg_IDX_2 1610647816 +#define DT_N_S_soc_S_touch_6000885c_P_reg_IDX_3_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_reg_IDX_3 24 +#define DT_N_S_soc_S_touch_6000885c_P_reg_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_interrupts {39 /* 0x27 */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_touch_6000885c_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_interrupts_IDX_0 39 +#define DT_N_S_soc_S_touch_6000885c_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_touch_6000885c_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_touch_6000885c_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_touch_6000885c_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_touch_6000885c_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_touch_6000885c_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_touch_6000885c, interrupt_parent, 0) +#define DT_N_S_soc_S_touch_6000885c_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_touch_6000885c, interrupt_parent, 0) +#define DT_N_S_soc_S_touch_6000885c_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_touch_6000885c, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_touch_6000885c_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_touch_6000885c, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_touch_6000885c_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_touch_6000885c_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_touch_6000885c_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_wakeup_source 0 +#define DT_N_S_soc_S_touch_6000885c_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_touch_6000885c_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_touch_6000885c_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/trng@6003507c + * + * Node identifier: DT_N_S_soc_S_trng_6003507c + * + * Binding (compatible = espressif,esp32-trng): + * $ZEPHYR_BASE/dts/bindings/rng/espressif,esp32-trng.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_trng_6003507c_PATH "/soc/trng@6003507c" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_trng_6003507c_FULL_NAME "trng@6003507c" +#define DT_N_S_soc_S_trng_6003507c_FULL_NAME_UNQUOTED trng@6003507c +#define DT_N_S_soc_S_trng_6003507c_FULL_NAME_TOKEN trng_6003507c +#define DT_N_S_soc_S_trng_6003507c_FULL_NAME_UPPER_TOKEN TRNG_6003507C + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_trng_6003507c_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_trng_6003507c_CHILD_IDX 39 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_trng_6003507c_NODELABEL_NUM 1 +#define DT_N_S_soc_S_trng_6003507c_FOREACH_NODELABEL(fn) fn(trng0) +#define DT_N_S_soc_S_trng_6003507c_FOREACH_NODELABEL_VARGS(fn, ...) fn(trng0, __VA_ARGS__) +#define DT_N_S_soc_S_trng_6003507c_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_trng_6003507c_CHILD_NUM 0 +#define DT_N_S_soc_S_trng_6003507c_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_trng_6003507c_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_trng_6003507c_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_trng_6003507c_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_trng_6003507c_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_trng_6003507c_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_trng_6003507c_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_trng_6003507c_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_trng_6003507c_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_trng_6003507c_HASH HC97_ePl1pevUbx8SWLgTpeKRqKtqSyA_b3OchELVbI + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_trng_6003507c_ORD 63 +#define DT_N_S_soc_S_trng_6003507c_ORD_STR_SORTABLE 00063 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_trng_6003507c_REQUIRES_ORDS \ + 12, /* /soc */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_trng_6003507c_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_trng_6003507c_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_trng DT_N_S_soc_S_trng_6003507c +#define DT_N_NODELABEL_trng0 DT_N_S_soc_S_trng_6003507c + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_trng_6003507c_REG_NUM 1 +#define DT_N_S_soc_S_trng_6003507c_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_trng_6003507c_REG_IDX_0_VAL_ADDRESS 1610829948 /* 0x6003507c */ +#define DT_N_S_soc_S_trng_6003507c_REG_IDX_0_VAL_SIZE 4 /* 0x4 */ +#define DT_N_S_soc_S_trng_6003507c_FOREACH_REG(fn) fn(DT_N_S_soc_S_trng_6003507c, 0) +#define DT_N_S_soc_S_trng_6003507c_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_trng_6003507c, 0) +#define DT_N_S_soc_S_trng_6003507c_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_trng_6003507c, 0, __VA_ARGS__) +#define DT_N_S_soc_S_trng_6003507c_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_trng_6003507c, 0, __VA_ARGS__) +#define DT_N_S_soc_S_trng_6003507c_RANGES_NUM 0 +#define DT_N_S_soc_S_trng_6003507c_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_trng_6003507c_IRQ_NUM 0 +#define DT_N_S_soc_S_trng_6003507c_IRQ_LEVEL 0 +#define DT_N_S_soc_S_trng_6003507c_COMPAT_MATCHES_espressif_esp32_trng 1 +#define DT_N_S_soc_S_trng_6003507c_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_trng_6003507c_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_trng_6003507c_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_trng_6003507c_COMPAT_MODEL_IDX_0 "esp32-trng" +#define DT_N_S_soc_S_trng_6003507c_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_trng_6003507c_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_trng_6003507c_P_reg {1610829948 /* 0x6003507c */, 4 /* 0x4 */} +#define DT_N_S_soc_S_trng_6003507c_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_trng_6003507c_P_reg_IDX_0 1610829948 +#define DT_N_S_soc_S_trng_6003507c_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_trng_6003507c_P_reg_IDX_1 4 +#define DT_N_S_soc_S_trng_6003507c_P_reg_EXISTS 1 +#define DT_N_S_soc_S_trng_6003507c_P_status "okay" +#define DT_N_S_soc_S_trng_6003507c_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_trng_6003507c_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_trng_6003507c_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_trng_6003507c_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_trng_6003507c_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_trng_6003507c_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_trng_6003507c_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_trng_6003507c_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_trng_6003507c_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_trng_6003507c, status, 0) +#define DT_N_S_soc_S_trng_6003507c_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_trng_6003507c, status, 0) +#define DT_N_S_soc_S_trng_6003507c_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_trng_6003507c, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_trng_6003507c_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_trng_6003507c, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_trng_6003507c_P_status_LEN 1 +#define DT_N_S_soc_S_trng_6003507c_P_status_EXISTS 1 +#define DT_N_S_soc_S_trng_6003507c_P_compatible {"espressif,esp32-trng"} +#define DT_N_S_soc_S_trng_6003507c_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_trng_6003507c_P_compatible_IDX_0 "espressif,esp32-trng" +#define DT_N_S_soc_S_trng_6003507c_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-trng +#define DT_N_S_soc_S_trng_6003507c_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_trng +#define DT_N_S_soc_S_trng_6003507c_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_TRNG +#define DT_N_S_soc_S_trng_6003507c_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_trng_6003507c, compatible, 0) +#define DT_N_S_soc_S_trng_6003507c_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_trng_6003507c, compatible, 0) +#define DT_N_S_soc_S_trng_6003507c_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_trng_6003507c, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_trng_6003507c_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_trng_6003507c, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_trng_6003507c_P_compatible_LEN 1 +#define DT_N_S_soc_S_trng_6003507c_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_trng_6003507c_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_trng_6003507c_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_trng_6003507c_P_clocks_IDX_0_VAL_offset 6 +#define DT_N_S_soc_S_trng_6003507c_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_trng_6003507c_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_trng_6003507c, clocks, 0, offset) +#define DT_N_S_soc_S_trng_6003507c_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_trng_6003507c, clocks, 0, offset) +#define DT_N_S_soc_S_trng_6003507c_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_trng_6003507c_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_trng_6003507c, clocks, 0) +#define DT_N_S_soc_S_trng_6003507c_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_trng_6003507c, clocks, 0) +#define DT_N_S_soc_S_trng_6003507c_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_trng_6003507c, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_trng_6003507c_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_trng_6003507c, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_trng_6003507c_P_clocks_LEN 1 +#define DT_N_S_soc_S_trng_6003507c_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_trng_6003507c_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_trng_6003507c_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_trng_6003507c_P_wakeup_source 0 +#define DT_N_S_soc_S_trng_6003507c_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_trng_6003507c_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_trng_6003507c_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/uart@60000000 + * + * Node identifier: DT_N_S_soc_S_uart_60000000 + * + * Binding (compatible = espressif,esp32-uart): + * $ZEPHYR_BASE/dts/bindings/serial/espressif,esp32-uart.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_uart_60000000_PATH "/soc/uart@60000000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_uart_60000000_FULL_NAME "uart@60000000" +#define DT_N_S_soc_S_uart_60000000_FULL_NAME_UNQUOTED uart@60000000 +#define DT_N_S_soc_S_uart_60000000_FULL_NAME_TOKEN uart_60000000 +#define DT_N_S_soc_S_uart_60000000_FULL_NAME_UPPER_TOKEN UART_60000000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_uart_60000000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_uart_60000000_CHILD_IDX 15 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_uart_60000000_NODELABEL_NUM 2 +#define DT_N_S_soc_S_uart_60000000_FOREACH_NODELABEL(fn) fn(uart0) fn(xiao_serial) +#define DT_N_S_soc_S_uart_60000000_FOREACH_NODELABEL_VARGS(fn, ...) fn(uart0, __VA_ARGS__) fn(xiao_serial, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60000000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_uart_60000000_CHILD_NUM 0 +#define DT_N_S_soc_S_uart_60000000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_uart_60000000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_uart_60000000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_uart_60000000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_uart_60000000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_uart_60000000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_uart_60000000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_uart_60000000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_uart_60000000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_uart_60000000_HASH D2t8eqRVs7EeMF7E6_m3Gv7t97nd7h5PH0XDmtUvrbk + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_uart_60000000_ORD 64 +#define DT_N_S_soc_S_uart_60000000_ORD_STR_SORTABLE 00064 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_uart_60000000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 31, /* /pin-controller/uart0_default */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_uart_60000000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_uart_60000000_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_uart DT_N_S_soc_S_uart_60000000 +#define DT_N_NODELABEL_uart0 DT_N_S_soc_S_uart_60000000 +#define DT_N_NODELABEL_xiao_serial DT_N_S_soc_S_uart_60000000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_uart_60000000_REG_NUM 1 +#define DT_N_S_soc_S_uart_60000000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_REG_IDX_0_VAL_ADDRESS 1610612736 /* 0x60000000 */ +#define DT_N_S_soc_S_uart_60000000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_uart_60000000_FOREACH_REG(fn) fn(DT_N_S_soc_S_uart_60000000, 0) +#define DT_N_S_soc_S_uart_60000000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60000000, 0) +#define DT_N_S_soc_S_uart_60000000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_60000000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60000000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_60000000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60000000_RANGES_NUM 0 +#define DT_N_S_soc_S_uart_60000000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_uart_60000000_IRQ_NUM 1 +#define DT_N_S_soc_S_uart_60000000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_IRQ_IDX_0_VAL_irq 27 +#define DT_N_S_soc_S_uart_60000000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_uart_60000000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_uart_60000000_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_uart_60000000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_uart_60000000_COMPAT_MATCHES_espressif_esp32_uart 1 +#define DT_N_S_soc_S_uart_60000000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_uart_60000000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_COMPAT_MODEL_IDX_0 "esp32-uart" +#define DT_N_S_soc_S_uart_60000000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_uart_60000000_PINCTRL_NUM 1 +#define DT_N_S_soc_S_uart_60000000_PINCTRL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_PINCTRL_IDX_0_TOKEN default +#define DT_N_S_soc_S_uart_60000000_PINCTRL_IDX_0_UPPER_TOKEN DEFAULT +#define DT_N_S_soc_S_uart_60000000_PINCTRL_NAME_default_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_PINCTRL_NAME_default_IDX 0 +#define DT_N_S_soc_S_uart_60000000_PINCTRL_NAME_default_IDX_0_PH DT_N_S_pin_controller_S_uart0_default + +/* Generic property macros: */ +#define DT_N_S_soc_S_uart_60000000_P_reg {1610612736 /* 0x60000000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_uart_60000000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_reg_IDX_0 1610612736 +#define DT_N_S_soc_S_uart_60000000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_uart_60000000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_pinctrl_0_IDX_0 DT_N_S_pin_controller_S_uart0_default +#define DT_N_S_soc_S_uart_60000000_P_pinctrl_0_IDX_0_PH DT_N_S_pin_controller_S_uart0_default +#define DT_N_S_soc_S_uart_60000000_P_pinctrl_0_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_pinctrl_0_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_60000000, pinctrl_0, 0) +#define DT_N_S_soc_S_uart_60000000_P_pinctrl_0_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60000000, pinctrl_0, 0) +#define DT_N_S_soc_S_uart_60000000_P_pinctrl_0_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_60000000, pinctrl_0, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60000000_P_pinctrl_0_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_60000000, pinctrl_0, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60000000_P_pinctrl_0_LEN 1 +#define DT_N_S_soc_S_uart_60000000_P_pinctrl_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_pinctrl_names {"default"} +#define DT_N_S_soc_S_uart_60000000_P_pinctrl_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_pinctrl_names_IDX_0 "default" +#define DT_N_S_soc_S_uart_60000000_P_pinctrl_names_IDX_0_STRING_UNQUOTED default +#define DT_N_S_soc_S_uart_60000000_P_pinctrl_names_IDX_0_STRING_TOKEN default +#define DT_N_S_soc_S_uart_60000000_P_pinctrl_names_IDX_0_STRING_UPPER_TOKEN DEFAULT +#define DT_N_S_soc_S_uart_60000000_P_pinctrl_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_60000000, pinctrl_names, 0) +#define DT_N_S_soc_S_uart_60000000_P_pinctrl_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60000000, pinctrl_names, 0) +#define DT_N_S_soc_S_uart_60000000_P_pinctrl_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_60000000, pinctrl_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60000000_P_pinctrl_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_60000000, pinctrl_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60000000_P_pinctrl_names_LEN 1 +#define DT_N_S_soc_S_uart_60000000_P_pinctrl_names_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_stop_bits "1" +#define DT_N_S_soc_S_uart_60000000_P_stop_bits_STRING_UNQUOTED 1 +#define DT_N_S_soc_S_uart_60000000_P_stop_bits_STRING_TOKEN 1 +#define DT_N_S_soc_S_uart_60000000_P_stop_bits_STRING_UPPER_TOKEN 1 +#define DT_N_S_soc_S_uart_60000000_P_stop_bits_IDX_0 "1" +#define DT_N_S_soc_S_uart_60000000_P_stop_bits_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_stop_bits_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_uart_60000000_P_stop_bits_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_stop_bits_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_stop_bits_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_60000000, stop_bits, 0) +#define DT_N_S_soc_S_uart_60000000_P_stop_bits_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60000000, stop_bits, 0) +#define DT_N_S_soc_S_uart_60000000_P_stop_bits_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_60000000, stop_bits, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60000000_P_stop_bits_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_60000000, stop_bits, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60000000_P_stop_bits_LEN 1 +#define DT_N_S_soc_S_uart_60000000_P_stop_bits_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_data_bits 8 +#define DT_N_S_soc_S_uart_60000000_P_data_bits_IDX_0_ENUM_IDX 3 +#define DT_N_S_soc_S_uart_60000000_P_data_bits_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_data_bits_IDX_0_ENUM_VAL_8_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_data_bits_ENUM_VAL_8_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_data_bits_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_hw_rs485_hd_mode 0 +#define DT_N_S_soc_S_uart_60000000_P_hw_rs485_hd_mode_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_uhci_slip_tx 0 +#define DT_N_S_soc_S_uart_60000000_P_uhci_slip_tx_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_uhci_slip_rx 0 +#define DT_N_S_soc_S_uart_60000000_P_uhci_slip_rx_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_current_speed 115200 +#define DT_N_S_soc_S_uart_60000000_P_current_speed_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_hw_flow_control 0 +#define DT_N_S_soc_S_uart_60000000_P_hw_flow_control_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_parity "none" +#define DT_N_S_soc_S_uart_60000000_P_parity_STRING_UNQUOTED none +#define DT_N_S_soc_S_uart_60000000_P_parity_STRING_TOKEN none +#define DT_N_S_soc_S_uart_60000000_P_parity_STRING_UPPER_TOKEN NONE +#define DT_N_S_soc_S_uart_60000000_P_parity_IDX_0 "none" +#define DT_N_S_soc_S_uart_60000000_P_parity_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_parity_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_uart_60000000_P_parity_IDX_0_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_parity_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_parity_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_60000000, parity, 0) +#define DT_N_S_soc_S_uart_60000000_P_parity_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60000000, parity, 0) +#define DT_N_S_soc_S_uart_60000000_P_parity_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_60000000, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60000000_P_parity_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_60000000, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60000000_P_parity_LEN 1 +#define DT_N_S_soc_S_uart_60000000_P_parity_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_status "okay" +#define DT_N_S_soc_S_uart_60000000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_uart_60000000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_uart_60000000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_uart_60000000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_uart_60000000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_uart_60000000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_60000000, status, 0) +#define DT_N_S_soc_S_uart_60000000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60000000, status, 0) +#define DT_N_S_soc_S_uart_60000000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_60000000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60000000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_60000000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60000000_P_status_LEN 1 +#define DT_N_S_soc_S_uart_60000000_P_status_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_compatible {"espressif,esp32-uart"} +#define DT_N_S_soc_S_uart_60000000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_compatible_IDX_0 "espressif,esp32-uart" +#define DT_N_S_soc_S_uart_60000000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-uart +#define DT_N_S_soc_S_uart_60000000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_uart +#define DT_N_S_soc_S_uart_60000000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_UART +#define DT_N_S_soc_S_uart_60000000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_60000000, compatible, 0) +#define DT_N_S_soc_S_uart_60000000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60000000, compatible, 0) +#define DT_N_S_soc_S_uart_60000000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_60000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60000000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_60000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60000000_P_compatible_LEN 1 +#define DT_N_S_soc_S_uart_60000000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_interrupts {27 /* 0x1b */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_uart_60000000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_interrupts_IDX_0 27 +#define DT_N_S_soc_S_uart_60000000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_uart_60000000_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_uart_60000000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_uart_60000000_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_uart_60000000_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_uart_60000000_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_60000000, interrupt_parent, 0) +#define DT_N_S_soc_S_uart_60000000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60000000, interrupt_parent, 0) +#define DT_N_S_soc_S_uart_60000000_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_60000000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60000000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_60000000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60000000_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_uart_60000000_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_uart_60000000_P_clocks_IDX_0_VAL_offset 101 +#define DT_N_S_soc_S_uart_60000000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_uart_60000000, clocks, 0, offset) +#define DT_N_S_soc_S_uart_60000000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60000000, clocks, 0, offset) +#define DT_N_S_soc_S_uart_60000000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_uart_60000000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_60000000, clocks, 0) +#define DT_N_S_soc_S_uart_60000000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60000000, clocks, 0) +#define DT_N_S_soc_S_uart_60000000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_60000000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60000000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_60000000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60000000_P_clocks_LEN 1 +#define DT_N_S_soc_S_uart_60000000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_uart_60000000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_wakeup_source 0 +#define DT_N_S_soc_S_uart_60000000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_uart_60000000_P_zephyr_pm_device_runtime_auto_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_tx_invert 0 +#define DT_N_S_soc_S_uart_60000000_P_tx_invert_EXISTS 1 +#define DT_N_S_soc_S_uart_60000000_P_rx_invert 0 +#define DT_N_S_soc_S_uart_60000000_P_rx_invert_EXISTS 1 + +/* + * Devicetree node: /soc/uart@60010000 + * + * Node identifier: DT_N_S_soc_S_uart_60010000 + * + * Binding (compatible = espressif,esp32-uart): + * $ZEPHYR_BASE/dts/bindings/serial/espressif,esp32-uart.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_uart_60010000_PATH "/soc/uart@60010000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_uart_60010000_FULL_NAME "uart@60010000" +#define DT_N_S_soc_S_uart_60010000_FULL_NAME_UNQUOTED uart@60010000 +#define DT_N_S_soc_S_uart_60010000_FULL_NAME_TOKEN uart_60010000 +#define DT_N_S_soc_S_uart_60010000_FULL_NAME_UPPER_TOKEN UART_60010000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_uart_60010000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_uart_60010000_CHILD_IDX 16 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_uart_60010000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_uart_60010000_FOREACH_NODELABEL(fn) fn(uart1) +#define DT_N_S_soc_S_uart_60010000_FOREACH_NODELABEL_VARGS(fn, ...) fn(uart1, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60010000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_uart_60010000_CHILD_NUM 0 +#define DT_N_S_soc_S_uart_60010000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_uart_60010000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_uart_60010000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_uart_60010000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_uart_60010000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_uart_60010000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_uart_60010000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_uart_60010000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_uart_60010000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_uart_60010000_HASH OkwyyZMwHXXvX_HFm8OAnDn4_hvWBRFy2cOSz91fWpo + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_uart_60010000_ORD 65 +#define DT_N_S_soc_S_uart_60010000_ORD_STR_SORTABLE 00065 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_uart_60010000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_uart_60010000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_uart_60010000_EXISTS 1 +#define DT_N_INST_1_espressif_esp32_uart DT_N_S_soc_S_uart_60010000 +#define DT_N_NODELABEL_uart1 DT_N_S_soc_S_uart_60010000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_uart_60010000_REG_NUM 1 +#define DT_N_S_soc_S_uart_60010000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_REG_IDX_0_VAL_ADDRESS 1610678272 /* 0x60010000 */ +#define DT_N_S_soc_S_uart_60010000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_uart_60010000_FOREACH_REG(fn) fn(DT_N_S_soc_S_uart_60010000, 0) +#define DT_N_S_soc_S_uart_60010000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60010000, 0) +#define DT_N_S_soc_S_uart_60010000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_60010000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60010000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_60010000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60010000_RANGES_NUM 0 +#define DT_N_S_soc_S_uart_60010000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_uart_60010000_IRQ_NUM 1 +#define DT_N_S_soc_S_uart_60010000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_IRQ_IDX_0_VAL_irq 28 +#define DT_N_S_soc_S_uart_60010000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_uart_60010000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_uart_60010000_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_uart_60010000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_uart_60010000_COMPAT_MATCHES_espressif_esp32_uart 1 +#define DT_N_S_soc_S_uart_60010000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_uart_60010000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_COMPAT_MODEL_IDX_0 "esp32-uart" +#define DT_N_S_soc_S_uart_60010000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_uart_60010000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_uart_60010000_P_reg {1610678272 /* 0x60010000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_uart_60010000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_reg_IDX_0 1610678272 +#define DT_N_S_soc_S_uart_60010000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_uart_60010000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_stop_bits "1" +#define DT_N_S_soc_S_uart_60010000_P_stop_bits_STRING_UNQUOTED 1 +#define DT_N_S_soc_S_uart_60010000_P_stop_bits_STRING_TOKEN 1 +#define DT_N_S_soc_S_uart_60010000_P_stop_bits_STRING_UPPER_TOKEN 1 +#define DT_N_S_soc_S_uart_60010000_P_stop_bits_IDX_0 "1" +#define DT_N_S_soc_S_uart_60010000_P_stop_bits_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_stop_bits_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_uart_60010000_P_stop_bits_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_stop_bits_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_stop_bits_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_60010000, stop_bits, 0) +#define DT_N_S_soc_S_uart_60010000_P_stop_bits_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60010000, stop_bits, 0) +#define DT_N_S_soc_S_uart_60010000_P_stop_bits_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_60010000, stop_bits, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60010000_P_stop_bits_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_60010000, stop_bits, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60010000_P_stop_bits_LEN 1 +#define DT_N_S_soc_S_uart_60010000_P_stop_bits_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_data_bits 8 +#define DT_N_S_soc_S_uart_60010000_P_data_bits_IDX_0_ENUM_IDX 3 +#define DT_N_S_soc_S_uart_60010000_P_data_bits_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_data_bits_IDX_0_ENUM_VAL_8_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_data_bits_ENUM_VAL_8_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_data_bits_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_hw_rs485_hd_mode 0 +#define DT_N_S_soc_S_uart_60010000_P_hw_rs485_hd_mode_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_uhci_slip_tx 0 +#define DT_N_S_soc_S_uart_60010000_P_uhci_slip_tx_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_uhci_slip_rx 0 +#define DT_N_S_soc_S_uart_60010000_P_uhci_slip_rx_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_hw_flow_control 0 +#define DT_N_S_soc_S_uart_60010000_P_hw_flow_control_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_parity "none" +#define DT_N_S_soc_S_uart_60010000_P_parity_STRING_UNQUOTED none +#define DT_N_S_soc_S_uart_60010000_P_parity_STRING_TOKEN none +#define DT_N_S_soc_S_uart_60010000_P_parity_STRING_UPPER_TOKEN NONE +#define DT_N_S_soc_S_uart_60010000_P_parity_IDX_0 "none" +#define DT_N_S_soc_S_uart_60010000_P_parity_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_parity_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_uart_60010000_P_parity_IDX_0_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_parity_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_parity_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_60010000, parity, 0) +#define DT_N_S_soc_S_uart_60010000_P_parity_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60010000, parity, 0) +#define DT_N_S_soc_S_uart_60010000_P_parity_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_60010000, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60010000_P_parity_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_60010000, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60010000_P_parity_LEN 1 +#define DT_N_S_soc_S_uart_60010000_P_parity_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_status "disabled" +#define DT_N_S_soc_S_uart_60010000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_uart_60010000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_uart_60010000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_uart_60010000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_uart_60010000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_uart_60010000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_60010000, status, 0) +#define DT_N_S_soc_S_uart_60010000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60010000, status, 0) +#define DT_N_S_soc_S_uart_60010000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_60010000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60010000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_60010000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60010000_P_status_LEN 1 +#define DT_N_S_soc_S_uart_60010000_P_status_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_compatible {"espressif,esp32-uart"} +#define DT_N_S_soc_S_uart_60010000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_compatible_IDX_0 "espressif,esp32-uart" +#define DT_N_S_soc_S_uart_60010000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-uart +#define DT_N_S_soc_S_uart_60010000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_uart +#define DT_N_S_soc_S_uart_60010000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_UART +#define DT_N_S_soc_S_uart_60010000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_60010000, compatible, 0) +#define DT_N_S_soc_S_uart_60010000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60010000, compatible, 0) +#define DT_N_S_soc_S_uart_60010000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_60010000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60010000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_60010000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60010000_P_compatible_LEN 1 +#define DT_N_S_soc_S_uart_60010000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_interrupts {28 /* 0x1c */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_uart_60010000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_interrupts_IDX_0 28 +#define DT_N_S_soc_S_uart_60010000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_uart_60010000_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_uart_60010000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_uart_60010000_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_uart_60010000_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_uart_60010000_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_60010000, interrupt_parent, 0) +#define DT_N_S_soc_S_uart_60010000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60010000, interrupt_parent, 0) +#define DT_N_S_soc_S_uart_60010000_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_60010000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60010000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_60010000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60010000_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_uart_60010000_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_uart_60010000_P_clocks_IDX_0_VAL_offset 0 +#define DT_N_S_soc_S_uart_60010000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_uart_60010000, clocks, 0, offset) +#define DT_N_S_soc_S_uart_60010000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60010000, clocks, 0, offset) +#define DT_N_S_soc_S_uart_60010000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_uart_60010000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_60010000, clocks, 0) +#define DT_N_S_soc_S_uart_60010000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60010000, clocks, 0) +#define DT_N_S_soc_S_uart_60010000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_60010000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60010000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_60010000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60010000_P_clocks_LEN 1 +#define DT_N_S_soc_S_uart_60010000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_uart_60010000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_wakeup_source 0 +#define DT_N_S_soc_S_uart_60010000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_uart_60010000_P_zephyr_pm_device_runtime_auto_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_tx_invert 0 +#define DT_N_S_soc_S_uart_60010000_P_tx_invert_EXISTS 1 +#define DT_N_S_soc_S_uart_60010000_P_rx_invert 0 +#define DT_N_S_soc_S_uart_60010000_P_rx_invert_EXISTS 1 + +/* + * Devicetree node: /soc/uart@6002e000 + * + * Node identifier: DT_N_S_soc_S_uart_6002e000 + * + * Binding (compatible = espressif,esp32-uart): + * $ZEPHYR_BASE/dts/bindings/serial/espressif,esp32-uart.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_uart_6002e000_PATH "/soc/uart@6002e000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_uart_6002e000_FULL_NAME "uart@6002e000" +#define DT_N_S_soc_S_uart_6002e000_FULL_NAME_UNQUOTED uart@6002e000 +#define DT_N_S_soc_S_uart_6002e000_FULL_NAME_TOKEN uart_6002e000 +#define DT_N_S_soc_S_uart_6002e000_FULL_NAME_UPPER_TOKEN UART_6002E000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_uart_6002e000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_uart_6002e000_CHILD_IDX 17 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_uart_6002e000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_uart_6002e000_FOREACH_NODELABEL(fn) fn(uart2) +#define DT_N_S_soc_S_uart_6002e000_FOREACH_NODELABEL_VARGS(fn, ...) fn(uart2, __VA_ARGS__) +#define DT_N_S_soc_S_uart_6002e000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_uart_6002e000_CHILD_NUM 0 +#define DT_N_S_soc_S_uart_6002e000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_uart_6002e000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_uart_6002e000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_uart_6002e000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_uart_6002e000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_uart_6002e000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_uart_6002e000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_uart_6002e000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_uart_6002e000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_uart_6002e000_HASH CfJ0T6fz61kURKSrb0v66avgdgV4kuF8h1pW_ibpPbc + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_uart_6002e000_ORD 66 +#define DT_N_S_soc_S_uart_6002e000_ORD_STR_SORTABLE 00066 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_uart_6002e000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_uart_6002e000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_uart_6002e000_EXISTS 1 +#define DT_N_INST_2_espressif_esp32_uart DT_N_S_soc_S_uart_6002e000 +#define DT_N_NODELABEL_uart2 DT_N_S_soc_S_uart_6002e000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_uart_6002e000_REG_NUM 1 +#define DT_N_S_soc_S_uart_6002e000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_REG_IDX_0_VAL_ADDRESS 1610801152 /* 0x6002e000 */ +#define DT_N_S_soc_S_uart_6002e000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_uart_6002e000_FOREACH_REG(fn) fn(DT_N_S_soc_S_uart_6002e000, 0) +#define DT_N_S_soc_S_uart_6002e000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_uart_6002e000, 0) +#define DT_N_S_soc_S_uart_6002e000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_6002e000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_6002e000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_6002e000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_6002e000_RANGES_NUM 0 +#define DT_N_S_soc_S_uart_6002e000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_uart_6002e000_IRQ_NUM 1 +#define DT_N_S_soc_S_uart_6002e000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_IRQ_IDX_0_VAL_irq 29 +#define DT_N_S_soc_S_uart_6002e000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_uart_6002e000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_uart_6002e000_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_uart_6002e000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_uart_6002e000_COMPAT_MATCHES_espressif_esp32_uart 1 +#define DT_N_S_soc_S_uart_6002e000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_uart_6002e000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_COMPAT_MODEL_IDX_0 "esp32-uart" +#define DT_N_S_soc_S_uart_6002e000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_uart_6002e000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_uart_6002e000_P_reg {1610801152 /* 0x6002e000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_uart_6002e000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_reg_IDX_0 1610801152 +#define DT_N_S_soc_S_uart_6002e000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_uart_6002e000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_stop_bits "1" +#define DT_N_S_soc_S_uart_6002e000_P_stop_bits_STRING_UNQUOTED 1 +#define DT_N_S_soc_S_uart_6002e000_P_stop_bits_STRING_TOKEN 1 +#define DT_N_S_soc_S_uart_6002e000_P_stop_bits_STRING_UPPER_TOKEN 1 +#define DT_N_S_soc_S_uart_6002e000_P_stop_bits_IDX_0 "1" +#define DT_N_S_soc_S_uart_6002e000_P_stop_bits_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_stop_bits_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_uart_6002e000_P_stop_bits_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_stop_bits_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_stop_bits_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_6002e000, stop_bits, 0) +#define DT_N_S_soc_S_uart_6002e000_P_stop_bits_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_6002e000, stop_bits, 0) +#define DT_N_S_soc_S_uart_6002e000_P_stop_bits_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_6002e000, stop_bits, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_6002e000_P_stop_bits_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_6002e000, stop_bits, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_6002e000_P_stop_bits_LEN 1 +#define DT_N_S_soc_S_uart_6002e000_P_stop_bits_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_data_bits 8 +#define DT_N_S_soc_S_uart_6002e000_P_data_bits_IDX_0_ENUM_IDX 3 +#define DT_N_S_soc_S_uart_6002e000_P_data_bits_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_data_bits_IDX_0_ENUM_VAL_8_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_data_bits_ENUM_VAL_8_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_data_bits_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_hw_rs485_hd_mode 0 +#define DT_N_S_soc_S_uart_6002e000_P_hw_rs485_hd_mode_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_uhci_slip_tx 0 +#define DT_N_S_soc_S_uart_6002e000_P_uhci_slip_tx_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_uhci_slip_rx 0 +#define DT_N_S_soc_S_uart_6002e000_P_uhci_slip_rx_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_hw_flow_control 0 +#define DT_N_S_soc_S_uart_6002e000_P_hw_flow_control_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_parity "none" +#define DT_N_S_soc_S_uart_6002e000_P_parity_STRING_UNQUOTED none +#define DT_N_S_soc_S_uart_6002e000_P_parity_STRING_TOKEN none +#define DT_N_S_soc_S_uart_6002e000_P_parity_STRING_UPPER_TOKEN NONE +#define DT_N_S_soc_S_uart_6002e000_P_parity_IDX_0 "none" +#define DT_N_S_soc_S_uart_6002e000_P_parity_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_parity_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_uart_6002e000_P_parity_IDX_0_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_parity_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_parity_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_6002e000, parity, 0) +#define DT_N_S_soc_S_uart_6002e000_P_parity_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_6002e000, parity, 0) +#define DT_N_S_soc_S_uart_6002e000_P_parity_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_6002e000, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_6002e000_P_parity_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_6002e000, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_6002e000_P_parity_LEN 1 +#define DT_N_S_soc_S_uart_6002e000_P_parity_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_status "disabled" +#define DT_N_S_soc_S_uart_6002e000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_uart_6002e000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_uart_6002e000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_uart_6002e000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_uart_6002e000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_uart_6002e000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_6002e000, status, 0) +#define DT_N_S_soc_S_uart_6002e000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_6002e000, status, 0) +#define DT_N_S_soc_S_uart_6002e000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_6002e000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_6002e000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_6002e000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_6002e000_P_status_LEN 1 +#define DT_N_S_soc_S_uart_6002e000_P_status_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_compatible {"espressif,esp32-uart"} +#define DT_N_S_soc_S_uart_6002e000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_compatible_IDX_0 "espressif,esp32-uart" +#define DT_N_S_soc_S_uart_6002e000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-uart +#define DT_N_S_soc_S_uart_6002e000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_uart +#define DT_N_S_soc_S_uart_6002e000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_UART +#define DT_N_S_soc_S_uart_6002e000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_6002e000, compatible, 0) +#define DT_N_S_soc_S_uart_6002e000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_6002e000, compatible, 0) +#define DT_N_S_soc_S_uart_6002e000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_6002e000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_6002e000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_6002e000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_6002e000_P_compatible_LEN 1 +#define DT_N_S_soc_S_uart_6002e000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_interrupts {29 /* 0x1d */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_uart_6002e000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_interrupts_IDX_0 29 +#define DT_N_S_soc_S_uart_6002e000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_uart_6002e000_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_uart_6002e000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_uart_6002e000_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_uart_6002e000_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_uart_6002e000_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_6002e000, interrupt_parent, 0) +#define DT_N_S_soc_S_uart_6002e000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_6002e000, interrupt_parent, 0) +#define DT_N_S_soc_S_uart_6002e000_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_6002e000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_6002e000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_6002e000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_6002e000_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_uart_6002e000_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_uart_6002e000_P_clocks_IDX_0_VAL_offset 1 +#define DT_N_S_soc_S_uart_6002e000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_uart_6002e000, clocks, 0, offset) +#define DT_N_S_soc_S_uart_6002e000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_uart_6002e000, clocks, 0, offset) +#define DT_N_S_soc_S_uart_6002e000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_uart_6002e000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_6002e000, clocks, 0) +#define DT_N_S_soc_S_uart_6002e000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_6002e000, clocks, 0) +#define DT_N_S_soc_S_uart_6002e000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_6002e000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_6002e000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_6002e000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_6002e000_P_clocks_LEN 1 +#define DT_N_S_soc_S_uart_6002e000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_uart_6002e000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_wakeup_source 0 +#define DT_N_S_soc_S_uart_6002e000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_uart_6002e000_P_zephyr_pm_device_runtime_auto_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_tx_invert 0 +#define DT_N_S_soc_S_uart_6002e000_P_tx_invert_EXISTS 1 +#define DT_N_S_soc_S_uart_6002e000_P_rx_invert 0 +#define DT_N_S_soc_S_uart_6002e000_P_rx_invert_EXISTS 1 + +/* + * Devicetree node: /soc/uart@60038000 + * + * Node identifier: DT_N_S_soc_S_uart_60038000 + * + * Binding (compatible = espressif,esp32-usb-serial): + * $ZEPHYR_BASE/dts/bindings/serial/espressif,esp32-usb-serial.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_uart_60038000_PATH "/soc/uart@60038000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_uart_60038000_FULL_NAME "uart@60038000" +#define DT_N_S_soc_S_uart_60038000_FULL_NAME_UNQUOTED uart@60038000 +#define DT_N_S_soc_S_uart_60038000_FULL_NAME_TOKEN uart_60038000 +#define DT_N_S_soc_S_uart_60038000_FULL_NAME_UPPER_TOKEN UART_60038000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_uart_60038000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_uart_60038000_CHILD_IDX 31 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_uart_60038000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_uart_60038000_FOREACH_NODELABEL(fn) fn(usb_serial) +#define DT_N_S_soc_S_uart_60038000_FOREACH_NODELABEL_VARGS(fn, ...) fn(usb_serial, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60038000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_uart_60038000_CHILD_NUM 0 +#define DT_N_S_soc_S_uart_60038000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_uart_60038000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_uart_60038000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_uart_60038000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_uart_60038000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_uart_60038000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_uart_60038000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_uart_60038000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_uart_60038000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_uart_60038000_HASH i55DjZv1Mym_Gwy1kdlGQYS_Iy3G4lHZXW__C0ktZe8 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_uart_60038000_ORD 67 +#define DT_N_S_soc_S_uart_60038000_ORD_STR_SORTABLE 00067 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_uart_60038000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_uart_60038000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_uart_60038000_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_usb_serial DT_N_S_soc_S_uart_60038000 +#define DT_N_NODELABEL_usb_serial DT_N_S_soc_S_uart_60038000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_uart_60038000_REG_NUM 1 +#define DT_N_S_soc_S_uart_60038000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_REG_IDX_0_VAL_ADDRESS 1610842112 /* 0x60038000 */ +#define DT_N_S_soc_S_uart_60038000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_uart_60038000_FOREACH_REG(fn) fn(DT_N_S_soc_S_uart_60038000, 0) +#define DT_N_S_soc_S_uart_60038000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60038000, 0) +#define DT_N_S_soc_S_uart_60038000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_60038000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60038000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_60038000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60038000_RANGES_NUM 0 +#define DT_N_S_soc_S_uart_60038000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_uart_60038000_IRQ_NUM 1 +#define DT_N_S_soc_S_uart_60038000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_IRQ_IDX_0_VAL_irq 96 +#define DT_N_S_soc_S_uart_60038000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_uart_60038000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_uart_60038000_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_uart_60038000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_uart_60038000_COMPAT_MATCHES_espressif_esp32_usb_serial 1 +#define DT_N_S_soc_S_uart_60038000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_uart_60038000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_COMPAT_MODEL_IDX_0 "esp32-usb-serial" +#define DT_N_S_soc_S_uart_60038000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_uart_60038000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_uart_60038000_P_reg {1610842112 /* 0x60038000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_uart_60038000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_reg_IDX_0 1610842112 +#define DT_N_S_soc_S_uart_60038000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_uart_60038000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_hw_flow_control 0 +#define DT_N_S_soc_S_uart_60038000_P_hw_flow_control_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_parity "none" +#define DT_N_S_soc_S_uart_60038000_P_parity_STRING_UNQUOTED none +#define DT_N_S_soc_S_uart_60038000_P_parity_STRING_TOKEN none +#define DT_N_S_soc_S_uart_60038000_P_parity_STRING_UPPER_TOKEN NONE +#define DT_N_S_soc_S_uart_60038000_P_parity_IDX_0 "none" +#define DT_N_S_soc_S_uart_60038000_P_parity_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_parity_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_uart_60038000_P_parity_IDX_0_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_parity_ENUM_VAL_none_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_parity_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_60038000, parity, 0) +#define DT_N_S_soc_S_uart_60038000_P_parity_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60038000, parity, 0) +#define DT_N_S_soc_S_uart_60038000_P_parity_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_60038000, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60038000_P_parity_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_60038000, parity, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60038000_P_parity_LEN 1 +#define DT_N_S_soc_S_uart_60038000_P_parity_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_status "okay" +#define DT_N_S_soc_S_uart_60038000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_uart_60038000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_uart_60038000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_uart_60038000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_uart_60038000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_uart_60038000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_60038000, status, 0) +#define DT_N_S_soc_S_uart_60038000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60038000, status, 0) +#define DT_N_S_soc_S_uart_60038000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_60038000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60038000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_60038000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60038000_P_status_LEN 1 +#define DT_N_S_soc_S_uart_60038000_P_status_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_compatible {"espressif,esp32-usb-serial"} +#define DT_N_S_soc_S_uart_60038000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_compatible_IDX_0 "espressif,esp32-usb-serial" +#define DT_N_S_soc_S_uart_60038000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-usb-serial +#define DT_N_S_soc_S_uart_60038000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_usb_serial +#define DT_N_S_soc_S_uart_60038000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_USB_SERIAL +#define DT_N_S_soc_S_uart_60038000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_60038000, compatible, 0) +#define DT_N_S_soc_S_uart_60038000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60038000, compatible, 0) +#define DT_N_S_soc_S_uart_60038000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_60038000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60038000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_60038000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60038000_P_compatible_LEN 1 +#define DT_N_S_soc_S_uart_60038000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_interrupts {96 /* 0x60 */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_uart_60038000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_interrupts_IDX_0 96 +#define DT_N_S_soc_S_uart_60038000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_uart_60038000_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_uart_60038000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_uart_60038000_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_uart_60038000_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_uart_60038000_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_60038000, interrupt_parent, 0) +#define DT_N_S_soc_S_uart_60038000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60038000, interrupt_parent, 0) +#define DT_N_S_soc_S_uart_60038000_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_60038000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60038000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_60038000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60038000_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_uart_60038000_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_uart_60038000_P_clocks_IDX_0_VAL_offset 102 +#define DT_N_S_soc_S_uart_60038000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_uart_60038000, clocks, 0, offset) +#define DT_N_S_soc_S_uart_60038000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60038000, clocks, 0, offset) +#define DT_N_S_soc_S_uart_60038000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_uart_60038000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_uart_60038000, clocks, 0) +#define DT_N_S_soc_S_uart_60038000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_uart_60038000, clocks, 0) +#define DT_N_S_soc_S_uart_60038000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_uart_60038000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60038000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_uart_60038000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_uart_60038000_P_clocks_LEN 1 +#define DT_N_S_soc_S_uart_60038000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_uart_60038000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_wakeup_source 0 +#define DT_N_S_soc_S_uart_60038000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_uart_60038000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_uart_60038000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/usb_otg@60080000 + * + * Node identifier: DT_N_S_soc_S_usb_otg_60080000 + * + * Binding (compatible = espressif,esp32-usb-otg): + * $ZEPHYR_BASE/dts/bindings/usb/espressif,esp32-usb-otg.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_usb_otg_60080000_PATH "/soc/usb_otg@60080000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_usb_otg_60080000_FULL_NAME "usb_otg@60080000" +#define DT_N_S_soc_S_usb_otg_60080000_FULL_NAME_UNQUOTED usb_otg@60080000 +#define DT_N_S_soc_S_usb_otg_60080000_FULL_NAME_TOKEN usb_otg_60080000 +#define DT_N_S_soc_S_usb_otg_60080000_FULL_NAME_UPPER_TOKEN USB_OTG_60080000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_usb_otg_60080000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_usb_otg_60080000_CHILD_IDX 32 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_usb_otg_60080000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_usb_otg_60080000_FOREACH_NODELABEL(fn) fn(usb_otg) +#define DT_N_S_soc_S_usb_otg_60080000_FOREACH_NODELABEL_VARGS(fn, ...) fn(usb_otg, __VA_ARGS__) +#define DT_N_S_soc_S_usb_otg_60080000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_usb_otg_60080000_CHILD_NUM 0 +#define DT_N_S_soc_S_usb_otg_60080000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_usb_otg_60080000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_usb_otg_60080000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_usb_otg_60080000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_usb_otg_60080000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_usb_otg_60080000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_usb_otg_60080000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_usb_otg_60080000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_usb_otg_60080000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_usb_otg_60080000_HASH PNZSl3Hk_XMxv3clTQft8QkalCAra1lAUWIxqMgf0xA + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_usb_otg_60080000_ORD 68 +#define DT_N_S_soc_S_usb_otg_60080000_ORD_STR_SORTABLE 00068 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_usb_otg_60080000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_usb_otg_60080000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_usb_otg_60080000_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_usb_otg DT_N_S_soc_S_usb_otg_60080000 +#define DT_N_INST_0_snps_dwc2 DT_N_S_soc_S_usb_otg_60080000 +#define DT_N_NODELABEL_usb_otg DT_N_S_soc_S_usb_otg_60080000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_usb_otg_60080000_REG_NUM 1 +#define DT_N_S_soc_S_usb_otg_60080000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_REG_IDX_0_VAL_ADDRESS 1611137024 /* 0x60080000 */ +#define DT_N_S_soc_S_usb_otg_60080000_REG_IDX_0_VAL_SIZE 262144 /* 0x40000 */ +#define DT_N_S_soc_S_usb_otg_60080000_FOREACH_REG(fn) fn(DT_N_S_soc_S_usb_otg_60080000, 0) +#define DT_N_S_soc_S_usb_otg_60080000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_usb_otg_60080000, 0) +#define DT_N_S_soc_S_usb_otg_60080000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_usb_otg_60080000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usb_otg_60080000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_usb_otg_60080000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usb_otg_60080000_RANGES_NUM 0 +#define DT_N_S_soc_S_usb_otg_60080000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_usb_otg_60080000_IRQ_NUM 1 +#define DT_N_S_soc_S_usb_otg_60080000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_IRQ_IDX_0_VAL_irq 38 +#define DT_N_S_soc_S_usb_otg_60080000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_usb_otg_60080000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_usb_otg_60080000_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_usb_otg_60080000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_usb_otg_60080000_COMPAT_MATCHES_espressif_esp32_usb_otg 1 +#define DT_N_S_soc_S_usb_otg_60080000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_usb_otg_60080000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_COMPAT_MODEL_IDX_0 "esp32-usb-otg" +#define DT_N_S_soc_S_usb_otg_60080000_COMPAT_MATCHES_snps_dwc2 1 +#define DT_N_S_soc_S_usb_otg_60080000_COMPAT_VENDOR_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_COMPAT_VENDOR_IDX_1 "Synopsys, Inc." +#define DT_N_S_soc_S_usb_otg_60080000_COMPAT_MODEL_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_COMPAT_MODEL_IDX_1 "dwc2" +#define DT_N_S_soc_S_usb_otg_60080000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_usb_otg_60080000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_usb_otg_60080000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_usb_otg_60080000_P_clocks_IDX_0_VAL_offset 102 +#define DT_N_S_soc_S_usb_otg_60080000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_usb_otg_60080000, clocks, 0, offset) +#define DT_N_S_soc_S_usb_otg_60080000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_usb_otg_60080000, clocks, 0, offset) +#define DT_N_S_soc_S_usb_otg_60080000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_usb_otg_60080000, clocks, 0) +#define DT_N_S_soc_S_usb_otg_60080000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_usb_otg_60080000, clocks, 0) +#define DT_N_S_soc_S_usb_otg_60080000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_usb_otg_60080000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usb_otg_60080000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_usb_otg_60080000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usb_otg_60080000_P_clocks_LEN 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_reg {1611137024 /* 0x60080000 */, 262144 /* 0x40000 */} +#define DT_N_S_soc_S_usb_otg_60080000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_reg_IDX_0 1611137024 +#define DT_N_S_soc_S_usb_otg_60080000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_reg_IDX_1 262144 +#define DT_N_S_soc_S_usb_otg_60080000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_interrupts {38 /* 0x26 */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_usb_otg_60080000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_interrupts_IDX_0 38 +#define DT_N_S_soc_S_usb_otg_60080000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_usb_otg_60080000_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_usb_otg_60080000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_num_in_eps 6 +#define DT_N_S_soc_S_usb_otg_60080000_P_num_in_eps_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_num_out_eps 6 +#define DT_N_S_soc_S_usb_otg_60080000_P_num_out_eps_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_ghwcfg1 0 +#define DT_N_S_soc_S_usb_otg_60080000_P_ghwcfg1_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_ghwcfg2 575527216 +#define DT_N_S_soc_S_usb_otg_60080000_P_ghwcfg2_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_ghwcfg4 3555762224 +#define DT_N_S_soc_S_usb_otg_60080000_P_ghwcfg4_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_status "disabled" +#define DT_N_S_soc_S_usb_otg_60080000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_usb_otg_60080000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_usb_otg_60080000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_usb_otg_60080000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_usb_otg_60080000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_usb_otg_60080000, status, 0) +#define DT_N_S_soc_S_usb_otg_60080000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_usb_otg_60080000, status, 0) +#define DT_N_S_soc_S_usb_otg_60080000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_usb_otg_60080000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usb_otg_60080000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_usb_otg_60080000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usb_otg_60080000_P_status_LEN 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_status_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_compatible {"espressif,esp32-usb-otg", "snps,dwc2"} +#define DT_N_S_soc_S_usb_otg_60080000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_compatible_IDX_0 "espressif,esp32-usb-otg" +#define DT_N_S_soc_S_usb_otg_60080000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-usb-otg +#define DT_N_S_soc_S_usb_otg_60080000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_usb_otg +#define DT_N_S_soc_S_usb_otg_60080000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_USB_OTG +#define DT_N_S_soc_S_usb_otg_60080000_P_compatible_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_compatible_IDX_1 "snps,dwc2" +#define DT_N_S_soc_S_usb_otg_60080000_P_compatible_IDX_1_STRING_UNQUOTED snps,dwc2 +#define DT_N_S_soc_S_usb_otg_60080000_P_compatible_IDX_1_STRING_TOKEN snps_dwc2 +#define DT_N_S_soc_S_usb_otg_60080000_P_compatible_IDX_1_STRING_UPPER_TOKEN SNPS_DWC2 +#define DT_N_S_soc_S_usb_otg_60080000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_usb_otg_60080000, compatible, 0) \ + fn(DT_N_S_soc_S_usb_otg_60080000, compatible, 1) +#define DT_N_S_soc_S_usb_otg_60080000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_usb_otg_60080000, compatible, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_usb_otg_60080000, compatible, 1) +#define DT_N_S_soc_S_usb_otg_60080000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_usb_otg_60080000, compatible, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_usb_otg_60080000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_usb_otg_60080000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_usb_otg_60080000, compatible, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_usb_otg_60080000, compatible, 1, __VA_ARGS__) +#define DT_N_S_soc_S_usb_otg_60080000_P_compatible_LEN 2 +#define DT_N_S_soc_S_usb_otg_60080000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_usb_otg_60080000_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_usb_otg_60080000_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_usb_otg_60080000_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_usb_otg_60080000, interrupt_parent, 0) +#define DT_N_S_soc_S_usb_otg_60080000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_usb_otg_60080000, interrupt_parent, 0) +#define DT_N_S_soc_S_usb_otg_60080000_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_usb_otg_60080000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usb_otg_60080000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_usb_otg_60080000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_usb_otg_60080000_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_usb_otg_60080000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_wakeup_source 0 +#define DT_N_S_soc_S_usb_otg_60080000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_usb_otg_60080000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_usb_otg_60080000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/watchdog@6001f048 + * + * Node identifier: DT_N_S_soc_S_watchdog_6001f048 + * + * Binding (compatible = espressif,esp32-watchdog): + * $ZEPHYR_BASE/dts/bindings/watchdog/espressif,esp32-watchdog.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_watchdog_6001f048_PATH "/soc/watchdog@6001f048" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_watchdog_6001f048_FULL_NAME "watchdog@6001f048" +#define DT_N_S_soc_S_watchdog_6001f048_FULL_NAME_UNQUOTED watchdog@6001f048 +#define DT_N_S_soc_S_watchdog_6001f048_FULL_NAME_TOKEN watchdog_6001f048 +#define DT_N_S_soc_S_watchdog_6001f048_FULL_NAME_UPPER_TOKEN WATCHDOG_6001F048 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_watchdog_6001f048_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_watchdog_6001f048_CHILD_IDX 37 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_watchdog_6001f048_NODELABEL_NUM 1 +#define DT_N_S_soc_S_watchdog_6001f048_FOREACH_NODELABEL(fn) fn(wdt0) +#define DT_N_S_soc_S_watchdog_6001f048_FOREACH_NODELABEL_VARGS(fn, ...) fn(wdt0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_6001f048_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_watchdog_6001f048_CHILD_NUM 0 +#define DT_N_S_soc_S_watchdog_6001f048_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_watchdog_6001f048_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_watchdog_6001f048_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_watchdog_6001f048_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_watchdog_6001f048_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_watchdog_6001f048_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_watchdog_6001f048_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_watchdog_6001f048_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_watchdog_6001f048_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_watchdog_6001f048_HASH DWmLPdAAzCqaMJiM_4ieP1Itac7FFBT5sXrLyDShxp4 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_watchdog_6001f048_ORD 69 +#define DT_N_S_soc_S_watchdog_6001f048_ORD_STR_SORTABLE 00069 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_watchdog_6001f048_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_watchdog_6001f048_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_watchdog_6001f048_EXISTS 1 +#define DT_N_ALIAS_watchdog0 DT_N_S_soc_S_watchdog_6001f048 +#define DT_N_INST_0_espressif_esp32_watchdog DT_N_S_soc_S_watchdog_6001f048 +#define DT_N_NODELABEL_wdt0 DT_N_S_soc_S_watchdog_6001f048 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_watchdog_6001f048_REG_NUM 1 +#define DT_N_S_soc_S_watchdog_6001f048_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_REG_IDX_0_VAL_ADDRESS 1610739784 /* 0x6001f048 */ +#define DT_N_S_soc_S_watchdog_6001f048_REG_IDX_0_VAL_SIZE 32 /* 0x20 */ +#define DT_N_S_soc_S_watchdog_6001f048_FOREACH_REG(fn) fn(DT_N_S_soc_S_watchdog_6001f048, 0) +#define DT_N_S_soc_S_watchdog_6001f048_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_watchdog_6001f048, 0) +#define DT_N_S_soc_S_watchdog_6001f048_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_watchdog_6001f048, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_6001f048_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_watchdog_6001f048, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_6001f048_RANGES_NUM 0 +#define DT_N_S_soc_S_watchdog_6001f048_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_watchdog_6001f048_IRQ_NUM 1 +#define DT_N_S_soc_S_watchdog_6001f048_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_IRQ_IDX_0_VAL_irq 52 +#define DT_N_S_soc_S_watchdog_6001f048_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_watchdog_6001f048_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_watchdog_6001f048_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_watchdog_6001f048_IRQ_LEVEL 1 +#define DT_N_S_soc_S_watchdog_6001f048_COMPAT_MATCHES_espressif_esp32_watchdog 1 +#define DT_N_S_soc_S_watchdog_6001f048_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_watchdog_6001f048_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_COMPAT_MODEL_IDX_0 "esp32-watchdog" +#define DT_N_S_soc_S_watchdog_6001f048_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_watchdog_6001f048_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_watchdog_6001f048_P_reg {1610739784 /* 0x6001f048 */, 32 /* 0x20 */} +#define DT_N_S_soc_S_watchdog_6001f048_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_reg_IDX_0 1610739784 +#define DT_N_S_soc_S_watchdog_6001f048_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_reg_IDX_1 32 +#define DT_N_S_soc_S_watchdog_6001f048_P_reg_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_status "okay" +#define DT_N_S_soc_S_watchdog_6001f048_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_watchdog_6001f048_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_watchdog_6001f048_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_watchdog_6001f048_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_watchdog_6001f048_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_watchdog_6001f048_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_watchdog_6001f048, status, 0) +#define DT_N_S_soc_S_watchdog_6001f048_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_watchdog_6001f048, status, 0) +#define DT_N_S_soc_S_watchdog_6001f048_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_watchdog_6001f048, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_6001f048_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_watchdog_6001f048, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_6001f048_P_status_LEN 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_status_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_compatible {"espressif,esp32-watchdog"} +#define DT_N_S_soc_S_watchdog_6001f048_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_compatible_IDX_0 "espressif,esp32-watchdog" +#define DT_N_S_soc_S_watchdog_6001f048_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-watchdog +#define DT_N_S_soc_S_watchdog_6001f048_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_watchdog +#define DT_N_S_soc_S_watchdog_6001f048_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_WATCHDOG +#define DT_N_S_soc_S_watchdog_6001f048_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_watchdog_6001f048, compatible, 0) +#define DT_N_S_soc_S_watchdog_6001f048_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_watchdog_6001f048, compatible, 0) +#define DT_N_S_soc_S_watchdog_6001f048_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_watchdog_6001f048, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_6001f048_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_watchdog_6001f048, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_6001f048_P_compatible_LEN 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_interrupts {52 /* 0x34 */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_watchdog_6001f048_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_interrupts_IDX_0 52 +#define DT_N_S_soc_S_watchdog_6001f048_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_watchdog_6001f048_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_watchdog_6001f048_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_watchdog_6001f048_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_watchdog_6001f048_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_watchdog_6001f048_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_watchdog_6001f048, interrupt_parent, 0) +#define DT_N_S_soc_S_watchdog_6001f048_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_watchdog_6001f048, interrupt_parent, 0) +#define DT_N_S_soc_S_watchdog_6001f048_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_watchdog_6001f048, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_6001f048_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_watchdog_6001f048, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_6001f048_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_watchdog_6001f048_P_clocks_IDX_0_VAL_offset 3 +#define DT_N_S_soc_S_watchdog_6001f048_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_watchdog_6001f048, clocks, 0, offset) +#define DT_N_S_soc_S_watchdog_6001f048_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_watchdog_6001f048, clocks, 0, offset) +#define DT_N_S_soc_S_watchdog_6001f048_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_watchdog_6001f048, clocks, 0) +#define DT_N_S_soc_S_watchdog_6001f048_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_watchdog_6001f048, clocks, 0) +#define DT_N_S_soc_S_watchdog_6001f048_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_watchdog_6001f048, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_6001f048_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_watchdog_6001f048, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_6001f048_P_clocks_LEN 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_watchdog_6001f048_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_wakeup_source 0 +#define DT_N_S_soc_S_watchdog_6001f048_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_watchdog_6001f048_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_watchdog_6001f048_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/watchdog@60020048 + * + * Node identifier: DT_N_S_soc_S_watchdog_60020048 + * + * Binding (compatible = espressif,esp32-watchdog): + * $ZEPHYR_BASE/dts/bindings/watchdog/espressif,esp32-watchdog.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_watchdog_60020048_PATH "/soc/watchdog@60020048" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_watchdog_60020048_FULL_NAME "watchdog@60020048" +#define DT_N_S_soc_S_watchdog_60020048_FULL_NAME_UNQUOTED watchdog@60020048 +#define DT_N_S_soc_S_watchdog_60020048_FULL_NAME_TOKEN watchdog_60020048 +#define DT_N_S_soc_S_watchdog_60020048_FULL_NAME_UPPER_TOKEN WATCHDOG_60020048 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_watchdog_60020048_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_watchdog_60020048_CHILD_IDX 38 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_watchdog_60020048_NODELABEL_NUM 1 +#define DT_N_S_soc_S_watchdog_60020048_FOREACH_NODELABEL(fn) fn(wdt1) +#define DT_N_S_soc_S_watchdog_60020048_FOREACH_NODELABEL_VARGS(fn, ...) fn(wdt1, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_60020048_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_watchdog_60020048_CHILD_NUM 0 +#define DT_N_S_soc_S_watchdog_60020048_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_watchdog_60020048_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_watchdog_60020048_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_watchdog_60020048_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_watchdog_60020048_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_watchdog_60020048_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_watchdog_60020048_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_watchdog_60020048_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_watchdog_60020048_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_watchdog_60020048_HASH dYcqxfqxhKDdp5Wc7WZNv_6Q6eeOHnvANXhuU6BI3Z4 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_watchdog_60020048_ORD 70 +#define DT_N_S_soc_S_watchdog_60020048_ORD_STR_SORTABLE 00070 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_watchdog_60020048_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_watchdog_60020048_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_watchdog_60020048_EXISTS 1 +#define DT_N_INST_1_espressif_esp32_watchdog DT_N_S_soc_S_watchdog_60020048 +#define DT_N_NODELABEL_wdt1 DT_N_S_soc_S_watchdog_60020048 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_watchdog_60020048_REG_NUM 1 +#define DT_N_S_soc_S_watchdog_60020048_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_REG_IDX_0_VAL_ADDRESS 1610743880 /* 0x60020048 */ +#define DT_N_S_soc_S_watchdog_60020048_REG_IDX_0_VAL_SIZE 32 /* 0x20 */ +#define DT_N_S_soc_S_watchdog_60020048_FOREACH_REG(fn) fn(DT_N_S_soc_S_watchdog_60020048, 0) +#define DT_N_S_soc_S_watchdog_60020048_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_watchdog_60020048, 0) +#define DT_N_S_soc_S_watchdog_60020048_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_watchdog_60020048, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_60020048_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_watchdog_60020048, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_60020048_RANGES_NUM 0 +#define DT_N_S_soc_S_watchdog_60020048_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_watchdog_60020048_IRQ_NUM 1 +#define DT_N_S_soc_S_watchdog_60020048_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_IRQ_IDX_0_VAL_irq 55 +#define DT_N_S_soc_S_watchdog_60020048_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_watchdog_60020048_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_watchdog_60020048_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_watchdog_60020048_IRQ_LEVEL 1 +#define DT_N_S_soc_S_watchdog_60020048_COMPAT_MATCHES_espressif_esp32_watchdog 1 +#define DT_N_S_soc_S_watchdog_60020048_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_watchdog_60020048_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_COMPAT_MODEL_IDX_0 "esp32-watchdog" +#define DT_N_S_soc_S_watchdog_60020048_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_watchdog_60020048_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_watchdog_60020048_P_reg {1610743880 /* 0x60020048 */, 32 /* 0x20 */} +#define DT_N_S_soc_S_watchdog_60020048_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_P_reg_IDX_0 1610743880 +#define DT_N_S_soc_S_watchdog_60020048_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_P_reg_IDX_1 32 +#define DT_N_S_soc_S_watchdog_60020048_P_reg_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_P_status "disabled" +#define DT_N_S_soc_S_watchdog_60020048_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_watchdog_60020048_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_watchdog_60020048_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_watchdog_60020048_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_watchdog_60020048_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_watchdog_60020048_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_watchdog_60020048, status, 0) +#define DT_N_S_soc_S_watchdog_60020048_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_watchdog_60020048, status, 0) +#define DT_N_S_soc_S_watchdog_60020048_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_watchdog_60020048, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_60020048_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_watchdog_60020048, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_60020048_P_status_LEN 1 +#define DT_N_S_soc_S_watchdog_60020048_P_status_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_P_compatible {"espressif,esp32-watchdog"} +#define DT_N_S_soc_S_watchdog_60020048_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_P_compatible_IDX_0 "espressif,esp32-watchdog" +#define DT_N_S_soc_S_watchdog_60020048_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-watchdog +#define DT_N_S_soc_S_watchdog_60020048_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_watchdog +#define DT_N_S_soc_S_watchdog_60020048_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_WATCHDOG +#define DT_N_S_soc_S_watchdog_60020048_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_watchdog_60020048, compatible, 0) +#define DT_N_S_soc_S_watchdog_60020048_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_watchdog_60020048, compatible, 0) +#define DT_N_S_soc_S_watchdog_60020048_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_watchdog_60020048, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_60020048_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_watchdog_60020048, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_60020048_P_compatible_LEN 1 +#define DT_N_S_soc_S_watchdog_60020048_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_P_interrupts {55 /* 0x37 */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_watchdog_60020048_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_P_interrupts_IDX_0 55 +#define DT_N_S_soc_S_watchdog_60020048_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_watchdog_60020048_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_watchdog_60020048_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_watchdog_60020048_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_watchdog_60020048_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_watchdog_60020048_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_watchdog_60020048, interrupt_parent, 0) +#define DT_N_S_soc_S_watchdog_60020048_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_watchdog_60020048, interrupt_parent, 0) +#define DT_N_S_soc_S_watchdog_60020048_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_watchdog_60020048, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_60020048_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_watchdog_60020048, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_60020048_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_watchdog_60020048_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_watchdog_60020048_P_clocks_IDX_0_VAL_offset 4 +#define DT_N_S_soc_S_watchdog_60020048_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_watchdog_60020048, clocks, 0, offset) +#define DT_N_S_soc_S_watchdog_60020048_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_watchdog_60020048, clocks, 0, offset) +#define DT_N_S_soc_S_watchdog_60020048_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_watchdog_60020048_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_watchdog_60020048, clocks, 0) +#define DT_N_S_soc_S_watchdog_60020048_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_watchdog_60020048, clocks, 0) +#define DT_N_S_soc_S_watchdog_60020048_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_watchdog_60020048, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_60020048_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_watchdog_60020048, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_watchdog_60020048_P_clocks_LEN 1 +#define DT_N_S_soc_S_watchdog_60020048_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_watchdog_60020048_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_P_wakeup_source 0 +#define DT_N_S_soc_S_watchdog_60020048_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_watchdog_60020048_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_watchdog_60020048_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/xt_wdt@60021004 + * + * Node identifier: DT_N_S_soc_S_xt_wdt_60021004 + * + * Binding (compatible = espressif,esp32-xt-wdt): + * $ZEPHYR_BASE/dts/bindings/watchdog/espressif,esp32-xt-wdt.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_xt_wdt_60021004_PATH "/soc/xt_wdt@60021004" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_xt_wdt_60021004_FULL_NAME "xt_wdt@60021004" +#define DT_N_S_soc_S_xt_wdt_60021004_FULL_NAME_UNQUOTED xt_wdt@60021004 +#define DT_N_S_soc_S_xt_wdt_60021004_FULL_NAME_TOKEN xt_wdt_60021004 +#define DT_N_S_soc_S_xt_wdt_60021004_FULL_NAME_UPPER_TOKEN XT_WDT_60021004 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_xt_wdt_60021004_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_xt_wdt_60021004_CHILD_IDX 12 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_xt_wdt_60021004_NODELABEL_NUM 1 +#define DT_N_S_soc_S_xt_wdt_60021004_FOREACH_NODELABEL(fn) fn(xt_wdt) +#define DT_N_S_soc_S_xt_wdt_60021004_FOREACH_NODELABEL_VARGS(fn, ...) fn(xt_wdt, __VA_ARGS__) +#define DT_N_S_soc_S_xt_wdt_60021004_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_xt_wdt_60021004_CHILD_NUM 0 +#define DT_N_S_soc_S_xt_wdt_60021004_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_xt_wdt_60021004_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_xt_wdt_60021004_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_xt_wdt_60021004_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_xt_wdt_60021004_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_xt_wdt_60021004_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_xt_wdt_60021004_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_xt_wdt_60021004_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_xt_wdt_60021004_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_xt_wdt_60021004_HASH LbgBebYRgPg030SGlIcQbCaWYeKTWouWYWvBH4ADkdY + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_xt_wdt_60021004_ORD 71 +#define DT_N_S_soc_S_xt_wdt_60021004_ORD_STR_SORTABLE 00071 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_xt_wdt_60021004_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_xt_wdt_60021004_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_xt_wdt_60021004_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_xt_wdt DT_N_S_soc_S_xt_wdt_60021004 +#define DT_N_NODELABEL_xt_wdt DT_N_S_soc_S_xt_wdt_60021004 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_xt_wdt_60021004_REG_NUM 1 +#define DT_N_S_soc_S_xt_wdt_60021004_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_REG_IDX_0_VAL_ADDRESS 1610747908 /* 0x60021004 */ +#define DT_N_S_soc_S_xt_wdt_60021004_REG_IDX_0_VAL_SIZE 4 /* 0x4 */ +#define DT_N_S_soc_S_xt_wdt_60021004_FOREACH_REG(fn) fn(DT_N_S_soc_S_xt_wdt_60021004, 0) +#define DT_N_S_soc_S_xt_wdt_60021004_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_xt_wdt_60021004, 0) +#define DT_N_S_soc_S_xt_wdt_60021004_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_xt_wdt_60021004, 0, __VA_ARGS__) +#define DT_N_S_soc_S_xt_wdt_60021004_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_xt_wdt_60021004, 0, __VA_ARGS__) +#define DT_N_S_soc_S_xt_wdt_60021004_RANGES_NUM 0 +#define DT_N_S_soc_S_xt_wdt_60021004_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_xt_wdt_60021004_IRQ_NUM 1 +#define DT_N_S_soc_S_xt_wdt_60021004_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_IRQ_IDX_0_VAL_irq 39 +#define DT_N_S_soc_S_xt_wdt_60021004_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_xt_wdt_60021004_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_xt_wdt_60021004_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_xt_wdt_60021004_IRQ_LEVEL 1 +#define DT_N_S_soc_S_xt_wdt_60021004_COMPAT_MATCHES_espressif_esp32_xt_wdt 1 +#define DT_N_S_soc_S_xt_wdt_60021004_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_xt_wdt_60021004_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_COMPAT_MODEL_IDX_0 "esp32-xt-wdt" +#define DT_N_S_soc_S_xt_wdt_60021004_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_xt_wdt_60021004_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_xt_wdt_60021004_P_reg {1610747908 /* 0x60021004 */, 4 /* 0x4 */} +#define DT_N_S_soc_S_xt_wdt_60021004_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_reg_IDX_0 1610747908 +#define DT_N_S_soc_S_xt_wdt_60021004_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_reg_IDX_1 4 +#define DT_N_S_soc_S_xt_wdt_60021004_P_reg_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_status "disabled" +#define DT_N_S_soc_S_xt_wdt_60021004_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_xt_wdt_60021004_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_xt_wdt_60021004_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_xt_wdt_60021004_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_xt_wdt_60021004_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_xt_wdt_60021004, status, 0) +#define DT_N_S_soc_S_xt_wdt_60021004_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_xt_wdt_60021004, status, 0) +#define DT_N_S_soc_S_xt_wdt_60021004_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_xt_wdt_60021004, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_xt_wdt_60021004_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_xt_wdt_60021004, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_xt_wdt_60021004_P_status_LEN 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_status_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_compatible {"espressif,esp32-xt-wdt"} +#define DT_N_S_soc_S_xt_wdt_60021004_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_compatible_IDX_0 "espressif,esp32-xt-wdt" +#define DT_N_S_soc_S_xt_wdt_60021004_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-xt-wdt +#define DT_N_S_soc_S_xt_wdt_60021004_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_xt_wdt +#define DT_N_S_soc_S_xt_wdt_60021004_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_XT_WDT +#define DT_N_S_soc_S_xt_wdt_60021004_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_xt_wdt_60021004, compatible, 0) +#define DT_N_S_soc_S_xt_wdt_60021004_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_xt_wdt_60021004, compatible, 0) +#define DT_N_S_soc_S_xt_wdt_60021004_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_xt_wdt_60021004, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_xt_wdt_60021004_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_xt_wdt_60021004, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_xt_wdt_60021004_P_compatible_LEN 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_interrupts {39 /* 0x27 */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_xt_wdt_60021004_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_interrupts_IDX_0 39 +#define DT_N_S_soc_S_xt_wdt_60021004_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_xt_wdt_60021004_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_xt_wdt_60021004_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_xt_wdt_60021004_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_xt_wdt_60021004_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_xt_wdt_60021004_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_xt_wdt_60021004, interrupt_parent, 0) +#define DT_N_S_soc_S_xt_wdt_60021004_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_xt_wdt_60021004, interrupt_parent, 0) +#define DT_N_S_soc_S_xt_wdt_60021004_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_xt_wdt_60021004, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_xt_wdt_60021004_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_xt_wdt_60021004, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_xt_wdt_60021004_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_xt_wdt_60021004_P_clocks_IDX_0_VAL_offset 12 +#define DT_N_S_soc_S_xt_wdt_60021004_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_xt_wdt_60021004, clocks, 0, offset) +#define DT_N_S_soc_S_xt_wdt_60021004_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_xt_wdt_60021004, clocks, 0, offset) +#define DT_N_S_soc_S_xt_wdt_60021004_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_xt_wdt_60021004, clocks, 0) +#define DT_N_S_soc_S_xt_wdt_60021004_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_xt_wdt_60021004, clocks, 0) +#define DT_N_S_soc_S_xt_wdt_60021004_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_xt_wdt_60021004, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_xt_wdt_60021004_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_xt_wdt_60021004, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_xt_wdt_60021004_P_clocks_LEN 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_xt_wdt_60021004_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_wakeup_source 0 +#define DT_N_S_soc_S_xt_wdt_60021004_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_xt_wdt_60021004_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_xt_wdt_60021004_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/counter@6001f000 + * + * Node identifier: DT_N_S_soc_S_counter_6001f000 + * + * Binding (compatible = espressif,esp32-timer): + * $ZEPHYR_BASE/dts/bindings/counter/espressif,esp32-timer.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_counter_6001f000_PATH "/soc/counter@6001f000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_counter_6001f000_FULL_NAME "counter@6001f000" +#define DT_N_S_soc_S_counter_6001f000_FULL_NAME_UNQUOTED counter@6001f000 +#define DT_N_S_soc_S_counter_6001f000_FULL_NAME_TOKEN counter_6001f000 +#define DT_N_S_soc_S_counter_6001f000_FULL_NAME_UPPER_TOKEN COUNTER_6001F000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_counter_6001f000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_counter_6001f000_CHILD_IDX 33 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_counter_6001f000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_counter_6001f000_FOREACH_NODELABEL(fn) fn(timer0) +#define DT_N_S_soc_S_counter_6001f000_FOREACH_NODELABEL_VARGS(fn, ...) fn(timer0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_counter_6001f000_CHILD_NUM 1 +#define DT_N_S_soc_S_counter_6001f000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_counter_6001f000_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_counter_6001f000_S_counter) +#define DT_N_S_soc_S_counter_6001f000_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_counter_6001f000_S_counter) +#define DT_N_S_soc_S_counter_6001f000_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_6001f000_S_counter, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_6001f000_S_counter, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_counter_6001f000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_counter_6001f000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_counter_6001f000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_counter_6001f000_HASH Rrs5kpmU6w_9iEjhLyqLTIL2mlU51fBWqnVs1LhbFsc + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_counter_6001f000_ORD 72 +#define DT_N_S_soc_S_counter_6001f000_ORD_STR_SORTABLE 00072 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_counter_6001f000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_counter_6001f000_SUPPORTS_ORDS \ + 73, /* /soc/counter@6001f000/counter */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_counter_6001f000_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_timer DT_N_S_soc_S_counter_6001f000 +#define DT_N_NODELABEL_timer0 DT_N_S_soc_S_counter_6001f000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_counter_6001f000_REG_NUM 1 +#define DT_N_S_soc_S_counter_6001f000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_REG_IDX_0_VAL_ADDRESS 1610739712 /* 0x6001f000 */ +#define DT_N_S_soc_S_counter_6001f000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_counter_6001f000_FOREACH_REG(fn) fn(DT_N_S_soc_S_counter_6001f000, 0) +#define DT_N_S_soc_S_counter_6001f000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_counter_6001f000, 0) +#define DT_N_S_soc_S_counter_6001f000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_6001f000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_6001f000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f000_RANGES_NUM 0 +#define DT_N_S_soc_S_counter_6001f000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_counter_6001f000_IRQ_NUM 1 +#define DT_N_S_soc_S_counter_6001f000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_IRQ_IDX_0_VAL_irq 50 +#define DT_N_S_soc_S_counter_6001f000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_counter_6001f000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_counter_6001f000_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_counter_6001f000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_counter_6001f000_COMPAT_MATCHES_espressif_esp32_timer 1 +#define DT_N_S_soc_S_counter_6001f000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_counter_6001f000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_COMPAT_MODEL_IDX_0 "esp32-timer" +#define DT_N_S_soc_S_counter_6001f000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_counter_6001f000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_counter_6001f000_P_group 0 +#define DT_N_S_soc_S_counter_6001f000_P_group_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_counter_6001f000_P_group_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_group_IDX_0_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_group_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_group_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_index 0 +#define DT_N_S_soc_S_counter_6001f000_P_index_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_counter_6001f000_P_index_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_index_IDX_0_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_index_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_index_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_prescaler 2 +#define DT_N_S_soc_S_counter_6001f000_P_prescaler_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_status "okay" +#define DT_N_S_soc_S_counter_6001f000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_counter_6001f000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_counter_6001f000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_counter_6001f000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_counter_6001f000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_counter_6001f000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_6001f000, status, 0) +#define DT_N_S_soc_S_counter_6001f000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_6001f000, status, 0) +#define DT_N_S_soc_S_counter_6001f000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_6001f000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_6001f000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f000_P_status_LEN 1 +#define DT_N_S_soc_S_counter_6001f000_P_status_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_compatible {"espressif,esp32-timer"} +#define DT_N_S_soc_S_counter_6001f000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_compatible_IDX_0 "espressif,esp32-timer" +#define DT_N_S_soc_S_counter_6001f000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-timer +#define DT_N_S_soc_S_counter_6001f000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_timer +#define DT_N_S_soc_S_counter_6001f000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_TIMER +#define DT_N_S_soc_S_counter_6001f000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_6001f000, compatible, 0) +#define DT_N_S_soc_S_counter_6001f000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_6001f000, compatible, 0) +#define DT_N_S_soc_S_counter_6001f000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_6001f000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_6001f000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f000_P_compatible_LEN 1 +#define DT_N_S_soc_S_counter_6001f000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_reg {1610739712 /* 0x6001f000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_counter_6001f000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_reg_IDX_0 1610739712 +#define DT_N_S_soc_S_counter_6001f000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_counter_6001f000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_interrupts {50 /* 0x32 */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_counter_6001f000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_interrupts_IDX_0 50 +#define DT_N_S_soc_S_counter_6001f000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_counter_6001f000_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_counter_6001f000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_counter_6001f000_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_counter_6001f000_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_counter_6001f000_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_6001f000, interrupt_parent, 0) +#define DT_N_S_soc_S_counter_6001f000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_6001f000, interrupt_parent, 0) +#define DT_N_S_soc_S_counter_6001f000_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_6001f000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_6001f000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f000_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_counter_6001f000_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_counter_6001f000_P_clocks_IDX_0_VAL_offset 3 +#define DT_N_S_soc_S_counter_6001f000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_counter_6001f000, clocks, 0, offset) +#define DT_N_S_soc_S_counter_6001f000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_counter_6001f000, clocks, 0, offset) +#define DT_N_S_soc_S_counter_6001f000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_counter_6001f000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_6001f000, clocks, 0) +#define DT_N_S_soc_S_counter_6001f000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_6001f000, clocks, 0) +#define DT_N_S_soc_S_counter_6001f000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_6001f000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_6001f000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f000_P_clocks_LEN 1 +#define DT_N_S_soc_S_counter_6001f000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_counter_6001f000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_wakeup_source 0 +#define DT_N_S_soc_S_counter_6001f000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_counter_6001f000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/counter@6001f000/counter + * + * Node identifier: DT_N_S_soc_S_counter_6001f000_S_counter + * + * Binding (compatible = espressif,esp32-counter): + * $ZEPHYR_BASE/dts/bindings/counter/espressif,esp32-counter.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_counter_6001f000_S_counter_PATH "/soc/counter@6001f000/counter" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_counter_6001f000_S_counter_FULL_NAME "counter" +#define DT_N_S_soc_S_counter_6001f000_S_counter_FULL_NAME_UNQUOTED counter +#define DT_N_S_soc_S_counter_6001f000_S_counter_FULL_NAME_TOKEN counter +#define DT_N_S_soc_S_counter_6001f000_S_counter_FULL_NAME_UPPER_TOKEN COUNTER + +/* Node parent (/soc/counter@6001f000) identifier: */ +#define DT_N_S_soc_S_counter_6001f000_S_counter_PARENT DT_N_S_soc_S_counter_6001f000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_counter_6001f000_S_counter_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_counter_6001f000_S_counter_NODELABEL_NUM 0 +#define DT_N_S_soc_S_counter_6001f000_S_counter_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_counter_6001f000_S_counter_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_counter_6001f000_S_counter_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_counter_6001f000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_counter_6001f000_S_counter_CHILD_NUM 0 +#define DT_N_S_soc_S_counter_6001f000_S_counter_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_counter_6001f000_S_counter_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_counter_6001f000_S_counter_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_counter_6001f000_S_counter_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_counter_6001f000_S_counter_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_counter_6001f000_S_counter_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_counter_6001f000_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_counter_6001f000_S_counter_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_counter_6001f000_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_counter_6001f000_S_counter_HASH 1BnW7PebcpbOj6PyPgfIKSK7qnhKCToBNW9fE9PQyjI + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_counter_6001f000_S_counter_ORD 73 +#define DT_N_S_soc_S_counter_6001f000_S_counter_ORD_STR_SORTABLE 00073 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_counter_6001f000_S_counter_REQUIRES_ORDS \ + 72, /* /soc/counter@6001f000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_counter_6001f000_S_counter_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_counter_6001f000_S_counter_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_counter DT_N_S_soc_S_counter_6001f000_S_counter + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_counter_6001f000_S_counter_REG_NUM 0 +#define DT_N_S_soc_S_counter_6001f000_S_counter_FOREACH_REG(fn) +#define DT_N_S_soc_S_counter_6001f000_S_counter_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_soc_S_counter_6001f000_S_counter_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_soc_S_counter_6001f000_S_counter_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_counter_6001f000_S_counter_RANGES_NUM 0 +#define DT_N_S_soc_S_counter_6001f000_S_counter_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_counter_6001f000_S_counter_IRQ_NUM 0 +#define DT_N_S_soc_S_counter_6001f000_S_counter_IRQ_LEVEL 0 +#define DT_N_S_soc_S_counter_6001f000_S_counter_COMPAT_MATCHES_espressif_esp32_counter 1 +#define DT_N_S_soc_S_counter_6001f000_S_counter_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_S_counter_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_counter_6001f000_S_counter_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_S_counter_COMPAT_MODEL_IDX_0 "esp32-counter" +#define DT_N_S_soc_S_counter_6001f000_S_counter_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_counter_6001f000_S_counter_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_status "disabled" +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_6001f000_S_counter, status, 0) +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_6001f000_S_counter, status, 0) +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_6001f000_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_6001f000_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_status_LEN 1 +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_status_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_compatible {"espressif,esp32-counter"} +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_compatible_IDX_0 "espressif,esp32-counter" +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-counter +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_counter +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_COUNTER +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_6001f000_S_counter, compatible, 0) +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_6001f000_S_counter, compatible, 0) +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_6001f000_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_6001f000_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_compatible_LEN 1 +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_wakeup_source 0 +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_counter_6001f000_S_counter_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/counter@6001f024 + * + * Node identifier: DT_N_S_soc_S_counter_6001f024 + * + * Binding (compatible = espressif,esp32-timer): + * $ZEPHYR_BASE/dts/bindings/counter/espressif,esp32-timer.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_counter_6001f024_PATH "/soc/counter@6001f024" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_counter_6001f024_FULL_NAME "counter@6001f024" +#define DT_N_S_soc_S_counter_6001f024_FULL_NAME_UNQUOTED counter@6001f024 +#define DT_N_S_soc_S_counter_6001f024_FULL_NAME_TOKEN counter_6001f024 +#define DT_N_S_soc_S_counter_6001f024_FULL_NAME_UPPER_TOKEN COUNTER_6001F024 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_counter_6001f024_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_counter_6001f024_CHILD_IDX 34 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_counter_6001f024_NODELABEL_NUM 1 +#define DT_N_S_soc_S_counter_6001f024_FOREACH_NODELABEL(fn) fn(timer1) +#define DT_N_S_soc_S_counter_6001f024_FOREACH_NODELABEL_VARGS(fn, ...) fn(timer1, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f024_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_counter_6001f024_CHILD_NUM 1 +#define DT_N_S_soc_S_counter_6001f024_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_counter_6001f024_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_counter_6001f024_S_counter) +#define DT_N_S_soc_S_counter_6001f024_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_counter_6001f024_S_counter) +#define DT_N_S_soc_S_counter_6001f024_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_6001f024_S_counter, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f024_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_6001f024_S_counter, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f024_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_counter_6001f024_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_counter_6001f024_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_counter_6001f024_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_counter_6001f024_HASH _tHOMBth7FeWlv20MFmpXa9YUGYxsPx0aNQxZBF_J0w + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_counter_6001f024_ORD 74 +#define DT_N_S_soc_S_counter_6001f024_ORD_STR_SORTABLE 00074 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_counter_6001f024_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_counter_6001f024_SUPPORTS_ORDS \ + 75, /* /soc/counter@6001f024/counter */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_counter_6001f024_EXISTS 1 +#define DT_N_INST_1_espressif_esp32_timer DT_N_S_soc_S_counter_6001f024 +#define DT_N_NODELABEL_timer1 DT_N_S_soc_S_counter_6001f024 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_counter_6001f024_REG_NUM 1 +#define DT_N_S_soc_S_counter_6001f024_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_REG_IDX_0_VAL_ADDRESS 1610739748 /* 0x6001f024 */ +#define DT_N_S_soc_S_counter_6001f024_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_counter_6001f024_FOREACH_REG(fn) fn(DT_N_S_soc_S_counter_6001f024, 0) +#define DT_N_S_soc_S_counter_6001f024_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_counter_6001f024, 0) +#define DT_N_S_soc_S_counter_6001f024_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_6001f024, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f024_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_6001f024, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f024_RANGES_NUM 0 +#define DT_N_S_soc_S_counter_6001f024_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_counter_6001f024_IRQ_NUM 1 +#define DT_N_S_soc_S_counter_6001f024_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_IRQ_IDX_0_VAL_irq 51 +#define DT_N_S_soc_S_counter_6001f024_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_counter_6001f024_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_counter_6001f024_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_counter_6001f024_IRQ_LEVEL 1 +#define DT_N_S_soc_S_counter_6001f024_COMPAT_MATCHES_espressif_esp32_timer 1 +#define DT_N_S_soc_S_counter_6001f024_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_counter_6001f024_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_COMPAT_MODEL_IDX_0 "esp32-timer" +#define DT_N_S_soc_S_counter_6001f024_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_counter_6001f024_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_counter_6001f024_P_group 0 +#define DT_N_S_soc_S_counter_6001f024_P_group_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_counter_6001f024_P_group_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_group_IDX_0_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_group_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_group_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_index 1 +#define DT_N_S_soc_S_counter_6001f024_P_index_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_counter_6001f024_P_index_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_index_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_index_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_index_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_prescaler 2 +#define DT_N_S_soc_S_counter_6001f024_P_prescaler_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_status "okay" +#define DT_N_S_soc_S_counter_6001f024_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_counter_6001f024_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_counter_6001f024_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_counter_6001f024_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_counter_6001f024_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_counter_6001f024_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_6001f024, status, 0) +#define DT_N_S_soc_S_counter_6001f024_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_6001f024, status, 0) +#define DT_N_S_soc_S_counter_6001f024_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_6001f024, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f024_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_6001f024, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f024_P_status_LEN 1 +#define DT_N_S_soc_S_counter_6001f024_P_status_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_compatible {"espressif,esp32-timer"} +#define DT_N_S_soc_S_counter_6001f024_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_compatible_IDX_0 "espressif,esp32-timer" +#define DT_N_S_soc_S_counter_6001f024_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-timer +#define DT_N_S_soc_S_counter_6001f024_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_timer +#define DT_N_S_soc_S_counter_6001f024_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_TIMER +#define DT_N_S_soc_S_counter_6001f024_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_6001f024, compatible, 0) +#define DT_N_S_soc_S_counter_6001f024_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_6001f024, compatible, 0) +#define DT_N_S_soc_S_counter_6001f024_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_6001f024, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f024_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_6001f024, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f024_P_compatible_LEN 1 +#define DT_N_S_soc_S_counter_6001f024_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_reg {1610739748 /* 0x6001f024 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_counter_6001f024_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_reg_IDX_0 1610739748 +#define DT_N_S_soc_S_counter_6001f024_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_counter_6001f024_P_reg_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_interrupts {51 /* 0x33 */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_counter_6001f024_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_interrupts_IDX_0 51 +#define DT_N_S_soc_S_counter_6001f024_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_counter_6001f024_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_counter_6001f024_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_counter_6001f024_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_counter_6001f024_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_counter_6001f024_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_6001f024, interrupt_parent, 0) +#define DT_N_S_soc_S_counter_6001f024_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_6001f024, interrupt_parent, 0) +#define DT_N_S_soc_S_counter_6001f024_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_6001f024, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f024_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_6001f024, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f024_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_counter_6001f024_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_counter_6001f024_P_clocks_IDX_0_VAL_offset 3 +#define DT_N_S_soc_S_counter_6001f024_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_counter_6001f024, clocks, 0, offset) +#define DT_N_S_soc_S_counter_6001f024_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_counter_6001f024, clocks, 0, offset) +#define DT_N_S_soc_S_counter_6001f024_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_counter_6001f024_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_6001f024, clocks, 0) +#define DT_N_S_soc_S_counter_6001f024_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_6001f024, clocks, 0) +#define DT_N_S_soc_S_counter_6001f024_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_6001f024, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f024_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_6001f024, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f024_P_clocks_LEN 1 +#define DT_N_S_soc_S_counter_6001f024_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_counter_6001f024_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_wakeup_source 0 +#define DT_N_S_soc_S_counter_6001f024_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_counter_6001f024_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/counter@6001f024/counter + * + * Node identifier: DT_N_S_soc_S_counter_6001f024_S_counter + * + * Binding (compatible = espressif,esp32-counter): + * $ZEPHYR_BASE/dts/bindings/counter/espressif,esp32-counter.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_counter_6001f024_S_counter_PATH "/soc/counter@6001f024/counter" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_counter_6001f024_S_counter_FULL_NAME "counter" +#define DT_N_S_soc_S_counter_6001f024_S_counter_FULL_NAME_UNQUOTED counter +#define DT_N_S_soc_S_counter_6001f024_S_counter_FULL_NAME_TOKEN counter +#define DT_N_S_soc_S_counter_6001f024_S_counter_FULL_NAME_UPPER_TOKEN COUNTER + +/* Node parent (/soc/counter@6001f024) identifier: */ +#define DT_N_S_soc_S_counter_6001f024_S_counter_PARENT DT_N_S_soc_S_counter_6001f024 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_counter_6001f024_S_counter_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_counter_6001f024_S_counter_NODELABEL_NUM 0 +#define DT_N_S_soc_S_counter_6001f024_S_counter_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_counter_6001f024_S_counter_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_counter_6001f024_S_counter_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_counter_6001f024) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_counter_6001f024_S_counter_CHILD_NUM 0 +#define DT_N_S_soc_S_counter_6001f024_S_counter_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_counter_6001f024_S_counter_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_counter_6001f024_S_counter_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_counter_6001f024_S_counter_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_counter_6001f024_S_counter_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_counter_6001f024_S_counter_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_counter_6001f024_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_counter_6001f024_S_counter_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_counter_6001f024_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_counter_6001f024_S_counter_HASH fwggem_m4lB1Y0CWaSxY44D8ApJMgGzNwFwYBLnBeFI + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_counter_6001f024_S_counter_ORD 75 +#define DT_N_S_soc_S_counter_6001f024_S_counter_ORD_STR_SORTABLE 00075 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_counter_6001f024_S_counter_REQUIRES_ORDS \ + 74, /* /soc/counter@6001f024 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_counter_6001f024_S_counter_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_counter_6001f024_S_counter_EXISTS 1 +#define DT_N_INST_1_espressif_esp32_counter DT_N_S_soc_S_counter_6001f024_S_counter + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_counter_6001f024_S_counter_REG_NUM 0 +#define DT_N_S_soc_S_counter_6001f024_S_counter_FOREACH_REG(fn) +#define DT_N_S_soc_S_counter_6001f024_S_counter_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_soc_S_counter_6001f024_S_counter_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_soc_S_counter_6001f024_S_counter_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_counter_6001f024_S_counter_RANGES_NUM 0 +#define DT_N_S_soc_S_counter_6001f024_S_counter_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_counter_6001f024_S_counter_IRQ_NUM 0 +#define DT_N_S_soc_S_counter_6001f024_S_counter_IRQ_LEVEL 0 +#define DT_N_S_soc_S_counter_6001f024_S_counter_COMPAT_MATCHES_espressif_esp32_counter 1 +#define DT_N_S_soc_S_counter_6001f024_S_counter_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_S_counter_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_counter_6001f024_S_counter_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_S_counter_COMPAT_MODEL_IDX_0 "esp32-counter" +#define DT_N_S_soc_S_counter_6001f024_S_counter_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_counter_6001f024_S_counter_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_status "disabled" +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_6001f024_S_counter, status, 0) +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_6001f024_S_counter, status, 0) +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_6001f024_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_6001f024_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_status_LEN 1 +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_status_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_compatible {"espressif,esp32-counter"} +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_compatible_IDX_0 "espressif,esp32-counter" +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-counter +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_counter +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_COUNTER +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_6001f024_S_counter, compatible, 0) +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_6001f024_S_counter, compatible, 0) +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_6001f024_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_6001f024_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_compatible_LEN 1 +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_wakeup_source 0 +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_counter_6001f024_S_counter_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/counter@60020000 + * + * Node identifier: DT_N_S_soc_S_counter_60020000 + * + * Binding (compatible = espressif,esp32-timer): + * $ZEPHYR_BASE/dts/bindings/counter/espressif,esp32-timer.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_counter_60020000_PATH "/soc/counter@60020000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_counter_60020000_FULL_NAME "counter@60020000" +#define DT_N_S_soc_S_counter_60020000_FULL_NAME_UNQUOTED counter@60020000 +#define DT_N_S_soc_S_counter_60020000_FULL_NAME_TOKEN counter_60020000 +#define DT_N_S_soc_S_counter_60020000_FULL_NAME_UPPER_TOKEN COUNTER_60020000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_counter_60020000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_counter_60020000_CHILD_IDX 35 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_counter_60020000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_counter_60020000_FOREACH_NODELABEL(fn) fn(timer2) +#define DT_N_S_soc_S_counter_60020000_FOREACH_NODELABEL_VARGS(fn, ...) fn(timer2, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_counter_60020000_CHILD_NUM 1 +#define DT_N_S_soc_S_counter_60020000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_counter_60020000_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_counter_60020000_S_counter) +#define DT_N_S_soc_S_counter_60020000_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_counter_60020000_S_counter) +#define DT_N_S_soc_S_counter_60020000_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_60020000_S_counter, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_60020000_S_counter, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_counter_60020000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_counter_60020000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_counter_60020000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_counter_60020000_HASH xCx78bIBDOX3I64HiTwhWz_zp_ta0pfUDZNQ0MGTKxo + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_counter_60020000_ORD 76 +#define DT_N_S_soc_S_counter_60020000_ORD_STR_SORTABLE 00076 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_counter_60020000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_counter_60020000_SUPPORTS_ORDS \ + 77, /* /soc/counter@60020000/counter */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_counter_60020000_EXISTS 1 +#define DT_N_INST_3_espressif_esp32_timer DT_N_S_soc_S_counter_60020000 +#define DT_N_NODELABEL_timer2 DT_N_S_soc_S_counter_60020000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_counter_60020000_REG_NUM 1 +#define DT_N_S_soc_S_counter_60020000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_REG_IDX_0_VAL_ADDRESS 1610743808 /* 0x60020000 */ +#define DT_N_S_soc_S_counter_60020000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_counter_60020000_FOREACH_REG(fn) fn(DT_N_S_soc_S_counter_60020000, 0) +#define DT_N_S_soc_S_counter_60020000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_counter_60020000, 0) +#define DT_N_S_soc_S_counter_60020000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_60020000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_60020000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020000_RANGES_NUM 0 +#define DT_N_S_soc_S_counter_60020000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_counter_60020000_IRQ_NUM 1 +#define DT_N_S_soc_S_counter_60020000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_IRQ_IDX_0_VAL_irq 53 +#define DT_N_S_soc_S_counter_60020000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_counter_60020000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_counter_60020000_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_counter_60020000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_counter_60020000_COMPAT_MATCHES_espressif_esp32_timer 1 +#define DT_N_S_soc_S_counter_60020000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_counter_60020000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_COMPAT_MODEL_IDX_0 "esp32-timer" +#define DT_N_S_soc_S_counter_60020000_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_counter_60020000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_counter_60020000_P_group 1 +#define DT_N_S_soc_S_counter_60020000_P_group_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_counter_60020000_P_group_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_group_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_group_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_group_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_index 0 +#define DT_N_S_soc_S_counter_60020000_P_index_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_counter_60020000_P_index_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_index_IDX_0_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_index_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_index_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_prescaler 2 +#define DT_N_S_soc_S_counter_60020000_P_prescaler_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_status "disabled" +#define DT_N_S_soc_S_counter_60020000_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_counter_60020000_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_counter_60020000_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_counter_60020000_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_counter_60020000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_counter_60020000_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_60020000, status, 0) +#define DT_N_S_soc_S_counter_60020000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_60020000, status, 0) +#define DT_N_S_soc_S_counter_60020000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_60020000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_60020000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020000_P_status_LEN 1 +#define DT_N_S_soc_S_counter_60020000_P_status_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_compatible {"espressif,esp32-timer"} +#define DT_N_S_soc_S_counter_60020000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_compatible_IDX_0 "espressif,esp32-timer" +#define DT_N_S_soc_S_counter_60020000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-timer +#define DT_N_S_soc_S_counter_60020000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_timer +#define DT_N_S_soc_S_counter_60020000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_TIMER +#define DT_N_S_soc_S_counter_60020000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_60020000, compatible, 0) +#define DT_N_S_soc_S_counter_60020000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_60020000, compatible, 0) +#define DT_N_S_soc_S_counter_60020000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_60020000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_60020000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020000_P_compatible_LEN 1 +#define DT_N_S_soc_S_counter_60020000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_reg {1610743808 /* 0x60020000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_counter_60020000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_reg_IDX_0 1610743808 +#define DT_N_S_soc_S_counter_60020000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_counter_60020000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_interrupts {53 /* 0x35 */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_counter_60020000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_interrupts_IDX_0 53 +#define DT_N_S_soc_S_counter_60020000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_counter_60020000_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_counter_60020000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_counter_60020000_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_counter_60020000_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_counter_60020000_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_60020000, interrupt_parent, 0) +#define DT_N_S_soc_S_counter_60020000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_60020000, interrupt_parent, 0) +#define DT_N_S_soc_S_counter_60020000_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_60020000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_60020000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020000_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_counter_60020000_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_counter_60020000_P_clocks_IDX_0_VAL_offset 4 +#define DT_N_S_soc_S_counter_60020000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_counter_60020000, clocks, 0, offset) +#define DT_N_S_soc_S_counter_60020000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_counter_60020000, clocks, 0, offset) +#define DT_N_S_soc_S_counter_60020000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_counter_60020000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_60020000, clocks, 0) +#define DT_N_S_soc_S_counter_60020000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_60020000, clocks, 0) +#define DT_N_S_soc_S_counter_60020000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_60020000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_60020000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020000_P_clocks_LEN 1 +#define DT_N_S_soc_S_counter_60020000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_counter_60020000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_wakeup_source 0 +#define DT_N_S_soc_S_counter_60020000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_counter_60020000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/counter@60020000/counter + * + * Node identifier: DT_N_S_soc_S_counter_60020000_S_counter + * + * Binding (compatible = espressif,esp32-counter): + * $ZEPHYR_BASE/dts/bindings/counter/espressif,esp32-counter.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_counter_60020000_S_counter_PATH "/soc/counter@60020000/counter" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_counter_60020000_S_counter_FULL_NAME "counter" +#define DT_N_S_soc_S_counter_60020000_S_counter_FULL_NAME_UNQUOTED counter +#define DT_N_S_soc_S_counter_60020000_S_counter_FULL_NAME_TOKEN counter +#define DT_N_S_soc_S_counter_60020000_S_counter_FULL_NAME_UPPER_TOKEN COUNTER + +/* Node parent (/soc/counter@60020000) identifier: */ +#define DT_N_S_soc_S_counter_60020000_S_counter_PARENT DT_N_S_soc_S_counter_60020000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_counter_60020000_S_counter_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_counter_60020000_S_counter_NODELABEL_NUM 0 +#define DT_N_S_soc_S_counter_60020000_S_counter_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_counter_60020000_S_counter_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_counter_60020000_S_counter_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_counter_60020000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_counter_60020000_S_counter_CHILD_NUM 0 +#define DT_N_S_soc_S_counter_60020000_S_counter_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_counter_60020000_S_counter_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_counter_60020000_S_counter_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_counter_60020000_S_counter_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_counter_60020000_S_counter_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_counter_60020000_S_counter_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_counter_60020000_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_counter_60020000_S_counter_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_counter_60020000_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_counter_60020000_S_counter_HASH iUSZEEHrOjgouGvxolXes3pAkjQoylGsr7B78CVLa0Y + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_counter_60020000_S_counter_ORD 77 +#define DT_N_S_soc_S_counter_60020000_S_counter_ORD_STR_SORTABLE 00077 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_counter_60020000_S_counter_REQUIRES_ORDS \ + 76, /* /soc/counter@60020000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_counter_60020000_S_counter_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_counter_60020000_S_counter_EXISTS 1 +#define DT_N_INST_2_espressif_esp32_counter DT_N_S_soc_S_counter_60020000_S_counter + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_counter_60020000_S_counter_REG_NUM 0 +#define DT_N_S_soc_S_counter_60020000_S_counter_FOREACH_REG(fn) +#define DT_N_S_soc_S_counter_60020000_S_counter_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_soc_S_counter_60020000_S_counter_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_soc_S_counter_60020000_S_counter_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_counter_60020000_S_counter_RANGES_NUM 0 +#define DT_N_S_soc_S_counter_60020000_S_counter_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_counter_60020000_S_counter_IRQ_NUM 0 +#define DT_N_S_soc_S_counter_60020000_S_counter_IRQ_LEVEL 0 +#define DT_N_S_soc_S_counter_60020000_S_counter_COMPAT_MATCHES_espressif_esp32_counter 1 +#define DT_N_S_soc_S_counter_60020000_S_counter_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_S_counter_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_counter_60020000_S_counter_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_S_counter_COMPAT_MODEL_IDX_0 "esp32-counter" +#define DT_N_S_soc_S_counter_60020000_S_counter_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_counter_60020000_S_counter_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_counter_60020000_S_counter_P_status "disabled" +#define DT_N_S_soc_S_counter_60020000_S_counter_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_counter_60020000_S_counter_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_counter_60020000_S_counter_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_counter_60020000_S_counter_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_counter_60020000_S_counter_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_S_counter_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_counter_60020000_S_counter_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_S_counter_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_S_counter_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_60020000_S_counter, status, 0) +#define DT_N_S_soc_S_counter_60020000_S_counter_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_60020000_S_counter, status, 0) +#define DT_N_S_soc_S_counter_60020000_S_counter_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_60020000_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020000_S_counter_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_60020000_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020000_S_counter_P_status_LEN 1 +#define DT_N_S_soc_S_counter_60020000_S_counter_P_status_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_S_counter_P_compatible {"espressif,esp32-counter"} +#define DT_N_S_soc_S_counter_60020000_S_counter_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_S_counter_P_compatible_IDX_0 "espressif,esp32-counter" +#define DT_N_S_soc_S_counter_60020000_S_counter_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-counter +#define DT_N_S_soc_S_counter_60020000_S_counter_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_counter +#define DT_N_S_soc_S_counter_60020000_S_counter_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_COUNTER +#define DT_N_S_soc_S_counter_60020000_S_counter_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_60020000_S_counter, compatible, 0) +#define DT_N_S_soc_S_counter_60020000_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_60020000_S_counter, compatible, 0) +#define DT_N_S_soc_S_counter_60020000_S_counter_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_60020000_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020000_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_60020000_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020000_S_counter_P_compatible_LEN 1 +#define DT_N_S_soc_S_counter_60020000_S_counter_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_S_counter_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_counter_60020000_S_counter_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_S_counter_P_wakeup_source 0 +#define DT_N_S_soc_S_counter_60020000_S_counter_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_counter_60020000_S_counter_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_counter_60020000_S_counter_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/counter@60020024 + * + * Node identifier: DT_N_S_soc_S_counter_60020024 + * + * Binding (compatible = espressif,esp32-timer): + * $ZEPHYR_BASE/dts/bindings/counter/espressif,esp32-timer.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_counter_60020024_PATH "/soc/counter@60020024" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_counter_60020024_FULL_NAME "counter@60020024" +#define DT_N_S_soc_S_counter_60020024_FULL_NAME_UNQUOTED counter@60020024 +#define DT_N_S_soc_S_counter_60020024_FULL_NAME_TOKEN counter_60020024 +#define DT_N_S_soc_S_counter_60020024_FULL_NAME_UPPER_TOKEN COUNTER_60020024 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_counter_60020024_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_counter_60020024_CHILD_IDX 36 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_counter_60020024_NODELABEL_NUM 1 +#define DT_N_S_soc_S_counter_60020024_FOREACH_NODELABEL(fn) fn(timer3) +#define DT_N_S_soc_S_counter_60020024_FOREACH_NODELABEL_VARGS(fn, ...) fn(timer3, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020024_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_counter_60020024_CHILD_NUM 1 +#define DT_N_S_soc_S_counter_60020024_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_counter_60020024_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_counter_60020024_S_counter) +#define DT_N_S_soc_S_counter_60020024_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_counter_60020024_S_counter) +#define DT_N_S_soc_S_counter_60020024_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_60020024_S_counter, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020024_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_60020024_S_counter, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020024_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_counter_60020024_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_counter_60020024_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_counter_60020024_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_counter_60020024_HASH q7XUq8otw592MMX6Vq29YDJEwNtxuvJ4YXh2h6g4hwU + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_counter_60020024_ORD 78 +#define DT_N_S_soc_S_counter_60020024_ORD_STR_SORTABLE 00078 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_counter_60020024_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_counter_60020024_SUPPORTS_ORDS \ + 79, /* /soc/counter@60020024/counter */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_counter_60020024_EXISTS 1 +#define DT_N_INST_2_espressif_esp32_timer DT_N_S_soc_S_counter_60020024 +#define DT_N_NODELABEL_timer3 DT_N_S_soc_S_counter_60020024 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_counter_60020024_REG_NUM 1 +#define DT_N_S_soc_S_counter_60020024_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_REG_IDX_0_VAL_ADDRESS 1610743844 /* 0x60020024 */ +#define DT_N_S_soc_S_counter_60020024_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_counter_60020024_FOREACH_REG(fn) fn(DT_N_S_soc_S_counter_60020024, 0) +#define DT_N_S_soc_S_counter_60020024_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_counter_60020024, 0) +#define DT_N_S_soc_S_counter_60020024_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_60020024, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020024_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_60020024, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020024_RANGES_NUM 0 +#define DT_N_S_soc_S_counter_60020024_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_counter_60020024_IRQ_NUM 1 +#define DT_N_S_soc_S_counter_60020024_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_IRQ_IDX_0_VAL_irq 54 +#define DT_N_S_soc_S_counter_60020024_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_counter_60020024_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_counter_60020024_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_counter_60020024_IRQ_LEVEL 1 +#define DT_N_S_soc_S_counter_60020024_COMPAT_MATCHES_espressif_esp32_timer 1 +#define DT_N_S_soc_S_counter_60020024_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_counter_60020024_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_COMPAT_MODEL_IDX_0 "esp32-timer" +#define DT_N_S_soc_S_counter_60020024_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_counter_60020024_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_counter_60020024_P_group 1 +#define DT_N_S_soc_S_counter_60020024_P_group_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_counter_60020024_P_group_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_group_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_group_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_group_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_index 1 +#define DT_N_S_soc_S_counter_60020024_P_index_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_counter_60020024_P_index_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_index_IDX_0_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_index_ENUM_VAL_1_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_index_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_prescaler 2 +#define DT_N_S_soc_S_counter_60020024_P_prescaler_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_compatible {"espressif,esp32-timer"} +#define DT_N_S_soc_S_counter_60020024_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_compatible_IDX_0 "espressif,esp32-timer" +#define DT_N_S_soc_S_counter_60020024_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-timer +#define DT_N_S_soc_S_counter_60020024_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_timer +#define DT_N_S_soc_S_counter_60020024_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_TIMER +#define DT_N_S_soc_S_counter_60020024_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_60020024, compatible, 0) +#define DT_N_S_soc_S_counter_60020024_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_60020024, compatible, 0) +#define DT_N_S_soc_S_counter_60020024_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_60020024, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020024_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_60020024, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020024_P_compatible_LEN 1 +#define DT_N_S_soc_S_counter_60020024_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_reg {1610743844 /* 0x60020024 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_counter_60020024_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_reg_IDX_0 1610743844 +#define DT_N_S_soc_S_counter_60020024_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_counter_60020024_P_reg_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_interrupts {54 /* 0x36 */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_counter_60020024_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_interrupts_IDX_0 54 +#define DT_N_S_soc_S_counter_60020024_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_counter_60020024_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_counter_60020024_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_counter_60020024_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_counter_60020024_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_counter_60020024_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_60020024, interrupt_parent, 0) +#define DT_N_S_soc_S_counter_60020024_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_60020024, interrupt_parent, 0) +#define DT_N_S_soc_S_counter_60020024_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_60020024, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020024_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_60020024, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020024_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_counter_60020024_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_counter_60020024_P_clocks_IDX_0_VAL_offset 4 +#define DT_N_S_soc_S_counter_60020024_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_counter_60020024, clocks, 0, offset) +#define DT_N_S_soc_S_counter_60020024_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_counter_60020024, clocks, 0, offset) +#define DT_N_S_soc_S_counter_60020024_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_counter_60020024_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_60020024, clocks, 0) +#define DT_N_S_soc_S_counter_60020024_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_60020024, clocks, 0) +#define DT_N_S_soc_S_counter_60020024_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_60020024, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020024_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_60020024, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020024_P_clocks_LEN 1 +#define DT_N_S_soc_S_counter_60020024_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_counter_60020024_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_wakeup_source 0 +#define DT_N_S_soc_S_counter_60020024_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_counter_60020024_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/counter@60020024/counter + * + * Node identifier: DT_N_S_soc_S_counter_60020024_S_counter + * + * Binding (compatible = espressif,esp32-counter): + * $ZEPHYR_BASE/dts/bindings/counter/espressif,esp32-counter.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_counter_60020024_S_counter_PATH "/soc/counter@60020024/counter" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_counter_60020024_S_counter_FULL_NAME "counter" +#define DT_N_S_soc_S_counter_60020024_S_counter_FULL_NAME_UNQUOTED counter +#define DT_N_S_soc_S_counter_60020024_S_counter_FULL_NAME_TOKEN counter +#define DT_N_S_soc_S_counter_60020024_S_counter_FULL_NAME_UPPER_TOKEN COUNTER + +/* Node parent (/soc/counter@60020024) identifier: */ +#define DT_N_S_soc_S_counter_60020024_S_counter_PARENT DT_N_S_soc_S_counter_60020024 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_counter_60020024_S_counter_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_counter_60020024_S_counter_NODELABEL_NUM 0 +#define DT_N_S_soc_S_counter_60020024_S_counter_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_counter_60020024_S_counter_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_counter_60020024_S_counter_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_counter_60020024) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_counter_60020024_S_counter_CHILD_NUM 0 +#define DT_N_S_soc_S_counter_60020024_S_counter_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_counter_60020024_S_counter_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_counter_60020024_S_counter_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_counter_60020024_S_counter_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_counter_60020024_S_counter_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_counter_60020024_S_counter_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_counter_60020024_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_counter_60020024_S_counter_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_counter_60020024_S_counter_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_counter_60020024_S_counter_HASH wmieNtyjn9sQES1VH5SAPFutSItagKibxS7ndwgbUKY + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_counter_60020024_S_counter_ORD 79 +#define DT_N_S_soc_S_counter_60020024_S_counter_ORD_STR_SORTABLE 00079 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_counter_60020024_S_counter_REQUIRES_ORDS \ + 78, /* /soc/counter@60020024 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_counter_60020024_S_counter_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_counter_60020024_S_counter_EXISTS 1 +#define DT_N_INST_3_espressif_esp32_counter DT_N_S_soc_S_counter_60020024_S_counter + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_counter_60020024_S_counter_REG_NUM 0 +#define DT_N_S_soc_S_counter_60020024_S_counter_FOREACH_REG(fn) +#define DT_N_S_soc_S_counter_60020024_S_counter_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_soc_S_counter_60020024_S_counter_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_soc_S_counter_60020024_S_counter_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_counter_60020024_S_counter_RANGES_NUM 0 +#define DT_N_S_soc_S_counter_60020024_S_counter_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_counter_60020024_S_counter_IRQ_NUM 0 +#define DT_N_S_soc_S_counter_60020024_S_counter_IRQ_LEVEL 0 +#define DT_N_S_soc_S_counter_60020024_S_counter_COMPAT_MATCHES_espressif_esp32_counter 1 +#define DT_N_S_soc_S_counter_60020024_S_counter_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_S_counter_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_counter_60020024_S_counter_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_S_counter_COMPAT_MODEL_IDX_0 "esp32-counter" +#define DT_N_S_soc_S_counter_60020024_S_counter_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_counter_60020024_S_counter_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_counter_60020024_S_counter_P_status "disabled" +#define DT_N_S_soc_S_counter_60020024_S_counter_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_counter_60020024_S_counter_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_counter_60020024_S_counter_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_counter_60020024_S_counter_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_counter_60020024_S_counter_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_S_counter_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_counter_60020024_S_counter_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_S_counter_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_S_counter_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_60020024_S_counter, status, 0) +#define DT_N_S_soc_S_counter_60020024_S_counter_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_60020024_S_counter, status, 0) +#define DT_N_S_soc_S_counter_60020024_S_counter_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_60020024_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020024_S_counter_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_60020024_S_counter, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020024_S_counter_P_status_LEN 1 +#define DT_N_S_soc_S_counter_60020024_S_counter_P_status_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_S_counter_P_compatible {"espressif,esp32-counter"} +#define DT_N_S_soc_S_counter_60020024_S_counter_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_S_counter_P_compatible_IDX_0 "espressif,esp32-counter" +#define DT_N_S_soc_S_counter_60020024_S_counter_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-counter +#define DT_N_S_soc_S_counter_60020024_S_counter_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_counter +#define DT_N_S_soc_S_counter_60020024_S_counter_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_COUNTER +#define DT_N_S_soc_S_counter_60020024_S_counter_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_counter_60020024_S_counter, compatible, 0) +#define DT_N_S_soc_S_counter_60020024_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_counter_60020024_S_counter, compatible, 0) +#define DT_N_S_soc_S_counter_60020024_S_counter_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_counter_60020024_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020024_S_counter_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_counter_60020024_S_counter, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_counter_60020024_S_counter_P_compatible_LEN 1 +#define DT_N_S_soc_S_counter_60020024_S_counter_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_S_counter_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_counter_60020024_S_counter_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_S_counter_P_wakeup_source 0 +#define DT_N_S_soc_S_counter_60020024_S_counter_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_counter_60020024_S_counter_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_counter_60020024_S_counter_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@60002000 + * + * Node identifier: DT_N_S_soc_S_flash_controller_60002000 + * + * Binding (compatible = espressif,esp32-flash-controller): + * $ZEPHYR_BASE/dts/bindings/flash_controller/espressif,esp32-flash-controller.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_60002000_PATH "/soc/flash-controller@60002000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_60002000_FULL_NAME "flash-controller@60002000" +#define DT_N_S_soc_S_flash_controller_60002000_FULL_NAME_UNQUOTED flash-controller@60002000 +#define DT_N_S_soc_S_flash_controller_60002000_FULL_NAME_TOKEN flash_controller_60002000 +#define DT_N_S_soc_S_flash_controller_60002000_FULL_NAME_UPPER_TOKEN FLASH_CONTROLLER_60002000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_60002000_CHILD_IDX 14 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_60002000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_FOREACH_NODELABEL(fn) fn(flash) +#define DT_N_S_soc_S_flash_controller_60002000_FOREACH_NODELABEL_VARGS(fn, ...) fn(flash, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_60002000_CHILD_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_CHILD_NUM_STATUS_OKAY 1 +#define DT_N_S_soc_S_flash_controller_60002000_CHILD_UNIT_ADDR_INT_0 DT_N_S_soc_S_flash_controller_60002000_S_flash_0 +#define DT_N_S_soc_S_flash_controller_60002000_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0) +#define DT_N_S_soc_S_flash_controller_60002000_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0) +#define DT_N_S_soc_S_flash_controller_60002000_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0) +#define DT_N_S_soc_S_flash_controller_60002000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0) +#define DT_N_S_soc_S_flash_controller_60002000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_soc_S_flash_controller_60002000_HASH yd4D2IggpKw4LyE398Naff07xJbYibUkiq_qk5dUqD8 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_60002000_ORD 80 +#define DT_N_S_soc_S_flash_controller_60002000_ORD_STR_SORTABLE 00080 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_60002000_REQUIRES_ORDS \ + 12, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_60002000_SUPPORTS_ORDS \ + 81, /* /soc/flash-controller@60002000/flash@0 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_60002000_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_flash_controller DT_N_S_soc_S_flash_controller_60002000 +#define DT_N_NODELABEL_flash DT_N_S_soc_S_flash_controller_60002000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_60002000_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_REG_IDX_0_VAL_ADDRESS 1610620928 /* 0x60002000 */ +#define DT_N_S_soc_S_flash_controller_60002000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_flash_controller_60002000_FOREACH_REG(fn) fn(DT_N_S_soc_S_flash_controller_60002000, 0) +#define DT_N_S_soc_S_flash_controller_60002000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000, 0) +#define DT_N_S_soc_S_flash_controller_60002000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_60002000_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_60002000_COMPAT_MATCHES_espressif_esp32_flash_controller 1 +#define DT_N_S_soc_S_flash_controller_60002000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_flash_controller_60002000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_COMPAT_MODEL_IDX_0 "esp32-flash-controller" +#define DT_N_S_soc_S_flash_controller_60002000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_60002000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_60002000_P_reg {1610620928 /* 0x60002000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_flash_controller_60002000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_P_reg_IDX_0 1610620928 +#define DT_N_S_soc_S_flash_controller_60002000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_flash_controller_60002000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_P_compatible {"espressif,esp32-flash-controller"} +#define DT_N_S_soc_S_flash_controller_60002000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_P_compatible_IDX_0 "espressif,esp32-flash-controller" +#define DT_N_S_soc_S_flash_controller_60002000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-flash-controller +#define DT_N_S_soc_S_flash_controller_60002000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_flash_controller +#define DT_N_S_soc_S_flash_controller_60002000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_FLASH_CONTROLLER +#define DT_N_S_soc_S_flash_controller_60002000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_60002000, compatible, 0) +#define DT_N_S_soc_S_flash_controller_60002000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000, compatible, 0) +#define DT_N_S_soc_S_flash_controller_60002000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_P_compatible_LEN 1 +#define DT_N_S_soc_S_flash_controller_60002000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_flash_controller_60002000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_P_wakeup_source 0 +#define DT_N_S_soc_S_flash_controller_60002000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_flash_controller_60002000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@60002000/flash@0 + * + * Node identifier: DT_N_S_soc_S_flash_controller_60002000_S_flash_0 + * + * Binding (compatible = soc-nv-flash): + * $ZEPHYR_BASE/dts/bindings/mtd/soc-nv-flash.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_PATH "/soc/flash-controller@60002000/flash@0" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_FULL_NAME "flash@0" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_FULL_NAME_UNQUOTED flash@0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_FULL_NAME_TOKEN flash_0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_FULL_NAME_UPPER_TOKEN FLASH_0 + +/* Node parent (/soc/flash-controller@60002000) identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_PARENT DT_N_S_soc_S_flash_controller_60002000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_FOREACH_NODELABEL(fn) fn(flash0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_FOREACH_NODELABEL_VARGS(fn, ...) fn(flash0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_60002000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_CHILD_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_CHILD_NUM_STATUS_OKAY 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_HASH D2mNQTsAafBKTZogWP5ZJcwnGR7dkZH4NbPP40TPifI + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_ORD 81 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_ORD_STR_SORTABLE 00081 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_REQUIRES_ORDS \ + 80, /* /soc/flash-controller@60002000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_SUPPORTS_ORDS \ + 82, /* /soc/flash-controller@60002000/flash@0/partitions */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_EXISTS 1 +#define DT_N_INST_0_soc_nv_flash DT_N_S_soc_S_flash_controller_60002000_S_flash_0 +#define DT_N_NODELABEL_flash0 DT_N_S_soc_S_flash_controller_60002000_S_flash_0 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_REG_IDX_0_VAL_ADDRESS 0 /* 0x0 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_REG_IDX_0_VAL_SIZE 8388608 /* 0x800000 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_FOREACH_REG(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_COMPAT_MATCHES_soc_nv_flash 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_erase_block_size 4096 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_erase_block_size_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_write_block_size 4 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_write_block_size_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_compatible {"soc-nv-flash"} +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_compatible_IDX_0 "soc-nv-flash" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_compatible_IDX_0_STRING_UNQUOTED soc-nv-flash +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_compatible_IDX_0_STRING_TOKEN soc_nv_flash +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_compatible_IDX_0_STRING_UPPER_TOKEN SOC_NV_FLASH +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0, compatible, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0, compatible, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_compatible_LEN 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_reg {0 /* 0x0 */, 8388608 /* 0x800000 */} +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_reg_IDX_0 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_reg_IDX_1 8388608 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_reg_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_wakeup_source 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@60002000/flash@0/partitions + * + * Node identifier: DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions + * + * Binding (compatible = fixed-partitions): + * $ZEPHYR_BASE/dts/bindings/mtd/fixed-partitions.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_PATH "/soc/flash-controller@60002000/flash@0/partitions" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_FULL_NAME "partitions" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_FULL_NAME_UNQUOTED partitions +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_FULL_NAME_TOKEN partitions +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_FULL_NAME_UPPER_TOKEN PARTITIONS + +/* Node parent (/soc/flash-controller@60002000/flash@0) identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_PARENT DT_N_S_soc_S_flash_controller_60002000_S_flash_0 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_NODELABEL_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_FOREACH_NODELABEL(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_FOREACH_NODELABEL_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0) fn(DT_N_S_soc_S_flash_controller_60002000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_CHILD_NUM 11 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_CHILD_NUM_STATUS_OKAY 11 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_CHILD_UNIT_ADDR_INT_0 DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_CHILD_UNIT_ADDR_INT_65536 DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_CHILD_UNIT_ADDR_INT_131072 DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_CHILD_UNIT_ADDR_INT_1507328 DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_CHILD_UNIT_ADDR_INT_2883584 DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_CHILD_UNIT_ADDR_INT_3342336 DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_CHILD_UNIT_ADDR_INT_3801088 DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_CHILD_UNIT_ADDR_INT_3833856 DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_CHILD_UNIT_ADDR_INT_3866624 DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_CHILD_UNIT_ADDR_INT_4063232 DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_CHILD_UNIT_ADDR_INT_4190208 DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_HASH dNzhNxyK81xeQFYip2CZ9rCb0VdF2BCsUgOYjZqcpMo + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_ORD 82 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_ORD_STR_SORTABLE 00082 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_REQUIRES_ORDS \ + 81, /* /soc/flash-controller@60002000/flash@0 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_SUPPORTS_ORDS \ + 83, /* /soc/flash-controller@60002000/flash@0/partitions/partition@0 */ \ + 84, /* /soc/flash-controller@60002000/flash@0/partitions/partition@10000 */ \ + 85, /* /soc/flash-controller@60002000/flash@0/partitions/partition@20000 */ \ + 86, /* /soc/flash-controller@60002000/flash@0/partitions/partition@170000 */ \ + 87, /* /soc/flash-controller@60002000/flash@0/partitions/partition@2c0000 */ \ + 88, /* /soc/flash-controller@60002000/flash@0/partitions/partition@330000 */ \ + 89, /* /soc/flash-controller@60002000/flash@0/partitions/partition@3a0000 */ \ + 90, /* /soc/flash-controller@60002000/flash@0/partitions/partition@3a8000 */ \ + 91, /* /soc/flash-controller@60002000/flash@0/partitions/partition@3b0000 */ \ + 92, /* /soc/flash-controller@60002000/flash@0/partitions/partition@3e0000 */ \ + 93, /* /soc/flash-controller@60002000/flash@0/partitions/partition@3ff000 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_EXISTS 1 +#define DT_N_INST_0_fixed_partitions DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_REG_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_FOREACH_REG(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_COMPAT_MATCHES_fixed_partitions 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_P_compatible {"fixed-partitions"} +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_P_compatible_IDX_0 "fixed-partitions" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_P_compatible_IDX_0_STRING_UNQUOTED fixed-partitions +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_P_compatible_IDX_0_STRING_TOKEN fixed_partitions +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_P_compatible_IDX_0_STRING_UPPER_TOKEN FIXED_PARTITIONS +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions, compatible, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions, compatible, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_P_compatible_LEN 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_P_wakeup_source 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@60002000/flash@0/partitions/partition@0 + * + * Node identifier: DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_PATH "/soc/flash-controller@60002000/flash@0/partitions/partition@0" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_FULL_NAME "partition@0" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_FULL_NAME_UNQUOTED partition@0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_FULL_NAME_TOKEN partition_0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_FULL_NAME_UPPER_TOKEN PARTITION_0 + +/* Node parent (/soc/flash-controller@60002000/flash@0/partitions) identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_PARENT DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_FOREACH_NODELABEL(fn) fn(boot_partition) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_FOREACH_NODELABEL_VARGS(fn, ...) fn(boot_partition, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0) fn(DT_N_S_soc_S_flash_controller_60002000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_CHILD_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_HASH oDsImwagDdfCPnWV2WOVcSz6DvQuTknj1gY7ra4w5Cw + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_ORD 83 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_ORD_STR_SORTABLE 00083 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_REQUIRES_ORDS \ + 82, /* /soc/flash-controller@60002000/flash@0/partitions */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_EXISTS 1 +#define DT_N_NODELABEL_boot_partition DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_REG_IDX_0_VAL_ADDRESS 0 /* 0x0 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_REG_IDX_0_VAL_SIZE 65536 /* 0x10000 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_FOREACH_REG(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_PINCTRL_NUM 0 + +/* fixed-partitions identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_PARTITION_ID 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_P_label "mcuboot" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_P_label_STRING_UNQUOTED mcuboot +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_P_label_STRING_TOKEN mcuboot +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_P_label_STRING_UPPER_TOKEN MCUBOOT +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_P_label_IDX_0 "mcuboot" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_P_label_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0, label, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0, label, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_P_label_LEN 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_P_label_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_P_read_only 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_P_read_only_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_P_reg {0 /* 0x0 */, 65536 /* 0x10000 */} +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_P_reg_IDX_0 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_P_reg_IDX_1 65536 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0_P_reg_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@60002000/flash@0/partitions/partition@10000 + * + * Node identifier: DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_PATH "/soc/flash-controller@60002000/flash@0/partitions/partition@10000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_FULL_NAME "partition@10000" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_FULL_NAME_UNQUOTED partition@10000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_FULL_NAME_TOKEN partition_10000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_FULL_NAME_UPPER_TOKEN PARTITION_10000 + +/* Node parent (/soc/flash-controller@60002000/flash@0/partitions) identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_PARENT DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_FOREACH_NODELABEL(fn) fn(sys_partition) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_FOREACH_NODELABEL_VARGS(fn, ...) fn(sys_partition, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0) fn(DT_N_S_soc_S_flash_controller_60002000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_CHILD_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_HASH fieo_ZZ_e2gacspwZIAewOHWM7IxeT3uY7EGlWW2yes + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_ORD 84 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_ORD_STR_SORTABLE 00084 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_REQUIRES_ORDS \ + 82, /* /soc/flash-controller@60002000/flash@0/partitions */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_EXISTS 1 +#define DT_N_NODELABEL_sys_partition DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_REG_IDX_0_VAL_ADDRESS 65536 /* 0x10000 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_REG_IDX_0_VAL_SIZE 65536 /* 0x10000 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_FOREACH_REG(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_PINCTRL_NUM 0 + +/* fixed-partitions identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_PARTITION_ID 1 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_P_label "sys" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_P_label_STRING_UNQUOTED sys +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_P_label_STRING_TOKEN sys +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_P_label_STRING_UPPER_TOKEN SYS +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_P_label_IDX_0 "sys" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_P_label_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000, label, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000, label, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_P_label_LEN 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_P_label_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_P_read_only 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_P_read_only_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_P_reg {65536 /* 0x10000 */, 65536 /* 0x10000 */} +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_P_reg_IDX_0 65536 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_P_reg_IDX_1 65536 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000_P_reg_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@60002000/flash@0/partitions/partition@20000 + * + * Node identifier: DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_PATH "/soc/flash-controller@60002000/flash@0/partitions/partition@20000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_FULL_NAME "partition@20000" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_FULL_NAME_UNQUOTED partition@20000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_FULL_NAME_TOKEN partition_20000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_FULL_NAME_UPPER_TOKEN PARTITION_20000 + +/* Node parent (/soc/flash-controller@60002000/flash@0/partitions) identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_PARENT DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_CHILD_IDX 2 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_FOREACH_NODELABEL(fn) fn(slot0_partition) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_FOREACH_NODELABEL_VARGS(fn, ...) fn(slot0_partition, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0) fn(DT_N_S_soc_S_flash_controller_60002000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_CHILD_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_HASH _RYkLIzjY4UgPmWibu0PcD8f_q1lghSkV21XtY_S_TM + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_ORD 85 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_ORD_STR_SORTABLE 00085 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_REQUIRES_ORDS \ + 82, /* /soc/flash-controller@60002000/flash@0/partitions */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_EXISTS 1 +#define DT_N_NODELABEL_slot0_partition DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_REG_IDX_0_VAL_ADDRESS 131072 /* 0x20000 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_REG_IDX_0_VAL_SIZE 1376256 /* 0x150000 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_FOREACH_REG(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_PINCTRL_NUM 0 + +/* fixed-partitions identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_PARTITION_ID 2 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_P_label "image-0" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_P_label_STRING_UNQUOTED image-0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_P_label_STRING_TOKEN image_0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_P_label_STRING_UPPER_TOKEN IMAGE_0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_P_label_IDX_0 "image-0" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_P_label_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000, label, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000, label, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_P_label_LEN 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_P_label_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_P_read_only 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_P_read_only_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_P_reg {131072 /* 0x20000 */, 1376256 /* 0x150000 */} +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_P_reg_IDX_0 131072 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_P_reg_IDX_1 1376256 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000_P_reg_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@60002000/flash@0/partitions/partition@170000 + * + * Node identifier: DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_PATH "/soc/flash-controller@60002000/flash@0/partitions/partition@170000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_FULL_NAME "partition@170000" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_FULL_NAME_UNQUOTED partition@170000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_FULL_NAME_TOKEN partition_170000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_FULL_NAME_UPPER_TOKEN PARTITION_170000 + +/* Node parent (/soc/flash-controller@60002000/flash@0/partitions) identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_PARENT DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_CHILD_IDX 3 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_FOREACH_NODELABEL(fn) fn(slot1_partition) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_FOREACH_NODELABEL_VARGS(fn, ...) fn(slot1_partition, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0) fn(DT_N_S_soc_S_flash_controller_60002000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_CHILD_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_HASH _VUyUmkd_u2hu0MU_IKV1_jAVg0T_PtFaII_lPXtG3Q + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_ORD 86 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_ORD_STR_SORTABLE 00086 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_REQUIRES_ORDS \ + 82, /* /soc/flash-controller@60002000/flash@0/partitions */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_EXISTS 1 +#define DT_N_NODELABEL_slot1_partition DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_REG_IDX_0_VAL_ADDRESS 1507328 /* 0x170000 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_REG_IDX_0_VAL_SIZE 1376256 /* 0x150000 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_FOREACH_REG(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_PINCTRL_NUM 0 + +/* fixed-partitions identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_PARTITION_ID 3 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_P_label "image-1" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_P_label_STRING_UNQUOTED image-1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_P_label_STRING_TOKEN image_1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_P_label_STRING_UPPER_TOKEN IMAGE_1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_P_label_IDX_0 "image-1" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_P_label_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000, label, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000, label, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_P_label_LEN 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_P_label_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_P_read_only 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_P_read_only_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_P_reg {1507328 /* 0x170000 */, 1376256 /* 0x150000 */} +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_P_reg_IDX_0 1507328 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_P_reg_IDX_1 1376256 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000_P_reg_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@60002000/flash@0/partitions/partition@2c0000 + * + * Node identifier: DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_PATH "/soc/flash-controller@60002000/flash@0/partitions/partition@2c0000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_FULL_NAME "partition@2c0000" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_FULL_NAME_UNQUOTED partition@2c0000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_FULL_NAME_TOKEN partition_2c0000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_FULL_NAME_UPPER_TOKEN PARTITION_2C0000 + +/* Node parent (/soc/flash-controller@60002000/flash@0/partitions) identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_PARENT DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_CHILD_IDX 4 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_FOREACH_NODELABEL(fn) fn(slot0_appcpu_partition) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_FOREACH_NODELABEL_VARGS(fn, ...) fn(slot0_appcpu_partition, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0) fn(DT_N_S_soc_S_flash_controller_60002000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_CHILD_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_HASH mgJTA6mdjCUIKu0BM_g6Crq3a6L7JZLHyJTgl1I_egE + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_ORD 87 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_ORD_STR_SORTABLE 00087 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_REQUIRES_ORDS \ + 82, /* /soc/flash-controller@60002000/flash@0/partitions */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_EXISTS 1 +#define DT_N_NODELABEL_slot0_appcpu_partition DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_REG_IDX_0_VAL_ADDRESS 2883584 /* 0x2c0000 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_REG_IDX_0_VAL_SIZE 458752 /* 0x70000 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_FOREACH_REG(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_PINCTRL_NUM 0 + +/* fixed-partitions identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_PARTITION_ID 4 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_P_label "image-0-appcpu" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_P_label_STRING_UNQUOTED image-0-appcpu +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_P_label_STRING_TOKEN image_0_appcpu +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_P_label_STRING_UPPER_TOKEN IMAGE_0_APPCPU +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_P_label_IDX_0 "image-0-appcpu" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_P_label_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000, label, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000, label, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_P_label_LEN 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_P_label_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_P_read_only 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_P_read_only_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_P_reg {2883584 /* 0x2c0000 */, 458752 /* 0x70000 */} +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_P_reg_IDX_0 2883584 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_P_reg_IDX_1 458752 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000_P_reg_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@60002000/flash@0/partitions/partition@330000 + * + * Node identifier: DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_PATH "/soc/flash-controller@60002000/flash@0/partitions/partition@330000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_FULL_NAME "partition@330000" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_FULL_NAME_UNQUOTED partition@330000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_FULL_NAME_TOKEN partition_330000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_FULL_NAME_UPPER_TOKEN PARTITION_330000 + +/* Node parent (/soc/flash-controller@60002000/flash@0/partitions) identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_PARENT DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_CHILD_IDX 5 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_FOREACH_NODELABEL(fn) fn(slot1_appcpu_partition) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_FOREACH_NODELABEL_VARGS(fn, ...) fn(slot1_appcpu_partition, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0) fn(DT_N_S_soc_S_flash_controller_60002000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_CHILD_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_HASH x7dGVvVNfxVTT9coyYV5eMB7_C4THzsLcHou93SEXIQ + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_ORD 88 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_ORD_STR_SORTABLE 00088 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_REQUIRES_ORDS \ + 82, /* /soc/flash-controller@60002000/flash@0/partitions */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_EXISTS 1 +#define DT_N_NODELABEL_slot1_appcpu_partition DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_REG_IDX_0_VAL_ADDRESS 3342336 /* 0x330000 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_REG_IDX_0_VAL_SIZE 458752 /* 0x70000 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_FOREACH_REG(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_PINCTRL_NUM 0 + +/* fixed-partitions identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_PARTITION_ID 5 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_P_label "image-1-appcpu" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_P_label_STRING_UNQUOTED image-1-appcpu +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_P_label_STRING_TOKEN image_1_appcpu +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_P_label_STRING_UPPER_TOKEN IMAGE_1_APPCPU +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_P_label_IDX_0 "image-1-appcpu" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_P_label_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000, label, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000, label, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_P_label_LEN 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_P_label_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_P_read_only 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_P_read_only_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_P_reg {3342336 /* 0x330000 */, 458752 /* 0x70000 */} +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_P_reg_IDX_0 3342336 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_P_reg_IDX_1 458752 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000_P_reg_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@60002000/flash@0/partitions/partition@3a0000 + * + * Node identifier: DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_PATH "/soc/flash-controller@60002000/flash@0/partitions/partition@3a0000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_FULL_NAME "partition@3a0000" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_FULL_NAME_UNQUOTED partition@3a0000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_FULL_NAME_TOKEN partition_3a0000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_FULL_NAME_UPPER_TOKEN PARTITION_3A0000 + +/* Node parent (/soc/flash-controller@60002000/flash@0/partitions) identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_PARENT DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_CHILD_IDX 6 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_FOREACH_NODELABEL(fn) fn(slot0_lpcore_partition) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_FOREACH_NODELABEL_VARGS(fn, ...) fn(slot0_lpcore_partition, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0) fn(DT_N_S_soc_S_flash_controller_60002000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_CHILD_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_HASH MFbK2mwgeWhCZwHgtDHUw3nXa2bjAnxM3Em9ay4u2KY + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_ORD 89 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_ORD_STR_SORTABLE 00089 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_REQUIRES_ORDS \ + 82, /* /soc/flash-controller@60002000/flash@0/partitions */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_EXISTS 1 +#define DT_N_NODELABEL_slot0_lpcore_partition DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_REG_IDX_0_VAL_ADDRESS 3801088 /* 0x3a0000 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_REG_IDX_0_VAL_SIZE 32768 /* 0x8000 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_FOREACH_REG(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_PINCTRL_NUM 0 + +/* fixed-partitions identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_PARTITION_ID 6 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_P_label "image-0-lpcore" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_P_label_STRING_UNQUOTED image-0-lpcore +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_P_label_STRING_TOKEN image_0_lpcore +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_P_label_STRING_UPPER_TOKEN IMAGE_0_LPCORE +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_P_label_IDX_0 "image-0-lpcore" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_P_label_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000, label, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000, label, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_P_label_LEN 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_P_label_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_P_read_only 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_P_read_only_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_P_reg {3801088 /* 0x3a0000 */, 32768 /* 0x8000 */} +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_P_reg_IDX_0 3801088 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_P_reg_IDX_1 32768 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000_P_reg_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@60002000/flash@0/partitions/partition@3a8000 + * + * Node identifier: DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_PATH "/soc/flash-controller@60002000/flash@0/partitions/partition@3a8000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_FULL_NAME "partition@3a8000" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_FULL_NAME_UNQUOTED partition@3a8000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_FULL_NAME_TOKEN partition_3a8000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_FULL_NAME_UPPER_TOKEN PARTITION_3A8000 + +/* Node parent (/soc/flash-controller@60002000/flash@0/partitions) identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_PARENT DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_CHILD_IDX 7 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_FOREACH_NODELABEL(fn) fn(slot1_lpcore_partition) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_FOREACH_NODELABEL_VARGS(fn, ...) fn(slot1_lpcore_partition, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0) fn(DT_N_S_soc_S_flash_controller_60002000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_CHILD_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_HASH H_pMNiTzPzv5CHmjNphsrycI6__KzwyiYJbytejQtTs + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_ORD 90 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_ORD_STR_SORTABLE 00090 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_REQUIRES_ORDS \ + 82, /* /soc/flash-controller@60002000/flash@0/partitions */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_EXISTS 1 +#define DT_N_NODELABEL_slot1_lpcore_partition DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_REG_IDX_0_VAL_ADDRESS 3833856 /* 0x3a8000 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_REG_IDX_0_VAL_SIZE 32768 /* 0x8000 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_FOREACH_REG(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_PINCTRL_NUM 0 + +/* fixed-partitions identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_PARTITION_ID 7 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_P_label "image-1-lpcore" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_P_label_STRING_UNQUOTED image-1-lpcore +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_P_label_STRING_TOKEN image_1_lpcore +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_P_label_STRING_UPPER_TOKEN IMAGE_1_LPCORE +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_P_label_IDX_0 "image-1-lpcore" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_P_label_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000, label, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000, label, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_P_label_LEN 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_P_label_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_P_read_only 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_P_read_only_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_P_reg {3833856 /* 0x3a8000 */, 32768 /* 0x8000 */} +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_P_reg_IDX_0 3833856 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_P_reg_IDX_1 32768 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000_P_reg_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@60002000/flash@0/partitions/partition@3b0000 + * + * Node identifier: DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_PATH "/soc/flash-controller@60002000/flash@0/partitions/partition@3b0000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_FULL_NAME "partition@3b0000" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_FULL_NAME_UNQUOTED partition@3b0000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_FULL_NAME_TOKEN partition_3b0000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_FULL_NAME_UPPER_TOKEN PARTITION_3B0000 + +/* Node parent (/soc/flash-controller@60002000/flash@0/partitions) identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_PARENT DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_CHILD_IDX 8 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_FOREACH_NODELABEL(fn) fn(storage_partition) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_FOREACH_NODELABEL_VARGS(fn, ...) fn(storage_partition, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0) fn(DT_N_S_soc_S_flash_controller_60002000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_CHILD_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_HASH FwNzLzGEzQBAe3N4r3VO2x4UwK4rCMBOfdTATEQvVjM + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_ORD 91 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_ORD_STR_SORTABLE 00091 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_REQUIRES_ORDS \ + 82, /* /soc/flash-controller@60002000/flash@0/partitions */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_EXISTS 1 +#define DT_N_NODELABEL_storage_partition DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_REG_IDX_0_VAL_ADDRESS 3866624 /* 0x3b0000 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_REG_IDX_0_VAL_SIZE 196608 /* 0x30000 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_FOREACH_REG(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_PINCTRL_NUM 0 + +/* fixed-partitions identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_PARTITION_ID 8 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_P_label "storage" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_P_label_STRING_UNQUOTED storage +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_P_label_STRING_TOKEN storage +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_P_label_STRING_UPPER_TOKEN STORAGE +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_P_label_IDX_0 "storage" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_P_label_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000, label, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000, label, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_P_label_LEN 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_P_label_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_P_read_only 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_P_read_only_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_P_reg {3866624 /* 0x3b0000 */, 196608 /* 0x30000 */} +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_P_reg_IDX_0 3866624 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_P_reg_IDX_1 196608 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000_P_reg_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@60002000/flash@0/partitions/partition@3e0000 + * + * Node identifier: DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_PATH "/soc/flash-controller@60002000/flash@0/partitions/partition@3e0000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_FULL_NAME "partition@3e0000" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_FULL_NAME_UNQUOTED partition@3e0000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_FULL_NAME_TOKEN partition_3e0000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_FULL_NAME_UPPER_TOKEN PARTITION_3E0000 + +/* Node parent (/soc/flash-controller@60002000/flash@0/partitions) identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_PARENT DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_CHILD_IDX 9 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_FOREACH_NODELABEL(fn) fn(scratch_partition) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_FOREACH_NODELABEL_VARGS(fn, ...) fn(scratch_partition, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0) fn(DT_N_S_soc_S_flash_controller_60002000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_CHILD_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_HASH x1ZlLZHhfqkhNm59vRztuqo3qPs7ruj_uO7YXxbgDRI + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_ORD 92 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_ORD_STR_SORTABLE 00092 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_REQUIRES_ORDS \ + 82, /* /soc/flash-controller@60002000/flash@0/partitions */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_EXISTS 1 +#define DT_N_NODELABEL_scratch_partition DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_REG_IDX_0_VAL_ADDRESS 4063232 /* 0x3e0000 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_REG_IDX_0_VAL_SIZE 126976 /* 0x1f000 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_FOREACH_REG(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_PINCTRL_NUM 0 + +/* fixed-partitions identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_PARTITION_ID 9 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_P_label "image-scratch" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_P_label_STRING_UNQUOTED image-scratch +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_P_label_STRING_TOKEN image_scratch +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_P_label_STRING_UPPER_TOKEN IMAGE_SCRATCH +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_P_label_IDX_0 "image-scratch" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_P_label_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000, label, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000, label, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_P_label_LEN 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_P_label_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_P_read_only 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_P_read_only_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_P_reg {4063232 /* 0x3e0000 */, 126976 /* 0x1f000 */} +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_P_reg_IDX_0 4063232 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_P_reg_IDX_1 126976 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000_P_reg_EXISTS 1 + +/* + * Devicetree node: /soc/flash-controller@60002000/flash@0/partitions/partition@3ff000 + * + * Node identifier: DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000 + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_PATH "/soc/flash-controller@60002000/flash@0/partitions/partition@3ff000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_FULL_NAME "partition@3ff000" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_FULL_NAME_UNQUOTED partition@3ff000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_FULL_NAME_TOKEN partition_3ff000 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_FULL_NAME_UPPER_TOKEN PARTITION_3FF000 + +/* Node parent (/soc/flash-controller@60002000/flash@0/partitions) identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_PARENT DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_CHILD_IDX 10 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_FOREACH_NODELABEL(fn) fn(coredump_partition) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_FOREACH_NODELABEL_VARGS(fn, ...) fn(coredump_partition, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0) fn(DT_N_S_soc_S_flash_controller_60002000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_CHILD_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_HASH 2bpF1B_hYyCbTR1o1QejsFP72ANPsszTta3EJTOEFFU + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_ORD 93 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_ORD_STR_SORTABLE 00093 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_REQUIRES_ORDS \ + 82, /* /soc/flash-controller@60002000/flash@0/partitions */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_EXISTS 1 +#define DT_N_NODELABEL_coredump_partition DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_REG_NUM 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_REG_IDX_0_VAL_ADDRESS 4190208 /* 0x3ff000 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_FOREACH_REG(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_RANGES_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_IRQ_NUM 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_PINCTRL_NUM 0 + +/* fixed-partitions identifier: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_PARTITION_ID 10 + +/* Generic property macros: */ +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_P_label "coredump" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_P_label_STRING_UNQUOTED coredump +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_P_label_STRING_TOKEN coredump +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_P_label_STRING_UPPER_TOKEN COREDUMP +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_P_label_IDX_0 "coredump" +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_P_label_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_P_label_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000, label, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_P_label_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000, label, 0) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_P_label_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_P_label_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000, label, 0, __VA_ARGS__) +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_P_label_LEN 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_P_label_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_P_read_only 0 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_P_read_only_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_P_reg {4190208 /* 0x3ff000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_P_reg_IDX_0 4190208 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000_P_reg_EXISTS 1 + +/* + * Devicetree node: /soc/gpio/gpio@60004800 + * + * Node identifier: DT_N_S_soc_S_gpio_S_gpio_60004800 + * + * Binding (compatible = espressif,esp32-gpio): + * $ZEPHYR_BASE/dts/bindings/gpio/espressif,esp32-gpio.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004800_PATH "/soc/gpio/gpio@60004800" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004800_FULL_NAME "gpio@60004800" +#define DT_N_S_soc_S_gpio_S_gpio_60004800_FULL_NAME_UNQUOTED gpio@60004800 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_FULL_NAME_TOKEN gpio_60004800 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_FULL_NAME_UPPER_TOKEN GPIO_60004800 + +/* Node parent (/soc/gpio) identifier: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004800_PARENT DT_N_S_soc_S_gpio + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004800_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004800_NODELABEL_NUM 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_FOREACH_NODELABEL(fn) fn(gpio1) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_FOREACH_NODELABEL_VARGS(fn, ...) fn(gpio1, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_gpio) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_gpio_S_gpio_60004800_CHILD_NUM 0 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004800_HASH tkds8hEbm4oeIpnghhwVoKJPakkp8n6NOFephgEpHvo + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004800_ORD 94 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_ORD_STR_SORTABLE 00094 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004800_REQUIRES_ORDS \ + 13, /* /soc/gpio */ \ + 14, /* /soc/interrupt-controller@600c2000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004800_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004800_EXISTS 1 +#define DT_N_INST_1_espressif_esp32_gpio DT_N_S_soc_S_gpio_S_gpio_60004800 +#define DT_N_NODELABEL_gpio1 DT_N_S_soc_S_gpio_S_gpio_60004800 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004800_REG_NUM 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_REG_IDX_0_VAL_ADDRESS 1610631168 /* 0x60004800 */ +#define DT_N_S_soc_S_gpio_S_gpio_60004800_REG_IDX_0_VAL_SIZE 2048 /* 0x800 */ +#define DT_N_S_soc_S_gpio_S_gpio_60004800_FOREACH_REG(fn) fn(DT_N_S_soc_S_gpio_S_gpio_60004800, 0) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_gpio_S_gpio_60004800, 0) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_gpio_S_gpio_60004800, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_gpio_S_gpio_60004800, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_RANGES_NUM 0 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_IRQ_NUM 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_IRQ_IDX_0_VAL_irq 16 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_IRQ_LEVEL 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_COMPAT_MATCHES_espressif_esp32_gpio 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_gpio_S_gpio_60004800_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_COMPAT_MODEL_IDX_0 "esp32-gpio" +#define DT_N_S_soc_S_gpio_S_gpio_60004800_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004800_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_reg {1610631168 /* 0x60004800 */, 2048 /* 0x800 */} +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_reg_IDX_0 1610631168 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_reg_IDX_1 2048 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_reg_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_gpio_controller 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_gpio_controller_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_ngpios 22 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_ngpios_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_status "okay" +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_gpio_S_gpio_60004800, status, 0) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_gpio_S_gpio_60004800, status, 0) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_gpio_S_gpio_60004800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_gpio_S_gpio_60004800, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_status_LEN 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_status_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_compatible {"espressif,esp32-gpio"} +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_compatible_IDX_0 "espressif,esp32-gpio" +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-gpio +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_gpio +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_GPIO +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_gpio_S_gpio_60004800, compatible, 0) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_gpio_S_gpio_60004800, compatible, 0) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_gpio_S_gpio_60004800, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_gpio_S_gpio_60004800, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_compatible_LEN 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_interrupts {16 /* 0x10 */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_interrupts_IDX_0 16 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_gpio_S_gpio_60004800, interrupt_parent, 0) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_gpio_S_gpio_60004800, interrupt_parent, 0) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_gpio_S_gpio_60004800, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_gpio_S_gpio_60004800, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_wakeup_source 0 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_gpio_S_gpio_60004800_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/lcd_cam@60041000 + * + * Node identifier: DT_N_S_soc_S_lcd_cam_60041000 + * + * Binding (compatible = espressif,esp32-lcd-cam): + * $ZEPHYR_BASE/dts/bindings/misc/espressif,esp32-lcd-cam.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_lcd_cam_60041000_PATH "/soc/lcd_cam@60041000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_lcd_cam_60041000_FULL_NAME "lcd_cam@60041000" +#define DT_N_S_soc_S_lcd_cam_60041000_FULL_NAME_UNQUOTED lcd_cam@60041000 +#define DT_N_S_soc_S_lcd_cam_60041000_FULL_NAME_TOKEN lcd_cam_60041000 +#define DT_N_S_soc_S_lcd_cam_60041000_FULL_NAME_UPPER_TOKEN LCD_CAM_60041000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_lcd_cam_60041000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_lcd_cam_60041000_CHILD_IDX 30 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_lcd_cam_60041000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_lcd_cam_60041000_FOREACH_NODELABEL(fn) fn(lcd_cam) +#define DT_N_S_soc_S_lcd_cam_60041000_FOREACH_NODELABEL_VARGS(fn, ...) fn(lcd_cam, __VA_ARGS__) +#define DT_N_S_soc_S_lcd_cam_60041000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_lcd_cam_60041000_CHILD_NUM 2 +#define DT_N_S_soc_S_lcd_cam_60041000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_lcd_cam_60041000_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp) fn(DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp) +#define DT_N_S_soc_S_lcd_cam_60041000_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp) +#define DT_N_S_soc_S_lcd_cam_60041000_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp, __VA_ARGS__) fn(DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp, __VA_ARGS__) +#define DT_N_S_soc_S_lcd_cam_60041000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp, __VA_ARGS__) +#define DT_N_S_soc_S_lcd_cam_60041000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_lcd_cam_60041000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_lcd_cam_60041000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_lcd_cam_60041000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_lcd_cam_60041000_HASH xfgRleDgbzEuPVZEMcIidCarjrzyGwvfZGB4rFHc0E4 + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_lcd_cam_60041000_ORD 95 +#define DT_N_S_soc_S_lcd_cam_60041000_ORD_STR_SORTABLE 00095 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_lcd_cam_60041000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 34, /* /clock */ \ + 42, /* /soc/dma@6003f000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_lcd_cam_60041000_SUPPORTS_ORDS \ + 96, /* /soc/lcd_cam@60041000/lcd_cam_disp */ \ + 97, /* /soc/lcd_cam@60041000/lcd_cam_dvp */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_lcd_cam_60041000_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_lcd_cam DT_N_S_soc_S_lcd_cam_60041000 +#define DT_N_NODELABEL_lcd_cam DT_N_S_soc_S_lcd_cam_60041000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_lcd_cam_60041000_REG_NUM 1 +#define DT_N_S_soc_S_lcd_cam_60041000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_REG_IDX_0_VAL_ADDRESS 1610878976 /* 0x60041000 */ +#define DT_N_S_soc_S_lcd_cam_60041000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_lcd_cam_60041000_FOREACH_REG(fn) fn(DT_N_S_soc_S_lcd_cam_60041000, 0) +#define DT_N_S_soc_S_lcd_cam_60041000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_lcd_cam_60041000, 0) +#define DT_N_S_soc_S_lcd_cam_60041000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_lcd_cam_60041000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_lcd_cam_60041000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_lcd_cam_60041000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_lcd_cam_60041000_RANGES_NUM 0 +#define DT_N_S_soc_S_lcd_cam_60041000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_lcd_cam_60041000_IRQ_NUM 1 +#define DT_N_S_soc_S_lcd_cam_60041000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_IRQ_IDX_0_VAL_irq 24 +#define DT_N_S_soc_S_lcd_cam_60041000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_lcd_cam_60041000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_lcd_cam_60041000_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_lcd_cam_60041000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_lcd_cam_60041000_COMPAT_MATCHES_espressif_esp32_lcd_cam 1 +#define DT_N_S_soc_S_lcd_cam_60041000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_lcd_cam_60041000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_COMPAT_MODEL_IDX_0 "esp32-lcd-cam" +#define DT_N_S_soc_S_lcd_cam_60041000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_lcd_cam_60041000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_lcd_cam_60041000_P_compatible {"espressif,esp32-lcd-cam"} +#define DT_N_S_soc_S_lcd_cam_60041000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_compatible_IDX_0 "espressif,esp32-lcd-cam" +#define DT_N_S_soc_S_lcd_cam_60041000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-lcd-cam +#define DT_N_S_soc_S_lcd_cam_60041000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_lcd_cam +#define DT_N_S_soc_S_lcd_cam_60041000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_LCD_CAM +#define DT_N_S_soc_S_lcd_cam_60041000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_lcd_cam_60041000, compatible, 0) +#define DT_N_S_soc_S_lcd_cam_60041000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_lcd_cam_60041000, compatible, 0) +#define DT_N_S_soc_S_lcd_cam_60041000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_lcd_cam_60041000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_lcd_cam_60041000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_lcd_cam_60041000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_lcd_cam_60041000_P_compatible_LEN 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_reg {1610878976 /* 0x60041000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_lcd_cam_60041000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_reg_IDX_0 1610878976 +#define DT_N_S_soc_S_lcd_cam_60041000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_lcd_cam_60041000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_interrupts {24 /* 0x18 */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_lcd_cam_60041000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_interrupts_IDX_0 24 +#define DT_N_S_soc_S_lcd_cam_60041000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_lcd_cam_60041000_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_lcd_cam_60041000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_lcd_cam_60041000_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_lcd_cam_60041000_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_lcd_cam_60041000_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_lcd_cam_60041000, interrupt_parent, 0) +#define DT_N_S_soc_S_lcd_cam_60041000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_lcd_cam_60041000, interrupt_parent, 0) +#define DT_N_S_soc_S_lcd_cam_60041000_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_lcd_cam_60041000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_lcd_cam_60041000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_lcd_cam_60041000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_lcd_cam_60041000_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_lcd_cam_60041000_P_clocks_IDX_0_VAL_offset 2 +#define DT_N_S_soc_S_lcd_cam_60041000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_lcd_cam_60041000, clocks, 0, offset) +#define DT_N_S_soc_S_lcd_cam_60041000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_lcd_cam_60041000, clocks, 0, offset) +#define DT_N_S_soc_S_lcd_cam_60041000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_lcd_cam_60041000, clocks, 0) +#define DT_N_S_soc_S_lcd_cam_60041000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_lcd_cam_60041000, clocks, 0) +#define DT_N_S_soc_S_lcd_cam_60041000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_lcd_cam_60041000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_lcd_cam_60041000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_lcd_cam_60041000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_lcd_cam_60041000_P_clocks_LEN 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_IDX_0_PH DT_N_S_soc_S_dma_6003f000 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_IDX_0_VAL_channel 6 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_IDX_0_VAL_channel_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_lcd_cam_60041000, dmas, 0, channel) +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_lcd_cam_60041000, dmas, 0, channel) +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_IDX_0_NAME "rx" +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_NAME_rx_IDX 0 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_NAME_rx_FOREACH_CELL(fn) fn(DT_N_S_soc_S_lcd_cam_60041000, dmas, rx, channel) +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_NAME_rx_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_lcd_cam_60041000, dmas, rx, channel) +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_NAME_rx_NUM_CELLS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_NAME_rx_PH DT_N_S_soc_S_dma_6003f000 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_NAME_rx_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_NAME_rx_VAL_channel DT_N_S_soc_S_lcd_cam_60041000_P_dmas_IDX_0_VAL_channel +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_NAME_rx_VAL_channel_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_IDX_1_PH DT_N_S_soc_S_dma_6003f000 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_IDX_1_VAL_channel 7 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_IDX_1_VAL_channel_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_IDX_1_FOREACH_CELL(fn) fn(DT_N_S_soc_S_lcd_cam_60041000, dmas, 1, channel) +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_IDX_1_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_lcd_cam_60041000, dmas, 1, channel) +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_IDX_1_NUM_CELLS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_IDX_1_NAME "tx" +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_NAME_tx_IDX 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_NAME_tx_FOREACH_CELL(fn) fn(DT_N_S_soc_S_lcd_cam_60041000, dmas, tx, channel) +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_NAME_tx_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_lcd_cam_60041000, dmas, tx, channel) +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_NAME_tx_NUM_CELLS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_NAME_tx_PH DT_N_S_soc_S_dma_6003f000 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_NAME_tx_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_NAME_tx_VAL_channel DT_N_S_soc_S_lcd_cam_60041000_P_dmas_IDX_1_VAL_channel +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_NAME_tx_VAL_channel_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_lcd_cam_60041000, dmas, 0) \ + fn(DT_N_S_soc_S_lcd_cam_60041000, dmas, 1) +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_lcd_cam_60041000, dmas, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_lcd_cam_60041000, dmas, 1) +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_lcd_cam_60041000, dmas, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_lcd_cam_60041000, dmas, 1, __VA_ARGS__) +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_lcd_cam_60041000, dmas, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_lcd_cam_60041000, dmas, 1, __VA_ARGS__) +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_LEN 2 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dmas_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dma_names {"rx", "tx"} +#define DT_N_S_soc_S_lcd_cam_60041000_P_dma_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dma_names_IDX_0 "rx" +#define DT_N_S_soc_S_lcd_cam_60041000_P_dma_names_IDX_0_STRING_UNQUOTED rx +#define DT_N_S_soc_S_lcd_cam_60041000_P_dma_names_IDX_0_STRING_TOKEN rx +#define DT_N_S_soc_S_lcd_cam_60041000_P_dma_names_IDX_0_STRING_UPPER_TOKEN RX +#define DT_N_S_soc_S_lcd_cam_60041000_P_dma_names_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dma_names_IDX_1 "tx" +#define DT_N_S_soc_S_lcd_cam_60041000_P_dma_names_IDX_1_STRING_UNQUOTED tx +#define DT_N_S_soc_S_lcd_cam_60041000_P_dma_names_IDX_1_STRING_TOKEN tx +#define DT_N_S_soc_S_lcd_cam_60041000_P_dma_names_IDX_1_STRING_UPPER_TOKEN TX +#define DT_N_S_soc_S_lcd_cam_60041000_P_dma_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_lcd_cam_60041000, dma_names, 0) \ + fn(DT_N_S_soc_S_lcd_cam_60041000, dma_names, 1) +#define DT_N_S_soc_S_lcd_cam_60041000_P_dma_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_lcd_cam_60041000, dma_names, 0) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_lcd_cam_60041000, dma_names, 1) +#define DT_N_S_soc_S_lcd_cam_60041000_P_dma_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_lcd_cam_60041000, dma_names, 0, __VA_ARGS__) \ + fn(DT_N_S_soc_S_lcd_cam_60041000, dma_names, 1, __VA_ARGS__) +#define DT_N_S_soc_S_lcd_cam_60041000_P_dma_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_lcd_cam_60041000, dma_names, 0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_lcd_cam_60041000, dma_names, 1, __VA_ARGS__) +#define DT_N_S_soc_S_lcd_cam_60041000_P_dma_names_LEN 2 +#define DT_N_S_soc_S_lcd_cam_60041000_P_dma_names_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_lcd_cam_60041000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_wakeup_source 0 +#define DT_N_S_soc_S_lcd_cam_60041000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_lcd_cam_60041000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/lcd_cam@60041000/lcd_cam_disp + * + * Node identifier: DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp + * + * Binding (compatible = espressif,esp32-lcd-cam-mipi-dbi): + * $ZEPHYR_BASE/dts/bindings/mipi-dbi/espressif,esp32-lcd-cam-mipi-dbi.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_PATH "/soc/lcd_cam@60041000/lcd_cam_disp" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_FULL_NAME "lcd_cam_disp" +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_FULL_NAME_UNQUOTED lcd_cam_disp +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_FULL_NAME_TOKEN lcd_cam_disp +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_FULL_NAME_UPPER_TOKEN LCD_CAM_DISP + +/* Node parent (/soc/lcd_cam@60041000) identifier: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_PARENT DT_N_S_soc_S_lcd_cam_60041000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_NODELABEL_NUM 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_FOREACH_NODELABEL(fn) fn(lcd_cam_disp) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_FOREACH_NODELABEL_VARGS(fn, ...) fn(lcd_cam_disp, __VA_ARGS__) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_lcd_cam_60041000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_CHILD_NUM 0 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_HASH FA6kZQBIwJ48c14hSuUIt8V8fwVUiZAmxv2sQ5C0P7s + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_ORD 96 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_ORD_STR_SORTABLE 00096 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_REQUIRES_ORDS \ + 95, /* /soc/lcd_cam@60041000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_lcd_cam_mipi_dbi DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp +#define DT_N_NODELABEL_lcd_cam_disp DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_REG_NUM 0 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_FOREACH_REG(fn) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_RANGES_NUM 0 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_IRQ_NUM 0 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_IRQ_LEVEL 0 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_COMPAT_MATCHES_espressif_esp32_lcd_cam_mipi_dbi 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_COMPAT_MODEL_IDX_0 "esp32-lcd-cam-mipi-dbi" +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_status "disabled" +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp, status, 0) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp, status, 0) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_status_LEN 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_status_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_compatible {"espressif,esp32-lcd-cam-mipi-dbi"} +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_compatible_IDX_0 "espressif,esp32-lcd-cam-mipi-dbi" +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-lcd-cam-mipi-dbi +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_lcd_cam_mipi_dbi +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_LCD_CAM_MIPI_DBI +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp, compatible, 0) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp, compatible, 0) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_compatible_LEN 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_wakeup_source 0 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/lcd_cam@60041000/lcd_cam_dvp + * + * Node identifier: DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp + * + * Binding (compatible = espressif,esp32-lcd-cam-dvp): + * $ZEPHYR_BASE/dts/bindings/video/espressif,esp32-lcd-cam-dvp.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_PATH "/soc/lcd_cam@60041000/lcd_cam_dvp" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_FULL_NAME "lcd_cam_dvp" +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_FULL_NAME_UNQUOTED lcd_cam_dvp +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_FULL_NAME_TOKEN lcd_cam_dvp +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_FULL_NAME_UPPER_TOKEN LCD_CAM_DVP + +/* Node parent (/soc/lcd_cam@60041000) identifier: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_PARENT DT_N_S_soc_S_lcd_cam_60041000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_NODELABEL_NUM 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_FOREACH_NODELABEL(fn) fn(lcd_cam_dvp) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_FOREACH_NODELABEL_VARGS(fn, ...) fn(lcd_cam_dvp, __VA_ARGS__) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_lcd_cam_60041000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_CHILD_NUM 0 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_HASH c101Gy_c3FK_chPw75ej7q85cTtSUu4pqKpwTOsHZPM + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_ORD 97 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_ORD_STR_SORTABLE 00097 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_REQUIRES_ORDS \ + 95, /* /soc/lcd_cam@60041000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_lcd_cam_dvp DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp +#define DT_N_NODELABEL_lcd_cam_dvp DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_REG_NUM 0 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_FOREACH_REG(fn) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_RANGES_NUM 0 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_IRQ_NUM 0 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_IRQ_LEVEL 0 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_COMPAT_MATCHES_espressif_esp32_lcd_cam_dvp 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_COMPAT_MODEL_IDX_0 "esp32-lcd-cam-dvp" +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_P_invert_byte_order 0 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_P_invert_byte_order_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_P_invert_bit_order 0 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_P_invert_bit_order_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_P_invert_pclk 0 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_P_invert_pclk_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_P_invert_de 0 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_P_invert_de_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_P_invert_hsync 0 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_P_invert_hsync_EXISTS 1 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_P_invert_vsync 0 +#define DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp_P_invert_vsync_EXISTS 1 + +/* + * Devicetree node: /soc/memory@3c000000 + * + * Node identifier: DT_N_S_soc_S_memory_3c000000 + * + * Binding (compatible = zephyr,memory-region): + * $ZEPHYR_BASE/dts/bindings/base/zephyr,memory-region.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_memory_3c000000_PATH "/soc/memory@3c000000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_memory_3c000000_FULL_NAME "memory@3c000000" +#define DT_N_S_soc_S_memory_3c000000_FULL_NAME_UNQUOTED memory@3c000000 +#define DT_N_S_soc_S_memory_3c000000_FULL_NAME_TOKEN memory_3c000000 +#define DT_N_S_soc_S_memory_3c000000_FULL_NAME_UPPER_TOKEN MEMORY_3C000000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_memory_3c000000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_memory_3c000000_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_memory_3c000000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_memory_3c000000_FOREACH_NODELABEL(fn) fn(dcache0) +#define DT_N_S_soc_S_memory_3c000000_FOREACH_NODELABEL_VARGS(fn, ...) fn(dcache0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3c000000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_memory_3c000000_CHILD_NUM 1 +#define DT_N_S_soc_S_memory_3c000000_CHILD_NUM_STATUS_OKAY 1 +#define DT_N_S_soc_S_memory_3c000000_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_memory_3c000000_S_psram0) +#define DT_N_S_soc_S_memory_3c000000_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_memory_3c000000_S_psram0) +#define DT_N_S_soc_S_memory_3c000000_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_3c000000_S_psram0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3c000000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_3c000000_S_psram0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3c000000_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_soc_S_memory_3c000000_S_psram0) +#define DT_N_S_soc_S_memory_3c000000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_soc_S_memory_3c000000_S_psram0) +#define DT_N_S_soc_S_memory_3c000000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_3c000000_S_psram0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3c000000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_3c000000_S_psram0, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_soc_S_memory_3c000000_HASH jrd5_8sYqBEpYXXIJHTi5X75qQEPgADmOuXc2NGPHNQ + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_memory_3c000000_ORD 98 +#define DT_N_S_soc_S_memory_3c000000_ORD_STR_SORTABLE 00098 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_memory_3c000000_REQUIRES_ORDS \ + 12, /* /soc */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_memory_3c000000_SUPPORTS_ORDS \ + 99, /* /soc/memory@3c000000/psram0 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_memory_3c000000_EXISTS 1 +#define DT_N_INST_1_zephyr_memory_region DT_N_S_soc_S_memory_3c000000 +#define DT_N_NODELABEL_dcache0 DT_N_S_soc_S_memory_3c000000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_memory_3c000000_REG_NUM 1 +#define DT_N_S_soc_S_memory_3c000000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3c000000_REG_IDX_0_VAL_ADDRESS 1006632960 /* 0x3c000000 */ +#define DT_N_S_soc_S_memory_3c000000_REG_IDX_0_VAL_SIZE 33554432 /* 0x2000000 */ +#define DT_N_S_soc_S_memory_3c000000_FOREACH_REG(fn) fn(DT_N_S_soc_S_memory_3c000000, 0) +#define DT_N_S_soc_S_memory_3c000000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_memory_3c000000, 0) +#define DT_N_S_soc_S_memory_3c000000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_3c000000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3c000000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_3c000000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3c000000_RANGES_NUM 0 +#define DT_N_S_soc_S_memory_3c000000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_memory_3c000000_IRQ_NUM 0 +#define DT_N_S_soc_S_memory_3c000000_IRQ_LEVEL 0 +#define DT_N_S_soc_S_memory_3c000000_COMPAT_MATCHES_zephyr_memory_region 1 +#define DT_N_S_soc_S_memory_3c000000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3c000000_COMPAT_VENDOR_IDX_0 "Zephyr Project" +#define DT_N_S_soc_S_memory_3c000000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3c000000_COMPAT_MODEL_IDX_0 "memory-region" +#define DT_N_S_soc_S_memory_3c000000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_memory_3c000000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_memory_3c000000_P_zephyr_memory_region "DCACHE0" +#define DT_N_S_soc_S_memory_3c000000_P_zephyr_memory_region_STRING_UNQUOTED DCACHE0 +#define DT_N_S_soc_S_memory_3c000000_P_zephyr_memory_region_STRING_TOKEN DCACHE0 +#define DT_N_S_soc_S_memory_3c000000_P_zephyr_memory_region_STRING_UPPER_TOKEN DCACHE0 +#define DT_N_S_soc_S_memory_3c000000_P_zephyr_memory_region_IDX_0 "DCACHE0" +#define DT_N_S_soc_S_memory_3c000000_P_zephyr_memory_region_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3c000000_P_zephyr_memory_region_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_memory_3c000000, zephyr_memory_region, 0) +#define DT_N_S_soc_S_memory_3c000000_P_zephyr_memory_region_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_memory_3c000000, zephyr_memory_region, 0) +#define DT_N_S_soc_S_memory_3c000000_P_zephyr_memory_region_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_3c000000, zephyr_memory_region, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3c000000_P_zephyr_memory_region_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_3c000000, zephyr_memory_region, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3c000000_P_zephyr_memory_region_LEN 1 +#define DT_N_S_soc_S_memory_3c000000_P_zephyr_memory_region_EXISTS 1 +#define DT_N_S_soc_S_memory_3c000000_P_compatible {"zephyr,memory-region"} +#define DT_N_S_soc_S_memory_3c000000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3c000000_P_compatible_IDX_0 "zephyr,memory-region" +#define DT_N_S_soc_S_memory_3c000000_P_compatible_IDX_0_STRING_UNQUOTED zephyr,memory-region +#define DT_N_S_soc_S_memory_3c000000_P_compatible_IDX_0_STRING_TOKEN zephyr_memory_region +#define DT_N_S_soc_S_memory_3c000000_P_compatible_IDX_0_STRING_UPPER_TOKEN ZEPHYR_MEMORY_REGION +#define DT_N_S_soc_S_memory_3c000000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_memory_3c000000, compatible, 0) +#define DT_N_S_soc_S_memory_3c000000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_memory_3c000000, compatible, 0) +#define DT_N_S_soc_S_memory_3c000000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_3c000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3c000000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_3c000000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3c000000_P_compatible_LEN 1 +#define DT_N_S_soc_S_memory_3c000000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_memory_3c000000_P_reg {1006632960 /* 0x3c000000 */, 33554432 /* 0x2000000 */} +#define DT_N_S_soc_S_memory_3c000000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3c000000_P_reg_IDX_0 1006632960 +#define DT_N_S_soc_S_memory_3c000000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_memory_3c000000_P_reg_IDX_1 33554432 +#define DT_N_S_soc_S_memory_3c000000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_memory_3c000000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_memory_3c000000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_memory_3c000000_P_wakeup_source 0 +#define DT_N_S_soc_S_memory_3c000000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_memory_3c000000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_memory_3c000000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/memory@3c000000/psram0 + * + * Node identifier: DT_N_S_soc_S_memory_3c000000_S_psram0 + * + * Binding (compatible = espressif,esp32-psram): + * $ZEPHYR_BASE/dts/bindings/memory-controllers/espressif,esp32-psram.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_memory_3c000000_S_psram0_PATH "/soc/memory@3c000000/psram0" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_memory_3c000000_S_psram0_FULL_NAME "psram0" +#define DT_N_S_soc_S_memory_3c000000_S_psram0_FULL_NAME_UNQUOTED psram0 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_FULL_NAME_TOKEN psram0 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_FULL_NAME_UPPER_TOKEN PSRAM0 + +/* Node parent (/soc/memory@3c000000) identifier: */ +#define DT_N_S_soc_S_memory_3c000000_S_psram0_PARENT DT_N_S_soc_S_memory_3c000000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_memory_3c000000_S_psram0_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_memory_3c000000_S_psram0_NODELABEL_NUM 1 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_FOREACH_NODELABEL(fn) fn(psram0) +#define DT_N_S_soc_S_memory_3c000000_S_psram0_FOREACH_NODELABEL_VARGS(fn, ...) fn(psram0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3c000000_S_psram0_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_memory_3c000000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_memory_3c000000_S_psram0_CHILD_NUM 0 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_memory_3c000000_S_psram0_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_memory_3c000000_S_psram0_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_memory_3c000000_S_psram0_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_memory_3c000000_S_psram0_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_memory_3c000000_S_psram0_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_memory_3c000000_S_psram0_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_memory_3c000000_S_psram0_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_memory_3c000000_S_psram0_HASH Mf0fUfdBFggNOZ4s_rnJO9oqoFNzpvQPdJXAViY8TDc + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_memory_3c000000_S_psram0_ORD 99 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_ORD_STR_SORTABLE 00099 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_memory_3c000000_S_psram0_REQUIRES_ORDS \ + 98, /* /soc/memory@3c000000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_memory_3c000000_S_psram0_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_memory_3c000000_S_psram0_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_psram DT_N_S_soc_S_memory_3c000000_S_psram0 +#define DT_N_NODELABEL_psram0 DT_N_S_soc_S_memory_3c000000_S_psram0 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_memory_3c000000_S_psram0_REG_NUM 0 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_FOREACH_REG(fn) +#define DT_N_S_soc_S_memory_3c000000_S_psram0_FOREACH_REG_SEP(fn, sep) +#define DT_N_S_soc_S_memory_3c000000_S_psram0_FOREACH_REG_VARGS(fn, ...) +#define DT_N_S_soc_S_memory_3c000000_S_psram0_FOREACH_REG_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_memory_3c000000_S_psram0_RANGES_NUM 0 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_memory_3c000000_S_psram0_IRQ_NUM 0 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_IRQ_LEVEL 0 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_COMPAT_MATCHES_espressif_esp32_psram 1 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_memory_3c000000_S_psram0_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_COMPAT_MODEL_IDX_0 "esp32-psram" +#define DT_N_S_soc_S_memory_3c000000_S_psram0_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_memory_3c000000_S_psram0_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_memory_3c000000_S_psram0_P_size 8388608 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_P_size_EXISTS 1 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_P_compatible {"espressif,esp32-psram"} +#define DT_N_S_soc_S_memory_3c000000_S_psram0_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_P_compatible_IDX_0 "espressif,esp32-psram" +#define DT_N_S_soc_S_memory_3c000000_S_psram0_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-psram +#define DT_N_S_soc_S_memory_3c000000_S_psram0_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_psram +#define DT_N_S_soc_S_memory_3c000000_S_psram0_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_PSRAM +#define DT_N_S_soc_S_memory_3c000000_S_psram0_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_memory_3c000000_S_psram0, compatible, 0) +#define DT_N_S_soc_S_memory_3c000000_S_psram0_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_memory_3c000000_S_psram0, compatible, 0) +#define DT_N_S_soc_S_memory_3c000000_S_psram0_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_memory_3c000000_S_psram0, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3c000000_S_psram0_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_memory_3c000000_S_psram0, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_memory_3c000000_S_psram0_P_compatible_LEN 1 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_P_wakeup_source 0 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_memory_3c000000_S_psram0_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/sdhc@60028000 + * + * Node identifier: DT_N_S_soc_S_sdhc_60028000 + * + * Binding (compatible = espressif,esp32-sdhc): + * $ZEPHYR_BASE/dts/bindings/sdhc/espressif,esp32-sdhc.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_sdhc_60028000_PATH "/soc/sdhc@60028000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_sdhc_60028000_FULL_NAME "sdhc@60028000" +#define DT_N_S_soc_S_sdhc_60028000_FULL_NAME_UNQUOTED sdhc@60028000 +#define DT_N_S_soc_S_sdhc_60028000_FULL_NAME_TOKEN sdhc_60028000 +#define DT_N_S_soc_S_sdhc_60028000_FULL_NAME_UPPER_TOKEN SDHC_60028000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_sdhc_60028000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_sdhc_60028000_CHILD_IDX 45 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_sdhc_60028000_NODELABEL_NUM 1 +#define DT_N_S_soc_S_sdhc_60028000_FOREACH_NODELABEL(fn) fn(sdhc) +#define DT_N_S_soc_S_sdhc_60028000_FOREACH_NODELABEL_VARGS(fn, ...) fn(sdhc, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_sdhc_60028000_CHILD_NUM 2 +#define DT_N_S_soc_S_sdhc_60028000_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_sdhc_60028000_CHILD_UNIT_ADDR_INT_0 DT_N_S_soc_S_sdhc_60028000_S_sdhc_0 +#define DT_N_S_soc_S_sdhc_60028000_CHILD_UNIT_ADDR_INT_1 DT_N_S_soc_S_sdhc_60028000_S_sdhc_1 +#define DT_N_S_soc_S_sdhc_60028000_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_0) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_1) +#define DT_N_S_soc_S_sdhc_60028000_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_0) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_1) +#define DT_N_S_soc_S_sdhc_60028000_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_0, __VA_ARGS__) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_1, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_0, __VA_ARGS__) DT_DEBRACKET_INTERNAL sep fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_1, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_sdhc_60028000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_sdhc_60028000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_sdhc_60028000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_sdhc_60028000_HASH WJtDE45zWV_jEwc5NTc5y16NyjYaQaA876gtLI8QBJQ + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_sdhc_60028000_ORD 100 +#define DT_N_S_soc_S_sdhc_60028000_ORD_STR_SORTABLE 00100 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_sdhc_60028000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_sdhc_60028000_SUPPORTS_ORDS \ + 101, /* /soc/sdhc@60028000/sdhc@0 */ \ + 102, /* /soc/sdhc@60028000/sdhc@1 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_sdhc_60028000_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_sdhc DT_N_S_soc_S_sdhc_60028000 +#define DT_N_NODELABEL_sdhc DT_N_S_soc_S_sdhc_60028000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_sdhc_60028000_REG_NUM 1 +#define DT_N_S_soc_S_sdhc_60028000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_REG_IDX_0_VAL_ADDRESS 1610776576 /* 0x60028000 */ +#define DT_N_S_soc_S_sdhc_60028000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_sdhc_60028000_FOREACH_REG(fn) fn(DT_N_S_soc_S_sdhc_60028000, 0) +#define DT_N_S_soc_S_sdhc_60028000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_sdhc_60028000, 0) +#define DT_N_S_soc_S_sdhc_60028000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_sdhc_60028000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_sdhc_60028000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_RANGES_NUM 0 +#define DT_N_S_soc_S_sdhc_60028000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_sdhc_60028000_IRQ_NUM 1 +#define DT_N_S_soc_S_sdhc_60028000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_IRQ_IDX_0_VAL_irq 30 +#define DT_N_S_soc_S_sdhc_60028000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_sdhc_60028000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_sdhc_60028000_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_sdhc_60028000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_sdhc_60028000_COMPAT_MATCHES_espressif_esp32_sdhc 1 +#define DT_N_S_soc_S_sdhc_60028000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_sdhc_60028000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_COMPAT_MODEL_IDX_0 "esp32-sdhc" +#define DT_N_S_soc_S_sdhc_60028000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_sdhc_60028000_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_sdhc_60028000_P_reg {1610776576 /* 0x60028000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_sdhc_60028000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_P_reg_IDX_0 1610776576 +#define DT_N_S_soc_S_sdhc_60028000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_sdhc_60028000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_P_interrupts {30 /* 0x1e */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_sdhc_60028000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_P_interrupts_IDX_0 30 +#define DT_N_S_soc_S_sdhc_60028000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_sdhc_60028000_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_sdhc_60028000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_P_compatible {"espressif,esp32-sdhc"} +#define DT_N_S_soc_S_sdhc_60028000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_P_compatible_IDX_0 "espressif,esp32-sdhc" +#define DT_N_S_soc_S_sdhc_60028000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-sdhc +#define DT_N_S_soc_S_sdhc_60028000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_sdhc +#define DT_N_S_soc_S_sdhc_60028000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_SDHC +#define DT_N_S_soc_S_sdhc_60028000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_sdhc_60028000, compatible, 0) +#define DT_N_S_soc_S_sdhc_60028000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_sdhc_60028000, compatible, 0) +#define DT_N_S_soc_S_sdhc_60028000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_sdhc_60028000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_sdhc_60028000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_P_compatible_LEN 1 +#define DT_N_S_soc_S_sdhc_60028000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_sdhc_60028000_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_sdhc_60028000_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_sdhc_60028000_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_sdhc_60028000, interrupt_parent, 0) +#define DT_N_S_soc_S_sdhc_60028000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_sdhc_60028000, interrupt_parent, 0) +#define DT_N_S_soc_S_sdhc_60028000_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_sdhc_60028000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_sdhc_60028000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_sdhc_60028000_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_sdhc_60028000_P_clocks_IDX_0_VAL_offset 117 +#define DT_N_S_soc_S_sdhc_60028000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_sdhc_60028000, clocks, 0, offset) +#define DT_N_S_soc_S_sdhc_60028000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_sdhc_60028000, clocks, 0, offset) +#define DT_N_S_soc_S_sdhc_60028000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_sdhc_60028000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_sdhc_60028000, clocks, 0) +#define DT_N_S_soc_S_sdhc_60028000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_sdhc_60028000, clocks, 0) +#define DT_N_S_soc_S_sdhc_60028000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_sdhc_60028000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_sdhc_60028000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_P_clocks_LEN 1 +#define DT_N_S_soc_S_sdhc_60028000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_sdhc_60028000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_P_wakeup_source 0 +#define DT_N_S_soc_S_sdhc_60028000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_sdhc_60028000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/sdhc@60028000/sdhc@0 + * + * Node identifier: DT_N_S_soc_S_sdhc_60028000_S_sdhc_0 + * + * Binding (compatible = espressif,esp32-sdhc-slot): + * $ZEPHYR_BASE/dts/bindings/sdhc/espressif,esp32-sdhc-slot.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_PATH "/soc/sdhc@60028000/sdhc@0" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_FULL_NAME "sdhc@0" +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_FULL_NAME_UNQUOTED sdhc@0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_FULL_NAME_TOKEN sdhc_0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_FULL_NAME_UPPER_TOKEN SDHC_0 + +/* Node parent (/soc/sdhc@60028000) identifier: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_PARENT DT_N_S_soc_S_sdhc_60028000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_NODELABEL_NUM 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_FOREACH_NODELABEL(fn) fn(sdhc0) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_FOREACH_NODELABEL_VARGS(fn, ...) fn(sdhc0, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_sdhc_60028000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_CHILD_NUM 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_HASH he1VhJo12kFC25I3bHsbaMju2U2hVQi6vxbE_SrflSE + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_ORD 101 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_ORD_STR_SORTABLE 00101 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_REQUIRES_ORDS \ + 100, /* /soc/sdhc@60028000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_sdhc_slot DT_N_S_soc_S_sdhc_60028000_S_sdhc_0 +#define DT_N_NODELABEL_sdhc0 DT_N_S_soc_S_sdhc_60028000_S_sdhc_0 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_REG_NUM 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_REG_IDX_0_VAL_ADDRESS 0 /* 0x0 */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_FOREACH_REG(fn) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_0, 0) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_0, 0) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_0, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_0, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_RANGES_NUM 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_IRQ_NUM 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_IRQ_LEVEL 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_COMPAT_MATCHES_espressif_esp32_sdhc_slot 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_COMPAT_MODEL_IDX_0 "esp32-sdhc-slot" +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_reg {0 /* 0x0 */} +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_reg_IDX_0 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_reg_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_bus_width 4 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_bus_width_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_bus_width_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_bus_width_IDX_0_ENUM_VAL_4_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_bus_width_ENUM_VAL_4_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_bus_width_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_max_current_330 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_max_current_330_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_max_current_300 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_max_current_300_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_max_current_180 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_max_current_180_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_max_bus_freq 400000 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_max_bus_freq_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_min_bus_freq 400000 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_min_bus_freq_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_power_delay_ms 500 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_power_delay_ms_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_mmc_hs200_1_8v 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_mmc_hs200_1_8v_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_mmc_hs400_1_8v 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_mmc_hs400_1_8v_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_status "disabled" +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_0, status, 0) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_0, status, 0) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_0, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_0, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_status_LEN 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_status_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_compatible {"espressif,esp32-sdhc-slot"} +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_compatible_IDX_0 "espressif,esp32-sdhc-slot" +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-sdhc-slot +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_sdhc_slot +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_SDHC_SLOT +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_0, compatible, 0) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_0, compatible, 0) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_0, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_0, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_compatible_LEN 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_wakeup_source 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_0_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/sdhc@60028000/sdhc@1 + * + * Node identifier: DT_N_S_soc_S_sdhc_60028000_S_sdhc_1 + * + * Binding (compatible = espressif,esp32-sdhc-slot): + * $ZEPHYR_BASE/dts/bindings/sdhc/espressif,esp32-sdhc-slot.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_PATH "/soc/sdhc@60028000/sdhc@1" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_FULL_NAME "sdhc@1" +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_FULL_NAME_UNQUOTED sdhc@1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_FULL_NAME_TOKEN sdhc_1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_FULL_NAME_UPPER_TOKEN SDHC_1 + +/* Node parent (/soc/sdhc@60028000) identifier: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_PARENT DT_N_S_soc_S_sdhc_60028000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_CHILD_IDX 1 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_NODELABEL_NUM 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_FOREACH_NODELABEL(fn) fn(sdhc1) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_FOREACH_NODELABEL_VARGS(fn, ...) fn(sdhc1, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_sdhc_60028000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_CHILD_NUM 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_HASH OGL36AVbkrJ6dOb6zg3yj9wHCe0Htuq2s5hJ9PP5L7M + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_ORD 102 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_ORD_STR_SORTABLE 00102 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_REQUIRES_ORDS \ + 100, /* /soc/sdhc@60028000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_EXISTS 1 +#define DT_N_INST_1_espressif_esp32_sdhc_slot DT_N_S_soc_S_sdhc_60028000_S_sdhc_1 +#define DT_N_NODELABEL_sdhc1 DT_N_S_soc_S_sdhc_60028000_S_sdhc_1 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_REG_NUM 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_REG_IDX_0_VAL_ADDRESS 1 /* 0x1 */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_FOREACH_REG(fn) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_1, 0) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_1, 0) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_1, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_1, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_RANGES_NUM 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_IRQ_NUM 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_IRQ_LEVEL 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_COMPAT_MATCHES_espressif_esp32_sdhc_slot 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_COMPAT_MODEL_IDX_0 "esp32-sdhc-slot" +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_STATUS_disabled 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_reg {1 /* 0x1 */} +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_reg_IDX_0 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_reg_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_bus_width 4 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_bus_width_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_bus_width_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_bus_width_IDX_0_ENUM_VAL_4_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_bus_width_ENUM_VAL_4_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_bus_width_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_max_current_330 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_max_current_330_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_max_current_300 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_max_current_300_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_max_current_180 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_max_current_180_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_max_bus_freq 400000 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_max_bus_freq_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_min_bus_freq 400000 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_min_bus_freq_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_power_delay_ms 500 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_power_delay_ms_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_mmc_hs200_1_8v 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_mmc_hs200_1_8v_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_mmc_hs400_1_8v 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_mmc_hs400_1_8v_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_status "disabled" +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_status_STRING_UNQUOTED disabled +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_status_STRING_TOKEN disabled +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_status_STRING_UPPER_TOKEN DISABLED +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_status_IDX_0 "disabled" +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_status_IDX_0_ENUM_IDX 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_status_IDX_0_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_status_ENUM_VAL_disabled_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_1, status, 0) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_1, status, 0) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_1, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_1, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_status_LEN 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_status_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_compatible {"espressif,esp32-sdhc-slot"} +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_compatible_IDX_0 "espressif,esp32-sdhc-slot" +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-sdhc-slot +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_sdhc_slot +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_SDHC_SLOT +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_1, compatible, 0) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_1, compatible, 0) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_1, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_1, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_compatible_LEN 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_wakeup_source 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_sdhc_60028000_S_sdhc_1_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/spi@60024000 + * + * Node identifier: DT_N_S_soc_S_spi_60024000 + * + * Binding (compatible = espressif,esp32-spi): + * $ZEPHYR_BASE/dts/bindings/spi/espressif,esp32-spi.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_spi_60024000_PATH "/soc/spi@60024000" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_spi_60024000_FULL_NAME "spi@60024000" +#define DT_N_S_soc_S_spi_60024000_FULL_NAME_UNQUOTED spi@60024000 +#define DT_N_S_soc_S_spi_60024000_FULL_NAME_TOKEN spi_60024000 +#define DT_N_S_soc_S_spi_60024000_FULL_NAME_UPPER_TOKEN SPI_60024000 + +/* Node parent (/soc) identifier: */ +#define DT_N_S_soc_S_spi_60024000_PARENT DT_N_S_soc + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_spi_60024000_CHILD_IDX 24 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_spi_60024000_NODELABEL_NUM 2 +#define DT_N_S_soc_S_spi_60024000_FOREACH_NODELABEL(fn) fn(spi2) fn(xiao_spi) +#define DT_N_S_soc_S_spi_60024000_FOREACH_NODELABEL_VARGS(fn, ...) fn(spi2, __VA_ARGS__) fn(xiao_spi, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_spi_60024000_CHILD_NUM 1 +#define DT_N_S_soc_S_spi_60024000_CHILD_NUM_STATUS_OKAY 1 +#define DT_N_S_soc_S_spi_60024000_CHILD_UNIT_ADDR_INT_0 DT_N_S_soc_S_spi_60024000_S_lora_0 +#define DT_N_S_soc_S_spi_60024000_FOREACH_CHILD(fn) fn(DT_N_S_soc_S_spi_60024000_S_lora_0) +#define DT_N_S_soc_S_spi_60024000_FOREACH_CHILD_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60024000_S_lora_0) +#define DT_N_S_soc_S_spi_60024000_FOREACH_CHILD_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_FOREACH_CHILD_STATUS_OKAY(fn) fn(DT_N_S_soc_S_spi_60024000_S_lora_0) +#define DT_N_S_soc_S_spi_60024000_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60024000_S_lora_0) +#define DT_N_S_soc_S_spi_60024000_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, __VA_ARGS__) + +/* Node's hash: */ +#define DT_N_S_soc_S_spi_60024000_HASH cAnuUIWiVpDjQN_NLMvQuebfun49HKk2_1TcBDFx2SE + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_spi_60024000_ORD 103 +#define DT_N_S_soc_S_spi_60024000_ORD_STR_SORTABLE 00103 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_spi_60024000_REQUIRES_ORDS \ + 12, /* /soc */ \ + 14, /* /soc/interrupt-controller@600c2000 */ \ + 15, /* /soc/gpio/gpio@60004000 */ \ + 26, /* /pin-controller/spim2_default */ \ + 34, /* /clock */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_spi_60024000_SUPPORTS_ORDS \ + 104, /* /soc/spi@60024000/lora@0 */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_spi_60024000_EXISTS 1 +#define DT_N_INST_0_espressif_esp32_spi DT_N_S_soc_S_spi_60024000 +#define DT_N_NODELABEL_spi2 DT_N_S_soc_S_spi_60024000 +#define DT_N_NODELABEL_xiao_spi DT_N_S_soc_S_spi_60024000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_spi_60024000_REG_NUM 1 +#define DT_N_S_soc_S_spi_60024000_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_REG_IDX_0_VAL_ADDRESS 1610760192 /* 0x60024000 */ +#define DT_N_S_soc_S_spi_60024000_REG_IDX_0_VAL_SIZE 4096 /* 0x1000 */ +#define DT_N_S_soc_S_spi_60024000_FOREACH_REG(fn) fn(DT_N_S_soc_S_spi_60024000, 0) +#define DT_N_S_soc_S_spi_60024000_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60024000, 0) +#define DT_N_S_soc_S_spi_60024000_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_60024000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_60024000, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_RANGES_NUM 0 +#define DT_N_S_soc_S_spi_60024000_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_spi_60024000_IRQ_NUM 1 +#define DT_N_S_soc_S_spi_60024000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_IRQ_IDX_0_VAL_irq 21 +#define DT_N_S_soc_S_spi_60024000_IRQ_IDX_0_VAL_irq_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_IRQ_IDX_0_VAL_priority 0 +#define DT_N_S_soc_S_spi_60024000_IRQ_IDX_0_VAL_priority_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_IRQ_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_IRQ_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_spi_60024000_IRQ_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_IRQ_IDX_0_CONTROLLER DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_spi_60024000_IRQ_LEVEL 1 +#define DT_N_S_soc_S_spi_60024000_COMPAT_MATCHES_espressif_esp32_spi 1 +#define DT_N_S_soc_S_spi_60024000_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_COMPAT_VENDOR_IDX_0 "Espressif Systems" +#define DT_N_S_soc_S_spi_60024000_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_COMPAT_MODEL_IDX_0 "esp32-spi" +#define DT_N_S_soc_S_spi_60024000_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_spi_60024000_PINCTRL_NUM 1 +#define DT_N_S_soc_S_spi_60024000_PINCTRL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_PINCTRL_IDX_0_TOKEN default +#define DT_N_S_soc_S_spi_60024000_PINCTRL_IDX_0_UPPER_TOKEN DEFAULT +#define DT_N_S_soc_S_spi_60024000_PINCTRL_NAME_default_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_PINCTRL_NAME_default_IDX 0 +#define DT_N_S_soc_S_spi_60024000_PINCTRL_NAME_default_IDX_0_PH DT_N_S_pin_controller_S_spim2_default + +/* Generic property macros: */ +#define DT_N_S_soc_S_spi_60024000_P_reg {1610760192 /* 0x60024000 */, 4096 /* 0x1000 */} +#define DT_N_S_soc_S_spi_60024000_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_reg_IDX_0 1610760192 +#define DT_N_S_soc_S_spi_60024000_P_reg_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_reg_IDX_1 4096 +#define DT_N_S_soc_S_spi_60024000_P_reg_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_pinctrl_0_IDX_0 DT_N_S_pin_controller_S_spim2_default +#define DT_N_S_soc_S_spi_60024000_P_pinctrl_0_IDX_0_PH DT_N_S_pin_controller_S_spim2_default +#define DT_N_S_soc_S_spi_60024000_P_pinctrl_0_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_pinctrl_0_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_60024000, pinctrl_0, 0) +#define DT_N_S_soc_S_spi_60024000_P_pinctrl_0_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60024000, pinctrl_0, 0) +#define DT_N_S_soc_S_spi_60024000_P_pinctrl_0_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_60024000, pinctrl_0, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_P_pinctrl_0_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_60024000, pinctrl_0, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_P_pinctrl_0_LEN 1 +#define DT_N_S_soc_S_spi_60024000_P_pinctrl_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_pinctrl_names {"default"} +#define DT_N_S_soc_S_spi_60024000_P_pinctrl_names_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_pinctrl_names_IDX_0 "default" +#define DT_N_S_soc_S_spi_60024000_P_pinctrl_names_IDX_0_STRING_UNQUOTED default +#define DT_N_S_soc_S_spi_60024000_P_pinctrl_names_IDX_0_STRING_TOKEN default +#define DT_N_S_soc_S_spi_60024000_P_pinctrl_names_IDX_0_STRING_UPPER_TOKEN DEFAULT +#define DT_N_S_soc_S_spi_60024000_P_pinctrl_names_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_60024000, pinctrl_names, 0) +#define DT_N_S_soc_S_spi_60024000_P_pinctrl_names_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60024000, pinctrl_names, 0) +#define DT_N_S_soc_S_spi_60024000_P_pinctrl_names_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_60024000, pinctrl_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_P_pinctrl_names_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_60024000, pinctrl_names, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_P_pinctrl_names_LEN 1 +#define DT_N_S_soc_S_spi_60024000_P_pinctrl_names_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_half_duplex 0 +#define DT_N_S_soc_S_spi_60024000_P_half_duplex_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_dummy_comp 0 +#define DT_N_S_soc_S_spi_60024000_P_dummy_comp_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_sio 0 +#define DT_N_S_soc_S_spi_60024000_P_sio_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_dma_enabled 0 +#define DT_N_S_soc_S_spi_60024000_P_dma_enabled_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_dma_host 0 +#define DT_N_S_soc_S_spi_60024000_P_dma_host_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_clk_as_cs 0 +#define DT_N_S_soc_S_spi_60024000_P_clk_as_cs_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_positive_cs 0 +#define DT_N_S_soc_S_spi_60024000_P_positive_cs_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_use_iomux 0 +#define DT_N_S_soc_S_spi_60024000_P_use_iomux_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_line_idle_low 0 +#define DT_N_S_soc_S_spi_60024000_P_line_idle_low_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_cs_gpios_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_cs_gpios_IDX_0_PH DT_N_S_soc_S_gpio_S_gpio_60004000 +#define DT_N_S_soc_S_spi_60024000_P_cs_gpios_IDX_0_VAL_pin 3 +#define DT_N_S_soc_S_spi_60024000_P_cs_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_cs_gpios_IDX_0_VAL_flags 1 +#define DT_N_S_soc_S_spi_60024000_P_cs_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_cs_gpios_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_spi_60024000, cs_gpios, 0, pin) \ + fn(DT_N_S_soc_S_spi_60024000, cs_gpios, 0, flags) +#define DT_N_S_soc_S_spi_60024000_P_cs_gpios_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60024000, cs_gpios, 0, pin) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_spi_60024000, cs_gpios, 0, flags) +#define DT_N_S_soc_S_spi_60024000_P_cs_gpios_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_spi_60024000_P_cs_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_60024000, cs_gpios, 0) +#define DT_N_S_soc_S_spi_60024000_P_cs_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60024000, cs_gpios, 0) +#define DT_N_S_soc_S_spi_60024000_P_cs_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_60024000, cs_gpios, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_P_cs_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_60024000, cs_gpios, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_P_cs_gpios_LEN 1 +#define DT_N_S_soc_S_spi_60024000_P_cs_gpios_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_status "okay" +#define DT_N_S_soc_S_spi_60024000_P_status_STRING_UNQUOTED okay +#define DT_N_S_soc_S_spi_60024000_P_status_STRING_TOKEN okay +#define DT_N_S_soc_S_spi_60024000_P_status_STRING_UPPER_TOKEN OKAY +#define DT_N_S_soc_S_spi_60024000_P_status_IDX_0 "okay" +#define DT_N_S_soc_S_spi_60024000_P_status_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_status_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_spi_60024000_P_status_IDX_0_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_status_ENUM_VAL_okay_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_status_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_60024000, status, 0) +#define DT_N_S_soc_S_spi_60024000_P_status_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60024000, status, 0) +#define DT_N_S_soc_S_spi_60024000_P_status_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_60024000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_P_status_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_60024000, status, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_P_status_LEN 1 +#define DT_N_S_soc_S_spi_60024000_P_status_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_compatible {"espressif,esp32-spi"} +#define DT_N_S_soc_S_spi_60024000_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_compatible_IDX_0 "espressif,esp32-spi" +#define DT_N_S_soc_S_spi_60024000_P_compatible_IDX_0_STRING_UNQUOTED espressif,esp32-spi +#define DT_N_S_soc_S_spi_60024000_P_compatible_IDX_0_STRING_TOKEN espressif_esp32_spi +#define DT_N_S_soc_S_spi_60024000_P_compatible_IDX_0_STRING_UPPER_TOKEN ESPRESSIF_ESP32_SPI +#define DT_N_S_soc_S_spi_60024000_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_60024000, compatible, 0) +#define DT_N_S_soc_S_spi_60024000_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60024000, compatible, 0) +#define DT_N_S_soc_S_spi_60024000_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_60024000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_60024000, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_P_compatible_LEN 1 +#define DT_N_S_soc_S_spi_60024000_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_interrupts {21 /* 0x15 */, 0 /* 0x0 */, 0 /* 0x0 */} +#define DT_N_S_soc_S_spi_60024000_P_interrupts_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_interrupts_IDX_0 21 +#define DT_N_S_soc_S_spi_60024000_P_interrupts_IDX_1_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_interrupts_IDX_1 0 +#define DT_N_S_soc_S_spi_60024000_P_interrupts_IDX_2_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_interrupts_IDX_2 0 +#define DT_N_S_soc_S_spi_60024000_P_interrupts_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_interrupt_parent DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_spi_60024000_P_interrupt_parent_IDX_0 DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_spi_60024000_P_interrupt_parent_IDX_0_PH DT_N_S_soc_S_interrupt_controller_600c2000 +#define DT_N_S_soc_S_spi_60024000_P_interrupt_parent_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_interrupt_parent_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_60024000, interrupt_parent, 0) +#define DT_N_S_soc_S_spi_60024000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60024000, interrupt_parent, 0) +#define DT_N_S_soc_S_spi_60024000_P_interrupt_parent_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_60024000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_P_interrupt_parent_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_60024000, interrupt_parent, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_P_interrupt_parent_LEN 1 +#define DT_N_S_soc_S_spi_60024000_P_interrupt_parent_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_clocks_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_clocks_IDX_0_PH DT_N_S_clock +#define DT_N_S_soc_S_spi_60024000_P_clocks_IDX_0_VAL_offset 115 +#define DT_N_S_soc_S_spi_60024000_P_clocks_IDX_0_VAL_offset_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_clocks_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_spi_60024000, clocks, 0, offset) +#define DT_N_S_soc_S_spi_60024000_P_clocks_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60024000, clocks, 0, offset) +#define DT_N_S_soc_S_spi_60024000_P_clocks_IDX_0_NUM_CELLS 1 +#define DT_N_S_soc_S_spi_60024000_P_clocks_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_60024000, clocks, 0) +#define DT_N_S_soc_S_spi_60024000_P_clocks_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60024000, clocks, 0) +#define DT_N_S_soc_S_spi_60024000_P_clocks_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_60024000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_P_clocks_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_60024000, clocks, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_P_clocks_LEN 1 +#define DT_N_S_soc_S_spi_60024000_P_clocks_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_spi_60024000_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_wakeup_source 0 +#define DT_N_S_soc_S_spi_60024000_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_spi_60024000_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Devicetree node: /soc/spi@60024000/lora@0 + * + * Node identifier: DT_N_S_soc_S_spi_60024000_S_lora_0 + * + * Binding (compatible = semtech,sx1262): + * $ZEPHYR_BASE/dts/bindings/lora/semtech,sx1262.yaml + * + * (Descriptions have moved to the Devicetree Bindings Index + * in the documentation.) + */ + +/* Node's full path: */ +#define DT_N_S_soc_S_spi_60024000_S_lora_0_PATH "/soc/spi@60024000/lora@0" + +/* Node's name with unit-address: */ +#define DT_N_S_soc_S_spi_60024000_S_lora_0_FULL_NAME "lora@0" +#define DT_N_S_soc_S_spi_60024000_S_lora_0_FULL_NAME_UNQUOTED lora@0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_FULL_NAME_TOKEN lora_0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_FULL_NAME_UPPER_TOKEN LORA_0 + +/* Node parent (/soc/spi@60024000) identifier: */ +#define DT_N_S_soc_S_spi_60024000_S_lora_0_PARENT DT_N_S_soc_S_spi_60024000 + +/* Node's index in its parent's list of children: */ +#define DT_N_S_soc_S_spi_60024000_S_lora_0_CHILD_IDX 0 + +/* Helpers for dealing with node labels: */ +#define DT_N_S_soc_S_spi_60024000_S_lora_0_NODELABEL_NUM 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_FOREACH_NODELABEL(fn) fn(lora) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_FOREACH_NODELABEL_VARGS(fn, ...) fn(lora, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_FOREACH_ANCESTOR(fn) fn(DT_N_S_soc_S_spi_60024000) fn(DT_N_S_soc) fn(DT_N) + +/* Helper macros for child nodes of this node. */ +#define DT_N_S_soc_S_spi_60024000_S_lora_0_CHILD_NUM 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_CHILD_NUM_STATUS_OKAY 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_FOREACH_CHILD(fn) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_FOREACH_CHILD_SEP(fn, sep) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_FOREACH_CHILD_VARGS(fn, ...) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_FOREACH_CHILD_SEP_VARGS(fn, sep, ...) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_FOREACH_CHILD_STATUS_OKAY(fn) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_FOREACH_CHILD_STATUS_OKAY_SEP(fn, sep) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_FOREACH_CHILD_STATUS_OKAY_VARGS(fn, ...) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_FOREACH_CHILD_STATUS_OKAY_SEP_VARGS(fn, sep, ...) + +/* Node's hash: */ +#define DT_N_S_soc_S_spi_60024000_S_lora_0_HASH Cpi5_SzclALqN1V71JzhFL2_OAvIZubOdG6r_xRoO7I + +/* Node's dependency ordinal: */ +#define DT_N_S_soc_S_spi_60024000_S_lora_0_ORD 104 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_ORD_STR_SORTABLE 00104 + +/* Ordinals for what this node depends on directly: */ +#define DT_N_S_soc_S_spi_60024000_S_lora_0_REQUIRES_ORDS \ + 15, /* /soc/gpio/gpio@60004000 */ \ + 103, /* /soc/spi@60024000 */ + +/* Ordinals for what depends directly on this node: */ +#define DT_N_S_soc_S_spi_60024000_S_lora_0_SUPPORTS_ORDS /* nothing */ + +/* Existence and alternate IDs: */ +#define DT_N_S_soc_S_spi_60024000_S_lora_0_EXISTS 1 +#define DT_N_ALIAS_lora0 DT_N_S_soc_S_spi_60024000_S_lora_0 +#define DT_N_INST_0_semtech_sx1262 DT_N_S_soc_S_spi_60024000_S_lora_0 +#define DT_N_NODELABEL_lora DT_N_S_soc_S_spi_60024000_S_lora_0 + +/* Bus info (controller: '/soc/spi@60024000', type: '['spi']') */ +#define DT_N_S_soc_S_spi_60024000_S_lora_0_BUS_spi 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_BUS DT_N_S_soc_S_spi_60024000 + +/* Macros for properties that are special in the specification: */ +#define DT_N_S_soc_S_spi_60024000_S_lora_0_REG_NUM 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_REG_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_REG_IDX_0_VAL_ADDRESS 0 /* 0x0 */ +#define DT_N_S_soc_S_spi_60024000_S_lora_0_FOREACH_REG(fn) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, 0) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_FOREACH_REG_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, 0) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_FOREACH_REG_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_FOREACH_REG_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_RANGES_NUM 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_FOREACH_RANGE(fn) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_IRQ_NUM 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_IRQ_LEVEL 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_COMPAT_MATCHES_semtech_sx1262 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_COMPAT_VENDOR_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_COMPAT_VENDOR_IDX_0 "Semtech Corporation" +#define DT_N_S_soc_S_spi_60024000_S_lora_0_COMPAT_MODEL_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_COMPAT_MODEL_IDX_0 "sx1262" +#define DT_N_S_soc_S_spi_60024000_S_lora_0_STATUS_okay 1 + +/* Pin control (pinctrl-, pinctrl-names) properties: */ +#define DT_N_S_soc_S_spi_60024000_S_lora_0_PINCTRL_NUM 0 + +/* Generic property macros: */ +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_reset_gpios_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_reset_gpios_IDX_0_PH DT_N_S_soc_S_gpio_S_gpio_60004000 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_reset_gpios_IDX_0_VAL_pin 2 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_reset_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_reset_gpios_IDX_0_VAL_flags 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_reset_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_reset_gpios_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, reset_gpios, 0, pin) \ + fn(DT_N_S_soc_S_spi_60024000_S_lora_0, reset_gpios, 0, flags) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_reset_gpios_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, reset_gpios, 0, pin) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_spi_60024000_S_lora_0, reset_gpios, 0, flags) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_reset_gpios_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_reset_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, reset_gpios, 0) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_reset_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, reset_gpios, 0) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_reset_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, reset_gpios, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_reset_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, reset_gpios, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_reset_gpios_LEN 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_reset_gpios_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_busy_gpios_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_busy_gpios_IDX_0_PH DT_N_S_soc_S_gpio_S_gpio_60004000 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_busy_gpios_IDX_0_VAL_pin 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_busy_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_busy_gpios_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_busy_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_busy_gpios_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, busy_gpios, 0, pin) \ + fn(DT_N_S_soc_S_spi_60024000_S_lora_0, busy_gpios, 0, flags) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_busy_gpios_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, busy_gpios, 0, pin) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_spi_60024000_S_lora_0, busy_gpios, 0, flags) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_busy_gpios_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_busy_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, busy_gpios, 0) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_busy_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, busy_gpios, 0) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_busy_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, busy_gpios, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_busy_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, busy_gpios, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_busy_gpios_LEN 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_busy_gpios_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_dio1_gpios_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_dio1_gpios_IDX_0_PH DT_N_S_soc_S_gpio_S_gpio_60004000 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_dio1_gpios_IDX_0_VAL_pin 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_dio1_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_dio1_gpios_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_dio1_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_dio1_gpios_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, dio1_gpios, 0, pin) \ + fn(DT_N_S_soc_S_spi_60024000_S_lora_0, dio1_gpios, 0, flags) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_dio1_gpios_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, dio1_gpios, 0, pin) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_spi_60024000_S_lora_0, dio1_gpios, 0, flags) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_dio1_gpios_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_dio1_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, dio1_gpios, 0) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_dio1_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, dio1_gpios, 0) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_dio1_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, dio1_gpios, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_dio1_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, dio1_gpios, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_dio1_gpios_LEN 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_dio1_gpios_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_tx_enable_gpios_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_tx_enable_gpios_IDX_0_PH DT_N_S_soc_S_gpio_S_gpio_60004000 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_tx_enable_gpios_IDX_0_VAL_pin 4 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_tx_enable_gpios_IDX_0_VAL_pin_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_tx_enable_gpios_IDX_0_VAL_flags 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_tx_enable_gpios_IDX_0_VAL_flags_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_tx_enable_gpios_IDX_0_FOREACH_CELL(fn) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, tx_enable_gpios, 0, pin) \ + fn(DT_N_S_soc_S_spi_60024000_S_lora_0, tx_enable_gpios, 0, flags) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_tx_enable_gpios_IDX_0_FOREACH_CELL_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, tx_enable_gpios, 0, pin) DT_DEBRACKET_INTERNAL sep \ + fn(DT_N_S_soc_S_spi_60024000_S_lora_0, tx_enable_gpios, 0, flags) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_tx_enable_gpios_IDX_0_NUM_CELLS 2 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_tx_enable_gpios_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, tx_enable_gpios, 0) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_tx_enable_gpios_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, tx_enable_gpios, 0) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_tx_enable_gpios_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, tx_enable_gpios, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_tx_enable_gpios_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, tx_enable_gpios, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_tx_enable_gpios_LEN 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_tx_enable_gpios_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_dio2_tx_enable 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_dio2_tx_enable_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_rx_boosted 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_rx_boosted_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_regulator_ldo 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_regulator_ldo_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_force_ldro 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_force_ldro_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_reg {0 /* 0x0 */} +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_reg_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_reg_IDX_0 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_reg_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_spi_max_frequency 4000000 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_spi_max_frequency_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_duplex 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_duplex_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_duplex_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_duplex_IDX_0_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_duplex_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_duplex_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_frame_format 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_frame_format_IDX_0_ENUM_IDX 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_frame_format_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_frame_format_IDX_0_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_frame_format_ENUM_VAL_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_frame_format_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_spi_cpol 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_spi_cpol_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_spi_cpha 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_spi_cpha_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_spi_lsb_first 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_spi_lsb_first_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_spi_hold_cs 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_spi_hold_cs_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_spi_cs_high 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_spi_cs_high_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_spi_interframe_delay_ns 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_spi_interframe_delay_ns_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_compatible {"semtech,sx1262"} +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_compatible_IDX_0_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_compatible_IDX_0 "semtech,sx1262" +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_compatible_IDX_0_STRING_UNQUOTED semtech,sx1262 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_compatible_IDX_0_STRING_TOKEN semtech_sx1262 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_compatible_IDX_0_STRING_UPPER_TOKEN SEMTECH_SX1262 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_compatible_FOREACH_PROP_ELEM(fn) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, compatible, 0) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_compatible_FOREACH_PROP_ELEM_SEP(fn, sep) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, compatible, 0) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_compatible_FOREACH_PROP_ELEM_VARGS(fn, ...) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_compatible_FOREACH_PROP_ELEM_SEP_VARGS(fn, sep, ...) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, compatible, 0, __VA_ARGS__) +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_compatible_LEN 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_compatible_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_zephyr_deferred_init 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_zephyr_deferred_init_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_wakeup_source 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_wakeup_source_EXISTS 1 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_zephyr_pm_device_runtime_auto 0 +#define DT_N_S_soc_S_spi_60024000_S_lora_0_P_zephyr_pm_device_runtime_auto_EXISTS 1 + +/* + * Chosen nodes + */ +#define DT_CHOSEN_zephyr_canbus DT_N_S_soc_S_can_6002b000 +#define DT_CHOSEN_zephyr_canbus_EXISTS 1 +#define DT_CHOSEN_zephyr_entropy DT_N_S_soc_S_trng_6003507c +#define DT_CHOSEN_zephyr_entropy_EXISTS 1 +#define DT_CHOSEN_zephyr_flash_controller DT_N_S_soc_S_flash_controller_60002000 +#define DT_CHOSEN_zephyr_flash_controller_EXISTS 1 +#define DT_CHOSEN_zephyr_sram DT_N_S_soc_S_memory_3fc88000 +#define DT_CHOSEN_zephyr_sram_EXISTS 1 +#define DT_CHOSEN_zephyr_console DT_N_S_soc_S_uart_60038000 +#define DT_CHOSEN_zephyr_console_EXISTS 1 +#define DT_CHOSEN_zephyr_shell_uart DT_N_S_soc_S_uart_60038000 +#define DT_CHOSEN_zephyr_shell_uart_EXISTS 1 +#define DT_CHOSEN_zephyr_flash DT_N_S_soc_S_flash_controller_60002000_S_flash_0 +#define DT_CHOSEN_zephyr_flash_EXISTS 1 +#define DT_CHOSEN_zephyr_code_partition DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000 +#define DT_CHOSEN_zephyr_code_partition_EXISTS 1 +#define DT_CHOSEN_zephyr_bt_hci DT_N_S_esp32_bt_hci +#define DT_CHOSEN_zephyr_bt_hci_EXISTS 1 +#define DT_CHOSEN_loramodem_kiss_uart DT_N_S_soc_S_uart_60038000 +#define DT_CHOSEN_loramodem_kiss_uart_EXISTS 1 + +/* Macros for iterating over all nodes and enabled nodes */ +#define DT_FOREACH_HELPER(fn) fn(DT_N) fn(DT_N_S_chosen) fn(DT_N_S_aliases) fn(DT_N_S_soc) fn(DT_N_S_soc_S_memory_42000000) fn(DT_N_S_soc_S_memory_3c000000) fn(DT_N_S_soc_S_memory_3c000000_S_psram0) fn(DT_N_S_soc_S_memory_40370000) fn(DT_N_S_soc_S_memory_3fc88000) fn(DT_N_S_soc_S_memory_3fcf0000) fn(DT_N_S_soc_S_memory_3fce5000) fn(DT_N_S_soc_S_memory_3fce5400) fn(DT_N_S_soc_S_ipm_3fce9400) fn(DT_N_S_soc_S_mbox_3fce9408) fn(DT_N_S_soc_S_memory_50000000) fn(DT_N_S_soc_S_memory_600fe000) fn(DT_N_S_soc_S_interrupt_controller_600c2000) fn(DT_N_S_soc_S_xt_wdt_60021004) fn(DT_N_S_soc_S_rtc_timer_60008004) fn(DT_N_S_soc_S_flash_controller_60002000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000) fn(DT_N_S_soc_S_uart_60000000) fn(DT_N_S_soc_S_uart_60010000) fn(DT_N_S_soc_S_uart_6002e000) fn(DT_N_S_soc_S_gpio) fn(DT_N_S_soc_S_gpio_S_gpio_60004000) fn(DT_N_S_soc_S_gpio_S_gpio_60004800) fn(DT_N_S_soc_S_touch_6000885c) fn(DT_N_S_soc_S_i2c_60013000) fn(DT_N_S_soc_S_i2c_60027000) fn(DT_N_S_soc_S_i2s_6000f000) fn(DT_N_S_soc_S_i2s_6002d000) fn(DT_N_S_soc_S_spi_60024000) fn(DT_N_S_soc_S_spi_60024000_S_lora_0) fn(DT_N_S_soc_S_spi_60025000) fn(DT_N_S_soc_S_coretemp_60008800) fn(DT_N_S_soc_S_adc_60040000) fn(DT_N_S_soc_S_adc_60040004) fn(DT_N_S_soc_S_can_6002b000) fn(DT_N_S_soc_S_lcd_cam_60041000) fn(DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp) fn(DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp) fn(DT_N_S_soc_S_uart_60038000) fn(DT_N_S_soc_S_usb_otg_60080000) fn(DT_N_S_soc_S_counter_6001f000) fn(DT_N_S_soc_S_counter_6001f000_S_counter) fn(DT_N_S_soc_S_counter_6001f024) fn(DT_N_S_soc_S_counter_6001f024_S_counter) fn(DT_N_S_soc_S_counter_60020000) fn(DT_N_S_soc_S_counter_60020000_S_counter) fn(DT_N_S_soc_S_counter_60020024) fn(DT_N_S_soc_S_counter_60020024_S_counter) fn(DT_N_S_soc_S_watchdog_6001f048) fn(DT_N_S_soc_S_watchdog_60020048) fn(DT_N_S_soc_S_trng_6003507c) fn(DT_N_S_soc_S_ledc_60019000) fn(DT_N_S_soc_S_mcpwm_6001e000) fn(DT_N_S_soc_S_mcpwm_6002c000) fn(DT_N_S_soc_S_pcnt_60017000) fn(DT_N_S_soc_S_dma_6003f000) fn(DT_N_S_soc_S_sdhc_60028000) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_0) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_1) fn(DT_N_S_soc_S_sha_6003b000) fn(DT_N_S_soc_S_aes_6003a000) fn(DT_N_S_cpus) fn(DT_N_S_cpus_S_cpu_0) fn(DT_N_S_cpus_S_cpu_1) fn(DT_N_S_cpus_S_power_states) fn(DT_N_S_cpus_S_power_states_S_light_sleep) fn(DT_N_S_cpus_S_power_states_S_deep_sleep) fn(DT_N_S_wifi) fn(DT_N_S_esp32_bt_hci) fn(DT_N_S_pin_controller) fn(DT_N_S_pin_controller_S_uart0_default) fn(DT_N_S_pin_controller_S_uart0_default_S_group1) fn(DT_N_S_pin_controller_S_uart0_default_S_group2) fn(DT_N_S_pin_controller_S_spim2_default) fn(DT_N_S_pin_controller_S_spim2_default_S_group1) fn(DT_N_S_pin_controller_S_spim2_default_S_group2) fn(DT_N_S_pin_controller_S_i2c0_default) fn(DT_N_S_pin_controller_S_i2c0_default_S_group1) fn(DT_N_S_pin_controller_S_i2c1_default) fn(DT_N_S_pin_controller_S_i2c1_default_S_group1) fn(DT_N_S_pin_controller_S_lcd_cam_default) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group1) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2) fn(DT_N_S_pin_controller_S_twai_default) fn(DT_N_S_pin_controller_S_twai_default_S_group1) fn(DT_N_S_clock) fn(DT_N_S_connector) fn(DT_N_S_leds) fn(DT_N_S_leds_S_led_0) +#define DT_FOREACH_OKAY_HELPER(fn) fn(DT_N) fn(DT_N_S_chosen) fn(DT_N_S_aliases) fn(DT_N_S_soc) fn(DT_N_S_soc_S_memory_42000000) fn(DT_N_S_soc_S_memory_3c000000) fn(DT_N_S_soc_S_memory_3c000000_S_psram0) fn(DT_N_S_soc_S_memory_40370000) fn(DT_N_S_soc_S_memory_3fc88000) fn(DT_N_S_soc_S_memory_3fcf0000) fn(DT_N_S_soc_S_memory_3fce5000) fn(DT_N_S_soc_S_memory_3fce5400) fn(DT_N_S_soc_S_memory_50000000) fn(DT_N_S_soc_S_memory_600fe000) fn(DT_N_S_soc_S_interrupt_controller_600c2000) fn(DT_N_S_soc_S_flash_controller_60002000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000) fn(DT_N_S_soc_S_uart_60000000) fn(DT_N_S_soc_S_gpio) fn(DT_N_S_soc_S_gpio_S_gpio_60004000) fn(DT_N_S_soc_S_gpio_S_gpio_60004800) fn(DT_N_S_soc_S_i2c_60013000) fn(DT_N_S_soc_S_spi_60024000) fn(DT_N_S_soc_S_spi_60024000_S_lora_0) fn(DT_N_S_soc_S_lcd_cam_60041000) fn(DT_N_S_soc_S_uart_60038000) fn(DT_N_S_soc_S_counter_6001f000) fn(DT_N_S_soc_S_counter_6001f024) fn(DT_N_S_soc_S_counter_60020024) fn(DT_N_S_soc_S_watchdog_6001f048) fn(DT_N_S_soc_S_trng_6003507c) fn(DT_N_S_soc_S_sdhc_60028000) fn(DT_N_S_soc_S_sha_6003b000) fn(DT_N_S_soc_S_aes_6003a000) fn(DT_N_S_cpus) fn(DT_N_S_cpus_S_cpu_0) fn(DT_N_S_cpus_S_cpu_1) fn(DT_N_S_cpus_S_power_states) fn(DT_N_S_cpus_S_power_states_S_light_sleep) fn(DT_N_S_wifi) fn(DT_N_S_esp32_bt_hci) fn(DT_N_S_pin_controller) fn(DT_N_S_pin_controller_S_uart0_default) fn(DT_N_S_pin_controller_S_uart0_default_S_group1) fn(DT_N_S_pin_controller_S_uart0_default_S_group2) fn(DT_N_S_pin_controller_S_spim2_default) fn(DT_N_S_pin_controller_S_spim2_default_S_group1) fn(DT_N_S_pin_controller_S_spim2_default_S_group2) fn(DT_N_S_pin_controller_S_i2c0_default) fn(DT_N_S_pin_controller_S_i2c0_default_S_group1) fn(DT_N_S_pin_controller_S_i2c1_default) fn(DT_N_S_pin_controller_S_i2c1_default_S_group1) fn(DT_N_S_pin_controller_S_lcd_cam_default) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group1) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2) fn(DT_N_S_pin_controller_S_twai_default) fn(DT_N_S_pin_controller_S_twai_default_S_group1) fn(DT_N_S_clock) fn(DT_N_S_connector) fn(DT_N_S_leds) fn(DT_N_S_leds_S_led_0) +#define DT_FOREACH_VARGS_HELPER(fn, ...) fn(DT_N, __VA_ARGS__) fn(DT_N_S_chosen, __VA_ARGS__) fn(DT_N_S_aliases, __VA_ARGS__) fn(DT_N_S_soc, __VA_ARGS__) fn(DT_N_S_soc_S_memory_42000000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3c000000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3c000000_S_psram0, __VA_ARGS__) fn(DT_N_S_soc_S_memory_40370000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3fc88000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3fcf0000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3fce5000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3fce5400, __VA_ARGS__) fn(DT_N_S_soc_S_ipm_3fce9400, __VA_ARGS__) fn(DT_N_S_soc_S_mbox_3fce9408, __VA_ARGS__) fn(DT_N_S_soc_S_memory_50000000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_600fe000, __VA_ARGS__) fn(DT_N_S_soc_S_interrupt_controller_600c2000, __VA_ARGS__) fn(DT_N_S_soc_S_xt_wdt_60021004, __VA_ARGS__) fn(DT_N_S_soc_S_rtc_timer_60008004, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000, __VA_ARGS__) fn(DT_N_S_soc_S_uart_60000000, __VA_ARGS__) fn(DT_N_S_soc_S_uart_60010000, __VA_ARGS__) fn(DT_N_S_soc_S_uart_6002e000, __VA_ARGS__) fn(DT_N_S_soc_S_gpio, __VA_ARGS__) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, __VA_ARGS__) fn(DT_N_S_soc_S_gpio_S_gpio_60004800, __VA_ARGS__) fn(DT_N_S_soc_S_touch_6000885c, __VA_ARGS__) fn(DT_N_S_soc_S_i2c_60013000, __VA_ARGS__) fn(DT_N_S_soc_S_i2c_60027000, __VA_ARGS__) fn(DT_N_S_soc_S_i2s_6000f000, __VA_ARGS__) fn(DT_N_S_soc_S_i2s_6002d000, __VA_ARGS__) fn(DT_N_S_soc_S_spi_60024000, __VA_ARGS__) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, __VA_ARGS__) fn(DT_N_S_soc_S_spi_60025000, __VA_ARGS__) fn(DT_N_S_soc_S_coretemp_60008800, __VA_ARGS__) fn(DT_N_S_soc_S_adc_60040000, __VA_ARGS__) fn(DT_N_S_soc_S_adc_60040004, __VA_ARGS__) fn(DT_N_S_soc_S_can_6002b000, __VA_ARGS__) fn(DT_N_S_soc_S_lcd_cam_60041000, __VA_ARGS__) fn(DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_dvp, __VA_ARGS__) fn(DT_N_S_soc_S_lcd_cam_60041000_S_lcd_cam_disp, __VA_ARGS__) fn(DT_N_S_soc_S_uart_60038000, __VA_ARGS__) fn(DT_N_S_soc_S_usb_otg_60080000, __VA_ARGS__) fn(DT_N_S_soc_S_counter_6001f000, __VA_ARGS__) fn(DT_N_S_soc_S_counter_6001f000_S_counter, __VA_ARGS__) fn(DT_N_S_soc_S_counter_6001f024, __VA_ARGS__) fn(DT_N_S_soc_S_counter_6001f024_S_counter, __VA_ARGS__) fn(DT_N_S_soc_S_counter_60020000, __VA_ARGS__) fn(DT_N_S_soc_S_counter_60020000_S_counter, __VA_ARGS__) fn(DT_N_S_soc_S_counter_60020024, __VA_ARGS__) fn(DT_N_S_soc_S_counter_60020024_S_counter, __VA_ARGS__) fn(DT_N_S_soc_S_watchdog_6001f048, __VA_ARGS__) fn(DT_N_S_soc_S_watchdog_60020048, __VA_ARGS__) fn(DT_N_S_soc_S_trng_6003507c, __VA_ARGS__) fn(DT_N_S_soc_S_ledc_60019000, __VA_ARGS__) fn(DT_N_S_soc_S_mcpwm_6001e000, __VA_ARGS__) fn(DT_N_S_soc_S_mcpwm_6002c000, __VA_ARGS__) fn(DT_N_S_soc_S_pcnt_60017000, __VA_ARGS__) fn(DT_N_S_soc_S_dma_6003f000, __VA_ARGS__) fn(DT_N_S_soc_S_sdhc_60028000, __VA_ARGS__) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_0, __VA_ARGS__) fn(DT_N_S_soc_S_sdhc_60028000_S_sdhc_1, __VA_ARGS__) fn(DT_N_S_soc_S_sha_6003b000, __VA_ARGS__) fn(DT_N_S_soc_S_aes_6003a000, __VA_ARGS__) fn(DT_N_S_cpus, __VA_ARGS__) fn(DT_N_S_cpus_S_cpu_0, __VA_ARGS__) fn(DT_N_S_cpus_S_cpu_1, __VA_ARGS__) fn(DT_N_S_cpus_S_power_states, __VA_ARGS__) fn(DT_N_S_cpus_S_power_states_S_light_sleep, __VA_ARGS__) fn(DT_N_S_cpus_S_power_states_S_deep_sleep, __VA_ARGS__) fn(DT_N_S_wifi, __VA_ARGS__) fn(DT_N_S_esp32_bt_hci, __VA_ARGS__) fn(DT_N_S_pin_controller, __VA_ARGS__) fn(DT_N_S_pin_controller_S_uart0_default, __VA_ARGS__) fn(DT_N_S_pin_controller_S_uart0_default_S_group1, __VA_ARGS__) fn(DT_N_S_pin_controller_S_uart0_default_S_group2, __VA_ARGS__) fn(DT_N_S_pin_controller_S_spim2_default, __VA_ARGS__) fn(DT_N_S_pin_controller_S_spim2_default_S_group1, __VA_ARGS__) fn(DT_N_S_pin_controller_S_spim2_default_S_group2, __VA_ARGS__) fn(DT_N_S_pin_controller_S_i2c0_default, __VA_ARGS__) fn(DT_N_S_pin_controller_S_i2c0_default_S_group1, __VA_ARGS__) fn(DT_N_S_pin_controller_S_i2c1_default, __VA_ARGS__) fn(DT_N_S_pin_controller_S_i2c1_default_S_group1, __VA_ARGS__) fn(DT_N_S_pin_controller_S_lcd_cam_default, __VA_ARGS__) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group1, __VA_ARGS__) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, __VA_ARGS__) fn(DT_N_S_pin_controller_S_twai_default, __VA_ARGS__) fn(DT_N_S_pin_controller_S_twai_default_S_group1, __VA_ARGS__) fn(DT_N_S_clock, __VA_ARGS__) fn(DT_N_S_connector, __VA_ARGS__) fn(DT_N_S_leds, __VA_ARGS__) fn(DT_N_S_leds_S_led_0, __VA_ARGS__) +#define DT_FOREACH_OKAY_VARGS_HELPER(fn, ...) fn(DT_N, __VA_ARGS__) fn(DT_N_S_chosen, __VA_ARGS__) fn(DT_N_S_aliases, __VA_ARGS__) fn(DT_N_S_soc, __VA_ARGS__) fn(DT_N_S_soc_S_memory_42000000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3c000000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3c000000_S_psram0, __VA_ARGS__) fn(DT_N_S_soc_S_memory_40370000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3fc88000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3fcf0000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3fce5000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3fce5400, __VA_ARGS__) fn(DT_N_S_soc_S_memory_50000000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_600fe000, __VA_ARGS__) fn(DT_N_S_soc_S_interrupt_controller_600c2000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000, __VA_ARGS__) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000, __VA_ARGS__) fn(DT_N_S_soc_S_uart_60000000, __VA_ARGS__) fn(DT_N_S_soc_S_gpio, __VA_ARGS__) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, __VA_ARGS__) fn(DT_N_S_soc_S_gpio_S_gpio_60004800, __VA_ARGS__) fn(DT_N_S_soc_S_i2c_60013000, __VA_ARGS__) fn(DT_N_S_soc_S_spi_60024000, __VA_ARGS__) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, __VA_ARGS__) fn(DT_N_S_soc_S_lcd_cam_60041000, __VA_ARGS__) fn(DT_N_S_soc_S_uart_60038000, __VA_ARGS__) fn(DT_N_S_soc_S_counter_6001f000, __VA_ARGS__) fn(DT_N_S_soc_S_counter_6001f024, __VA_ARGS__) fn(DT_N_S_soc_S_counter_60020024, __VA_ARGS__) fn(DT_N_S_soc_S_watchdog_6001f048, __VA_ARGS__) fn(DT_N_S_soc_S_trng_6003507c, __VA_ARGS__) fn(DT_N_S_soc_S_sdhc_60028000, __VA_ARGS__) fn(DT_N_S_soc_S_sha_6003b000, __VA_ARGS__) fn(DT_N_S_soc_S_aes_6003a000, __VA_ARGS__) fn(DT_N_S_cpus, __VA_ARGS__) fn(DT_N_S_cpus_S_cpu_0, __VA_ARGS__) fn(DT_N_S_cpus_S_cpu_1, __VA_ARGS__) fn(DT_N_S_cpus_S_power_states, __VA_ARGS__) fn(DT_N_S_cpus_S_power_states_S_light_sleep, __VA_ARGS__) fn(DT_N_S_wifi, __VA_ARGS__) fn(DT_N_S_esp32_bt_hci, __VA_ARGS__) fn(DT_N_S_pin_controller, __VA_ARGS__) fn(DT_N_S_pin_controller_S_uart0_default, __VA_ARGS__) fn(DT_N_S_pin_controller_S_uart0_default_S_group1, __VA_ARGS__) fn(DT_N_S_pin_controller_S_uart0_default_S_group2, __VA_ARGS__) fn(DT_N_S_pin_controller_S_spim2_default, __VA_ARGS__) fn(DT_N_S_pin_controller_S_spim2_default_S_group1, __VA_ARGS__) fn(DT_N_S_pin_controller_S_spim2_default_S_group2, __VA_ARGS__) fn(DT_N_S_pin_controller_S_i2c0_default, __VA_ARGS__) fn(DT_N_S_pin_controller_S_i2c0_default_S_group1, __VA_ARGS__) fn(DT_N_S_pin_controller_S_i2c1_default, __VA_ARGS__) fn(DT_N_S_pin_controller_S_i2c1_default_S_group1, __VA_ARGS__) fn(DT_N_S_pin_controller_S_lcd_cam_default, __VA_ARGS__) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group1, __VA_ARGS__) fn(DT_N_S_pin_controller_S_lcd_cam_default_S_group2, __VA_ARGS__) fn(DT_N_S_pin_controller_S_twai_default, __VA_ARGS__) fn(DT_N_S_pin_controller_S_twai_default_S_group1, __VA_ARGS__) fn(DT_N_S_clock, __VA_ARGS__) fn(DT_N_S_connector, __VA_ARGS__) fn(DT_N_S_leds, __VA_ARGS__) fn(DT_N_S_leds_S_led_0, __VA_ARGS__) +#define DT_COMPAT_fixed_partitions_LABEL_mcuboot DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_0 +#define DT_COMPAT_fixed_partitions_LABEL_mcuboot_EXISTS 1 +#define DT_COMPAT_fixed_partitions_LABEL_sys DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_10000 +#define DT_COMPAT_fixed_partitions_LABEL_sys_EXISTS 1 +#define DT_COMPAT_fixed_partitions_LABEL_image_0 DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_20000 +#define DT_COMPAT_fixed_partitions_LABEL_image_0_EXISTS 1 +#define DT_COMPAT_fixed_partitions_LABEL_image_1 DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_170000 +#define DT_COMPAT_fixed_partitions_LABEL_image_1_EXISTS 1 +#define DT_COMPAT_fixed_partitions_LABEL_image_0_appcpu DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_2c0000 +#define DT_COMPAT_fixed_partitions_LABEL_image_0_appcpu_EXISTS 1 +#define DT_COMPAT_fixed_partitions_LABEL_image_1_appcpu DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_330000 +#define DT_COMPAT_fixed_partitions_LABEL_image_1_appcpu_EXISTS 1 +#define DT_COMPAT_fixed_partitions_LABEL_image_0_lpcore DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a0000 +#define DT_COMPAT_fixed_partitions_LABEL_image_0_lpcore_EXISTS 1 +#define DT_COMPAT_fixed_partitions_LABEL_image_1_lpcore DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3a8000 +#define DT_COMPAT_fixed_partitions_LABEL_image_1_lpcore_EXISTS 1 +#define DT_COMPAT_fixed_partitions_LABEL_storage DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3b0000 +#define DT_COMPAT_fixed_partitions_LABEL_storage_EXISTS 1 +#define DT_COMPAT_fixed_partitions_LABEL_image_scratch DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3e0000 +#define DT_COMPAT_fixed_partitions_LABEL_image_scratch_EXISTS 1 +#define DT_COMPAT_fixed_partitions_LABEL_coredump DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions_S_partition_3ff000 +#define DT_COMPAT_fixed_partitions_LABEL_coredump_EXISTS 1 + +/* + * Macros for compatibles with status "okay" nodes + */ +#define DT_COMPAT_HAS_OKAY_seeed_xiao_esp32s3 1 +#define DT_COMPAT_HAS_OKAY_simple_bus 1 +#define DT_COMPAT_HAS_OKAY_zephyr_memory_region 1 +#define DT_COMPAT_HAS_OKAY_espressif_esp32_psram 1 +#define DT_COMPAT_HAS_OKAY_mmio_sram 1 +#define DT_COMPAT_HAS_OKAY_espressif_esp32_intc 1 +#define DT_COMPAT_HAS_OKAY_espressif_esp32_flash_controller 1 +#define DT_COMPAT_HAS_OKAY_soc_nv_flash 1 +#define DT_COMPAT_HAS_OKAY_fixed_partitions 1 +#define DT_COMPAT_HAS_OKAY_espressif_esp32_uart 1 +#define DT_COMPAT_HAS_OKAY_espressif_esp32_gpio 1 +#define DT_COMPAT_HAS_OKAY_espressif_esp32_i2c 1 +#define DT_COMPAT_HAS_OKAY_espressif_esp32_spi 1 +#define DT_COMPAT_HAS_OKAY_semtech_sx1262 1 +#define DT_COMPAT_HAS_OKAY_espressif_esp32_lcd_cam 1 +#define DT_COMPAT_HAS_OKAY_espressif_esp32_usb_serial 1 +#define DT_COMPAT_HAS_OKAY_espressif_esp32_timer 1 +#define DT_COMPAT_HAS_OKAY_espressif_esp32_watchdog 1 +#define DT_COMPAT_HAS_OKAY_espressif_esp32_trng 1 +#define DT_COMPAT_HAS_OKAY_espressif_esp32_sdhc 1 +#define DT_COMPAT_HAS_OKAY_espressif_esp32_sha 1 +#define DT_COMPAT_HAS_OKAY_espressif_esp32_aes 1 +#define DT_COMPAT_HAS_OKAY_espressif_xtensa_lx7 1 +#define DT_COMPAT_HAS_OKAY_zephyr_power_state 1 +#define DT_COMPAT_HAS_OKAY_espressif_esp32_wifi 1 +#define DT_COMPAT_HAS_OKAY_espressif_esp32_bt_hci 1 +#define DT_COMPAT_HAS_OKAY_espressif_esp32_pinctrl 1 +#define DT_COMPAT_HAS_OKAY_espressif_esp32_clock 1 +#define DT_COMPAT_HAS_OKAY_seeed_xiao_gpio 1 +#define DT_COMPAT_HAS_OKAY_gpio_leds 1 + +/* + * Macros for status "okay" instances of each compatible + */ +#define DT_N_INST_seeed_xiao_esp32s3_NUM_OKAY 1 +#define DT_N_INST_simple_bus_NUM_OKAY 2 +#define DT_N_INST_zephyr_memory_region_NUM_OKAY 7 +#define DT_N_INST_espressif_esp32_psram_NUM_OKAY 1 +#define DT_N_INST_mmio_sram_NUM_OKAY 7 +#define DT_N_INST_espressif_esp32_intc_NUM_OKAY 1 +#define DT_N_INST_espressif_esp32_flash_controller_NUM_OKAY 1 +#define DT_N_INST_soc_nv_flash_NUM_OKAY 1 +#define DT_N_INST_fixed_partitions_NUM_OKAY 1 +#define DT_N_INST_espressif_esp32_uart_NUM_OKAY 1 +#define DT_N_INST_espressif_esp32_gpio_NUM_OKAY 2 +#define DT_N_INST_espressif_esp32_i2c_NUM_OKAY 1 +#define DT_N_INST_espressif_esp32_spi_NUM_OKAY 1 +#define DT_N_INST_semtech_sx1262_NUM_OKAY 1 +#define DT_N_INST_espressif_esp32_lcd_cam_NUM_OKAY 1 +#define DT_N_INST_espressif_esp32_usb_serial_NUM_OKAY 1 +#define DT_N_INST_espressif_esp32_timer_NUM_OKAY 3 +#define DT_N_INST_espressif_esp32_watchdog_NUM_OKAY 1 +#define DT_N_INST_espressif_esp32_trng_NUM_OKAY 1 +#define DT_N_INST_espressif_esp32_sdhc_NUM_OKAY 1 +#define DT_N_INST_espressif_esp32_sha_NUM_OKAY 1 +#define DT_N_INST_espressif_esp32_aes_NUM_OKAY 1 +#define DT_N_INST_espressif_xtensa_lx7_NUM_OKAY 2 +#define DT_N_INST_zephyr_power_state_NUM_OKAY 1 +#define DT_N_INST_espressif_esp32_wifi_NUM_OKAY 1 +#define DT_N_INST_espressif_esp32_bt_hci_NUM_OKAY 1 +#define DT_N_INST_espressif_esp32_pinctrl_NUM_OKAY 1 +#define DT_N_INST_espressif_esp32_clock_NUM_OKAY 1 +#define DT_N_INST_seeed_xiao_gpio_NUM_OKAY 1 +#define DT_N_INST_gpio_leds_NUM_OKAY 1 +#define DT_FOREACH_OKAY_seeed_xiao_esp32s3(fn) fn(DT_N) +#define DT_FOREACH_OKAY_VARGS_seeed_xiao_esp32s3(fn, ...) fn(DT_N, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_seeed_xiao_esp32s3(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_seeed_xiao_esp32s3(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_simple_bus(fn) fn(DT_N_S_soc) fn(DT_N_S_soc_S_gpio) +#define DT_FOREACH_OKAY_VARGS_simple_bus(fn, ...) fn(DT_N_S_soc, __VA_ARGS__) fn(DT_N_S_soc_S_gpio, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_simple_bus(fn) fn(0) fn(1) +#define DT_FOREACH_OKAY_INST_VARGS_simple_bus(fn, ...) fn(0, __VA_ARGS__) fn(1, __VA_ARGS__) +#define DT_FOREACH_OKAY_zephyr_memory_region(fn) fn(DT_N_S_soc_S_memory_42000000) fn(DT_N_S_soc_S_memory_3c000000) fn(DT_N_S_soc_S_memory_40370000) fn(DT_N_S_soc_S_memory_3fc88000) fn(DT_N_S_soc_S_memory_3fcf0000) fn(DT_N_S_soc_S_memory_50000000) fn(DT_N_S_soc_S_memory_600fe000) +#define DT_FOREACH_OKAY_VARGS_zephyr_memory_region(fn, ...) fn(DT_N_S_soc_S_memory_42000000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3c000000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_40370000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3fc88000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3fcf0000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_50000000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_600fe000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_zephyr_memory_region(fn) fn(0) fn(1) fn(2) fn(3) fn(4) fn(5) fn(6) +#define DT_FOREACH_OKAY_INST_VARGS_zephyr_memory_region(fn, ...) fn(0, __VA_ARGS__) fn(1, __VA_ARGS__) fn(2, __VA_ARGS__) fn(3, __VA_ARGS__) fn(4, __VA_ARGS__) fn(5, __VA_ARGS__) fn(6, __VA_ARGS__) +#define DT_FOREACH_OKAY_espressif_esp32_psram(fn) fn(DT_N_S_soc_S_memory_3c000000_S_psram0) +#define DT_FOREACH_OKAY_VARGS_espressif_esp32_psram(fn, ...) fn(DT_N_S_soc_S_memory_3c000000_S_psram0, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_espressif_esp32_psram(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_espressif_esp32_psram(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_mmio_sram(fn) fn(DT_N_S_soc_S_memory_40370000) fn(DT_N_S_soc_S_memory_3fc88000) fn(DT_N_S_soc_S_memory_3fcf0000) fn(DT_N_S_soc_S_memory_3fce5000) fn(DT_N_S_soc_S_memory_3fce5400) fn(DT_N_S_soc_S_memory_50000000) fn(DT_N_S_soc_S_memory_600fe000) +#define DT_FOREACH_OKAY_VARGS_mmio_sram(fn, ...) fn(DT_N_S_soc_S_memory_40370000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3fc88000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3fcf0000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3fce5000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_3fce5400, __VA_ARGS__) fn(DT_N_S_soc_S_memory_50000000, __VA_ARGS__) fn(DT_N_S_soc_S_memory_600fe000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_mmio_sram(fn) fn(0) fn(1) fn(2) fn(3) fn(4) fn(5) fn(6) +#define DT_FOREACH_OKAY_INST_VARGS_mmio_sram(fn, ...) fn(0, __VA_ARGS__) fn(1, __VA_ARGS__) fn(2, __VA_ARGS__) fn(3, __VA_ARGS__) fn(4, __VA_ARGS__) fn(5, __VA_ARGS__) fn(6, __VA_ARGS__) +#define DT_FOREACH_OKAY_espressif_esp32_intc(fn) fn(DT_N_S_soc_S_interrupt_controller_600c2000) +#define DT_FOREACH_OKAY_VARGS_espressif_esp32_intc(fn, ...) fn(DT_N_S_soc_S_interrupt_controller_600c2000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_espressif_esp32_intc(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_espressif_esp32_intc(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_espressif_esp32_flash_controller(fn) fn(DT_N_S_soc_S_flash_controller_60002000) +#define DT_FOREACH_OKAY_VARGS_espressif_esp32_flash_controller(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_espressif_esp32_flash_controller(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_espressif_esp32_flash_controller(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_soc_nv_flash(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0) +#define DT_FOREACH_OKAY_VARGS_soc_nv_flash(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_soc_nv_flash(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_soc_nv_flash(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_fixed_partitions(fn) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions) +#define DT_FOREACH_OKAY_VARGS_fixed_partitions(fn, ...) fn(DT_N_S_soc_S_flash_controller_60002000_S_flash_0_S_partitions, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_fixed_partitions(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_fixed_partitions(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_espressif_esp32_uart(fn) fn(DT_N_S_soc_S_uart_60000000) +#define DT_FOREACH_OKAY_VARGS_espressif_esp32_uart(fn, ...) fn(DT_N_S_soc_S_uart_60000000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_espressif_esp32_uart(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_espressif_esp32_uart(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_espressif_esp32_gpio(fn) fn(DT_N_S_soc_S_gpio_S_gpio_60004000) fn(DT_N_S_soc_S_gpio_S_gpio_60004800) +#define DT_FOREACH_OKAY_VARGS_espressif_esp32_gpio(fn, ...) fn(DT_N_S_soc_S_gpio_S_gpio_60004000, __VA_ARGS__) fn(DT_N_S_soc_S_gpio_S_gpio_60004800, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_espressif_esp32_gpio(fn) fn(0) fn(1) +#define DT_FOREACH_OKAY_INST_VARGS_espressif_esp32_gpio(fn, ...) fn(0, __VA_ARGS__) fn(1, __VA_ARGS__) +#define DT_FOREACH_OKAY_espressif_esp32_i2c(fn) fn(DT_N_S_soc_S_i2c_60013000) +#define DT_FOREACH_OKAY_VARGS_espressif_esp32_i2c(fn, ...) fn(DT_N_S_soc_S_i2c_60013000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_espressif_esp32_i2c(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_espressif_esp32_i2c(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_espressif_esp32_spi(fn) fn(DT_N_S_soc_S_spi_60024000) +#define DT_FOREACH_OKAY_VARGS_espressif_esp32_spi(fn, ...) fn(DT_N_S_soc_S_spi_60024000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_espressif_esp32_spi(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_espressif_esp32_spi(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_semtech_sx1262(fn) fn(DT_N_S_soc_S_spi_60024000_S_lora_0) +#define DT_FOREACH_OKAY_VARGS_semtech_sx1262(fn, ...) fn(DT_N_S_soc_S_spi_60024000_S_lora_0, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_semtech_sx1262(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_semtech_sx1262(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_espressif_esp32_lcd_cam(fn) fn(DT_N_S_soc_S_lcd_cam_60041000) +#define DT_FOREACH_OKAY_VARGS_espressif_esp32_lcd_cam(fn, ...) fn(DT_N_S_soc_S_lcd_cam_60041000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_espressif_esp32_lcd_cam(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_espressif_esp32_lcd_cam(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_espressif_esp32_usb_serial(fn) fn(DT_N_S_soc_S_uart_60038000) +#define DT_FOREACH_OKAY_VARGS_espressif_esp32_usb_serial(fn, ...) fn(DT_N_S_soc_S_uart_60038000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_espressif_esp32_usb_serial(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_espressif_esp32_usb_serial(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_espressif_esp32_timer(fn) fn(DT_N_S_soc_S_counter_6001f000) fn(DT_N_S_soc_S_counter_6001f024) fn(DT_N_S_soc_S_counter_60020024) +#define DT_FOREACH_OKAY_VARGS_espressif_esp32_timer(fn, ...) fn(DT_N_S_soc_S_counter_6001f000, __VA_ARGS__) fn(DT_N_S_soc_S_counter_6001f024, __VA_ARGS__) fn(DT_N_S_soc_S_counter_60020024, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_espressif_esp32_timer(fn) fn(0) fn(1) fn(2) +#define DT_FOREACH_OKAY_INST_VARGS_espressif_esp32_timer(fn, ...) fn(0, __VA_ARGS__) fn(1, __VA_ARGS__) fn(2, __VA_ARGS__) +#define DT_FOREACH_OKAY_espressif_esp32_watchdog(fn) fn(DT_N_S_soc_S_watchdog_6001f048) +#define DT_FOREACH_OKAY_VARGS_espressif_esp32_watchdog(fn, ...) fn(DT_N_S_soc_S_watchdog_6001f048, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_espressif_esp32_watchdog(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_espressif_esp32_watchdog(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_espressif_esp32_trng(fn) fn(DT_N_S_soc_S_trng_6003507c) +#define DT_FOREACH_OKAY_VARGS_espressif_esp32_trng(fn, ...) fn(DT_N_S_soc_S_trng_6003507c, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_espressif_esp32_trng(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_espressif_esp32_trng(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_espressif_esp32_sdhc(fn) fn(DT_N_S_soc_S_sdhc_60028000) +#define DT_FOREACH_OKAY_VARGS_espressif_esp32_sdhc(fn, ...) fn(DT_N_S_soc_S_sdhc_60028000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_espressif_esp32_sdhc(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_espressif_esp32_sdhc(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_espressif_esp32_sha(fn) fn(DT_N_S_soc_S_sha_6003b000) +#define DT_FOREACH_OKAY_VARGS_espressif_esp32_sha(fn, ...) fn(DT_N_S_soc_S_sha_6003b000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_espressif_esp32_sha(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_espressif_esp32_sha(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_espressif_esp32_aes(fn) fn(DT_N_S_soc_S_aes_6003a000) +#define DT_FOREACH_OKAY_VARGS_espressif_esp32_aes(fn, ...) fn(DT_N_S_soc_S_aes_6003a000, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_espressif_esp32_aes(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_espressif_esp32_aes(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_espressif_xtensa_lx7(fn) fn(DT_N_S_cpus_S_cpu_0) fn(DT_N_S_cpus_S_cpu_1) +#define DT_FOREACH_OKAY_VARGS_espressif_xtensa_lx7(fn, ...) fn(DT_N_S_cpus_S_cpu_0, __VA_ARGS__) fn(DT_N_S_cpus_S_cpu_1, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_espressif_xtensa_lx7(fn) fn(0) fn(1) +#define DT_FOREACH_OKAY_INST_VARGS_espressif_xtensa_lx7(fn, ...) fn(0, __VA_ARGS__) fn(1, __VA_ARGS__) +#define DT_FOREACH_OKAY_zephyr_power_state(fn) fn(DT_N_S_cpus_S_power_states_S_light_sleep) +#define DT_FOREACH_OKAY_VARGS_zephyr_power_state(fn, ...) fn(DT_N_S_cpus_S_power_states_S_light_sleep, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_zephyr_power_state(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_zephyr_power_state(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_espressif_esp32_wifi(fn) fn(DT_N_S_wifi) +#define DT_FOREACH_OKAY_VARGS_espressif_esp32_wifi(fn, ...) fn(DT_N_S_wifi, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_espressif_esp32_wifi(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_espressif_esp32_wifi(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_espressif_esp32_bt_hci(fn) fn(DT_N_S_esp32_bt_hci) +#define DT_FOREACH_OKAY_VARGS_espressif_esp32_bt_hci(fn, ...) fn(DT_N_S_esp32_bt_hci, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_espressif_esp32_bt_hci(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_espressif_esp32_bt_hci(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_espressif_esp32_pinctrl(fn) fn(DT_N_S_pin_controller) +#define DT_FOREACH_OKAY_VARGS_espressif_esp32_pinctrl(fn, ...) fn(DT_N_S_pin_controller, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_espressif_esp32_pinctrl(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_espressif_esp32_pinctrl(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_espressif_esp32_clock(fn) fn(DT_N_S_clock) +#define DT_FOREACH_OKAY_VARGS_espressif_esp32_clock(fn, ...) fn(DT_N_S_clock, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_espressif_esp32_clock(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_espressif_esp32_clock(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_seeed_xiao_gpio(fn) fn(DT_N_S_connector) +#define DT_FOREACH_OKAY_VARGS_seeed_xiao_gpio(fn, ...) fn(DT_N_S_connector, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_seeed_xiao_gpio(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_seeed_xiao_gpio(fn, ...) fn(0, __VA_ARGS__) +#define DT_FOREACH_OKAY_gpio_leds(fn) fn(DT_N_S_leds) +#define DT_FOREACH_OKAY_VARGS_gpio_leds(fn, ...) fn(DT_N_S_leds, __VA_ARGS__) +#define DT_FOREACH_OKAY_INST_gpio_leds(fn) fn(0) +#define DT_FOREACH_OKAY_INST_VARGS_gpio_leds(fn, ...) fn(0, __VA_ARGS__) + +/* + * Bus information for status "okay" nodes of each compatible + */ +#define DT_COMPAT_semtech_sx1262_BUS_spi 1 diff --git a/build/zephyr/include/generated/zephyr/driver-validation.h b/build/zephyr/include/generated/zephyr/driver-validation.h new file mode 100644 index 0000000..0cd8e19 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/driver-validation.h @@ -0,0 +1,190 @@ +#ifndef DRIVER_VALIDATION_GEN_H +#define DRIVER_VALIDATION_GEN_H +#define K_SYSCALL_DRIVER_GEN(ptr, op, driver_lower_case, driver_upper_case) \ + (K_SYSCALL_OBJ(ptr, K_OBJ_DRIVER_##driver_upper_case) || \ + K_SYSCALL_DRIVER_OP(ptr, driver_lower_case##_driver_api, op)) + +#define K_SYSCALL_DRIVER_GPIO(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, gpio, GPIO) + +#define K_SYSCALL_DRIVER_SPI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, spi, SPI) + +#define K_SYSCALL_DRIVER_SHARED_IRQ(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, shared_irq, SHARED_IRQ) + +#define K_SYSCALL_DRIVER_CRYPTO(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, crypto, CRYPTO) + +#define K_SYSCALL_DRIVER_ADC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, adc, ADC) + +#define K_SYSCALL_DRIVER_AUXDISPLAY(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, auxdisplay, AUXDISPLAY) + +#define K_SYSCALL_DRIVER_BBRAM(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, bbram, BBRAM) + +#define K_SYSCALL_DRIVER_BIOMETRIC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, biometric, BIOMETRIC) + +#define K_SYSCALL_DRIVER_BT_HCI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, bt_hci, BT_HCI) + +#define K_SYSCALL_DRIVER_CAN(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, can, CAN) + +#define K_SYSCALL_DRIVER_CELLULAR(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, cellular, CELLULAR) + +#define K_SYSCALL_DRIVER_CHARGER(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, charger, CHARGER) + +#define K_SYSCALL_DRIVER_CLOCK_CONTROL(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, clock_control, CLOCK_CONTROL) + +#define K_SYSCALL_DRIVER_COMPARATOR(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, comparator, COMPARATOR) + +#define K_SYSCALL_DRIVER_COREDUMP(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, coredump, COREDUMP) + +#define K_SYSCALL_DRIVER_COUNTER(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, counter, COUNTER) + +#define K_SYSCALL_DRIVER_CRC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, crc, CRC) + +#define K_SYSCALL_DRIVER_DAC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, dac, DAC) + +#define K_SYSCALL_DRIVER_DAI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, dai, DAI) + +#define K_SYSCALL_DRIVER_DISPLAY(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, display, DISPLAY) + +#define K_SYSCALL_DRIVER_DMA(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, dma, DMA) + +#define K_SYSCALL_DRIVER_EDAC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, edac, EDAC) + +#define K_SYSCALL_DRIVER_EEPROM(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, eeprom, EEPROM) + +#define K_SYSCALL_DRIVER_EMUL_BBRAM(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, emul_bbram, EMUL_BBRAM) + +#define K_SYSCALL_DRIVER_FUEL_GAUGE_EMUL(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, fuel_gauge_emul, FUEL_GAUGE_EMUL) + +#define K_SYSCALL_DRIVER_EMUL_SENSOR(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, emul_sensor, EMUL_SENSOR) + +#define K_SYSCALL_DRIVER_ENTROPY(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, entropy, ENTROPY) + +#define K_SYSCALL_DRIVER_ESPI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, espi, ESPI) + +#define K_SYSCALL_DRIVER_ESPI_SAF(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, espi_saf, ESPI_SAF) + +#define K_SYSCALL_DRIVER_FLASH(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, flash, FLASH) + +#define K_SYSCALL_DRIVER_FPGA(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, fpga, FPGA) + +#define K_SYSCALL_DRIVER_FUEL_GAUGE(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, fuel_gauge, FUEL_GAUGE) + +#define K_SYSCALL_DRIVER_GNSS(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, gnss, GNSS) + +#define K_SYSCALL_DRIVER_HAPTICS(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, haptics, HAPTICS) + +#define K_SYSCALL_DRIVER_HWSPINLOCK(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, hwspinlock, HWSPINLOCK) + +#define K_SYSCALL_DRIVER_I2C(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, i2c, I2C) + +#define K_SYSCALL_DRIVER_I2C_TARGET(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, i2c_target, I2C_TARGET) + +#define K_SYSCALL_DRIVER_I2S(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, i2s, I2S) + +#define K_SYSCALL_DRIVER_I3C(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, i3c, I3C) + +#define K_SYSCALL_DRIVER_IPM(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, ipm, IPM) + +#define K_SYSCALL_DRIVER_LED(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, led, LED) + +#define K_SYSCALL_DRIVER_LED_STRIP(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, led_strip, LED_STRIP) + +#define K_SYSCALL_DRIVER_LORA(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, lora, LORA) + +#define K_SYSCALL_DRIVER_MBOX(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, mbox, MBOX) + +#define K_SYSCALL_DRIVER_MDIO(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, mdio, MDIO) + +#define K_SYSCALL_DRIVER_MIPI_DBI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, mipi_dbi, MIPI_DBI) + +#define K_SYSCALL_DRIVER_MIPI_DSI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, mipi_dsi, MIPI_DSI) + +#define K_SYSCALL_DRIVER_MSPI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, mspi, MSPI) + +#define K_SYSCALL_DRIVER_OPAMP(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, opamp, OPAMP) + +#define K_SYSCALL_DRIVER_OTP(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, otp, OTP) + +#define K_SYSCALL_DRIVER_PECI(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, peci, PECI) + +#define K_SYSCALL_DRIVER_PS2(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, ps2, PS2) + +#define K_SYSCALL_DRIVER_PTP_CLOCK(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, ptp_clock, PTP_CLOCK) + +#define K_SYSCALL_DRIVER_PWM(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, pwm, PWM) + +#define K_SYSCALL_DRIVER_REGULATOR_PARENT(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, regulator_parent, REGULATOR_PARENT) + +#define K_SYSCALL_DRIVER_REGULATOR(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, regulator, REGULATOR) + +#define K_SYSCALL_DRIVER_RESET(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, reset, RESET) + +#define K_SYSCALL_DRIVER_RETAINED_MEM(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, retained_mem, RETAINED_MEM) + +#define K_SYSCALL_DRIVER_RTC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, rtc, RTC) + +#define K_SYSCALL_DRIVER_SDHC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, sdhc, SDHC) + +#define K_SYSCALL_DRIVER_SENSOR(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, sensor, SENSOR) + +#define K_SYSCALL_DRIVER_SMBUS(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, smbus, SMBUS) + +#define K_SYSCALL_DRIVER_SYSCON(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, syscon, SYSCON) + +#define K_SYSCALL_DRIVER_TEE(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, tee, TEE) + +#define K_SYSCALL_DRIVER_UAOL(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, uaol, UAOL) + +#define K_SYSCALL_DRIVER_VIDEO(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, video, VIDEO) + +#define K_SYSCALL_DRIVER_VIRTIO(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, virtio, VIRTIO) + +#define K_SYSCALL_DRIVER_W1(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, w1, W1) + +#define K_SYSCALL_DRIVER_WDT(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, wdt, WDT) + +#define K_SYSCALL_DRIVER_WUC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, wuc, WUC) + +#define K_SYSCALL_DRIVER_CAN_TRANSCEIVER(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, can_transceiver, CAN_TRANSCEIVER) + +#define K_SYSCALL_DRIVER_NRF_CLOCK_CONTROL(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, nrf_clock_control, NRF_CLOCK_CONTROL) + +#define K_SYSCALL_DRIVER_I3C_TARGET(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, i3c_target, I3C_TARGET) + +#define K_SYSCALL_DRIVER_ITS(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, its, ITS) + +#define K_SYSCALL_DRIVER_VTD(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, vtd, VTD) + +#define K_SYSCALL_DRIVER_RENESAS_ELC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, renesas_elc, RENESAS_ELC) + +#define K_SYSCALL_DRIVER_TGPIO(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, tgpio, TGPIO) + +#define K_SYSCALL_DRIVER_PCIE_CTRL(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, pcie_ctrl, PCIE_CTRL) + +#define K_SYSCALL_DRIVER_PCIE_EP(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, pcie_ep, PCIE_EP) + +#define K_SYSCALL_DRIVER_PSI5(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, psi5, PSI5) + +#define K_SYSCALL_DRIVER_SENT(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, sent, SENT) + +#define K_SYSCALL_DRIVER_SVC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, svc, SVC) + +#define K_SYSCALL_DRIVER_STEPPER(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, stepper, STEPPER) + +#define K_SYSCALL_DRIVER_STEPPER_CTRL(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, stepper_ctrl, STEPPER_CTRL) + +#define K_SYSCALL_DRIVER_UART(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, uart, UART) + +#define K_SYSCALL_DRIVER_BC12_EMUL(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, bc12_emul, BC12_EMUL) + +#define K_SYSCALL_DRIVER_BC12(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, bc12, BC12) + +#define K_SYSCALL_DRIVER_USBC_PPC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, usbc_ppc, USBC_PPC) + +#define K_SYSCALL_DRIVER_TCPC(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, tcpc, TCPC) + +#define K_SYSCALL_DRIVER_USBC_VBUS(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, usbc_vbus, USBC_VBUS) + +#define K_SYSCALL_DRIVER_IVSHMEM(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, ivshmem, IVSHMEM) + +#define K_SYSCALL_DRIVER_ETHPHY(ptr, op) K_SYSCALL_DRIVER_GEN(ptr, op, ethphy, ETHPHY) +#endif /* DRIVER_VALIDATION_GEN_H */ diff --git a/build/zephyr/include/generated/zephyr/heap_constants.h b/build/zephyr/include/generated/zephyr/heap_constants.h new file mode 100644 index 0000000..a861400 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/heap_constants.h @@ -0,0 +1,19 @@ +/* THIS FILE IS AUTO GENERATED. PLEASE DO NOT EDIT. + * + * This header file provides macros for the offsets of various structure + * members. These offset macros are primarily intended to be used in + * assembly code. + */ + +#ifndef __GEN_HEAP_CONSTANTS_H__ +#define __GEN_HEAP_CONSTANTS_H__ + +#define ___z_heap_struct_SIZEOF 0x10 +#define ___z_heap_bucket_SIZEOF 0x4 +#define ___z_heap_chunk_unit_SIZEOF 0x8 +#define ___z_heap_hdr_SIZEOF 0x4 +#define ___z_heap_ftr_SIZEOF 0x4 +#define ___z_heap_trailer_SIZEOF 0x0 +#define ___z_heap_min_chunk_SIZEOF 0x1 + +#endif /* __GEN_HEAP_CONSTANTS_H__ */ diff --git a/build/zephyr/include/generated/zephyr/kobj-types-enum.h b/build/zephyr/include/generated/zephyr/kobj-types-enum.h new file mode 100644 index 0000000..ee2c36c --- /dev/null +++ b/build/zephyr/include/generated/zephyr/kobj-types-enum.h @@ -0,0 +1,140 @@ +/* Core kernel objects */ +K_OBJ_MEM_SLAB, +K_OBJ_MSGQ, +K_OBJ_MUTEX, +K_OBJ_PIPE, +K_OBJ_QUEUE, +K_OBJ_POLL_SIGNAL, +K_OBJ_SEM, +K_OBJ_STACK, +K_OBJ_THREAD, +K_OBJ_TIMER, +K_OBJ_THREAD_STACK_ELEMENT, +K_OBJ_NET_SOCKET, +K_OBJ_NET_IF, +K_OBJ_SYS_MUTEX, +K_OBJ_FUTEX, +K_OBJ_CONDVAR, +#ifdef CONFIG_EVENTS +K_OBJ_EVENT, +#endif +#ifdef CONFIG_ZTEST +K_OBJ_ZTEST_SUITE_NODE, +#endif +#ifdef CONFIG_ZTEST +K_OBJ_ZTEST_SUITE_STATS, +#endif +#ifdef CONFIG_ZTEST +K_OBJ_ZTEST_UNIT_TEST, +#endif +#ifdef CONFIG_ZTEST +K_OBJ_ZTEST_TEST_RULE, +#endif +#ifdef CONFIG_RTIO +K_OBJ_RTIO, +#endif +#ifdef CONFIG_RTIO +K_OBJ_RTIO_IODEV, +#endif +#ifdef CONFIG_RTIO +K_OBJ_RTIO_POOL, +#endif +#ifdef CONFIG_ADC_STREAM +K_OBJ_ADC_DECODER_API, +#endif +#ifdef CONFIG_SENSOR_ASYNC_API +K_OBJ_SENSOR_DECODER_API, +#endif +/* Driver subsystems */ +K_OBJ_DRIVER_GPIO, +K_OBJ_DRIVER_SPI, +K_OBJ_DRIVER_SHARED_IRQ, +K_OBJ_DRIVER_CRYPTO, +K_OBJ_DRIVER_ADC, +K_OBJ_DRIVER_AUXDISPLAY, +K_OBJ_DRIVER_BBRAM, +K_OBJ_DRIVER_BIOMETRIC, +K_OBJ_DRIVER_BT_HCI, +K_OBJ_DRIVER_CAN, +K_OBJ_DRIVER_CELLULAR, +K_OBJ_DRIVER_CHARGER, +K_OBJ_DRIVER_CLOCK_CONTROL, +K_OBJ_DRIVER_COMPARATOR, +K_OBJ_DRIVER_COREDUMP, +K_OBJ_DRIVER_COUNTER, +K_OBJ_DRIVER_CRC, +K_OBJ_DRIVER_DAC, +K_OBJ_DRIVER_DAI, +K_OBJ_DRIVER_DISPLAY, +K_OBJ_DRIVER_DMA, +K_OBJ_DRIVER_EDAC, +K_OBJ_DRIVER_EEPROM, +K_OBJ_DRIVER_EMUL_BBRAM, +K_OBJ_DRIVER_FUEL_GAUGE_EMUL, +K_OBJ_DRIVER_EMUL_SENSOR, +K_OBJ_DRIVER_ENTROPY, +K_OBJ_DRIVER_ESPI, +K_OBJ_DRIVER_ESPI_SAF, +K_OBJ_DRIVER_FLASH, +K_OBJ_DRIVER_FPGA, +K_OBJ_DRIVER_FUEL_GAUGE, +K_OBJ_DRIVER_GNSS, +K_OBJ_DRIVER_HAPTICS, +K_OBJ_DRIVER_HWSPINLOCK, +K_OBJ_DRIVER_I2C, +K_OBJ_DRIVER_I2C_TARGET, +K_OBJ_DRIVER_I2S, +K_OBJ_DRIVER_I3C, +K_OBJ_DRIVER_IPM, +K_OBJ_DRIVER_LED, +K_OBJ_DRIVER_LED_STRIP, +K_OBJ_DRIVER_LORA, +K_OBJ_DRIVER_MBOX, +K_OBJ_DRIVER_MDIO, +K_OBJ_DRIVER_MIPI_DBI, +K_OBJ_DRIVER_MIPI_DSI, +K_OBJ_DRIVER_MSPI, +K_OBJ_DRIVER_OPAMP, +K_OBJ_DRIVER_OTP, +K_OBJ_DRIVER_PECI, +K_OBJ_DRIVER_PS2, +K_OBJ_DRIVER_PTP_CLOCK, +K_OBJ_DRIVER_PWM, +K_OBJ_DRIVER_REGULATOR_PARENT, +K_OBJ_DRIVER_REGULATOR, +K_OBJ_DRIVER_RESET, +K_OBJ_DRIVER_RETAINED_MEM, +K_OBJ_DRIVER_RTC, +K_OBJ_DRIVER_SDHC, +K_OBJ_DRIVER_SENSOR, +K_OBJ_DRIVER_SMBUS, +K_OBJ_DRIVER_SYSCON, +K_OBJ_DRIVER_TEE, +K_OBJ_DRIVER_UAOL, +K_OBJ_DRIVER_VIDEO, +K_OBJ_DRIVER_VIRTIO, +K_OBJ_DRIVER_W1, +K_OBJ_DRIVER_WDT, +K_OBJ_DRIVER_WUC, +K_OBJ_DRIVER_CAN_TRANSCEIVER, +K_OBJ_DRIVER_NRF_CLOCK_CONTROL, +K_OBJ_DRIVER_I3C_TARGET, +K_OBJ_DRIVER_ITS, +K_OBJ_DRIVER_VTD, +K_OBJ_DRIVER_RENESAS_ELC, +K_OBJ_DRIVER_TGPIO, +K_OBJ_DRIVER_PCIE_CTRL, +K_OBJ_DRIVER_PCIE_EP, +K_OBJ_DRIVER_PSI5, +K_OBJ_DRIVER_SENT, +K_OBJ_DRIVER_SVC, +K_OBJ_DRIVER_STEPPER, +K_OBJ_DRIVER_STEPPER_CTRL, +K_OBJ_DRIVER_UART, +K_OBJ_DRIVER_BC12_EMUL, +K_OBJ_DRIVER_BC12, +K_OBJ_DRIVER_USBC_PPC, +K_OBJ_DRIVER_TCPC, +K_OBJ_DRIVER_USBC_VBUS, +K_OBJ_DRIVER_IVSHMEM, +K_OBJ_DRIVER_ETHPHY, diff --git a/build/zephyr/include/generated/zephyr/offsets.h b/build/zephyr/include/generated/zephyr/offsets.h new file mode 100644 index 0000000..6c58fc2 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/offsets.h @@ -0,0 +1,48 @@ +/* THIS FILE IS AUTO GENERATED. PLEASE DO NOT EDIT. + * + * This header file provides macros for the offsets of various structure + * members. These offset macros are primarily intended to be used in + * assembly code. + */ + +#ifndef __GEN_OFFSETS_H__ +#define __GEN_OFFSETS_H__ + +#define ___cpu_t_current_OFFSET 0x8 +#define ___cpu_t_nested_OFFSET 0x0 +#define ___cpu_t_irq_stack_OFFSET 0x4 +#define ___cpu_t_arch_OFFSET 0x11 +#define ___kernel_t_cpus_OFFSET 0x0 +#define ___kernel_t_ready_q_OFFSET 0x14 +#define ___ready_q_t_cache_OFFSET 0x0 +#define ___thread_base_t_user_options_OFFSET 0xc +#define ___thread_t_base_OFFSET 0x0 +#define ___thread_t_callee_saved_OFFSET 0x30 +#define ___thread_t_arch_OFFSET 0x60 +#define ___thread_t_switch_handle_OFFSET 0x58 +#define ___thread_t_stack_info_OFFSET 0x48 +#define __z_interrupt_stack_SIZEOF 0x800 +#define __z_interrupt_all_stacks_SIZEOF 0x800 +#define _PM_DEVICE_STRUCT_FLAGS_OFFSET 0x0 +#define ___xtensa_irq_bsa_t_SIZEOF 0x4c +#define ___xtensa_irq_stack_frame_raw_t_SIZEOF 0x34 +#define ___xtensa_irq_stack_frame_a15_t_SIZEOF 0x80 +#define ___xtensa_irq_stack_frame_a11_t_SIZEOF 0x70 +#define ___xtensa_irq_stack_frame_a7_t_SIZEOF 0x60 +#define ___xtensa_irq_stack_frame_a3_t_SIZEOF 0x50 +#define ___xtensa_irq_bsa_t_a0_OFFSET 0x28 +#define ___xtensa_irq_bsa_t_scratch_OFFSET 0x2c +#define ___xtensa_irq_bsa_t_a2_OFFSET 0x30 +#define ___xtensa_irq_bsa_t_a3_OFFSET 0x34 +#define ___xtensa_irq_bsa_t_exccause_OFFSET 0x8 +#define ___xtensa_irq_bsa_t_excvaddr_OFFSET 0xc +#define ___xtensa_irq_bsa_t_pc_OFFSET 0x24 +#define ___xtensa_irq_bsa_t_ps_OFFSET 0x20 +#define ___xtensa_irq_bsa_t_sar_OFFSET 0x1c +#define ___xtensa_irq_bsa_t_lcount_OFFSET 0x10 +#define ___xtensa_irq_bsa_t_lbeg_OFFSET 0x18 +#define ___xtensa_irq_bsa_t_lend_OFFSET 0x14 +#define ___xtensa_irq_bsa_t_scompare1_OFFSET 0x4 +#define ___xtensa_irq_bsa_t_threadptr_OFFSET 0x0 + +#endif /* __GEN_OFFSETS_H__ */ diff --git a/build/zephyr/include/generated/zephyr/otype-to-size.h b/build/zephyr/include/generated/zephyr/otype-to-size.h new file mode 100644 index 0000000..5ae6675 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/otype-to-size.h @@ -0,0 +1,15 @@ +/* Non device/stack objects */ +case K_OBJ_MEM_SLAB: ret = sizeof(struct k_mem_slab); break; +case K_OBJ_MSGQ: ret = sizeof(struct k_msgq); break; +case K_OBJ_MUTEX: ret = sizeof(struct k_mutex); break; +case K_OBJ_PIPE: ret = sizeof(struct k_pipe); break; +case K_OBJ_QUEUE: ret = sizeof(struct k_queue); break; +case K_OBJ_POLL_SIGNAL: ret = sizeof(struct k_poll_signal); break; +case K_OBJ_SEM: ret = sizeof(struct k_sem); break; +case K_OBJ_STACK: ret = sizeof(struct k_stack); break; +case K_OBJ_THREAD: ret = sizeof(struct k_thread); break; +case K_OBJ_TIMER: ret = sizeof(struct k_timer); break; +case K_OBJ_CONDVAR: ret = sizeof(struct k_condvar); break; +#ifdef CONFIG_EVENTS +case K_OBJ_EVENT: ret = sizeof(struct k_event); break; +#endif diff --git a/build/zephyr/include/generated/zephyr/otype-to-str.h b/build/zephyr/include/generated/zephyr/otype-to-str.h new file mode 100644 index 0000000..516764d --- /dev/null +++ b/build/zephyr/include/generated/zephyr/otype-to-str.h @@ -0,0 +1,140 @@ +/* Core kernel objects */ +case K_OBJ_MEM_SLAB: ret = "k_mem_slab"; break; +case K_OBJ_MSGQ: ret = "k_msgq"; break; +case K_OBJ_MUTEX: ret = "k_mutex"; break; +case K_OBJ_PIPE: ret = "k_pipe"; break; +case K_OBJ_QUEUE: ret = "k_queue"; break; +case K_OBJ_POLL_SIGNAL: ret = "k_poll_signal"; break; +case K_OBJ_SEM: ret = "k_sem"; break; +case K_OBJ_STACK: ret = "k_stack"; break; +case K_OBJ_THREAD: ret = "k_thread"; break; +case K_OBJ_TIMER: ret = "k_timer"; break; +case K_OBJ_THREAD_STACK_ELEMENT: ret = "z_thread_stack_element"; break; +case K_OBJ_NET_SOCKET: ret = "NET_SOCKET"; break; +case K_OBJ_NET_IF: ret = "net_if"; break; +case K_OBJ_SYS_MUTEX: ret = "sys_mutex"; break; +case K_OBJ_FUTEX: ret = "k_futex"; break; +case K_OBJ_CONDVAR: ret = "k_condvar"; break; +#ifdef CONFIG_EVENTS +case K_OBJ_EVENT: ret = "k_event"; break; +#endif +#ifdef CONFIG_ZTEST +case K_OBJ_ZTEST_SUITE_NODE: ret = "ztest_suite_node"; break; +#endif +#ifdef CONFIG_ZTEST +case K_OBJ_ZTEST_SUITE_STATS: ret = "ztest_suite_stats"; break; +#endif +#ifdef CONFIG_ZTEST +case K_OBJ_ZTEST_UNIT_TEST: ret = "ztest_unit_test"; break; +#endif +#ifdef CONFIG_ZTEST +case K_OBJ_ZTEST_TEST_RULE: ret = "ztest_test_rule"; break; +#endif +#ifdef CONFIG_RTIO +case K_OBJ_RTIO: ret = "rtio"; break; +#endif +#ifdef CONFIG_RTIO +case K_OBJ_RTIO_IODEV: ret = "rtio_iodev"; break; +#endif +#ifdef CONFIG_RTIO +case K_OBJ_RTIO_POOL: ret = "rtio_pool"; break; +#endif +#ifdef CONFIG_ADC_STREAM +case K_OBJ_ADC_DECODER_API: ret = "adc_decoder_api"; break; +#endif +#ifdef CONFIG_SENSOR_ASYNC_API +case K_OBJ_SENSOR_DECODER_API: ret = "sensor_decoder_api"; break; +#endif +/* Driver subsystems */ +case K_OBJ_DRIVER_GPIO: ret = "gpio driver"; break; +case K_OBJ_DRIVER_SPI: ret = "spi driver"; break; +case K_OBJ_DRIVER_SHARED_IRQ: ret = "shared_irq driver"; break; +case K_OBJ_DRIVER_CRYPTO: ret = "crypto driver"; break; +case K_OBJ_DRIVER_ADC: ret = "adc driver"; break; +case K_OBJ_DRIVER_AUXDISPLAY: ret = "auxdisplay driver"; break; +case K_OBJ_DRIVER_BBRAM: ret = "bbram driver"; break; +case K_OBJ_DRIVER_BIOMETRIC: ret = "biometric driver"; break; +case K_OBJ_DRIVER_BT_HCI: ret = "bt_hci driver"; break; +case K_OBJ_DRIVER_CAN: ret = "can driver"; break; +case K_OBJ_DRIVER_CELLULAR: ret = "cellular driver"; break; +case K_OBJ_DRIVER_CHARGER: ret = "charger driver"; break; +case K_OBJ_DRIVER_CLOCK_CONTROL: ret = "clock_control driver"; break; +case K_OBJ_DRIVER_COMPARATOR: ret = "comparator driver"; break; +case K_OBJ_DRIVER_COREDUMP: ret = "coredump driver"; break; +case K_OBJ_DRIVER_COUNTER: ret = "counter driver"; break; +case K_OBJ_DRIVER_CRC: ret = "crc driver"; break; +case K_OBJ_DRIVER_DAC: ret = "dac driver"; break; +case K_OBJ_DRIVER_DAI: ret = "dai driver"; break; +case K_OBJ_DRIVER_DISPLAY: ret = "display driver"; break; +case K_OBJ_DRIVER_DMA: ret = "dma driver"; break; +case K_OBJ_DRIVER_EDAC: ret = "edac driver"; break; +case K_OBJ_DRIVER_EEPROM: ret = "eeprom driver"; break; +case K_OBJ_DRIVER_EMUL_BBRAM: ret = "emul_bbram driver"; break; +case K_OBJ_DRIVER_FUEL_GAUGE_EMUL: ret = "fuel_gauge_emul driver"; break; +case K_OBJ_DRIVER_EMUL_SENSOR: ret = "emul_sensor driver"; break; +case K_OBJ_DRIVER_ENTROPY: ret = "entropy driver"; break; +case K_OBJ_DRIVER_ESPI: ret = "espi driver"; break; +case K_OBJ_DRIVER_ESPI_SAF: ret = "espi_saf driver"; break; +case K_OBJ_DRIVER_FLASH: ret = "flash driver"; break; +case K_OBJ_DRIVER_FPGA: ret = "fpga driver"; break; +case K_OBJ_DRIVER_FUEL_GAUGE: ret = "fuel_gauge driver"; break; +case K_OBJ_DRIVER_GNSS: ret = "gnss driver"; break; +case K_OBJ_DRIVER_HAPTICS: ret = "haptics driver"; break; +case K_OBJ_DRIVER_HWSPINLOCK: ret = "hwspinlock driver"; break; +case K_OBJ_DRIVER_I2C: ret = "i2c driver"; break; +case K_OBJ_DRIVER_I2C_TARGET: ret = "i2c_target driver"; break; +case K_OBJ_DRIVER_I2S: ret = "i2s driver"; break; +case K_OBJ_DRIVER_I3C: ret = "i3c driver"; break; +case K_OBJ_DRIVER_IPM: ret = "ipm driver"; break; +case K_OBJ_DRIVER_LED: ret = "led driver"; break; +case K_OBJ_DRIVER_LED_STRIP: ret = "led_strip driver"; break; +case K_OBJ_DRIVER_LORA: ret = "lora driver"; break; +case K_OBJ_DRIVER_MBOX: ret = "mbox driver"; break; +case K_OBJ_DRIVER_MDIO: ret = "mdio driver"; break; +case K_OBJ_DRIVER_MIPI_DBI: ret = "mipi_dbi driver"; break; +case K_OBJ_DRIVER_MIPI_DSI: ret = "mipi_dsi driver"; break; +case K_OBJ_DRIVER_MSPI: ret = "mspi driver"; break; +case K_OBJ_DRIVER_OPAMP: ret = "opamp driver"; break; +case K_OBJ_DRIVER_OTP: ret = "otp driver"; break; +case K_OBJ_DRIVER_PECI: ret = "peci driver"; break; +case K_OBJ_DRIVER_PS2: ret = "ps2 driver"; break; +case K_OBJ_DRIVER_PTP_CLOCK: ret = "ptp_clock driver"; break; +case K_OBJ_DRIVER_PWM: ret = "pwm driver"; break; +case K_OBJ_DRIVER_REGULATOR_PARENT: ret = "regulator_parent driver"; break; +case K_OBJ_DRIVER_REGULATOR: ret = "regulator driver"; break; +case K_OBJ_DRIVER_RESET: ret = "reset driver"; break; +case K_OBJ_DRIVER_RETAINED_MEM: ret = "retained_mem driver"; break; +case K_OBJ_DRIVER_RTC: ret = "rtc driver"; break; +case K_OBJ_DRIVER_SDHC: ret = "sdhc driver"; break; +case K_OBJ_DRIVER_SENSOR: ret = "sensor driver"; break; +case K_OBJ_DRIVER_SMBUS: ret = "smbus driver"; break; +case K_OBJ_DRIVER_SYSCON: ret = "syscon driver"; break; +case K_OBJ_DRIVER_TEE: ret = "tee driver"; break; +case K_OBJ_DRIVER_UAOL: ret = "uaol driver"; break; +case K_OBJ_DRIVER_VIDEO: ret = "video driver"; break; +case K_OBJ_DRIVER_VIRTIO: ret = "virtio driver"; break; +case K_OBJ_DRIVER_W1: ret = "w1 driver"; break; +case K_OBJ_DRIVER_WDT: ret = "wdt driver"; break; +case K_OBJ_DRIVER_WUC: ret = "wuc driver"; break; +case K_OBJ_DRIVER_CAN_TRANSCEIVER: ret = "can_transceiver driver"; break; +case K_OBJ_DRIVER_NRF_CLOCK_CONTROL: ret = "nrf_clock_control driver"; break; +case K_OBJ_DRIVER_I3C_TARGET: ret = "i3c_target driver"; break; +case K_OBJ_DRIVER_ITS: ret = "its driver"; break; +case K_OBJ_DRIVER_VTD: ret = "vtd driver"; break; +case K_OBJ_DRIVER_RENESAS_ELC: ret = "renesas_elc driver"; break; +case K_OBJ_DRIVER_TGPIO: ret = "tgpio driver"; break; +case K_OBJ_DRIVER_PCIE_CTRL: ret = "pcie_ctrl driver"; break; +case K_OBJ_DRIVER_PCIE_EP: ret = "pcie_ep driver"; break; +case K_OBJ_DRIVER_PSI5: ret = "psi5 driver"; break; +case K_OBJ_DRIVER_SENT: ret = "sent driver"; break; +case K_OBJ_DRIVER_SVC: ret = "svc driver"; break; +case K_OBJ_DRIVER_STEPPER: ret = "stepper driver"; break; +case K_OBJ_DRIVER_STEPPER_CTRL: ret = "stepper_ctrl driver"; break; +case K_OBJ_DRIVER_UART: ret = "uart driver"; break; +case K_OBJ_DRIVER_BC12_EMUL: ret = "bc12_emul driver"; break; +case K_OBJ_DRIVER_BC12: ret = "bc12 driver"; break; +case K_OBJ_DRIVER_USBC_PPC: ret = "usbc_ppc driver"; break; +case K_OBJ_DRIVER_TCPC: ret = "tcpc driver"; break; +case K_OBJ_DRIVER_USBC_VBUS: ret = "usbc_vbus driver"; break; +case K_OBJ_DRIVER_IVSHMEM: ret = "ivshmem driver"; break; +case K_OBJ_DRIVER_ETHPHY: ret = "ethphy driver"; break; diff --git a/build/zephyr/include/generated/zephyr/syscall_dispatch.c b/build/zephyr/include/generated/zephyr/syscall_dispatch.c new file mode 100644 index 0000000..ef645bc --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscall_dispatch.c @@ -0,0 +1,812 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#include + +/* Weak handler functions that get replaced by the real ones unless a system + * call is not implemented due to kernel configuration. + */ + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_xtensa_user_fault(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_zephyr_read_stdin(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_zephyr_write_stdout(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_zephyr_fputc(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_zephyr_fwrite(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_sys_clock_getrtoffset(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_sys_clock_settime(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_sys_clock_nanosleep(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_z_sys_mutex_kernel_lock(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_z_sys_mutex_kernel_unlock(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_z_log_msg_simple_create_0(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_z_log_msg_simple_create_1(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_z_log_msg_simple_create_2(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_z_log_msg_static_create(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_log_panic(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_log_process(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_log_buffered_cnt(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_log_filter_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_log_frontend_filter_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_pin_interrupt_configure(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_pin_configure(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_port_get_direction(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_pin_get_config(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_port_get_raw(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_port_set_masked_raw(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_port_set_bits_raw(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_port_clear_bits_raw(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_port_toggle_bits(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_gpio_get_pending_int(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_err_check(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_poll_in(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_poll_in_u16(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_poll_out(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_poll_out_u16(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_configure(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_config_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_tx_enable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_tx_disable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_rx_enable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_rx_disable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_err_enable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_err_disable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_is_pending(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_irq_update(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_tx(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_tx_u16(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_tx_abort(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_rx_enable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_rx_enable_u16(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_rx_disable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_line_ctrl_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_line_ctrl_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_uart_drv_cmd(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_spi_transceive(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_spi_release(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_device_get_binding(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_device_is_ready(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_device_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_device_deinit(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_device_get_by_dt_nodelabel(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_stack_alloc(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_stack_free(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_create(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_stack_space_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_runtime_stack_unused_threshold_pct_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_runtime_stack_unused_threshold_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_runtime_stack_unused_threshold_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_join(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_sleep(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_usleep(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_busy_wait(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_yield(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_wakeup(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_sched_current_thread_query(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_abort(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_timeout_expires_ticks(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_timeout_remaining_ticks(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_priority_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_priority_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_deadline_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_absolute_deadline_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_reschedule(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_suspend(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_resume(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_is_preempt_thread(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_custom_data_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_custom_data_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_name_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_thread_name_copy(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_start(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_stop(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_status_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_status_sync(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_expires_ticks(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_remaining_ticks(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_user_data_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_timer_user_data_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_uptime_ticks(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_cancel_wait(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_alloc_append(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_alloc_prepend(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_is_empty(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_peek_head(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_queue_peek_tail(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_futex_wait(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_futex_wake(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_post(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_set(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_set_masked(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_clear(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_wait(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_wait_all(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_wait_safe(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_event_wait_all_safe(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_stack_alloc_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_stack_push(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_stack_pop(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_mutex_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_mutex_lock(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_mutex_unlock(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_condvar_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_condvar_signal(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_condvar_broadcast(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_condvar_wait(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_sem_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_sem_take(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_sem_give(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_sem_reset(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_sem_count_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_alloc_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_put(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_put_front(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_peek(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_peek_at(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_purge(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_num_free_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_get_attrs(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_msgq_num_used_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_pipe_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_pipe_write(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_pipe_read(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_pipe_reset(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_pipe_close(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_poll(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_poll_signal_init(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_poll_signal_reset(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_poll_signal_check(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_poll_signal_raise(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_str_out(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_float_disable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_float_enable(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_object_access_check(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_k_object_alloc_size(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_sys_clock_hw_cycles_per_sec_runtime_get(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +__weak ALIAS_OF(handler_no_syscall) +uintptr_t z_mrsh_z_errno(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, + uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); +extern uintptr_t z_mrsh_k_object_release(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); +extern uintptr_t z_mrsh_k_object_access_grant(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); +extern uintptr_t z_mrsh_k_object_alloc(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, void *ssf); + +const _k_syscall_handler_t _k_syscall_table[K_SYSCALL_LIMIT] = { + [K_SYSCALL_XTENSA_USER_FAULT] = z_mrsh_xtensa_user_fault, + [K_SYSCALL_ZEPHYR_READ_STDIN] = z_mrsh_zephyr_read_stdin, + [K_SYSCALL_ZEPHYR_WRITE_STDOUT] = z_mrsh_zephyr_write_stdout, + [K_SYSCALL_ZEPHYR_FPUTC] = z_mrsh_zephyr_fputc, + [K_SYSCALL_ZEPHYR_FWRITE] = z_mrsh_zephyr_fwrite, + [K_SYSCALL_SYS_CLOCK_GETRTOFFSET] = z_mrsh_sys_clock_getrtoffset, + [K_SYSCALL_SYS_CLOCK_SETTIME] = z_mrsh_sys_clock_settime, + [K_SYSCALL_SYS_CLOCK_NANOSLEEP] = z_mrsh_sys_clock_nanosleep, + [K_SYSCALL_Z_SYS_MUTEX_KERNEL_LOCK] = z_mrsh_z_sys_mutex_kernel_lock, + [K_SYSCALL_Z_SYS_MUTEX_KERNEL_UNLOCK] = z_mrsh_z_sys_mutex_kernel_unlock, + [K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_0] = z_mrsh_z_log_msg_simple_create_0, + [K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_1] = z_mrsh_z_log_msg_simple_create_1, + [K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_2] = z_mrsh_z_log_msg_simple_create_2, + [K_SYSCALL_Z_LOG_MSG_STATIC_CREATE] = z_mrsh_z_log_msg_static_create, + [K_SYSCALL_LOG_PANIC] = z_mrsh_log_panic, + [K_SYSCALL_LOG_PROCESS] = z_mrsh_log_process, + [K_SYSCALL_LOG_BUFFERED_CNT] = z_mrsh_log_buffered_cnt, + [K_SYSCALL_LOG_FILTER_SET] = z_mrsh_log_filter_set, + [K_SYSCALL_LOG_FRONTEND_FILTER_SET] = z_mrsh_log_frontend_filter_set, + [K_SYSCALL_GPIO_PIN_INTERRUPT_CONFIGURE] = z_mrsh_gpio_pin_interrupt_configure, + [K_SYSCALL_GPIO_PIN_CONFIGURE] = z_mrsh_gpio_pin_configure, + [K_SYSCALL_GPIO_PORT_GET_DIRECTION] = z_mrsh_gpio_port_get_direction, + [K_SYSCALL_GPIO_PIN_GET_CONFIG] = z_mrsh_gpio_pin_get_config, + [K_SYSCALL_GPIO_PORT_GET_RAW] = z_mrsh_gpio_port_get_raw, + [K_SYSCALL_GPIO_PORT_SET_MASKED_RAW] = z_mrsh_gpio_port_set_masked_raw, + [K_SYSCALL_GPIO_PORT_SET_BITS_RAW] = z_mrsh_gpio_port_set_bits_raw, + [K_SYSCALL_GPIO_PORT_CLEAR_BITS_RAW] = z_mrsh_gpio_port_clear_bits_raw, + [K_SYSCALL_GPIO_PORT_TOGGLE_BITS] = z_mrsh_gpio_port_toggle_bits, + [K_SYSCALL_GPIO_GET_PENDING_INT] = z_mrsh_gpio_get_pending_int, + [K_SYSCALL_UART_ERR_CHECK] = z_mrsh_uart_err_check, + [K_SYSCALL_UART_POLL_IN] = z_mrsh_uart_poll_in, + [K_SYSCALL_UART_POLL_IN_U16] = z_mrsh_uart_poll_in_u16, + [K_SYSCALL_UART_POLL_OUT] = z_mrsh_uart_poll_out, + [K_SYSCALL_UART_POLL_OUT_U16] = z_mrsh_uart_poll_out_u16, + [K_SYSCALL_UART_CONFIGURE] = z_mrsh_uart_configure, + [K_SYSCALL_UART_CONFIG_GET] = z_mrsh_uart_config_get, + [K_SYSCALL_UART_IRQ_TX_ENABLE] = z_mrsh_uart_irq_tx_enable, + [K_SYSCALL_UART_IRQ_TX_DISABLE] = z_mrsh_uart_irq_tx_disable, + [K_SYSCALL_UART_IRQ_RX_ENABLE] = z_mrsh_uart_irq_rx_enable, + [K_SYSCALL_UART_IRQ_RX_DISABLE] = z_mrsh_uart_irq_rx_disable, + [K_SYSCALL_UART_IRQ_ERR_ENABLE] = z_mrsh_uart_irq_err_enable, + [K_SYSCALL_UART_IRQ_ERR_DISABLE] = z_mrsh_uart_irq_err_disable, + [K_SYSCALL_UART_IRQ_IS_PENDING] = z_mrsh_uart_irq_is_pending, + [K_SYSCALL_UART_IRQ_UPDATE] = z_mrsh_uart_irq_update, + [K_SYSCALL_UART_TX] = z_mrsh_uart_tx, + [K_SYSCALL_UART_TX_U16] = z_mrsh_uart_tx_u16, + [K_SYSCALL_UART_TX_ABORT] = z_mrsh_uart_tx_abort, + [K_SYSCALL_UART_RX_ENABLE] = z_mrsh_uart_rx_enable, + [K_SYSCALL_UART_RX_ENABLE_U16] = z_mrsh_uart_rx_enable_u16, + [K_SYSCALL_UART_RX_DISABLE] = z_mrsh_uart_rx_disable, + [K_SYSCALL_UART_LINE_CTRL_SET] = z_mrsh_uart_line_ctrl_set, + [K_SYSCALL_UART_LINE_CTRL_GET] = z_mrsh_uart_line_ctrl_get, + [K_SYSCALL_UART_DRV_CMD] = z_mrsh_uart_drv_cmd, + [K_SYSCALL_SPI_TRANSCEIVE] = z_mrsh_spi_transceive, + [K_SYSCALL_SPI_RELEASE] = z_mrsh_spi_release, + [K_SYSCALL_DEVICE_GET_BINDING] = z_mrsh_device_get_binding, + [K_SYSCALL_DEVICE_IS_READY] = z_mrsh_device_is_ready, + [K_SYSCALL_DEVICE_INIT] = z_mrsh_device_init, + [K_SYSCALL_DEVICE_DEINIT] = z_mrsh_device_deinit, + [K_SYSCALL_DEVICE_GET_BY_DT_NODELABEL] = z_mrsh_device_get_by_dt_nodelabel, + [K_SYSCALL_K_THREAD_STACK_ALLOC] = z_mrsh_k_thread_stack_alloc, + [K_SYSCALL_K_THREAD_STACK_FREE] = z_mrsh_k_thread_stack_free, + [K_SYSCALL_K_THREAD_CREATE] = z_mrsh_k_thread_create, + [K_SYSCALL_K_THREAD_STACK_SPACE_GET] = z_mrsh_k_thread_stack_space_get, + [K_SYSCALL_K_THREAD_RUNTIME_STACK_UNUSED_THRESHOLD_PCT_SET] = z_mrsh_k_thread_runtime_stack_unused_threshold_pct_set, + [K_SYSCALL_K_THREAD_RUNTIME_STACK_UNUSED_THRESHOLD_SET] = z_mrsh_k_thread_runtime_stack_unused_threshold_set, + [K_SYSCALL_K_THREAD_RUNTIME_STACK_UNUSED_THRESHOLD_GET] = z_mrsh_k_thread_runtime_stack_unused_threshold_get, + [K_SYSCALL_K_THREAD_JOIN] = z_mrsh_k_thread_join, + [K_SYSCALL_K_SLEEP] = z_mrsh_k_sleep, + [K_SYSCALL_K_USLEEP] = z_mrsh_k_usleep, + [K_SYSCALL_K_BUSY_WAIT] = z_mrsh_k_busy_wait, + [K_SYSCALL_K_YIELD] = z_mrsh_k_yield, + [K_SYSCALL_K_WAKEUP] = z_mrsh_k_wakeup, + [K_SYSCALL_K_SCHED_CURRENT_THREAD_QUERY] = z_mrsh_k_sched_current_thread_query, + [K_SYSCALL_K_THREAD_ABORT] = z_mrsh_k_thread_abort, + [K_SYSCALL_K_THREAD_TIMEOUT_EXPIRES_TICKS] = z_mrsh_k_thread_timeout_expires_ticks, + [K_SYSCALL_K_THREAD_TIMEOUT_REMAINING_TICKS] = z_mrsh_k_thread_timeout_remaining_ticks, + [K_SYSCALL_K_THREAD_PRIORITY_GET] = z_mrsh_k_thread_priority_get, + [K_SYSCALL_K_THREAD_PRIORITY_SET] = z_mrsh_k_thread_priority_set, + [K_SYSCALL_K_THREAD_DEADLINE_SET] = z_mrsh_k_thread_deadline_set, + [K_SYSCALL_K_THREAD_ABSOLUTE_DEADLINE_SET] = z_mrsh_k_thread_absolute_deadline_set, + [K_SYSCALL_K_RESCHEDULE] = z_mrsh_k_reschedule, + [K_SYSCALL_K_THREAD_SUSPEND] = z_mrsh_k_thread_suspend, + [K_SYSCALL_K_THREAD_RESUME] = z_mrsh_k_thread_resume, + [K_SYSCALL_K_IS_PREEMPT_THREAD] = z_mrsh_k_is_preempt_thread, + [K_SYSCALL_K_THREAD_CUSTOM_DATA_SET] = z_mrsh_k_thread_custom_data_set, + [K_SYSCALL_K_THREAD_CUSTOM_DATA_GET] = z_mrsh_k_thread_custom_data_get, + [K_SYSCALL_K_THREAD_NAME_SET] = z_mrsh_k_thread_name_set, + [K_SYSCALL_K_THREAD_NAME_COPY] = z_mrsh_k_thread_name_copy, + [K_SYSCALL_K_TIMER_START] = z_mrsh_k_timer_start, + [K_SYSCALL_K_TIMER_STOP] = z_mrsh_k_timer_stop, + [K_SYSCALL_K_TIMER_STATUS_GET] = z_mrsh_k_timer_status_get, + [K_SYSCALL_K_TIMER_STATUS_SYNC] = z_mrsh_k_timer_status_sync, + [K_SYSCALL_K_TIMER_EXPIRES_TICKS] = z_mrsh_k_timer_expires_ticks, + [K_SYSCALL_K_TIMER_REMAINING_TICKS] = z_mrsh_k_timer_remaining_ticks, + [K_SYSCALL_K_TIMER_USER_DATA_SET] = z_mrsh_k_timer_user_data_set, + [K_SYSCALL_K_TIMER_USER_DATA_GET] = z_mrsh_k_timer_user_data_get, + [K_SYSCALL_K_UPTIME_TICKS] = z_mrsh_k_uptime_ticks, + [K_SYSCALL_K_QUEUE_INIT] = z_mrsh_k_queue_init, + [K_SYSCALL_K_QUEUE_CANCEL_WAIT] = z_mrsh_k_queue_cancel_wait, + [K_SYSCALL_K_QUEUE_ALLOC_APPEND] = z_mrsh_k_queue_alloc_append, + [K_SYSCALL_K_QUEUE_ALLOC_PREPEND] = z_mrsh_k_queue_alloc_prepend, + [K_SYSCALL_K_QUEUE_GET] = z_mrsh_k_queue_get, + [K_SYSCALL_K_QUEUE_IS_EMPTY] = z_mrsh_k_queue_is_empty, + [K_SYSCALL_K_QUEUE_PEEK_HEAD] = z_mrsh_k_queue_peek_head, + [K_SYSCALL_K_QUEUE_PEEK_TAIL] = z_mrsh_k_queue_peek_tail, + [K_SYSCALL_K_FUTEX_WAIT] = z_mrsh_k_futex_wait, + [K_SYSCALL_K_FUTEX_WAKE] = z_mrsh_k_futex_wake, + [K_SYSCALL_K_EVENT_INIT] = z_mrsh_k_event_init, + [K_SYSCALL_K_EVENT_POST] = z_mrsh_k_event_post, + [K_SYSCALL_K_EVENT_SET] = z_mrsh_k_event_set, + [K_SYSCALL_K_EVENT_SET_MASKED] = z_mrsh_k_event_set_masked, + [K_SYSCALL_K_EVENT_CLEAR] = z_mrsh_k_event_clear, + [K_SYSCALL_K_EVENT_WAIT] = z_mrsh_k_event_wait, + [K_SYSCALL_K_EVENT_WAIT_ALL] = z_mrsh_k_event_wait_all, + [K_SYSCALL_K_EVENT_WAIT_SAFE] = z_mrsh_k_event_wait_safe, + [K_SYSCALL_K_EVENT_WAIT_ALL_SAFE] = z_mrsh_k_event_wait_all_safe, + [K_SYSCALL_K_STACK_ALLOC_INIT] = z_mrsh_k_stack_alloc_init, + [K_SYSCALL_K_STACK_PUSH] = z_mrsh_k_stack_push, + [K_SYSCALL_K_STACK_POP] = z_mrsh_k_stack_pop, + [K_SYSCALL_K_MUTEX_INIT] = z_mrsh_k_mutex_init, + [K_SYSCALL_K_MUTEX_LOCK] = z_mrsh_k_mutex_lock, + [K_SYSCALL_K_MUTEX_UNLOCK] = z_mrsh_k_mutex_unlock, + [K_SYSCALL_K_CONDVAR_INIT] = z_mrsh_k_condvar_init, + [K_SYSCALL_K_CONDVAR_SIGNAL] = z_mrsh_k_condvar_signal, + [K_SYSCALL_K_CONDVAR_BROADCAST] = z_mrsh_k_condvar_broadcast, + [K_SYSCALL_K_CONDVAR_WAIT] = z_mrsh_k_condvar_wait, + [K_SYSCALL_K_SEM_INIT] = z_mrsh_k_sem_init, + [K_SYSCALL_K_SEM_TAKE] = z_mrsh_k_sem_take, + [K_SYSCALL_K_SEM_GIVE] = z_mrsh_k_sem_give, + [K_SYSCALL_K_SEM_RESET] = z_mrsh_k_sem_reset, + [K_SYSCALL_K_SEM_COUNT_GET] = z_mrsh_k_sem_count_get, + [K_SYSCALL_K_MSGQ_ALLOC_INIT] = z_mrsh_k_msgq_alloc_init, + [K_SYSCALL_K_MSGQ_PUT] = z_mrsh_k_msgq_put, + [K_SYSCALL_K_MSGQ_PUT_FRONT] = z_mrsh_k_msgq_put_front, + [K_SYSCALL_K_MSGQ_GET] = z_mrsh_k_msgq_get, + [K_SYSCALL_K_MSGQ_PEEK] = z_mrsh_k_msgq_peek, + [K_SYSCALL_K_MSGQ_PEEK_AT] = z_mrsh_k_msgq_peek_at, + [K_SYSCALL_K_MSGQ_PURGE] = z_mrsh_k_msgq_purge, + [K_SYSCALL_K_MSGQ_NUM_FREE_GET] = z_mrsh_k_msgq_num_free_get, + [K_SYSCALL_K_MSGQ_GET_ATTRS] = z_mrsh_k_msgq_get_attrs, + [K_SYSCALL_K_MSGQ_NUM_USED_GET] = z_mrsh_k_msgq_num_used_get, + [K_SYSCALL_K_PIPE_INIT] = z_mrsh_k_pipe_init, + [K_SYSCALL_K_PIPE_WRITE] = z_mrsh_k_pipe_write, + [K_SYSCALL_K_PIPE_READ] = z_mrsh_k_pipe_read, + [K_SYSCALL_K_PIPE_RESET] = z_mrsh_k_pipe_reset, + [K_SYSCALL_K_PIPE_CLOSE] = z_mrsh_k_pipe_close, + [K_SYSCALL_K_POLL] = z_mrsh_k_poll, + [K_SYSCALL_K_POLL_SIGNAL_INIT] = z_mrsh_k_poll_signal_init, + [K_SYSCALL_K_POLL_SIGNAL_RESET] = z_mrsh_k_poll_signal_reset, + [K_SYSCALL_K_POLL_SIGNAL_CHECK] = z_mrsh_k_poll_signal_check, + [K_SYSCALL_K_POLL_SIGNAL_RAISE] = z_mrsh_k_poll_signal_raise, + [K_SYSCALL_K_STR_OUT] = z_mrsh_k_str_out, + [K_SYSCALL_K_FLOAT_DISABLE] = z_mrsh_k_float_disable, + [K_SYSCALL_K_FLOAT_ENABLE] = z_mrsh_k_float_enable, + [K_SYSCALL_K_OBJECT_ACCESS_GRANT] = z_mrsh_k_object_access_grant, + [K_SYSCALL_K_OBJECT_RELEASE] = z_mrsh_k_object_release, + [K_SYSCALL_K_OBJECT_ACCESS_CHECK] = z_mrsh_k_object_access_check, + [K_SYSCALL_K_OBJECT_ALLOC] = z_mrsh_k_object_alloc, + [K_SYSCALL_K_OBJECT_ALLOC_SIZE] = z_mrsh_k_object_alloc_size, + [K_SYSCALL_SYS_CLOCK_HW_CYCLES_PER_SEC_RUNTIME_GET] = z_mrsh_sys_clock_hw_cycles_per_sec_runtime_get, + [K_SYSCALL_Z_ERRNO] = z_mrsh_z_errno, + [K_SYSCALL_BAD] = handler_bad_syscall +}; diff --git a/build/zephyr/include/generated/zephyr/syscall_exports_llext.c b/build/zephyr/include/generated/zephyr/syscall_exports_llext.c new file mode 100644 index 0000000..9f7f836 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscall_exports_llext.c @@ -0,0 +1,335 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +/* + * Export the implementation functions of all emitted syscalls. + * Only the symbol names are relevant in this file, they will be + * resolved to the actual implementation functions by the linker. + */ + +/* Symbol declarations */ +extern void * const z_impl_device_deinit; +extern void * const z_impl_device_get_binding; +extern void * const z_impl_device_get_by_dt_nodelabel; +extern void * const z_impl_device_init; +extern void * const z_impl_device_is_ready; +extern void * const z_impl_gpio_get_pending_int; +extern void * const z_impl_gpio_pin_configure; +extern void * const z_impl_gpio_pin_get_config; +extern void * const z_impl_gpio_pin_interrupt_configure; +extern void * const z_impl_gpio_port_clear_bits_raw; +extern void * const z_impl_gpio_port_get_direction; +extern void * const z_impl_gpio_port_get_raw; +extern void * const z_impl_gpio_port_set_bits_raw; +extern void * const z_impl_gpio_port_set_masked_raw; +extern void * const z_impl_gpio_port_toggle_bits; +extern void * const z_impl_k_busy_wait; +extern void * const z_impl_k_condvar_broadcast; +extern void * const z_impl_k_condvar_init; +extern void * const z_impl_k_condvar_signal; +extern void * const z_impl_k_condvar_wait; +extern void * const z_impl_k_event_clear; +extern void * const z_impl_k_event_init; +extern void * const z_impl_k_event_post; +extern void * const z_impl_k_event_set; +extern void * const z_impl_k_event_set_masked; +extern void * const z_impl_k_event_wait; +extern void * const z_impl_k_event_wait_all; +extern void * const z_impl_k_event_wait_all_safe; +extern void * const z_impl_k_event_wait_safe; +extern void * const z_impl_k_float_disable; +extern void * const z_impl_k_float_enable; +extern void * const z_impl_k_futex_wait; +extern void * const z_impl_k_futex_wake; +extern void * const z_impl_k_is_preempt_thread; +extern void * const z_impl_k_msgq_alloc_init; +extern void * const z_impl_k_msgq_get; +extern void * const z_impl_k_msgq_get_attrs; +extern void * const z_impl_k_msgq_num_free_get; +extern void * const z_impl_k_msgq_num_used_get; +extern void * const z_impl_k_msgq_peek; +extern void * const z_impl_k_msgq_peek_at; +extern void * const z_impl_k_msgq_purge; +extern void * const z_impl_k_msgq_put; +extern void * const z_impl_k_msgq_put_front; +extern void * const z_impl_k_mutex_init; +extern void * const z_impl_k_mutex_lock; +extern void * const z_impl_k_mutex_unlock; +extern void * const z_impl_k_object_access_check; +extern void * const z_impl_k_object_access_grant; +extern void * const z_impl_k_object_alloc; +extern void * const z_impl_k_object_alloc_size; +extern void * const z_impl_k_object_release; +extern void * const z_impl_k_pipe_close; +extern void * const z_impl_k_pipe_init; +extern void * const z_impl_k_pipe_read; +extern void * const z_impl_k_pipe_reset; +extern void * const z_impl_k_pipe_write; +extern void * const z_impl_k_poll; +extern void * const z_impl_k_poll_signal_check; +extern void * const z_impl_k_poll_signal_init; +extern void * const z_impl_k_poll_signal_raise; +extern void * const z_impl_k_poll_signal_reset; +extern void * const z_impl_k_queue_alloc_append; +extern void * const z_impl_k_queue_alloc_prepend; +extern void * const z_impl_k_queue_cancel_wait; +extern void * const z_impl_k_queue_get; +extern void * const z_impl_k_queue_init; +extern void * const z_impl_k_queue_is_empty; +extern void * const z_impl_k_queue_peek_head; +extern void * const z_impl_k_queue_peek_tail; +extern void * const z_impl_k_reschedule; +extern void * const z_impl_k_sched_current_thread_query; +extern void * const z_impl_k_sem_count_get; +extern void * const z_impl_k_sem_give; +extern void * const z_impl_k_sem_init; +extern void * const z_impl_k_sem_reset; +extern void * const z_impl_k_sem_take; +extern void * const z_impl_k_sleep; +extern void * const z_impl_k_stack_alloc_init; +extern void * const z_impl_k_stack_pop; +extern void * const z_impl_k_stack_push; +extern void * const z_impl_k_str_out; +extern void * const z_impl_k_thread_abort; +extern void * const z_impl_k_thread_absolute_deadline_set; +extern void * const z_impl_k_thread_create; +extern void * const z_impl_k_thread_custom_data_get; +extern void * const z_impl_k_thread_custom_data_set; +extern void * const z_impl_k_thread_deadline_set; +extern void * const z_impl_k_thread_join; +extern void * const z_impl_k_thread_name_copy; +extern void * const z_impl_k_thread_name_set; +extern void * const z_impl_k_thread_priority_get; +extern void * const z_impl_k_thread_priority_set; +extern void * const z_impl_k_thread_resume; +extern void * const z_impl_k_thread_runtime_stack_unused_threshold_get; +extern void * const z_impl_k_thread_runtime_stack_unused_threshold_pct_set; +extern void * const z_impl_k_thread_runtime_stack_unused_threshold_set; +extern void * const z_impl_k_thread_stack_alloc; +extern void * const z_impl_k_thread_stack_free; +extern void * const z_impl_k_thread_stack_space_get; +extern void * const z_impl_k_thread_suspend; +extern void * const z_impl_k_thread_timeout_expires_ticks; +extern void * const z_impl_k_thread_timeout_remaining_ticks; +extern void * const z_impl_k_timer_expires_ticks; +extern void * const z_impl_k_timer_remaining_ticks; +extern void * const z_impl_k_timer_start; +extern void * const z_impl_k_timer_status_get; +extern void * const z_impl_k_timer_status_sync; +extern void * const z_impl_k_timer_stop; +extern void * const z_impl_k_timer_user_data_get; +extern void * const z_impl_k_timer_user_data_set; +extern void * const z_impl_k_uptime_ticks; +extern void * const z_impl_k_usleep; +extern void * const z_impl_k_wakeup; +extern void * const z_impl_k_yield; +extern void * const z_impl_log_buffered_cnt; +extern void * const z_impl_log_filter_set; +extern void * const z_impl_log_frontend_filter_set; +extern void * const z_impl_log_panic; +extern void * const z_impl_log_process; +extern void * const z_impl_spi_release; +extern void * const z_impl_spi_transceive; +extern void * const z_impl_sys_clock_getrtoffset; +extern void * const z_impl_sys_clock_hw_cycles_per_sec_runtime_get; +extern void * const z_impl_sys_clock_nanosleep; +extern void * const z_impl_sys_clock_settime; +extern void * const z_impl_uart_config_get; +extern void * const z_impl_uart_configure; +extern void * const z_impl_uart_drv_cmd; +extern void * const z_impl_uart_err_check; +extern void * const z_impl_uart_irq_err_disable; +extern void * const z_impl_uart_irq_err_enable; +extern void * const z_impl_uart_irq_is_pending; +extern void * const z_impl_uart_irq_rx_disable; +extern void * const z_impl_uart_irq_rx_enable; +extern void * const z_impl_uart_irq_tx_disable; +extern void * const z_impl_uart_irq_tx_enable; +extern void * const z_impl_uart_irq_update; +extern void * const z_impl_uart_line_ctrl_get; +extern void * const z_impl_uart_line_ctrl_set; +extern void * const z_impl_uart_poll_in; +extern void * const z_impl_uart_poll_in_u16; +extern void * const z_impl_uart_poll_out; +extern void * const z_impl_uart_poll_out_u16; +extern void * const z_impl_uart_rx_disable; +extern void * const z_impl_uart_rx_enable; +extern void * const z_impl_uart_rx_enable_u16; +extern void * const z_impl_uart_tx; +extern void * const z_impl_uart_tx_abort; +extern void * const z_impl_uart_tx_u16; +extern void * const z_impl_xtensa_user_fault; +extern void * const z_impl_z_errno; +extern void * const z_impl_z_log_msg_simple_create_0; +extern void * const z_impl_z_log_msg_simple_create_1; +extern void * const z_impl_z_log_msg_simple_create_2; +extern void * const z_impl_z_log_msg_static_create; +extern void * const z_impl_z_sys_mutex_kernel_lock; +extern void * const z_impl_z_sys_mutex_kernel_unlock; +extern void * const z_impl_zephyr_fputc; +extern void * const z_impl_zephyr_fwrite; +extern void * const z_impl_zephyr_read_stdin; +extern void * const z_impl_zephyr_write_stdout; + +/* Exported symbols */ +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_device_deinit); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_device_get_binding); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_device_get_by_dt_nodelabel); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_device_init); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_device_is_ready); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_gpio_get_pending_int); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_gpio_pin_configure); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_gpio_pin_get_config); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_gpio_pin_interrupt_configure); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_gpio_port_clear_bits_raw); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_gpio_port_get_direction); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_gpio_port_get_raw); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_gpio_port_set_bits_raw); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_gpio_port_set_masked_raw); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_gpio_port_toggle_bits); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_busy_wait); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_condvar_broadcast); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_condvar_init); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_condvar_signal); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_condvar_wait); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_event_clear); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_event_init); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_event_post); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_event_set); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_event_set_masked); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_event_wait); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_event_wait_all); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_event_wait_all_safe); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_event_wait_safe); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_float_disable); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_float_enable); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_futex_wait); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_futex_wake); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_is_preempt_thread); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_msgq_alloc_init); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_msgq_get); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_msgq_get_attrs); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_msgq_num_free_get); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_msgq_num_used_get); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_msgq_peek); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_msgq_peek_at); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_msgq_purge); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_msgq_put); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_msgq_put_front); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_mutex_init); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_mutex_lock); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_mutex_unlock); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_object_access_check); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_object_access_grant); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_object_alloc); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_object_alloc_size); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_object_release); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_pipe_close); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_pipe_init); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_pipe_read); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_pipe_reset); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_pipe_write); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_poll); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_poll_signal_check); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_poll_signal_init); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_poll_signal_raise); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_poll_signal_reset); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_queue_alloc_append); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_queue_alloc_prepend); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_queue_cancel_wait); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_queue_get); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_queue_init); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_queue_is_empty); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_queue_peek_head); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_queue_peek_tail); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_reschedule); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_sched_current_thread_query); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_sem_count_get); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_sem_give); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_sem_init); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_sem_reset); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_sem_take); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_sleep); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_stack_alloc_init); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_stack_pop); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_stack_push); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_str_out); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_thread_abort); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_thread_absolute_deadline_set); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_thread_create); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_thread_custom_data_get); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_thread_custom_data_set); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_thread_deadline_set); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_thread_join); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_thread_name_copy); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_thread_name_set); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_thread_priority_get); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_thread_priority_set); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_thread_resume); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_thread_runtime_stack_unused_threshold_get); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_thread_runtime_stack_unused_threshold_pct_set); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_thread_runtime_stack_unused_threshold_set); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_thread_stack_alloc); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_thread_stack_free); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_thread_stack_space_get); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_thread_suspend); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_thread_timeout_expires_ticks); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_thread_timeout_remaining_ticks); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_timer_expires_ticks); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_timer_remaining_ticks); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_timer_start); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_timer_status_get); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_timer_status_sync); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_timer_stop); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_timer_user_data_get); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_timer_user_data_set); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_uptime_ticks); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_usleep); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_wakeup); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_k_yield); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_log_buffered_cnt); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_log_filter_set); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_log_frontend_filter_set); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_log_panic); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_log_process); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_spi_release); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_spi_transceive); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_sys_clock_getrtoffset); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_sys_clock_hw_cycles_per_sec_runtime_get); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_sys_clock_nanosleep); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_sys_clock_settime); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_config_get); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_configure); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_drv_cmd); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_err_check); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_irq_err_disable); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_irq_err_enable); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_irq_is_pending); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_irq_rx_disable); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_irq_rx_enable); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_irq_tx_disable); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_irq_tx_enable); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_irq_update); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_line_ctrl_get); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_line_ctrl_set); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_poll_in); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_poll_in_u16); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_poll_out); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_poll_out_u16); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_rx_disable); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_rx_enable); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_rx_enable_u16); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_tx); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_tx_abort); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_uart_tx_u16); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_xtensa_user_fault); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_z_errno); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_z_log_msg_simple_create_0); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_z_log_msg_simple_create_1); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_z_log_msg_simple_create_2); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_z_log_msg_static_create); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_z_sys_mutex_kernel_lock); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_z_sys_mutex_kernel_unlock); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_zephyr_fputc); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_zephyr_fwrite); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_zephyr_read_stdin); +EXPORT_GROUP_SYMBOL(SYSCALL, z_impl_zephyr_write_stdout); diff --git a/build/zephyr/include/generated/zephyr/syscall_list.h b/build/zephyr/include/generated/zephyr/syscall_list.h new file mode 100644 index 0000000..fb04eac --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscall_list.h @@ -0,0 +1,662 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef ZEPHYR_SYSCALL_LIST_H +#define ZEPHYR_SYSCALL_LIST_H + +#define K_SYSCALL_DEVICE_DEINIT 0 +#define K_SYSCALL_DEVICE_GET_BINDING 1 +#define K_SYSCALL_DEVICE_GET_BY_DT_NODELABEL 2 +#define K_SYSCALL_DEVICE_INIT 3 +#define K_SYSCALL_DEVICE_IS_READY 4 +#define K_SYSCALL_GPIO_GET_PENDING_INT 5 +#define K_SYSCALL_GPIO_PIN_CONFIGURE 6 +#define K_SYSCALL_GPIO_PIN_GET_CONFIG 7 +#define K_SYSCALL_GPIO_PIN_INTERRUPT_CONFIGURE 8 +#define K_SYSCALL_GPIO_PORT_CLEAR_BITS_RAW 9 +#define K_SYSCALL_GPIO_PORT_GET_DIRECTION 10 +#define K_SYSCALL_GPIO_PORT_GET_RAW 11 +#define K_SYSCALL_GPIO_PORT_SET_BITS_RAW 12 +#define K_SYSCALL_GPIO_PORT_SET_MASKED_RAW 13 +#define K_SYSCALL_GPIO_PORT_TOGGLE_BITS 14 +#define K_SYSCALL_K_BUSY_WAIT 15 +#define K_SYSCALL_K_CONDVAR_BROADCAST 16 +#define K_SYSCALL_K_CONDVAR_INIT 17 +#define K_SYSCALL_K_CONDVAR_SIGNAL 18 +#define K_SYSCALL_K_CONDVAR_WAIT 19 +#define K_SYSCALL_K_EVENT_CLEAR 20 +#define K_SYSCALL_K_EVENT_INIT 21 +#define K_SYSCALL_K_EVENT_POST 22 +#define K_SYSCALL_K_EVENT_SET 23 +#define K_SYSCALL_K_EVENT_SET_MASKED 24 +#define K_SYSCALL_K_EVENT_WAIT 25 +#define K_SYSCALL_K_EVENT_WAIT_ALL 26 +#define K_SYSCALL_K_EVENT_WAIT_ALL_SAFE 27 +#define K_SYSCALL_K_EVENT_WAIT_SAFE 28 +#define K_SYSCALL_K_FLOAT_DISABLE 29 +#define K_SYSCALL_K_FLOAT_ENABLE 30 +#define K_SYSCALL_K_FUTEX_WAIT 31 +#define K_SYSCALL_K_FUTEX_WAKE 32 +#define K_SYSCALL_K_IS_PREEMPT_THREAD 33 +#define K_SYSCALL_K_MSGQ_ALLOC_INIT 34 +#define K_SYSCALL_K_MSGQ_GET 35 +#define K_SYSCALL_K_MSGQ_GET_ATTRS 36 +#define K_SYSCALL_K_MSGQ_NUM_FREE_GET 37 +#define K_SYSCALL_K_MSGQ_NUM_USED_GET 38 +#define K_SYSCALL_K_MSGQ_PEEK 39 +#define K_SYSCALL_K_MSGQ_PEEK_AT 40 +#define K_SYSCALL_K_MSGQ_PURGE 41 +#define K_SYSCALL_K_MSGQ_PUT 42 +#define K_SYSCALL_K_MSGQ_PUT_FRONT 43 +#define K_SYSCALL_K_MUTEX_INIT 44 +#define K_SYSCALL_K_MUTEX_LOCK 45 +#define K_SYSCALL_K_MUTEX_UNLOCK 46 +#define K_SYSCALL_K_OBJECT_ACCESS_CHECK 47 +#define K_SYSCALL_K_OBJECT_ACCESS_GRANT 48 +#define K_SYSCALL_K_OBJECT_ALLOC 49 +#define K_SYSCALL_K_OBJECT_ALLOC_SIZE 50 +#define K_SYSCALL_K_OBJECT_RELEASE 51 +#define K_SYSCALL_K_PIPE_CLOSE 52 +#define K_SYSCALL_K_PIPE_INIT 53 +#define K_SYSCALL_K_PIPE_READ 54 +#define K_SYSCALL_K_PIPE_RESET 55 +#define K_SYSCALL_K_PIPE_WRITE 56 +#define K_SYSCALL_K_POLL 57 +#define K_SYSCALL_K_POLL_SIGNAL_CHECK 58 +#define K_SYSCALL_K_POLL_SIGNAL_INIT 59 +#define K_SYSCALL_K_POLL_SIGNAL_RAISE 60 +#define K_SYSCALL_K_POLL_SIGNAL_RESET 61 +#define K_SYSCALL_K_QUEUE_ALLOC_APPEND 62 +#define K_SYSCALL_K_QUEUE_ALLOC_PREPEND 63 +#define K_SYSCALL_K_QUEUE_CANCEL_WAIT 64 +#define K_SYSCALL_K_QUEUE_GET 65 +#define K_SYSCALL_K_QUEUE_INIT 66 +#define K_SYSCALL_K_QUEUE_IS_EMPTY 67 +#define K_SYSCALL_K_QUEUE_PEEK_HEAD 68 +#define K_SYSCALL_K_QUEUE_PEEK_TAIL 69 +#define K_SYSCALL_K_RESCHEDULE 70 +#define K_SYSCALL_K_SCHED_CURRENT_THREAD_QUERY 71 +#define K_SYSCALL_K_SEM_COUNT_GET 72 +#define K_SYSCALL_K_SEM_GIVE 73 +#define K_SYSCALL_K_SEM_INIT 74 +#define K_SYSCALL_K_SEM_RESET 75 +#define K_SYSCALL_K_SEM_TAKE 76 +#define K_SYSCALL_K_SLEEP 77 +#define K_SYSCALL_K_STACK_ALLOC_INIT 78 +#define K_SYSCALL_K_STACK_POP 79 +#define K_SYSCALL_K_STACK_PUSH 80 +#define K_SYSCALL_K_STR_OUT 81 +#define K_SYSCALL_K_THREAD_ABORT 82 +#define K_SYSCALL_K_THREAD_ABSOLUTE_DEADLINE_SET 83 +#define K_SYSCALL_K_THREAD_CREATE 84 +#define K_SYSCALL_K_THREAD_CUSTOM_DATA_GET 85 +#define K_SYSCALL_K_THREAD_CUSTOM_DATA_SET 86 +#define K_SYSCALL_K_THREAD_DEADLINE_SET 87 +#define K_SYSCALL_K_THREAD_JOIN 88 +#define K_SYSCALL_K_THREAD_NAME_COPY 89 +#define K_SYSCALL_K_THREAD_NAME_SET 90 +#define K_SYSCALL_K_THREAD_PRIORITY_GET 91 +#define K_SYSCALL_K_THREAD_PRIORITY_SET 92 +#define K_SYSCALL_K_THREAD_RESUME 93 +#define K_SYSCALL_K_THREAD_RUNTIME_STACK_UNUSED_THRESHOLD_GET 94 +#define K_SYSCALL_K_THREAD_RUNTIME_STACK_UNUSED_THRESHOLD_PCT_SET 95 +#define K_SYSCALL_K_THREAD_RUNTIME_STACK_UNUSED_THRESHOLD_SET 96 +#define K_SYSCALL_K_THREAD_STACK_ALLOC 97 +#define K_SYSCALL_K_THREAD_STACK_FREE 98 +#define K_SYSCALL_K_THREAD_STACK_SPACE_GET 99 +#define K_SYSCALL_K_THREAD_SUSPEND 100 +#define K_SYSCALL_K_THREAD_TIMEOUT_EXPIRES_TICKS 101 +#define K_SYSCALL_K_THREAD_TIMEOUT_REMAINING_TICKS 102 +#define K_SYSCALL_K_TIMER_EXPIRES_TICKS 103 +#define K_SYSCALL_K_TIMER_REMAINING_TICKS 104 +#define K_SYSCALL_K_TIMER_START 105 +#define K_SYSCALL_K_TIMER_STATUS_GET 106 +#define K_SYSCALL_K_TIMER_STATUS_SYNC 107 +#define K_SYSCALL_K_TIMER_STOP 108 +#define K_SYSCALL_K_TIMER_USER_DATA_GET 109 +#define K_SYSCALL_K_TIMER_USER_DATA_SET 110 +#define K_SYSCALL_K_UPTIME_TICKS 111 +#define K_SYSCALL_K_USLEEP 112 +#define K_SYSCALL_K_WAKEUP 113 +#define K_SYSCALL_K_YIELD 114 +#define K_SYSCALL_LOG_BUFFERED_CNT 115 +#define K_SYSCALL_LOG_FILTER_SET 116 +#define K_SYSCALL_LOG_FRONTEND_FILTER_SET 117 +#define K_SYSCALL_LOG_PANIC 118 +#define K_SYSCALL_LOG_PROCESS 119 +#define K_SYSCALL_SPI_RELEASE 120 +#define K_SYSCALL_SPI_TRANSCEIVE 121 +#define K_SYSCALL_SYS_CLOCK_GETRTOFFSET 122 +#define K_SYSCALL_SYS_CLOCK_HW_CYCLES_PER_SEC_RUNTIME_GET 123 +#define K_SYSCALL_SYS_CLOCK_NANOSLEEP 124 +#define K_SYSCALL_SYS_CLOCK_SETTIME 125 +#define K_SYSCALL_UART_CONFIGURE 126 +#define K_SYSCALL_UART_CONFIG_GET 127 +#define K_SYSCALL_UART_DRV_CMD 128 +#define K_SYSCALL_UART_ERR_CHECK 129 +#define K_SYSCALL_UART_IRQ_ERR_DISABLE 130 +#define K_SYSCALL_UART_IRQ_ERR_ENABLE 131 +#define K_SYSCALL_UART_IRQ_IS_PENDING 132 +#define K_SYSCALL_UART_IRQ_RX_DISABLE 133 +#define K_SYSCALL_UART_IRQ_RX_ENABLE 134 +#define K_SYSCALL_UART_IRQ_TX_DISABLE 135 +#define K_SYSCALL_UART_IRQ_TX_ENABLE 136 +#define K_SYSCALL_UART_IRQ_UPDATE 137 +#define K_SYSCALL_UART_LINE_CTRL_GET 138 +#define K_SYSCALL_UART_LINE_CTRL_SET 139 +#define K_SYSCALL_UART_POLL_IN 140 +#define K_SYSCALL_UART_POLL_IN_U16 141 +#define K_SYSCALL_UART_POLL_OUT 142 +#define K_SYSCALL_UART_POLL_OUT_U16 143 +#define K_SYSCALL_UART_RX_DISABLE 144 +#define K_SYSCALL_UART_RX_ENABLE 145 +#define K_SYSCALL_UART_RX_ENABLE_U16 146 +#define K_SYSCALL_UART_TX 147 +#define K_SYSCALL_UART_TX_ABORT 148 +#define K_SYSCALL_UART_TX_U16 149 +#define K_SYSCALL_XTENSA_USER_FAULT 150 +#define K_SYSCALL_ZEPHYR_FPUTC 151 +#define K_SYSCALL_ZEPHYR_FWRITE 152 +#define K_SYSCALL_ZEPHYR_READ_STDIN 153 +#define K_SYSCALL_ZEPHYR_WRITE_STDOUT 154 +#define K_SYSCALL_Z_ERRNO 155 +#define K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_0 156 +#define K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_1 157 +#define K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_2 158 +#define K_SYSCALL_Z_LOG_MSG_STATIC_CREATE 159 +#define K_SYSCALL_Z_SYS_MUTEX_KERNEL_LOCK 160 +#define K_SYSCALL_Z_SYS_MUTEX_KERNEL_UNLOCK 161 +#define K_SYSCALL_BAD 162 +#define K_SYSCALL_LIMIT 163 + + +/* Following syscalls are not used in image */ +#define K_SYSCALL_ADC_CHANNEL_SETUP 164 +#define K_SYSCALL_ADC_GET_DECODER 165 +#define K_SYSCALL_ADC_READ 166 +#define K_SYSCALL_ADC_READ_ASYNC 167 +#define K_SYSCALL_ATOMIC_ADD 168 +#define K_SYSCALL_ATOMIC_AND 169 +#define K_SYSCALL_ATOMIC_CAS 170 +#define K_SYSCALL_ATOMIC_NAND 171 +#define K_SYSCALL_ATOMIC_OR 172 +#define K_SYSCALL_ATOMIC_PTR_CAS 173 +#define K_SYSCALL_ATOMIC_PTR_SET 174 +#define K_SYSCALL_ATOMIC_SET 175 +#define K_SYSCALL_ATOMIC_SUB 176 +#define K_SYSCALL_ATOMIC_XOR 177 +#define K_SYSCALL_AUXDISPLAY_BACKLIGHT_GET 178 +#define K_SYSCALL_AUXDISPLAY_BACKLIGHT_SET 179 +#define K_SYSCALL_AUXDISPLAY_BRIGHTNESS_GET 180 +#define K_SYSCALL_AUXDISPLAY_BRIGHTNESS_SET 181 +#define K_SYSCALL_AUXDISPLAY_CAPABILITIES_GET 182 +#define K_SYSCALL_AUXDISPLAY_CLEAR 183 +#define K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_GET 184 +#define K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_SET 185 +#define K_SYSCALL_AUXDISPLAY_CURSOR_SET_ENABLED 186 +#define K_SYSCALL_AUXDISPLAY_CURSOR_SHIFT_SET 187 +#define K_SYSCALL_AUXDISPLAY_CUSTOM_CHARACTER_SET 188 +#define K_SYSCALL_AUXDISPLAY_CUSTOM_COMMAND 189 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_OFF 190 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_ON 191 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_GET 192 +#define K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_SET 193 +#define K_SYSCALL_AUXDISPLAY_IS_BUSY 194 +#define K_SYSCALL_AUXDISPLAY_POSITION_BLINKING_SET_ENABLED 195 +#define K_SYSCALL_AUXDISPLAY_WRITE 196 +#define K_SYSCALL_BBRAM_CHECK_INVALID 197 +#define K_SYSCALL_BBRAM_CHECK_POWER 198 +#define K_SYSCALL_BBRAM_CHECK_STANDBY_POWER 199 +#define K_SYSCALL_BBRAM_GET_SIZE 200 +#define K_SYSCALL_BBRAM_READ 201 +#define K_SYSCALL_BBRAM_WRITE 202 +#define K_SYSCALL_BC12_SET_RESULT_CB 203 +#define K_SYSCALL_BC12_SET_ROLE 204 +#define K_SYSCALL_BIOMETRIC_ATTR_GET 205 +#define K_SYSCALL_BIOMETRIC_ATTR_SET 206 +#define K_SYSCALL_BIOMETRIC_ENROLL_ABORT 207 +#define K_SYSCALL_BIOMETRIC_ENROLL_CAPTURE 208 +#define K_SYSCALL_BIOMETRIC_ENROLL_FINALIZE 209 +#define K_SYSCALL_BIOMETRIC_ENROLL_START 210 +#define K_SYSCALL_BIOMETRIC_GET_CAPABILITIES 211 +#define K_SYSCALL_BIOMETRIC_LED_CONTROL 212 +#define K_SYSCALL_BIOMETRIC_MATCH 213 +#define K_SYSCALL_BIOMETRIC_TEMPLATE_DELETE 214 +#define K_SYSCALL_BIOMETRIC_TEMPLATE_DELETE_ALL 215 +#define K_SYSCALL_BIOMETRIC_TEMPLATE_LIST 216 +#define K_SYSCALL_BIOMETRIC_TEMPLATE_READ 217 +#define K_SYSCALL_BIOMETRIC_TEMPLATE_STORE 218 +#define K_SYSCALL_CAN_ADD_RX_FILTER_MSGQ 219 +#define K_SYSCALL_CAN_CALC_TIMING 220 +#define K_SYSCALL_CAN_CALC_TIMING_DATA 221 +#define K_SYSCALL_CAN_GET_BITRATE_MAX 222 +#define K_SYSCALL_CAN_GET_BITRATE_MIN 223 +#define K_SYSCALL_CAN_GET_CAPABILITIES 224 +#define K_SYSCALL_CAN_GET_CORE_CLOCK 225 +#define K_SYSCALL_CAN_GET_MAX_FILTERS 226 +#define K_SYSCALL_CAN_GET_MODE 227 +#define K_SYSCALL_CAN_GET_STATE 228 +#define K_SYSCALL_CAN_GET_TIMING_DATA_MAX 229 +#define K_SYSCALL_CAN_GET_TIMING_DATA_MIN 230 +#define K_SYSCALL_CAN_GET_TIMING_MAX 231 +#define K_SYSCALL_CAN_GET_TIMING_MIN 232 +#define K_SYSCALL_CAN_GET_TRANSCEIVER 233 +#define K_SYSCALL_CAN_RECOVER 234 +#define K_SYSCALL_CAN_REMOVE_RX_FILTER 235 +#define K_SYSCALL_CAN_SEND 236 +#define K_SYSCALL_CAN_SET_BITRATE 237 +#define K_SYSCALL_CAN_SET_BITRATE_DATA 238 +#define K_SYSCALL_CAN_SET_MODE 239 +#define K_SYSCALL_CAN_SET_TIMING 240 +#define K_SYSCALL_CAN_SET_TIMING_DATA 241 +#define K_SYSCALL_CAN_START 242 +#define K_SYSCALL_CAN_STATS_GET_ACK_ERRORS 243 +#define K_SYSCALL_CAN_STATS_GET_BIT0_ERRORS 244 +#define K_SYSCALL_CAN_STATS_GET_BIT1_ERRORS 245 +#define K_SYSCALL_CAN_STATS_GET_BIT_ERRORS 246 +#define K_SYSCALL_CAN_STATS_GET_CRC_ERRORS 247 +#define K_SYSCALL_CAN_STATS_GET_FORM_ERRORS 248 +#define K_SYSCALL_CAN_STATS_GET_RX_OVERRUNS 249 +#define K_SYSCALL_CAN_STATS_GET_STUFF_ERRORS 250 +#define K_SYSCALL_CAN_STOP 251 +#define K_SYSCALL_CHARGER_CHARGE_ENABLE 252 +#define K_SYSCALL_CHARGER_GET_PROP 253 +#define K_SYSCALL_CHARGER_SET_PROP 254 +#define K_SYSCALL_COMPARATOR_GET_OUTPUT 255 +#define K_SYSCALL_COMPARATOR_SET_TRIGGER 256 +#define K_SYSCALL_COMPARATOR_TRIGGER_IS_PENDING 257 +#define K_SYSCALL_COUNTER_CANCEL_CHANNEL_ALARM 258 +#define K_SYSCALL_COUNTER_GET_FREQUENCY 259 +#define K_SYSCALL_COUNTER_GET_FREQUENCY_64 260 +#define K_SYSCALL_COUNTER_GET_GUARD_PERIOD 261 +#define K_SYSCALL_COUNTER_GET_GUARD_PERIOD_64 262 +#define K_SYSCALL_COUNTER_GET_MAX_TOP_VALUE 263 +#define K_SYSCALL_COUNTER_GET_MAX_TOP_VALUE_64 264 +#define K_SYSCALL_COUNTER_GET_NUM_OF_CHANNELS 265 +#define K_SYSCALL_COUNTER_GET_PENDING_INT 266 +#define K_SYSCALL_COUNTER_GET_TOP_VALUE 267 +#define K_SYSCALL_COUNTER_GET_TOP_VALUE_64 268 +#define K_SYSCALL_COUNTER_GET_VALUE 269 +#define K_SYSCALL_COUNTER_GET_VALUE_64 270 +#define K_SYSCALL_COUNTER_IS_COUNTING_UP 271 +#define K_SYSCALL_COUNTER_NS_TO_TICKS 272 +#define K_SYSCALL_COUNTER_NS_TO_TICKS_64 273 +#define K_SYSCALL_COUNTER_RESET 274 +#define K_SYSCALL_COUNTER_SET_CHANNEL_ALARM 275 +#define K_SYSCALL_COUNTER_SET_CHANNEL_ALARM_64 276 +#define K_SYSCALL_COUNTER_SET_GUARD_PERIOD 277 +#define K_SYSCALL_COUNTER_SET_GUARD_PERIOD_64 278 +#define K_SYSCALL_COUNTER_SET_TOP_VALUE 279 +#define K_SYSCALL_COUNTER_SET_TOP_VALUE_64 280 +#define K_SYSCALL_COUNTER_SET_VALUE 281 +#define K_SYSCALL_COUNTER_SET_VALUE_64 282 +#define K_SYSCALL_COUNTER_START 283 +#define K_SYSCALL_COUNTER_STOP 284 +#define K_SYSCALL_COUNTER_TICKS_TO_NS 285 +#define K_SYSCALL_COUNTER_TICKS_TO_NS_64 286 +#define K_SYSCALL_COUNTER_TICKS_TO_US 287 +#define K_SYSCALL_COUNTER_TICKS_TO_US_64 288 +#define K_SYSCALL_COUNTER_US_TO_TICKS 289 +#define K_SYSCALL_COUNTER_US_TO_TICKS_64 290 +#define K_SYSCALL_CRC_BEGIN 291 +#define K_SYSCALL_CRC_FINISH 292 +#define K_SYSCALL_CRC_UPDATE 293 +#define K_SYSCALL_DAC_CHANNEL_SETUP 294 +#define K_SYSCALL_DAC_WRITE_VALUE 295 +#define K_SYSCALL_DAI_CONFIG_GET 296 +#define K_SYSCALL_DAI_CONFIG_SET 297 +#define K_SYSCALL_DAI_CONFIG_UPDATE 298 +#define K_SYSCALL_DAI_GET_PROPERTIES_COPY 299 +#define K_SYSCALL_DAI_PROBE 300 +#define K_SYSCALL_DAI_REMOVE 301 +#define K_SYSCALL_DAI_TRIGGER 302 +#define K_SYSCALL_DAI_TS_CONFIG 303 +#define K_SYSCALL_DAI_TS_GET 304 +#define K_SYSCALL_DAI_TS_START 305 +#define K_SYSCALL_DAI_TS_STOP 306 +#define K_SYSCALL_DEVMUX_SELECT_GET 307 +#define K_SYSCALL_DEVMUX_SELECT_SET 308 +#define K_SYSCALL_EEPROM_GET_SIZE 309 +#define K_SYSCALL_EEPROM_READ 310 +#define K_SYSCALL_EEPROM_WRITE 311 +#define K_SYSCALL_EMUL_FUEL_GAUGE_IS_BATTERY_CUTOFF 312 +#define K_SYSCALL_EMUL_FUEL_GAUGE_SET_BATTERY_CHARGING 313 +#define K_SYSCALL_ENTROPY_GET_ENTROPY 314 +#define K_SYSCALL_ESPI_CONFIG 315 +#define K_SYSCALL_ESPI_FLASH_ERASE 316 +#define K_SYSCALL_ESPI_GET_CHANNEL_STATUS 317 +#define K_SYSCALL_ESPI_READ_FLASH 318 +#define K_SYSCALL_ESPI_READ_LPC_REQUEST 319 +#define K_SYSCALL_ESPI_READ_REQUEST 320 +#define K_SYSCALL_ESPI_RECEIVE_OOB 321 +#define K_SYSCALL_ESPI_RECEIVE_VWIRE 322 +#define K_SYSCALL_ESPI_SAF_ACTIVATE 323 +#define K_SYSCALL_ESPI_SAF_CONFIG 324 +#define K_SYSCALL_ESPI_SAF_FLASH_ERASE 325 +#define K_SYSCALL_ESPI_SAF_FLASH_READ 326 +#define K_SYSCALL_ESPI_SAF_FLASH_UNSUCCESS 327 +#define K_SYSCALL_ESPI_SAF_FLASH_WRITE 328 +#define K_SYSCALL_ESPI_SAF_GET_CHANNEL_STATUS 329 +#define K_SYSCALL_ESPI_SAF_SET_PROTECTION_REGIONS 330 +#define K_SYSCALL_ESPI_SEND_OOB 331 +#define K_SYSCALL_ESPI_SEND_VWIRE 332 +#define K_SYSCALL_ESPI_WRITE_FLASH 333 +#define K_SYSCALL_ESPI_WRITE_LPC_REQUEST 334 +#define K_SYSCALL_ESPI_WRITE_REQUEST 335 +#define K_SYSCALL_FLASH_COPY 336 +#define K_SYSCALL_FLASH_ERASE 337 +#define K_SYSCALL_FLASH_EX_OP 338 +#define K_SYSCALL_FLASH_FILL 339 +#define K_SYSCALL_FLASH_FLATTEN 340 +#define K_SYSCALL_FLASH_GET_PAGE_COUNT 341 +#define K_SYSCALL_FLASH_GET_PAGE_INFO_BY_IDX 342 +#define K_SYSCALL_FLASH_GET_PAGE_INFO_BY_OFFS 343 +#define K_SYSCALL_FLASH_GET_PARAMETERS 344 +#define K_SYSCALL_FLASH_GET_SIZE 345 +#define K_SYSCALL_FLASH_GET_WRITE_BLOCK_SIZE 346 +#define K_SYSCALL_FLASH_READ 347 +#define K_SYSCALL_FLASH_READ_JEDEC_ID 348 +#define K_SYSCALL_FLASH_SFDP_READ 349 +#define K_SYSCALL_FLASH_SIMULATOR_GET_MEMORY 350 +#define K_SYSCALL_FLASH_SIMULATOR_GET_PARAMS 351 +#define K_SYSCALL_FLASH_SIMULATOR_SET_CALLBACKS 352 +#define K_SYSCALL_FLASH_WRITE 353 +#define K_SYSCALL_FUEL_GAUGE_BATTERY_CUTOFF 354 +#define K_SYSCALL_FUEL_GAUGE_GET_BUFFER_PROP 355 +#define K_SYSCALL_FUEL_GAUGE_GET_PROP 356 +#define K_SYSCALL_FUEL_GAUGE_GET_PROPS 357 +#define K_SYSCALL_FUEL_GAUGE_SET_PROP 358 +#define K_SYSCALL_FUEL_GAUGE_SET_PROPS 359 +#define K_SYSCALL_GNSS_GET_ENABLED_SYSTEMS 360 +#define K_SYSCALL_GNSS_GET_FIX_RATE 361 +#define K_SYSCALL_GNSS_GET_LATEST_TIMEPULSE 362 +#define K_SYSCALL_GNSS_GET_NAVIGATION_MODE 363 +#define K_SYSCALL_GNSS_GET_SUPPORTED_SYSTEMS 364 +#define K_SYSCALL_GNSS_SET_ENABLED_SYSTEMS 365 +#define K_SYSCALL_GNSS_SET_FIX_RATE 366 +#define K_SYSCALL_GNSS_SET_NAVIGATION_MODE 367 +#define K_SYSCALL_HAPTICS_START_OUTPUT 368 +#define K_SYSCALL_HAPTICS_STOP_OUTPUT 369 +#define K_SYSCALL_HWINFO_CLEAR_RESET_CAUSE 370 +#define K_SYSCALL_HWINFO_GET_DEVICE_EUI64 371 +#define K_SYSCALL_HWINFO_GET_DEVICE_ID 372 +#define K_SYSCALL_HWINFO_GET_RESET_CAUSE 373 +#define K_SYSCALL_HWINFO_GET_SUPPORTED_RESET_CAUSE 374 +#define K_SYSCALL_I2C_CONFIGURE 375 +#define K_SYSCALL_I2C_GET_CONFIG 376 +#define K_SYSCALL_I2C_RECOVER_BUS 377 +#define K_SYSCALL_I2C_TARGET_DRIVER_REGISTER 378 +#define K_SYSCALL_I2C_TARGET_DRIVER_UNREGISTER 379 +#define K_SYSCALL_I2C_TRANSFER 380 +#define K_SYSCALL_I2S_BUF_READ 381 +#define K_SYSCALL_I2S_BUF_WRITE 382 +#define K_SYSCALL_I2S_CONFIGURE 383 +#define K_SYSCALL_I2S_TRIGGER 384 +#define K_SYSCALL_I3C_DO_CCC 385 +#define K_SYSCALL_I3C_TRANSFER 386 +#define K_SYSCALL_IPM_COMPLETE 387 +#define K_SYSCALL_IPM_MAX_DATA_SIZE_GET 388 +#define K_SYSCALL_IPM_MAX_ID_VAL_GET 389 +#define K_SYSCALL_IPM_SEND 390 +#define K_SYSCALL_IPM_SET_ENABLED 391 +#define K_SYSCALL_IVSHMEM_ENABLE_INTERRUPTS 392 +#define K_SYSCALL_IVSHMEM_GET_ID 393 +#define K_SYSCALL_IVSHMEM_GET_MAX_PEERS 394 +#define K_SYSCALL_IVSHMEM_GET_MEM 395 +#define K_SYSCALL_IVSHMEM_GET_OUTPUT_MEM_SECTION 396 +#define K_SYSCALL_IVSHMEM_GET_PROTOCOL 397 +#define K_SYSCALL_IVSHMEM_GET_RW_MEM_SECTION 398 +#define K_SYSCALL_IVSHMEM_GET_STATE 399 +#define K_SYSCALL_IVSHMEM_GET_VECTORS 400 +#define K_SYSCALL_IVSHMEM_INT_PEER 401 +#define K_SYSCALL_IVSHMEM_REGISTER_HANDLER 402 +#define K_SYSCALL_IVSHMEM_SET_STATE 403 +#define K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_IN_GET 404 +#define K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_OUT_GET 405 +#define K_SYSCALL_K_MEM_PAGING_HISTOGRAM_EVICTION_GET 406 +#define K_SYSCALL_K_MEM_PAGING_STATS_GET 407 +#define K_SYSCALL_K_MEM_PAGING_THREAD_STATS_GET 408 +#define K_SYSCALL_LED_BLINK 409 +#define K_SYSCALL_LED_GET_INFO 410 +#define K_SYSCALL_LED_OFF 411 +#define K_SYSCALL_LED_ON 412 +#define K_SYSCALL_LED_SET_BRIGHTNESS 413 +#define K_SYSCALL_LED_SET_CHANNEL 414 +#define K_SYSCALL_LED_SET_COLOR 415 +#define K_SYSCALL_LED_WRITE_CHANNELS 416 +#define K_SYSCALL_LLEXT_GET_FN_TABLE 417 +#define K_SYSCALL_MAXIM_DS3231_GET_SYNCPOINT 418 +#define K_SYSCALL_MAXIM_DS3231_REQ_SYNCPOINT 419 +#define K_SYSCALL_MBOX_MAX_CHANNELS_GET 420 +#define K_SYSCALL_MBOX_MTU_GET 421 +#define K_SYSCALL_MBOX_SEND 422 +#define K_SYSCALL_MBOX_SET_ENABLED 423 +#define K_SYSCALL_MDIO_READ 424 +#define K_SYSCALL_MDIO_READ_C45 425 +#define K_SYSCALL_MDIO_WRITE 426 +#define K_SYSCALL_MDIO_WRITE_C45 427 +#define K_SYSCALL_MSPI_CONFIG 428 +#define K_SYSCALL_MSPI_DEV_CONFIG 429 +#define K_SYSCALL_MSPI_GET_CHANNEL_STATUS 430 +#define K_SYSCALL_MSPI_SCRAMBLE_CONFIG 431 +#define K_SYSCALL_MSPI_TIMING_CONFIG 432 +#define K_SYSCALL_MSPI_TRANSCEIVE 433 +#define K_SYSCALL_MSPI_XIP_CONFIG 434 +#define K_SYSCALL_NET_ADDR_NTOP 435 +#define K_SYSCALL_NET_ADDR_PTON 436 +#define K_SYSCALL_NET_ETH_GET_PTP_CLOCK_BY_INDEX 437 +#define K_SYSCALL_NET_IF_GET_BY_INDEX 438 +#define K_SYSCALL_NET_IF_IPV4_ADDR_ADD_BY_INDEX 439 +#define K_SYSCALL_NET_IF_IPV4_ADDR_LOOKUP_BY_INDEX 440 +#define K_SYSCALL_NET_IF_IPV4_ADDR_RM_BY_INDEX 441 +#define K_SYSCALL_NET_IF_IPV4_SET_GW_BY_INDEX 442 +#define K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_ADDR_BY_INDEX 443 +#define K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_INDEX 444 +#define K_SYSCALL_NET_IF_IPV6_ADDR_ADD_BY_INDEX 445 +#define K_SYSCALL_NET_IF_IPV6_ADDR_LOOKUP_BY_INDEX 446 +#define K_SYSCALL_NET_IF_IPV6_ADDR_RM_BY_INDEX 447 +#define K_SYSCALL_NET_SOCKET_SERVICE_REGISTER 448 +#define K_SYSCALL_NRF_QSPI_NOR_XIP_ENABLE 449 +#define K_SYSCALL_OPAMP_SET_GAIN 450 +#define K_SYSCALL_OTP_PROGRAM 451 +#define K_SYSCALL_OTP_READ 452 +#define K_SYSCALL_PECI_CONFIG 453 +#define K_SYSCALL_PECI_DISABLE 454 +#define K_SYSCALL_PECI_ENABLE 455 +#define K_SYSCALL_PECI_TRANSFER 456 +#define K_SYSCALL_PS2_CONFIG 457 +#define K_SYSCALL_PS2_DISABLE_CALLBACK 458 +#define K_SYSCALL_PS2_ENABLE_CALLBACK 459 +#define K_SYSCALL_PS2_READ 460 +#define K_SYSCALL_PS2_WRITE 461 +#define K_SYSCALL_PSI5_REGISTER_CALLBACK 462 +#define K_SYSCALL_PSI5_SEND 463 +#define K_SYSCALL_PSI5_START_SYNC 464 +#define K_SYSCALL_PSI5_STOP_SYNC 465 +#define K_SYSCALL_PTP_CLOCK_GET 466 +#define K_SYSCALL_PWM_CAPTURE_CYCLES 467 +#define K_SYSCALL_PWM_DISABLE_CAPTURE 468 +#define K_SYSCALL_PWM_DISABLE_DMA 469 +#define K_SYSCALL_PWM_ENABLE_CAPTURE 470 +#define K_SYSCALL_PWM_ENABLE_DMA 471 +#define K_SYSCALL_PWM_GET_CYCLES_PER_SEC 472 +#define K_SYSCALL_PWM_SET_CYCLES 473 +#define K_SYSCALL_RENESAS_ELC_DISABLE 474 +#define K_SYSCALL_RENESAS_ELC_ENABLE 475 +#define K_SYSCALL_RENESAS_ELC_LINK_BREAK 476 +#define K_SYSCALL_RENESAS_ELC_LINK_SET 477 +#define K_SYSCALL_RENESAS_ELC_SOFTWARE_EVENT_GENERATE 478 +#define K_SYSCALL_RENESAS_RA_CTSU_GROUP_CONFIGURE 479 +#define K_SYSCALL_RENESAS_RX_CTSU_GROUP_CONFIGURE 480 +#define K_SYSCALL_RESET_LINE_ASSERT 481 +#define K_SYSCALL_RESET_LINE_DEASSERT 482 +#define K_SYSCALL_RESET_LINE_TOGGLE 483 +#define K_SYSCALL_RESET_STATUS 484 +#define K_SYSCALL_RETAINED_MEM_CLEAR 485 +#define K_SYSCALL_RETAINED_MEM_READ 486 +#define K_SYSCALL_RETAINED_MEM_SIZE 487 +#define K_SYSCALL_RETAINED_MEM_WRITE 488 +#define K_SYSCALL_RTC_ALARM_GET_SUPPORTED_FIELDS 489 +#define K_SYSCALL_RTC_ALARM_GET_TIME 490 +#define K_SYSCALL_RTC_ALARM_IS_PENDING 491 +#define K_SYSCALL_RTC_ALARM_SET_TIME 492 +#define K_SYSCALL_RTC_GET_CALIBRATION 493 +#define K_SYSCALL_RTC_GET_TIME 494 +#define K_SYSCALL_RTC_SET_CALIBRATION 495 +#define K_SYSCALL_RTC_SET_TIME 496 +#define K_SYSCALL_RTIO_CQE_COPY_OUT 497 +#define K_SYSCALL_RTIO_CQE_GET_MEMPOOL_BUFFER 498 +#define K_SYSCALL_RTIO_POOL_ACQUIRE 499 +#define K_SYSCALL_RTIO_POOL_RELEASE 500 +#define K_SYSCALL_RTIO_RELEASE_BUFFER 501 +#define K_SYSCALL_RTIO_SQE_CANCEL 502 +#define K_SYSCALL_RTIO_SQE_COPY_IN_GET_HANDLES 503 +#define K_SYSCALL_RTIO_SQE_SIGNAL 504 +#define K_SYSCALL_RTIO_SUBMIT 505 +#define K_SYSCALL_SDHC_CARD_BUSY 506 +#define K_SYSCALL_SDHC_CARD_PRESENT 507 +#define K_SYSCALL_SDHC_DISABLE_INTERRUPT 508 +#define K_SYSCALL_SDHC_ENABLE_INTERRUPT 509 +#define K_SYSCALL_SDHC_EXECUTE_TUNING 510 +#define K_SYSCALL_SDHC_GET_HOST_PROPS 511 +#define K_SYSCALL_SDHC_HW_RESET 512 +#define K_SYSCALL_SDHC_REQUEST 513 +#define K_SYSCALL_SDHC_SET_IO 514 +#define K_SYSCALL_SENSOR_ATTR_GET 515 +#define K_SYSCALL_SENSOR_ATTR_SET 516 +#define K_SYSCALL_SENSOR_CHANNEL_GET 517 +#define K_SYSCALL_SENSOR_GET_DECODER 518 +#define K_SYSCALL_SENSOR_RECONFIGURE_READ_IODEV 519 +#define K_SYSCALL_SENSOR_SAMPLE_FETCH 520 +#define K_SYSCALL_SENSOR_SAMPLE_FETCH_CHAN 521 +#define K_SYSCALL_SENT_REGISTER_CALLBACK 522 +#define K_SYSCALL_SENT_START_LISTENING 523 +#define K_SYSCALL_SENT_STOP_LISTENING 524 +#define K_SYSCALL_SIP_SUPERVISORY_CALL 525 +#define K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_REQ 526 +#define K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_RES 527 +#define K_SYSCALL_SIP_SVC_PLAT_FORMAT_TRANS_ID 528 +#define K_SYSCALL_SIP_SVC_PLAT_FREE_ASYNC_MEMORY 529 +#define K_SYSCALL_SIP_SVC_PLAT_FUNC_ID_VALID 530 +#define K_SYSCALL_SIP_SVC_PLAT_GET_ERROR_CODE 531 +#define K_SYSCALL_SIP_SVC_PLAT_GET_TRANS_IDX 532 +#define K_SYSCALL_SIP_SVC_PLAT_UPDATE_TRANS_ID 533 +#define K_SYSCALL_SMBUS_BLOCK_PCALL 534 +#define K_SYSCALL_SMBUS_BLOCK_READ 535 +#define K_SYSCALL_SMBUS_BLOCK_WRITE 536 +#define K_SYSCALL_SMBUS_BYTE_DATA_READ 537 +#define K_SYSCALL_SMBUS_BYTE_DATA_WRITE 538 +#define K_SYSCALL_SMBUS_BYTE_READ 539 +#define K_SYSCALL_SMBUS_BYTE_WRITE 540 +#define K_SYSCALL_SMBUS_CONFIGURE 541 +#define K_SYSCALL_SMBUS_GET_CONFIG 542 +#define K_SYSCALL_SMBUS_HOST_NOTIFY_REMOVE_CB 543 +#define K_SYSCALL_SMBUS_PCALL 544 +#define K_SYSCALL_SMBUS_QUICK 545 +#define K_SYSCALL_SMBUS_SMBALERT_REMOVE_CB 546 +#define K_SYSCALL_SMBUS_WORD_DATA_READ 547 +#define K_SYSCALL_SMBUS_WORD_DATA_WRITE 548 +#define K_SYSCALL_STEPPER_CTRL_CONFIGURE_RAMP 549 +#define K_SYSCALL_STEPPER_CTRL_GET_ACTUAL_POSITION 550 +#define K_SYSCALL_STEPPER_CTRL_IS_MOVING 551 +#define K_SYSCALL_STEPPER_CTRL_MOVE_BY 552 +#define K_SYSCALL_STEPPER_CTRL_MOVE_TO 553 +#define K_SYSCALL_STEPPER_CTRL_RUN 554 +#define K_SYSCALL_STEPPER_CTRL_SET_EVENT_CB 555 +#define K_SYSCALL_STEPPER_CTRL_SET_MICROSTEP_INTERVAL 556 +#define K_SYSCALL_STEPPER_CTRL_SET_REFERENCE_POSITION 557 +#define K_SYSCALL_STEPPER_CTRL_STOP 558 +#define K_SYSCALL_STEPPER_DISABLE 559 +#define K_SYSCALL_STEPPER_ENABLE 560 +#define K_SYSCALL_STEPPER_GET_MICRO_STEP_RES 561 +#define K_SYSCALL_STEPPER_SET_EVENT_CB 562 +#define K_SYSCALL_STEPPER_SET_MICRO_STEP_RES 563 +#define K_SYSCALL_SWDP_CONFIGURE 564 +#define K_SYSCALL_SWDP_GET_PINS 565 +#define K_SYSCALL_SWDP_INPUT_SEQUENCE 566 +#define K_SYSCALL_SWDP_OUTPUT_SEQUENCE 567 +#define K_SYSCALL_SWDP_PORT_OFF 568 +#define K_SYSCALL_SWDP_PORT_ON 569 +#define K_SYSCALL_SWDP_SET_CLOCK 570 +#define K_SYSCALL_SWDP_SET_PINS 571 +#define K_SYSCALL_SWDP_TRANSFER 572 +#define K_SYSCALL_SYSCON_GET_BASE 573 +#define K_SYSCALL_SYSCON_GET_SIZE 574 +#define K_SYSCALL_SYSCON_READ_REG 575 +#define K_SYSCALL_SYSCON_WRITE_REG 576 +#define K_SYSCALL_SYS_CACHE_DATA_FLUSH_AND_INVD_RANGE 577 +#define K_SYSCALL_SYS_CACHE_DATA_FLUSH_RANGE 578 +#define K_SYSCALL_SYS_CACHE_DATA_INVD_RANGE 579 +#define K_SYSCALL_SYS_CSRAND_GET 580 +#define K_SYSCALL_SYS_RAND_GET 581 +#define K_SYSCALL_TEE_CANCEL 582 +#define K_SYSCALL_TEE_CLOSE_SESSION 583 +#define K_SYSCALL_TEE_GET_VERSION 584 +#define K_SYSCALL_TEE_INVOKE_FUNC 585 +#define K_SYSCALL_TEE_OPEN_SESSION 586 +#define K_SYSCALL_TEE_SHM_ALLOC 587 +#define K_SYSCALL_TEE_SHM_FREE 588 +#define K_SYSCALL_TEE_SHM_REGISTER 589 +#define K_SYSCALL_TEE_SHM_UNREGISTER 590 +#define K_SYSCALL_TEE_SUPPL_RECV 591 +#define K_SYSCALL_TEE_SUPPL_SEND 592 +#define K_SYSCALL_TGPIO_PIN_CONFIG_EXT_TIMESTAMP 593 +#define K_SYSCALL_TGPIO_PIN_DISABLE 594 +#define K_SYSCALL_TGPIO_PIN_PERIODIC_OUTPUT 595 +#define K_SYSCALL_TGPIO_PIN_READ_TS_EC 596 +#define K_SYSCALL_TGPIO_PORT_GET_CYCLES_PER_SECOND 597 +#define K_SYSCALL_TGPIO_PORT_GET_TIME 598 +#define K_SYSCALL_UPDATEHUB_AUTOHANDLER 599 +#define K_SYSCALL_UPDATEHUB_CONFIRM 600 +#define K_SYSCALL_UPDATEHUB_PROBE 601 +#define K_SYSCALL_UPDATEHUB_REBOOT 602 +#define K_SYSCALL_UPDATEHUB_REPORT_ERROR 603 +#define K_SYSCALL_UPDATEHUB_UPDATE 604 +#define K_SYSCALL_USER_FAULT 605 +#define K_SYSCALL_W1_CHANGE_BUS_LOCK 606 +#define K_SYSCALL_W1_CONFIGURE 607 +#define K_SYSCALL_W1_GET_SLAVE_COUNT 608 +#define K_SYSCALL_W1_READ_BIT 609 +#define K_SYSCALL_W1_READ_BLOCK 610 +#define K_SYSCALL_W1_READ_BYTE 611 +#define K_SYSCALL_W1_RESET_BUS 612 +#define K_SYSCALL_W1_SEARCH_BUS 613 +#define K_SYSCALL_W1_WRITE_BIT 614 +#define K_SYSCALL_W1_WRITE_BLOCK 615 +#define K_SYSCALL_W1_WRITE_BYTE 616 +#define K_SYSCALL_WDT_DISABLE 617 +#define K_SYSCALL_WDT_FEED 618 +#define K_SYSCALL_WDT_SETUP 619 +#define K_SYSCALL_ZSOCK_ACCEPT 620 +#define K_SYSCALL_ZSOCK_BIND 621 +#define K_SYSCALL_ZSOCK_CLOSE 622 +#define K_SYSCALL_ZSOCK_CONNECT 623 +#define K_SYSCALL_ZSOCK_FCNTL_IMPL 624 +#define K_SYSCALL_ZSOCK_GETHOSTNAME 625 +#define K_SYSCALL_ZSOCK_GETPEERNAME 626 +#define K_SYSCALL_ZSOCK_GETSOCKNAME 627 +#define K_SYSCALL_ZSOCK_GETSOCKOPT 628 +#define K_SYSCALL_ZSOCK_GET_CONTEXT_OBJECT 629 +#define K_SYSCALL_ZSOCK_INET_PTON 630 +#define K_SYSCALL_ZSOCK_IOCTL_IMPL 631 +#define K_SYSCALL_ZSOCK_LISTEN 632 +#define K_SYSCALL_ZSOCK_RECVFROM 633 +#define K_SYSCALL_ZSOCK_RECVMSG 634 +#define K_SYSCALL_ZSOCK_SENDMSG 635 +#define K_SYSCALL_ZSOCK_SENDTO 636 +#define K_SYSCALL_ZSOCK_SETSOCKOPT 637 +#define K_SYSCALL_ZSOCK_SHUTDOWN 638 +#define K_SYSCALL_ZSOCK_SOCKET 639 +#define K_SYSCALL_ZSOCK_SOCKETPAIR 640 +#define K_SYSCALL_ZVFS_POLL 641 +#define K_SYSCALL_ZVFS_SELECT 642 +#define K_SYSCALL_Z_ZSOCK_GETADDRINFO_INTERNAL 643 + + +#ifndef _ASMLANGUAGE + +#include +#include + +#endif /* _ASMLANGUAGE */ + +#endif /* ZEPHYR_SYSCALL_LIST_H */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/adc.h b/build/zephyr/include/generated/zephyr/syscalls/adc.h new file mode 100644 index 0000000..e269d2d --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/adc.h @@ -0,0 +1,125 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ADC_H +#define Z_INCLUDE_SYSCALLS_ADC_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_adc_channel_setup(const struct device * dev, const struct adc_channel_cfg * channel_cfg); + +__pinned_func +static inline int adc_channel_setup(const struct device * dev, const struct adc_channel_cfg * channel_cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct adc_channel_cfg * val; } parm1 = { .val = channel_cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ADC_CHANNEL_SETUP); + } +#endif + compiler_barrier(); + return z_impl_adc_channel_setup(dev, channel_cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define adc_channel_setup(dev, channel_cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ADC_CHANNEL_SETUP, adc_channel_setup, dev, channel_cfg); syscall__retval = adc_channel_setup(dev, channel_cfg); sys_port_trace_syscall_exit(K_SYSCALL_ADC_CHANNEL_SETUP, adc_channel_setup, dev, channel_cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_adc_read(const struct device * dev, const struct adc_sequence * sequence); + +__pinned_func +static inline int adc_read(const struct device * dev, const struct adc_sequence * sequence) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct adc_sequence * val; } parm1 = { .val = sequence }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ADC_READ); + } +#endif + compiler_barrier(); + return z_impl_adc_read(dev, sequence); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define adc_read(dev, sequence) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ADC_READ, adc_read, dev, sequence); syscall__retval = adc_read(dev, sequence); sys_port_trace_syscall_exit(K_SYSCALL_ADC_READ, adc_read, dev, sequence, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_adc_read_async(const struct device * dev, const struct adc_sequence * sequence, struct k_poll_signal * async); + +__pinned_func +static inline int adc_read_async(const struct device * dev, const struct adc_sequence * sequence, struct k_poll_signal * async) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct adc_sequence * val; } parm1 = { .val = sequence }; + union { uintptr_t x; struct k_poll_signal * val; } parm2 = { .val = async }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ADC_READ_ASYNC); + } +#endif + compiler_barrier(); + return z_impl_adc_read_async(dev, sequence, async); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define adc_read_async(dev, sequence, async) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ADC_READ_ASYNC, adc_read_async, dev, sequence, async); syscall__retval = adc_read_async(dev, sequence, async); sys_port_trace_syscall_exit(K_SYSCALL_ADC_READ_ASYNC, adc_read_async, dev, sequence, async, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_adc_get_decoder(const struct device * dev, const struct adc_decoder_api ** api); + +__pinned_func +static inline int adc_get_decoder(const struct device * dev, const struct adc_decoder_api ** api) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct adc_decoder_api ** val; } parm1 = { .val = api }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ADC_GET_DECODER); + } +#endif + compiler_barrier(); + return z_impl_adc_get_decoder(dev, api); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define adc_get_decoder(dev, api) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ADC_GET_DECODER, adc_get_decoder, dev, api); syscall__retval = adc_get_decoder(dev, api); sys_port_trace_syscall_exit(K_SYSCALL_ADC_GET_DECODER, adc_get_decoder, dev, api, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/arch.h b/build/zephyr/include/generated/zephyr/syscalls/arch.h new file mode 100644 index 0000000..cf55b0b --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/arch.h @@ -0,0 +1,52 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ARCH_H +#define Z_INCLUDE_SYSCALLS_ARCH_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_xtensa_user_fault(unsigned int reason); + +__pinned_func +static inline void xtensa_user_fault(unsigned int reason) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; unsigned int val; } parm0 = { .val = reason }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_XTENSA_USER_FAULT); + return; + } +#endif + compiler_barrier(); + z_impl_xtensa_user_fault(reason); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define xtensa_user_fault(reason) do { sys_port_trace_syscall_enter(K_SYSCALL_XTENSA_USER_FAULT, xtensa_user_fault, reason); xtensa_user_fault(reason); sys_port_trace_syscall_exit(K_SYSCALL_XTENSA_USER_FAULT, xtensa_user_fault, reason); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/atomic_c.h b/build/zephyr/include/generated/zephyr/syscalls/atomic_c.h new file mode 100644 index 0000000..e042a7e --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/atomic_c.h @@ -0,0 +1,270 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ATOMIC_C_H +#define Z_INCLUDE_SYSCALLS_ATOMIC_C_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern bool z_impl_atomic_cas(atomic_t * target, atomic_val_t old_value, atomic_val_t new_value); + +__pinned_func +static inline bool atomic_cas(atomic_t * target, atomic_val_t old_value, atomic_val_t new_value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = old_value }; + union { uintptr_t x; atomic_val_t val; } parm2 = { .val = new_value }; + return (bool) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ATOMIC_CAS); + } +#endif + compiler_barrier(); + return z_impl_atomic_cas(target, old_value, new_value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_cas(target, old_value, new_value) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_CAS, atomic_cas, target, old_value, new_value); syscall__retval = atomic_cas(target, old_value, new_value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_CAS, atomic_cas, target, old_value, new_value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_atomic_ptr_cas(atomic_ptr_t * target, atomic_ptr_val_t old_value, atomic_ptr_val_t new_value); + +__pinned_func +static inline bool atomic_ptr_cas(atomic_ptr_t * target, atomic_ptr_val_t old_value, atomic_ptr_val_t new_value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_ptr_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_ptr_val_t val; } parm1 = { .val = old_value }; + union { uintptr_t x; atomic_ptr_val_t val; } parm2 = { .val = new_value }; + return (bool) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ATOMIC_PTR_CAS); + } +#endif + compiler_barrier(); + return z_impl_atomic_ptr_cas(target, old_value, new_value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_ptr_cas(target, old_value, new_value) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_PTR_CAS, atomic_ptr_cas, target, old_value, new_value); syscall__retval = atomic_ptr_cas(target, old_value, new_value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_PTR_CAS, atomic_ptr_cas, target, old_value, new_value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_val_t z_impl_atomic_add(atomic_t * target, atomic_val_t value); + +__pinned_func +static inline atomic_val_t atomic_add(atomic_t * target, atomic_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = value }; + return (atomic_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_ADD); + } +#endif + compiler_barrier(); + return z_impl_atomic_add(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_add(target, value) ({ atomic_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_ADD, atomic_add, target, value); syscall__retval = atomic_add(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_ADD, atomic_add, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_val_t z_impl_atomic_sub(atomic_t * target, atomic_val_t value); + +__pinned_func +static inline atomic_val_t atomic_sub(atomic_t * target, atomic_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = value }; + return (atomic_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_SUB); + } +#endif + compiler_barrier(); + return z_impl_atomic_sub(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_sub(target, value) ({ atomic_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_SUB, atomic_sub, target, value); syscall__retval = atomic_sub(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_SUB, atomic_sub, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_val_t z_impl_atomic_set(atomic_t * target, atomic_val_t value); + +__pinned_func +static inline atomic_val_t atomic_set(atomic_t * target, atomic_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = value }; + return (atomic_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_SET); + } +#endif + compiler_barrier(); + return z_impl_atomic_set(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_set(target, value) ({ atomic_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_SET, atomic_set, target, value); syscall__retval = atomic_set(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_SET, atomic_set, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_ptr_val_t z_impl_atomic_ptr_set(atomic_ptr_t * target, atomic_ptr_val_t value); + +__pinned_func +static inline atomic_ptr_val_t atomic_ptr_set(atomic_ptr_t * target, atomic_ptr_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_ptr_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_ptr_val_t val; } parm1 = { .val = value }; + return (atomic_ptr_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_PTR_SET); + } +#endif + compiler_barrier(); + return z_impl_atomic_ptr_set(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_ptr_set(target, value) ({ atomic_ptr_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_PTR_SET, atomic_ptr_set, target, value); syscall__retval = atomic_ptr_set(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_PTR_SET, atomic_ptr_set, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_val_t z_impl_atomic_or(atomic_t * target, atomic_val_t value); + +__pinned_func +static inline atomic_val_t atomic_or(atomic_t * target, atomic_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = value }; + return (atomic_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_OR); + } +#endif + compiler_barrier(); + return z_impl_atomic_or(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_or(target, value) ({ atomic_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_OR, atomic_or, target, value); syscall__retval = atomic_or(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_OR, atomic_or, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_val_t z_impl_atomic_xor(atomic_t * target, atomic_val_t value); + +__pinned_func +static inline atomic_val_t atomic_xor(atomic_t * target, atomic_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = value }; + return (atomic_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_XOR); + } +#endif + compiler_barrier(); + return z_impl_atomic_xor(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_xor(target, value) ({ atomic_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_XOR, atomic_xor, target, value); syscall__retval = atomic_xor(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_XOR, atomic_xor, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_val_t z_impl_atomic_and(atomic_t * target, atomic_val_t value); + +__pinned_func +static inline atomic_val_t atomic_and(atomic_t * target, atomic_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = value }; + return (atomic_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_AND); + } +#endif + compiler_barrier(); + return z_impl_atomic_and(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_and(target, value) ({ atomic_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_AND, atomic_and, target, value); syscall__retval = atomic_and(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_AND, atomic_and, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern atomic_val_t z_impl_atomic_nand(atomic_t * target, atomic_val_t value); + +__pinned_func +static inline atomic_val_t atomic_nand(atomic_t * target, atomic_val_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; atomic_t * val; } parm0 = { .val = target }; + union { uintptr_t x; atomic_val_t val; } parm1 = { .val = value }; + return (atomic_val_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ATOMIC_NAND); + } +#endif + compiler_barrier(); + return z_impl_atomic_nand(target, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define atomic_nand(target, value) ({ atomic_val_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ATOMIC_NAND, atomic_nand, target, value); syscall__retval = atomic_nand(target, value); sys_port_trace_syscall_exit(K_SYSCALL_ATOMIC_NAND, atomic_nand, target, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/auxdisplay.h b/build/zephyr/include/generated/zephyr/syscalls/auxdisplay.h new file mode 100644 index 0000000..21c3fec --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/auxdisplay.h @@ -0,0 +1,488 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_AUXDISPLAY_H +#define Z_INCLUDE_SYSCALLS_AUXDISPLAY_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_auxdisplay_display_on(const struct device * dev); + +__pinned_func +static inline int auxdisplay_display_on(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_AUXDISPLAY_DISPLAY_ON); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_display_on(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_display_on(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_DISPLAY_ON, auxdisplay_display_on, dev); syscall__retval = auxdisplay_display_on(dev); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_DISPLAY_ON, auxdisplay_display_on, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_display_off(const struct device * dev); + +__pinned_func +static inline int auxdisplay_display_off(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_AUXDISPLAY_DISPLAY_OFF); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_display_off(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_display_off(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_DISPLAY_OFF, auxdisplay_display_off, dev); syscall__retval = auxdisplay_display_off(dev); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_DISPLAY_OFF, auxdisplay_display_off, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_cursor_set_enabled(const struct device * dev, bool enabled); + +__pinned_func +static inline int auxdisplay_cursor_set_enabled(const struct device * dev, bool enabled) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bool val; } parm1 = { .val = enabled }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_CURSOR_SET_ENABLED); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_cursor_set_enabled(dev, enabled); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_cursor_set_enabled(dev, enabled) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CURSOR_SET_ENABLED, auxdisplay_cursor_set_enabled, dev, enabled); syscall__retval = auxdisplay_cursor_set_enabled(dev, enabled); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CURSOR_SET_ENABLED, auxdisplay_cursor_set_enabled, dev, enabled, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_position_blinking_set_enabled(const struct device * dev, bool enabled); + +__pinned_func +static inline int auxdisplay_position_blinking_set_enabled(const struct device * dev, bool enabled) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bool val; } parm1 = { .val = enabled }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_POSITION_BLINKING_SET_ENABLED); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_position_blinking_set_enabled(dev, enabled); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_position_blinking_set_enabled(dev, enabled) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_POSITION_BLINKING_SET_ENABLED, auxdisplay_position_blinking_set_enabled, dev, enabled); syscall__retval = auxdisplay_position_blinking_set_enabled(dev, enabled); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_POSITION_BLINKING_SET_ENABLED, auxdisplay_position_blinking_set_enabled, dev, enabled, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_cursor_shift_set(const struct device * dev, uint8_t direction, bool display_shift); + +__pinned_func +static inline int auxdisplay_cursor_shift_set(const struct device * dev, uint8_t direction, bool display_shift) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = direction }; + union { uintptr_t x; bool val; } parm2 = { .val = display_shift }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_AUXDISPLAY_CURSOR_SHIFT_SET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_cursor_shift_set(dev, direction, display_shift); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_cursor_shift_set(dev, direction, display_shift) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CURSOR_SHIFT_SET, auxdisplay_cursor_shift_set, dev, direction, display_shift); syscall__retval = auxdisplay_cursor_shift_set(dev, direction, display_shift); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CURSOR_SHIFT_SET, auxdisplay_cursor_shift_set, dev, direction, display_shift, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_cursor_position_set(const struct device * dev, enum auxdisplay_position type, int16_t x, int16_t y); + +__pinned_func +static inline int auxdisplay_cursor_position_set(const struct device * dev, enum auxdisplay_position type, int16_t x, int16_t y) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum auxdisplay_position val; } parm1 = { .val = type }; + union { uintptr_t x; int16_t val; } parm2 = { .val = x }; + union { uintptr_t x; int16_t val; } parm3 = { .val = y }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_SET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_cursor_position_set(dev, type, x, y); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_cursor_position_set(dev, type, x, y) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_SET, auxdisplay_cursor_position_set, dev, type, x, y); syscall__retval = auxdisplay_cursor_position_set(dev, type, x, y); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_SET, auxdisplay_cursor_position_set, dev, type, x, y, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_cursor_position_get(const struct device * dev, int16_t * x, int16_t * y); + +__pinned_func +static inline int auxdisplay_cursor_position_get(const struct device * dev, int16_t * x, int16_t * y) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int16_t * val; } parm1 = { .val = x }; + union { uintptr_t x; int16_t * val; } parm2 = { .val = y }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_GET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_cursor_position_get(dev, x, y); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_cursor_position_get(dev, x, y) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_GET, auxdisplay_cursor_position_get, dev, x, y); syscall__retval = auxdisplay_cursor_position_get(dev, x, y); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CURSOR_POSITION_GET, auxdisplay_cursor_position_get, dev, x, y, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_display_position_set(const struct device * dev, enum auxdisplay_position type, int16_t x, int16_t y); + +__pinned_func +static inline int auxdisplay_display_position_set(const struct device * dev, enum auxdisplay_position type, int16_t x, int16_t y) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum auxdisplay_position val; } parm1 = { .val = type }; + union { uintptr_t x; int16_t val; } parm2 = { .val = x }; + union { uintptr_t x; int16_t val; } parm3 = { .val = y }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_SET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_display_position_set(dev, type, x, y); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_display_position_set(dev, type, x, y) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_SET, auxdisplay_display_position_set, dev, type, x, y); syscall__retval = auxdisplay_display_position_set(dev, type, x, y); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_SET, auxdisplay_display_position_set, dev, type, x, y, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_display_position_get(const struct device * dev, int16_t * x, int16_t * y); + +__pinned_func +static inline int auxdisplay_display_position_get(const struct device * dev, int16_t * x, int16_t * y) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int16_t * val; } parm1 = { .val = x }; + union { uintptr_t x; int16_t * val; } parm2 = { .val = y }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_GET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_display_position_get(dev, x, y); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_display_position_get(dev, x, y) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_GET, auxdisplay_display_position_get, dev, x, y); syscall__retval = auxdisplay_display_position_get(dev, x, y); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_DISPLAY_POSITION_GET, auxdisplay_display_position_get, dev, x, y, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_capabilities_get(const struct device * dev, struct auxdisplay_capabilities * capabilities); + +__pinned_func +static inline int auxdisplay_capabilities_get(const struct device * dev, struct auxdisplay_capabilities * capabilities) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct auxdisplay_capabilities * val; } parm1 = { .val = capabilities }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_CAPABILITIES_GET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_capabilities_get(dev, capabilities); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_capabilities_get(dev, capabilities) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CAPABILITIES_GET, auxdisplay_capabilities_get, dev, capabilities); syscall__retval = auxdisplay_capabilities_get(dev, capabilities); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CAPABILITIES_GET, auxdisplay_capabilities_get, dev, capabilities, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_clear(const struct device * dev); + +__pinned_func +static inline int auxdisplay_clear(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_AUXDISPLAY_CLEAR); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_clear(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_clear(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CLEAR, auxdisplay_clear, dev); syscall__retval = auxdisplay_clear(dev); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CLEAR, auxdisplay_clear, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_brightness_get(const struct device * dev, uint8_t * brightness); + +__pinned_func +static inline int auxdisplay_brightness_get(const struct device * dev, uint8_t * brightness) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = brightness }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_BRIGHTNESS_GET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_brightness_get(dev, brightness); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_brightness_get(dev, brightness) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_BRIGHTNESS_GET, auxdisplay_brightness_get, dev, brightness); syscall__retval = auxdisplay_brightness_get(dev, brightness); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_BRIGHTNESS_GET, auxdisplay_brightness_get, dev, brightness, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_brightness_set(const struct device * dev, uint8_t brightness); + +__pinned_func +static inline int auxdisplay_brightness_set(const struct device * dev, uint8_t brightness) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = brightness }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_BRIGHTNESS_SET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_brightness_set(dev, brightness); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_brightness_set(dev, brightness) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_BRIGHTNESS_SET, auxdisplay_brightness_set, dev, brightness); syscall__retval = auxdisplay_brightness_set(dev, brightness); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_BRIGHTNESS_SET, auxdisplay_brightness_set, dev, brightness, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_backlight_get(const struct device * dev, uint8_t * backlight); + +__pinned_func +static inline int auxdisplay_backlight_get(const struct device * dev, uint8_t * backlight) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = backlight }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_BACKLIGHT_GET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_backlight_get(dev, backlight); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_backlight_get(dev, backlight) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_BACKLIGHT_GET, auxdisplay_backlight_get, dev, backlight); syscall__retval = auxdisplay_backlight_get(dev, backlight); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_BACKLIGHT_GET, auxdisplay_backlight_get, dev, backlight, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_backlight_set(const struct device * dev, uint8_t backlight); + +__pinned_func +static inline int auxdisplay_backlight_set(const struct device * dev, uint8_t backlight) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = backlight }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_BACKLIGHT_SET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_backlight_set(dev, backlight); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_backlight_set(dev, backlight) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_BACKLIGHT_SET, auxdisplay_backlight_set, dev, backlight); syscall__retval = auxdisplay_backlight_set(dev, backlight); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_BACKLIGHT_SET, auxdisplay_backlight_set, dev, backlight, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_is_busy(const struct device * dev); + +__pinned_func +static inline int auxdisplay_is_busy(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_AUXDISPLAY_IS_BUSY); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_is_busy(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_is_busy(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_IS_BUSY, auxdisplay_is_busy, dev); syscall__retval = auxdisplay_is_busy(dev); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_IS_BUSY, auxdisplay_is_busy, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_custom_character_set(const struct device * dev, struct auxdisplay_character * character); + +__pinned_func +static inline int auxdisplay_custom_character_set(const struct device * dev, struct auxdisplay_character * character) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct auxdisplay_character * val; } parm1 = { .val = character }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_CUSTOM_CHARACTER_SET); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_custom_character_set(dev, character); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_custom_character_set(dev, character) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CUSTOM_CHARACTER_SET, auxdisplay_custom_character_set, dev, character); syscall__retval = auxdisplay_custom_character_set(dev, character); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CUSTOM_CHARACTER_SET, auxdisplay_custom_character_set, dev, character, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_write(const struct device * dev, const uint8_t * data, uint16_t len); + +__pinned_func +static inline int auxdisplay_write(const struct device * dev, const uint8_t * data, uint16_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const uint8_t * val; } parm1 = { .val = data }; + union { uintptr_t x; uint16_t val; } parm2 = { .val = len }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_AUXDISPLAY_WRITE); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_write(dev, data, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_write(dev, data, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_WRITE, auxdisplay_write, dev, data, len); syscall__retval = auxdisplay_write(dev, data, len); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_WRITE, auxdisplay_write, dev, data, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_auxdisplay_custom_command(const struct device * dev, struct auxdisplay_custom_data * data); + +__pinned_func +static inline int auxdisplay_custom_command(const struct device * dev, struct auxdisplay_custom_data * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct auxdisplay_custom_data * val; } parm1 = { .val = data }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_AUXDISPLAY_CUSTOM_COMMAND); + } +#endif + compiler_barrier(); + return z_impl_auxdisplay_custom_command(dev, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define auxdisplay_custom_command(dev, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_AUXDISPLAY_CUSTOM_COMMAND, auxdisplay_custom_command, dev, data); syscall__retval = auxdisplay_custom_command(dev, data); sys_port_trace_syscall_exit(K_SYSCALL_AUXDISPLAY_CUSTOM_COMMAND, auxdisplay_custom_command, dev, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/bbram.h b/build/zephyr/include/generated/zephyr/syscalls/bbram.h new file mode 100644 index 0000000..fcfa519 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/bbram.h @@ -0,0 +1,173 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_BBRAM_H +#define Z_INCLUDE_SYSCALLS_BBRAM_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_bbram_check_invalid(const struct device * dev); + +__pinned_func +static inline int bbram_check_invalid(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_BBRAM_CHECK_INVALID); + } +#endif + compiler_barrier(); + return z_impl_bbram_check_invalid(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bbram_check_invalid(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BBRAM_CHECK_INVALID, bbram_check_invalid, dev); syscall__retval = bbram_check_invalid(dev); sys_port_trace_syscall_exit(K_SYSCALL_BBRAM_CHECK_INVALID, bbram_check_invalid, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_bbram_check_standby_power(const struct device * dev); + +__pinned_func +static inline int bbram_check_standby_power(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_BBRAM_CHECK_STANDBY_POWER); + } +#endif + compiler_barrier(); + return z_impl_bbram_check_standby_power(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bbram_check_standby_power(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BBRAM_CHECK_STANDBY_POWER, bbram_check_standby_power, dev); syscall__retval = bbram_check_standby_power(dev); sys_port_trace_syscall_exit(K_SYSCALL_BBRAM_CHECK_STANDBY_POWER, bbram_check_standby_power, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_bbram_check_power(const struct device * dev); + +__pinned_func +static inline int bbram_check_power(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_BBRAM_CHECK_POWER); + } +#endif + compiler_barrier(); + return z_impl_bbram_check_power(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bbram_check_power(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BBRAM_CHECK_POWER, bbram_check_power, dev); syscall__retval = bbram_check_power(dev); sys_port_trace_syscall_exit(K_SYSCALL_BBRAM_CHECK_POWER, bbram_check_power, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_bbram_get_size(const struct device * dev, size_t * size); + +__pinned_func +static inline int bbram_get_size(const struct device * dev, size_t * size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; size_t * val; } parm1 = { .val = size }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_BBRAM_GET_SIZE); + } +#endif + compiler_barrier(); + return z_impl_bbram_get_size(dev, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bbram_get_size(dev, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BBRAM_GET_SIZE, bbram_get_size, dev, size); syscall__retval = bbram_get_size(dev, size); sys_port_trace_syscall_exit(K_SYSCALL_BBRAM_GET_SIZE, bbram_get_size, dev, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_bbram_read(const struct device * dev, size_t offset, size_t size, uint8_t * data); + +__pinned_func +static inline int bbram_read(const struct device * dev, size_t offset, size_t size, uint8_t * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; size_t val; } parm1 = { .val = offset }; + union { uintptr_t x; size_t val; } parm2 = { .val = size }; + union { uintptr_t x; uint8_t * val; } parm3 = { .val = data }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_BBRAM_READ); + } +#endif + compiler_barrier(); + return z_impl_bbram_read(dev, offset, size, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bbram_read(dev, offset, size, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BBRAM_READ, bbram_read, dev, offset, size, data); syscall__retval = bbram_read(dev, offset, size, data); sys_port_trace_syscall_exit(K_SYSCALL_BBRAM_READ, bbram_read, dev, offset, size, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_bbram_write(const struct device * dev, size_t offset, size_t size, const uint8_t * data); + +__pinned_func +static inline int bbram_write(const struct device * dev, size_t offset, size_t size, const uint8_t * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; size_t val; } parm1 = { .val = offset }; + union { uintptr_t x; size_t val; } parm2 = { .val = size }; + union { uintptr_t x; const uint8_t * val; } parm3 = { .val = data }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_BBRAM_WRITE); + } +#endif + compiler_barrier(); + return z_impl_bbram_write(dev, offset, size, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bbram_write(dev, offset, size, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BBRAM_WRITE, bbram_write, dev, offset, size, data); syscall__retval = bbram_write(dev, offset, size, data); sys_port_trace_syscall_exit(K_SYSCALL_BBRAM_WRITE, bbram_write, dev, offset, size, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/biometrics.h b/build/zephyr/include/generated/zephyr/syscalls/biometrics.h new file mode 100644 index 0000000..75f9a5c --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/biometrics.h @@ -0,0 +1,373 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_BIOMETRICS_H +#define Z_INCLUDE_SYSCALLS_BIOMETRICS_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_biometric_get_capabilities(const struct device * dev, struct biometric_capabilities * caps); + +__pinned_func +static inline int biometric_get_capabilities(const struct device * dev, struct biometric_capabilities * caps) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct biometric_capabilities * val; } parm1 = { .val = caps }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_BIOMETRIC_GET_CAPABILITIES); + } +#endif + compiler_barrier(); + return z_impl_biometric_get_capabilities(dev, caps); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define biometric_get_capabilities(dev, caps) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BIOMETRIC_GET_CAPABILITIES, biometric_get_capabilities, dev, caps); syscall__retval = biometric_get_capabilities(dev, caps); sys_port_trace_syscall_exit(K_SYSCALL_BIOMETRIC_GET_CAPABILITIES, biometric_get_capabilities, dev, caps, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_biometric_attr_set(const struct device * dev, enum biometric_attribute attr, int32_t val); + +__pinned_func +static inline int biometric_attr_set(const struct device * dev, enum biometric_attribute attr, int32_t val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum biometric_attribute val; } parm1 = { .val = attr }; + union { uintptr_t x; int32_t val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_BIOMETRIC_ATTR_SET); + } +#endif + compiler_barrier(); + return z_impl_biometric_attr_set(dev, attr, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define biometric_attr_set(dev, attr, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BIOMETRIC_ATTR_SET, biometric_attr_set, dev, attr, val); syscall__retval = biometric_attr_set(dev, attr, val); sys_port_trace_syscall_exit(K_SYSCALL_BIOMETRIC_ATTR_SET, biometric_attr_set, dev, attr, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_biometric_attr_get(const struct device * dev, enum biometric_attribute attr, int32_t * val); + +__pinned_func +static inline int biometric_attr_get(const struct device * dev, enum biometric_attribute attr, int32_t * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum biometric_attribute val; } parm1 = { .val = attr }; + union { uintptr_t x; int32_t * val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_BIOMETRIC_ATTR_GET); + } +#endif + compiler_barrier(); + return z_impl_biometric_attr_get(dev, attr, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define biometric_attr_get(dev, attr, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BIOMETRIC_ATTR_GET, biometric_attr_get, dev, attr, val); syscall__retval = biometric_attr_get(dev, attr, val); sys_port_trace_syscall_exit(K_SYSCALL_BIOMETRIC_ATTR_GET, biometric_attr_get, dev, attr, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_biometric_enroll_start(const struct device * dev, uint16_t template_id); + +__pinned_func +static inline int biometric_enroll_start(const struct device * dev, uint16_t template_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = template_id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_BIOMETRIC_ENROLL_START); + } +#endif + compiler_barrier(); + return z_impl_biometric_enroll_start(dev, template_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define biometric_enroll_start(dev, template_id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BIOMETRIC_ENROLL_START, biometric_enroll_start, dev, template_id); syscall__retval = biometric_enroll_start(dev, template_id); sys_port_trace_syscall_exit(K_SYSCALL_BIOMETRIC_ENROLL_START, biometric_enroll_start, dev, template_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_biometric_enroll_capture(const struct device * dev, k_timeout_t timeout, struct biometric_capture_result * result); + +__pinned_func +static inline int biometric_enroll_capture(const struct device * dev, k_timeout_t timeout, struct biometric_capture_result * result) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = timeout }; + union { uintptr_t x; struct biometric_capture_result * val; } parm2 = { .val = result }; + return (int) arch_syscall_invoke4(parm0.x, parm1.split.lo, parm1.split.hi, parm2.x, K_SYSCALL_BIOMETRIC_ENROLL_CAPTURE); + } +#endif + compiler_barrier(); + return z_impl_biometric_enroll_capture(dev, timeout, result); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define biometric_enroll_capture(dev, timeout, result) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BIOMETRIC_ENROLL_CAPTURE, biometric_enroll_capture, dev, timeout, result); syscall__retval = biometric_enroll_capture(dev, timeout, result); sys_port_trace_syscall_exit(K_SYSCALL_BIOMETRIC_ENROLL_CAPTURE, biometric_enroll_capture, dev, timeout, result, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_biometric_enroll_finalize(const struct device * dev); + +__pinned_func +static inline int biometric_enroll_finalize(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_BIOMETRIC_ENROLL_FINALIZE); + } +#endif + compiler_barrier(); + return z_impl_biometric_enroll_finalize(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define biometric_enroll_finalize(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BIOMETRIC_ENROLL_FINALIZE, biometric_enroll_finalize, dev); syscall__retval = biometric_enroll_finalize(dev); sys_port_trace_syscall_exit(K_SYSCALL_BIOMETRIC_ENROLL_FINALIZE, biometric_enroll_finalize, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_biometric_enroll_abort(const struct device * dev); + +__pinned_func +static inline int biometric_enroll_abort(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_BIOMETRIC_ENROLL_ABORT); + } +#endif + compiler_barrier(); + return z_impl_biometric_enroll_abort(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define biometric_enroll_abort(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BIOMETRIC_ENROLL_ABORT, biometric_enroll_abort, dev); syscall__retval = biometric_enroll_abort(dev); sys_port_trace_syscall_exit(K_SYSCALL_BIOMETRIC_ENROLL_ABORT, biometric_enroll_abort, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_biometric_template_store(const struct device * dev, uint16_t id, const uint8_t * data, size_t size); + +__pinned_func +static inline int biometric_template_store(const struct device * dev, uint16_t id, const uint8_t * data, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = id }; + union { uintptr_t x; const uint8_t * val; } parm2 = { .val = data }; + union { uintptr_t x; size_t val; } parm3 = { .val = size }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_BIOMETRIC_TEMPLATE_STORE); + } +#endif + compiler_barrier(); + return z_impl_biometric_template_store(dev, id, data, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define biometric_template_store(dev, id, data, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BIOMETRIC_TEMPLATE_STORE, biometric_template_store, dev, id, data, size); syscall__retval = biometric_template_store(dev, id, data, size); sys_port_trace_syscall_exit(K_SYSCALL_BIOMETRIC_TEMPLATE_STORE, biometric_template_store, dev, id, data, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_biometric_template_read(const struct device * dev, uint16_t id, uint8_t * data, size_t size); + +__pinned_func +static inline int biometric_template_read(const struct device * dev, uint16_t id, uint8_t * data, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = id }; + union { uintptr_t x; uint8_t * val; } parm2 = { .val = data }; + union { uintptr_t x; size_t val; } parm3 = { .val = size }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_BIOMETRIC_TEMPLATE_READ); + } +#endif + compiler_barrier(); + return z_impl_biometric_template_read(dev, id, data, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define biometric_template_read(dev, id, data, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BIOMETRIC_TEMPLATE_READ, biometric_template_read, dev, id, data, size); syscall__retval = biometric_template_read(dev, id, data, size); sys_port_trace_syscall_exit(K_SYSCALL_BIOMETRIC_TEMPLATE_READ, biometric_template_read, dev, id, data, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_biometric_template_delete(const struct device * dev, uint16_t id); + +__pinned_func +static inline int biometric_template_delete(const struct device * dev, uint16_t id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_BIOMETRIC_TEMPLATE_DELETE); + } +#endif + compiler_barrier(); + return z_impl_biometric_template_delete(dev, id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define biometric_template_delete(dev, id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BIOMETRIC_TEMPLATE_DELETE, biometric_template_delete, dev, id); syscall__retval = biometric_template_delete(dev, id); sys_port_trace_syscall_exit(K_SYSCALL_BIOMETRIC_TEMPLATE_DELETE, biometric_template_delete, dev, id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_biometric_template_delete_all(const struct device * dev); + +__pinned_func +static inline int biometric_template_delete_all(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_BIOMETRIC_TEMPLATE_DELETE_ALL); + } +#endif + compiler_barrier(); + return z_impl_biometric_template_delete_all(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define biometric_template_delete_all(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BIOMETRIC_TEMPLATE_DELETE_ALL, biometric_template_delete_all, dev); syscall__retval = biometric_template_delete_all(dev); sys_port_trace_syscall_exit(K_SYSCALL_BIOMETRIC_TEMPLATE_DELETE_ALL, biometric_template_delete_all, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_biometric_template_list(const struct device * dev, uint16_t * ids, size_t max_count, size_t * actual_count); + +__pinned_func +static inline int biometric_template_list(const struct device * dev, uint16_t * ids, size_t max_count, size_t * actual_count) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t * val; } parm1 = { .val = ids }; + union { uintptr_t x; size_t val; } parm2 = { .val = max_count }; + union { uintptr_t x; size_t * val; } parm3 = { .val = actual_count }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_BIOMETRIC_TEMPLATE_LIST); + } +#endif + compiler_barrier(); + return z_impl_biometric_template_list(dev, ids, max_count, actual_count); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define biometric_template_list(dev, ids, max_count, actual_count) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BIOMETRIC_TEMPLATE_LIST, biometric_template_list, dev, ids, max_count, actual_count); syscall__retval = biometric_template_list(dev, ids, max_count, actual_count); sys_port_trace_syscall_exit(K_SYSCALL_BIOMETRIC_TEMPLATE_LIST, biometric_template_list, dev, ids, max_count, actual_count, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_biometric_match(const struct device * dev, enum biometric_match_mode mode, uint16_t template_id, k_timeout_t timeout, struct biometric_match_result * result); + +__pinned_func +static inline int biometric_match(const struct device * dev, enum biometric_match_mode mode, uint16_t template_id, k_timeout_t timeout, struct biometric_match_result * result) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum biometric_match_mode val; } parm1 = { .val = mode }; + union { uintptr_t x; uint16_t val; } parm2 = { .val = template_id }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm3 = { .val = timeout }; + union { uintptr_t x; struct biometric_match_result * val; } parm4 = { .val = result }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.split.lo, parm3.split.hi, parm4.x, K_SYSCALL_BIOMETRIC_MATCH); + } +#endif + compiler_barrier(); + return z_impl_biometric_match(dev, mode, template_id, timeout, result); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define biometric_match(dev, mode, template_id, timeout, result) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BIOMETRIC_MATCH, biometric_match, dev, mode, template_id, timeout, result); syscall__retval = biometric_match(dev, mode, template_id, timeout, result); sys_port_trace_syscall_exit(K_SYSCALL_BIOMETRIC_MATCH, biometric_match, dev, mode, template_id, timeout, result, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_biometric_led_control(const struct device * dev, enum biometric_led_state state); + +__pinned_func +static inline int biometric_led_control(const struct device * dev, enum biometric_led_state state) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum biometric_led_state val; } parm1 = { .val = state }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_BIOMETRIC_LED_CONTROL); + } +#endif + compiler_barrier(); + return z_impl_biometric_led_control(dev, state); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define biometric_led_control(dev, state) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BIOMETRIC_LED_CONTROL, biometric_led_control, dev, state); syscall__retval = biometric_led_control(dev, state); sys_port_trace_syscall_exit(K_SYSCALL_BIOMETRIC_LED_CONTROL, biometric_led_control, dev, state, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/cache.h b/build/zephyr/include/generated/zephyr/syscalls/cache.h new file mode 100644 index 0000000..7dbb963 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/cache.h @@ -0,0 +1,100 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_CACHE_H +#define Z_INCLUDE_SYSCALLS_CACHE_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_sys_cache_data_flush_range(void * addr, size_t size); + +__pinned_func +static inline int sys_cache_data_flush_range(void * addr, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; void * val; } parm0 = { .val = addr }; + union { uintptr_t x; size_t val; } parm1 = { .val = size }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYS_CACHE_DATA_FLUSH_RANGE); + } +#endif + compiler_barrier(); + return z_impl_sys_cache_data_flush_range(addr, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_cache_data_flush_range(addr, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYS_CACHE_DATA_FLUSH_RANGE, sys_cache_data_flush_range, addr, size); syscall__retval = sys_cache_data_flush_range(addr, size); sys_port_trace_syscall_exit(K_SYSCALL_SYS_CACHE_DATA_FLUSH_RANGE, sys_cache_data_flush_range, addr, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sys_cache_data_invd_range(void * addr, size_t size); + +__pinned_func +static inline int sys_cache_data_invd_range(void * addr, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; void * val; } parm0 = { .val = addr }; + union { uintptr_t x; size_t val; } parm1 = { .val = size }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYS_CACHE_DATA_INVD_RANGE); + } +#endif + compiler_barrier(); + return z_impl_sys_cache_data_invd_range(addr, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_cache_data_invd_range(addr, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYS_CACHE_DATA_INVD_RANGE, sys_cache_data_invd_range, addr, size); syscall__retval = sys_cache_data_invd_range(addr, size); sys_port_trace_syscall_exit(K_SYSCALL_SYS_CACHE_DATA_INVD_RANGE, sys_cache_data_invd_range, addr, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sys_cache_data_flush_and_invd_range(void * addr, size_t size); + +__pinned_func +static inline int sys_cache_data_flush_and_invd_range(void * addr, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; void * val; } parm0 = { .val = addr }; + union { uintptr_t x; size_t val; } parm1 = { .val = size }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYS_CACHE_DATA_FLUSH_AND_INVD_RANGE); + } +#endif + compiler_barrier(); + return z_impl_sys_cache_data_flush_and_invd_range(addr, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_cache_data_flush_and_invd_range(addr, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYS_CACHE_DATA_FLUSH_AND_INVD_RANGE, sys_cache_data_flush_and_invd_range, addr, size); syscall__retval = sys_cache_data_flush_and_invd_range(addr, size); sys_port_trace_syscall_exit(K_SYSCALL_SYS_CACHE_DATA_FLUSH_AND_INVD_RANGE, sys_cache_data_flush_and_invd_range, addr, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/can.h b/build/zephyr/include/generated/zephyr/syscalls/can.h new file mode 100644 index 0000000..261b074 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/can.h @@ -0,0 +1,812 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_CAN_H +#define Z_INCLUDE_SYSCALLS_CAN_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_can_get_core_clock(const struct device * dev, uint32_t * rate); + +__pinned_func +static inline int can_get_core_clock(const struct device * dev, uint32_t * rate) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t * val; } parm1 = { .val = rate }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_GET_CORE_CLOCK); + } +#endif + compiler_barrier(); + return z_impl_can_get_core_clock(dev, rate); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_core_clock(dev, rate) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_CORE_CLOCK, can_get_core_clock, dev, rate); syscall__retval = can_get_core_clock(dev, rate); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_CORE_CLOCK, can_get_core_clock, dev, rate, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_get_bitrate_min(const struct device * dev); + +__pinned_func +static inline uint32_t can_get_bitrate_min(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_BITRATE_MIN); + } +#endif + compiler_barrier(); + return z_impl_can_get_bitrate_min(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_bitrate_min(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_BITRATE_MIN, can_get_bitrate_min, dev); syscall__retval = can_get_bitrate_min(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_BITRATE_MIN, can_get_bitrate_min, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_get_bitrate_max(const struct device * dev); + +__pinned_func +static inline uint32_t can_get_bitrate_max(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_BITRATE_MAX); + } +#endif + compiler_barrier(); + return z_impl_can_get_bitrate_max(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_bitrate_max(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_BITRATE_MAX, can_get_bitrate_max, dev); syscall__retval = can_get_bitrate_max(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_BITRATE_MAX, can_get_bitrate_max, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern const struct can_timing * z_impl_can_get_timing_min(const struct device * dev); + +__pinned_func +static inline const struct can_timing * can_get_timing_min(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (const struct can_timing *) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_TIMING_MIN); + } +#endif + compiler_barrier(); + return z_impl_can_get_timing_min(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_timing_min(dev) ({ const struct can_timing * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_TIMING_MIN, can_get_timing_min, dev); syscall__retval = can_get_timing_min(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_TIMING_MIN, can_get_timing_min, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern const struct can_timing * z_impl_can_get_timing_max(const struct device * dev); + +__pinned_func +static inline const struct can_timing * can_get_timing_max(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (const struct can_timing *) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_TIMING_MAX); + } +#endif + compiler_barrier(); + return z_impl_can_get_timing_max(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_timing_max(dev) ({ const struct can_timing * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_TIMING_MAX, can_get_timing_max, dev); syscall__retval = can_get_timing_max(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_TIMING_MAX, can_get_timing_max, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_calc_timing(const struct device * dev, struct can_timing * res, uint32_t bitrate, uint16_t sample_pnt); + +__pinned_func +static inline int can_calc_timing(const struct device * dev, struct can_timing * res, uint32_t bitrate, uint16_t sample_pnt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct can_timing * val; } parm1 = { .val = res }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = bitrate }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = sample_pnt }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_CAN_CALC_TIMING); + } +#endif + compiler_barrier(); + return z_impl_can_calc_timing(dev, res, bitrate, sample_pnt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_calc_timing(dev, res, bitrate, sample_pnt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_CALC_TIMING, can_calc_timing, dev, res, bitrate, sample_pnt); syscall__retval = can_calc_timing(dev, res, bitrate, sample_pnt); sys_port_trace_syscall_exit(K_SYSCALL_CAN_CALC_TIMING, can_calc_timing, dev, res, bitrate, sample_pnt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern const struct can_timing * z_impl_can_get_timing_data_min(const struct device * dev); + +__pinned_func +static inline const struct can_timing * can_get_timing_data_min(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (const struct can_timing *) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_TIMING_DATA_MIN); + } +#endif + compiler_barrier(); + return z_impl_can_get_timing_data_min(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_timing_data_min(dev) ({ const struct can_timing * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_TIMING_DATA_MIN, can_get_timing_data_min, dev); syscall__retval = can_get_timing_data_min(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_TIMING_DATA_MIN, can_get_timing_data_min, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern const struct can_timing * z_impl_can_get_timing_data_max(const struct device * dev); + +__pinned_func +static inline const struct can_timing * can_get_timing_data_max(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (const struct can_timing *) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_TIMING_DATA_MAX); + } +#endif + compiler_barrier(); + return z_impl_can_get_timing_data_max(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_timing_data_max(dev) ({ const struct can_timing * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_TIMING_DATA_MAX, can_get_timing_data_max, dev); syscall__retval = can_get_timing_data_max(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_TIMING_DATA_MAX, can_get_timing_data_max, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_calc_timing_data(const struct device * dev, struct can_timing * res, uint32_t bitrate, uint16_t sample_pnt); + +__pinned_func +static inline int can_calc_timing_data(const struct device * dev, struct can_timing * res, uint32_t bitrate, uint16_t sample_pnt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct can_timing * val; } parm1 = { .val = res }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = bitrate }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = sample_pnt }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_CAN_CALC_TIMING_DATA); + } +#endif + compiler_barrier(); + return z_impl_can_calc_timing_data(dev, res, bitrate, sample_pnt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_calc_timing_data(dev, res, bitrate, sample_pnt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_CALC_TIMING_DATA, can_calc_timing_data, dev, res, bitrate, sample_pnt); syscall__retval = can_calc_timing_data(dev, res, bitrate, sample_pnt); sys_port_trace_syscall_exit(K_SYSCALL_CAN_CALC_TIMING_DATA, can_calc_timing_data, dev, res, bitrate, sample_pnt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_set_timing_data(const struct device * dev, const struct can_timing * timing_data); + +__pinned_func +static inline int can_set_timing_data(const struct device * dev, const struct can_timing * timing_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct can_timing * val; } parm1 = { .val = timing_data }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_SET_TIMING_DATA); + } +#endif + compiler_barrier(); + return z_impl_can_set_timing_data(dev, timing_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_set_timing_data(dev, timing_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_SET_TIMING_DATA, can_set_timing_data, dev, timing_data); syscall__retval = can_set_timing_data(dev, timing_data); sys_port_trace_syscall_exit(K_SYSCALL_CAN_SET_TIMING_DATA, can_set_timing_data, dev, timing_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_set_bitrate_data(const struct device * dev, uint32_t bitrate_data); + +__pinned_func +static inline int can_set_bitrate_data(const struct device * dev, uint32_t bitrate_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = bitrate_data }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_SET_BITRATE_DATA); + } +#endif + compiler_barrier(); + return z_impl_can_set_bitrate_data(dev, bitrate_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_set_bitrate_data(dev, bitrate_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_SET_BITRATE_DATA, can_set_bitrate_data, dev, bitrate_data); syscall__retval = can_set_bitrate_data(dev, bitrate_data); sys_port_trace_syscall_exit(K_SYSCALL_CAN_SET_BITRATE_DATA, can_set_bitrate_data, dev, bitrate_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_set_timing(const struct device * dev, const struct can_timing * timing); + +__pinned_func +static inline int can_set_timing(const struct device * dev, const struct can_timing * timing) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct can_timing * val; } parm1 = { .val = timing }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_SET_TIMING); + } +#endif + compiler_barrier(); + return z_impl_can_set_timing(dev, timing); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_set_timing(dev, timing) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_SET_TIMING, can_set_timing, dev, timing); syscall__retval = can_set_timing(dev, timing); sys_port_trace_syscall_exit(K_SYSCALL_CAN_SET_TIMING, can_set_timing, dev, timing, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_get_capabilities(const struct device * dev, can_mode_t * cap); + +__pinned_func +static inline int can_get_capabilities(const struct device * dev, can_mode_t * cap) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; can_mode_t * val; } parm1 = { .val = cap }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_GET_CAPABILITIES); + } +#endif + compiler_barrier(); + return z_impl_can_get_capabilities(dev, cap); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_capabilities(dev, cap) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_CAPABILITIES, can_get_capabilities, dev, cap); syscall__retval = can_get_capabilities(dev, cap); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_CAPABILITIES, can_get_capabilities, dev, cap, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern const struct device * z_impl_can_get_transceiver(const struct device * dev); + +__pinned_func +static inline const struct device * can_get_transceiver(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (const struct device *) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_TRANSCEIVER); + } +#endif + compiler_barrier(); + return z_impl_can_get_transceiver(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_transceiver(dev) ({ const struct device * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_TRANSCEIVER, can_get_transceiver, dev); syscall__retval = can_get_transceiver(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_TRANSCEIVER, can_get_transceiver, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_start(const struct device * dev); + +__pinned_func +static inline int can_start(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_START); + } +#endif + compiler_barrier(); + return z_impl_can_start(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_start(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_START, can_start, dev); syscall__retval = can_start(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_START, can_start, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_stop(const struct device * dev); + +__pinned_func +static inline int can_stop(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STOP); + } +#endif + compiler_barrier(); + return z_impl_can_stop(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stop(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STOP, can_stop, dev); syscall__retval = can_stop(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STOP, can_stop, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_set_mode(const struct device * dev, can_mode_t mode); + +__pinned_func +static inline int can_set_mode(const struct device * dev, can_mode_t mode) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; can_mode_t val; } parm1 = { .val = mode }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_SET_MODE); + } +#endif + compiler_barrier(); + return z_impl_can_set_mode(dev, mode); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_set_mode(dev, mode) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_SET_MODE, can_set_mode, dev, mode); syscall__retval = can_set_mode(dev, mode); sys_port_trace_syscall_exit(K_SYSCALL_CAN_SET_MODE, can_set_mode, dev, mode, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern can_mode_t z_impl_can_get_mode(const struct device * dev); + +__pinned_func +static inline can_mode_t can_get_mode(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (can_mode_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_GET_MODE); + } +#endif + compiler_barrier(); + return z_impl_can_get_mode(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_mode(dev) ({ can_mode_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_MODE, can_get_mode, dev); syscall__retval = can_get_mode(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_MODE, can_get_mode, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_set_bitrate(const struct device * dev, uint32_t bitrate); + +__pinned_func +static inline int can_set_bitrate(const struct device * dev, uint32_t bitrate) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = bitrate }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_SET_BITRATE); + } +#endif + compiler_barrier(); + return z_impl_can_set_bitrate(dev, bitrate); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_set_bitrate(dev, bitrate) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_SET_BITRATE, can_set_bitrate, dev, bitrate); syscall__retval = can_set_bitrate(dev, bitrate); sys_port_trace_syscall_exit(K_SYSCALL_CAN_SET_BITRATE, can_set_bitrate, dev, bitrate, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_send(const struct device * dev, const struct can_frame * frame, k_timeout_t timeout, can_tx_callback_t callback, void * user_data); + +__pinned_func +static inline int can_send(const struct device * dev, const struct can_frame * frame, k_timeout_t timeout, can_tx_callback_t callback, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct can_frame * val; } parm1 = { .val = frame }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = timeout }; + union { uintptr_t x; can_tx_callback_t val; } parm3 = { .val = callback }; + union { uintptr_t x; void * val; } parm4 = { .val = user_data }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, parm3.x, parm4.x, K_SYSCALL_CAN_SEND); + } +#endif + compiler_barrier(); + return z_impl_can_send(dev, frame, timeout, callback, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_send(dev, frame, timeout, callback, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_SEND, can_send, dev, frame, timeout, callback, user_data); syscall__retval = can_send(dev, frame, timeout, callback, user_data); sys_port_trace_syscall_exit(K_SYSCALL_CAN_SEND, can_send, dev, frame, timeout, callback, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_add_rx_filter_msgq(const struct device * dev, struct k_msgq * msgq, const struct can_filter * filter); + +__pinned_func +static inline int can_add_rx_filter_msgq(const struct device * dev, struct k_msgq * msgq, const struct can_filter * filter) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct k_msgq * val; } parm1 = { .val = msgq }; + union { uintptr_t x; const struct can_filter * val; } parm2 = { .val = filter }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_CAN_ADD_RX_FILTER_MSGQ); + } +#endif + compiler_barrier(); + return z_impl_can_add_rx_filter_msgq(dev, msgq, filter); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_add_rx_filter_msgq(dev, msgq, filter) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_ADD_RX_FILTER_MSGQ, can_add_rx_filter_msgq, dev, msgq, filter); syscall__retval = can_add_rx_filter_msgq(dev, msgq, filter); sys_port_trace_syscall_exit(K_SYSCALL_CAN_ADD_RX_FILTER_MSGQ, can_add_rx_filter_msgq, dev, msgq, filter, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_can_remove_rx_filter(const struct device * dev, int filter_id); + +__pinned_func +static inline void can_remove_rx_filter(const struct device * dev, int filter_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int val; } parm1 = { .val = filter_id }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_REMOVE_RX_FILTER); + return; + } +#endif + compiler_barrier(); + z_impl_can_remove_rx_filter(dev, filter_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_remove_rx_filter(dev, filter_id) do { sys_port_trace_syscall_enter(K_SYSCALL_CAN_REMOVE_RX_FILTER, can_remove_rx_filter, dev, filter_id); can_remove_rx_filter(dev, filter_id); sys_port_trace_syscall_exit(K_SYSCALL_CAN_REMOVE_RX_FILTER, can_remove_rx_filter, dev, filter_id); } while(false) +#endif +#endif + + +extern int z_impl_can_get_max_filters(const struct device * dev, bool ide); + +__pinned_func +static inline int can_get_max_filters(const struct device * dev, bool ide) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bool val; } parm1 = { .val = ide }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CAN_GET_MAX_FILTERS); + } +#endif + compiler_barrier(); + return z_impl_can_get_max_filters(dev, ide); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_max_filters(dev, ide) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_MAX_FILTERS, can_get_max_filters, dev, ide); syscall__retval = can_get_max_filters(dev, ide); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_MAX_FILTERS, can_get_max_filters, dev, ide, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_get_state(const struct device * dev, enum can_state * state, struct can_bus_err_cnt * err_cnt); + +__pinned_func +static inline int can_get_state(const struct device * dev, enum can_state * state, struct can_bus_err_cnt * err_cnt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum can_state * val; } parm1 = { .val = state }; + union { uintptr_t x; struct can_bus_err_cnt * val; } parm2 = { .val = err_cnt }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_CAN_GET_STATE); + } +#endif + compiler_barrier(); + return z_impl_can_get_state(dev, state, err_cnt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_get_state(dev, state, err_cnt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_GET_STATE, can_get_state, dev, state, err_cnt); syscall__retval = can_get_state(dev, state, err_cnt); sys_port_trace_syscall_exit(K_SYSCALL_CAN_GET_STATE, can_get_state, dev, state, err_cnt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_can_recover(const struct device * dev, k_timeout_t timeout); + +__pinned_func +static inline int can_recover(const struct device * dev, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = timeout }; + return (int) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_CAN_RECOVER); + } +#endif + compiler_barrier(); + return z_impl_can_recover(dev, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_recover(dev, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_RECOVER, can_recover, dev, timeout); syscall__retval = can_recover(dev, timeout); sys_port_trace_syscall_exit(K_SYSCALL_CAN_RECOVER, can_recover, dev, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_bit_errors(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_bit_errors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_BIT_ERRORS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_bit_errors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_bit_errors(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_BIT_ERRORS, can_stats_get_bit_errors, dev); syscall__retval = can_stats_get_bit_errors(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_BIT_ERRORS, can_stats_get_bit_errors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_bit0_errors(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_bit0_errors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_BIT0_ERRORS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_bit0_errors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_bit0_errors(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_BIT0_ERRORS, can_stats_get_bit0_errors, dev); syscall__retval = can_stats_get_bit0_errors(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_BIT0_ERRORS, can_stats_get_bit0_errors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_bit1_errors(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_bit1_errors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_BIT1_ERRORS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_bit1_errors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_bit1_errors(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_BIT1_ERRORS, can_stats_get_bit1_errors, dev); syscall__retval = can_stats_get_bit1_errors(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_BIT1_ERRORS, can_stats_get_bit1_errors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_stuff_errors(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_stuff_errors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_STUFF_ERRORS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_stuff_errors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_stuff_errors(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_STUFF_ERRORS, can_stats_get_stuff_errors, dev); syscall__retval = can_stats_get_stuff_errors(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_STUFF_ERRORS, can_stats_get_stuff_errors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_crc_errors(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_crc_errors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_CRC_ERRORS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_crc_errors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_crc_errors(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_CRC_ERRORS, can_stats_get_crc_errors, dev); syscall__retval = can_stats_get_crc_errors(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_CRC_ERRORS, can_stats_get_crc_errors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_form_errors(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_form_errors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_FORM_ERRORS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_form_errors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_form_errors(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_FORM_ERRORS, can_stats_get_form_errors, dev); syscall__retval = can_stats_get_form_errors(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_FORM_ERRORS, can_stats_get_form_errors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_ack_errors(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_ack_errors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_ACK_ERRORS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_ack_errors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_ack_errors(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_ACK_ERRORS, can_stats_get_ack_errors, dev); syscall__retval = can_stats_get_ack_errors(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_ACK_ERRORS, can_stats_get_ack_errors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_can_stats_get_rx_overruns(const struct device * dev); + +__pinned_func +static inline uint32_t can_stats_get_rx_overruns(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_CAN_STATS_GET_RX_OVERRUNS); + } +#endif + compiler_barrier(); + return z_impl_can_stats_get_rx_overruns(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define can_stats_get_rx_overruns(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CAN_STATS_GET_RX_OVERRUNS, can_stats_get_rx_overruns, dev); syscall__retval = can_stats_get_rx_overruns(dev); sys_port_trace_syscall_exit(K_SYSCALL_CAN_STATS_GET_RX_OVERRUNS, can_stats_get_rx_overruns, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/charger.h b/build/zephyr/include/generated/zephyr/syscalls/charger.h new file mode 100644 index 0000000..e78ba1d --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/charger.h @@ -0,0 +1,102 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_CHARGER_H +#define Z_INCLUDE_SYSCALLS_CHARGER_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_charger_get_prop(const struct device * dev, const charger_prop_t prop, union charger_propval * val); + +__pinned_func +static inline int charger_get_prop(const struct device * dev, const charger_prop_t prop, union charger_propval * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const charger_prop_t val; } parm1 = { .val = prop }; + union { uintptr_t x; union charger_propval * val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_CHARGER_GET_PROP); + } +#endif + compiler_barrier(); + return z_impl_charger_get_prop(dev, prop, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define charger_get_prop(dev, prop, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CHARGER_GET_PROP, charger_get_prop, dev, prop, val); syscall__retval = charger_get_prop(dev, prop, val); sys_port_trace_syscall_exit(K_SYSCALL_CHARGER_GET_PROP, charger_get_prop, dev, prop, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_charger_set_prop(const struct device * dev, const charger_prop_t prop, const union charger_propval * val); + +__pinned_func +static inline int charger_set_prop(const struct device * dev, const charger_prop_t prop, const union charger_propval * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const charger_prop_t val; } parm1 = { .val = prop }; + union { uintptr_t x; const union charger_propval * val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_CHARGER_SET_PROP); + } +#endif + compiler_barrier(); + return z_impl_charger_set_prop(dev, prop, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define charger_set_prop(dev, prop, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CHARGER_SET_PROP, charger_set_prop, dev, prop, val); syscall__retval = charger_set_prop(dev, prop, val); sys_port_trace_syscall_exit(K_SYSCALL_CHARGER_SET_PROP, charger_set_prop, dev, prop, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_charger_charge_enable(const struct device * dev, const bool enable); + +__pinned_func +static inline int charger_charge_enable(const struct device * dev, const bool enable) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const bool val; } parm1 = { .val = enable }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CHARGER_CHARGE_ENABLE); + } +#endif + compiler_barrier(); + return z_impl_charger_charge_enable(dev, enable); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define charger_charge_enable(dev, enable) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CHARGER_CHARGE_ENABLE, charger_charge_enable, dev, enable); syscall__retval = charger_charge_enable(dev, enable); sys_port_trace_syscall_exit(K_SYSCALL_CHARGER_CHARGE_ENABLE, charger_charge_enable, dev, enable, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/clock.h b/build/zephyr/include/generated/zephyr/syscalls/clock.h new file mode 100644 index 0000000..36a99e6 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/clock.h @@ -0,0 +1,102 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_CLOCK_H +#define Z_INCLUDE_SYSCALLS_CLOCK_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_sys_clock_getrtoffset(struct timespec * tp); + +__pinned_func +static inline void sys_clock_getrtoffset(struct timespec * tp) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct timespec * val; } parm0 = { .val = tp }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_SYS_CLOCK_GETRTOFFSET); + return; + } +#endif + compiler_barrier(); + z_impl_sys_clock_getrtoffset(tp); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_clock_getrtoffset(tp) do { sys_port_trace_syscall_enter(K_SYSCALL_SYS_CLOCK_GETRTOFFSET, sys_clock_getrtoffset, tp); sys_clock_getrtoffset(tp); sys_port_trace_syscall_exit(K_SYSCALL_SYS_CLOCK_GETRTOFFSET, sys_clock_getrtoffset, tp); } while(false) +#endif +#endif + + +extern int z_impl_sys_clock_settime(int clock_id, const struct timespec * tp); + +__pinned_func +static inline int sys_clock_settime(int clock_id, const struct timespec * tp) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = clock_id }; + union { uintptr_t x; const struct timespec * val; } parm1 = { .val = tp }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYS_CLOCK_SETTIME); + } +#endif + compiler_barrier(); + return z_impl_sys_clock_settime(clock_id, tp); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_clock_settime(clock_id, tp) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYS_CLOCK_SETTIME, sys_clock_settime, clock_id, tp); syscall__retval = sys_clock_settime(clock_id, tp); sys_port_trace_syscall_exit(K_SYSCALL_SYS_CLOCK_SETTIME, sys_clock_settime, clock_id, tp, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sys_clock_nanosleep(int clock_id, int flags, const struct timespec * rqtp, struct timespec * rmtp); + +__pinned_func +static inline int sys_clock_nanosleep(int clock_id, int flags, const struct timespec * rqtp, struct timespec * rmtp) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = clock_id }; + union { uintptr_t x; int val; } parm1 = { .val = flags }; + union { uintptr_t x; const struct timespec * val; } parm2 = { .val = rqtp }; + union { uintptr_t x; struct timespec * val; } parm3 = { .val = rmtp }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SYS_CLOCK_NANOSLEEP); + } +#endif + compiler_barrier(); + return z_impl_sys_clock_nanosleep(clock_id, flags, rqtp, rmtp); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_clock_nanosleep(clock_id, flags, rqtp, rmtp) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYS_CLOCK_NANOSLEEP, sys_clock_nanosleep, clock_id, flags, rqtp, rmtp); syscall__retval = sys_clock_nanosleep(clock_id, flags, rqtp, rmtp); sys_port_trace_syscall_exit(K_SYSCALL_SYS_CLOCK_NANOSLEEP, sys_clock_nanosleep, clock_id, flags, rqtp, rmtp, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/comparator.h b/build/zephyr/include/generated/zephyr/syscalls/comparator.h new file mode 100644 index 0000000..dfae6e5 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/comparator.h @@ -0,0 +1,98 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_COMPARATOR_H +#define Z_INCLUDE_SYSCALLS_COMPARATOR_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_comparator_get_output(const struct device * dev); + +__pinned_func +static inline int comparator_get_output(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_COMPARATOR_GET_OUTPUT); + } +#endif + compiler_barrier(); + return z_impl_comparator_get_output(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define comparator_get_output(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COMPARATOR_GET_OUTPUT, comparator_get_output, dev); syscall__retval = comparator_get_output(dev); sys_port_trace_syscall_exit(K_SYSCALL_COMPARATOR_GET_OUTPUT, comparator_get_output, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_comparator_set_trigger(const struct device * dev, enum comparator_trigger trigger); + +__pinned_func +static inline int comparator_set_trigger(const struct device * dev, enum comparator_trigger trigger) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum comparator_trigger val; } parm1 = { .val = trigger }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_COMPARATOR_SET_TRIGGER); + } +#endif + compiler_barrier(); + return z_impl_comparator_set_trigger(dev, trigger); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define comparator_set_trigger(dev, trigger) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COMPARATOR_SET_TRIGGER, comparator_set_trigger, dev, trigger); syscall__retval = comparator_set_trigger(dev, trigger); sys_port_trace_syscall_exit(K_SYSCALL_COMPARATOR_SET_TRIGGER, comparator_set_trigger, dev, trigger, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_comparator_trigger_is_pending(const struct device * dev); + +__pinned_func +static inline int comparator_trigger_is_pending(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_COMPARATOR_TRIGGER_IS_PENDING); + } +#endif + compiler_barrier(); + return z_impl_comparator_trigger_is_pending(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define comparator_trigger_is_pending(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COMPARATOR_TRIGGER_IS_PENDING, comparator_trigger_is_pending, dev); syscall__retval = comparator_trigger_is_pending(dev); sys_port_trace_syscall_exit(K_SYSCALL_COMPARATOR_TRIGGER_IS_PENDING, comparator_trigger_is_pending, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/counter.h b/build/zephyr/include/generated/zephyr/syscalls/counter.h new file mode 100644 index 0000000..446f257 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/counter.h @@ -0,0 +1,832 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_COUNTER_H +#define Z_INCLUDE_SYSCALLS_COUNTER_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern bool z_impl_counter_is_counting_up(const struct device * dev); + +__pinned_func +static inline bool counter_is_counting_up(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (bool) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_IS_COUNTING_UP); + } +#endif + compiler_barrier(); + return z_impl_counter_is_counting_up(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_is_counting_up(dev) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_IS_COUNTING_UP, counter_is_counting_up, dev); syscall__retval = counter_is_counting_up(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_IS_COUNTING_UP, counter_is_counting_up, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint8_t z_impl_counter_get_num_of_channels(const struct device * dev); + +__pinned_func +static inline uint8_t counter_get_num_of_channels(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint8_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_GET_NUM_OF_CHANNELS); + } +#endif + compiler_barrier(); + return z_impl_counter_get_num_of_channels(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_num_of_channels(dev) ({ uint8_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_NUM_OF_CHANNELS, counter_get_num_of_channels, dev); syscall__retval = counter_get_num_of_channels(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_NUM_OF_CHANNELS, counter_get_num_of_channels, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_counter_get_frequency(const struct device * dev); + +__pinned_func +static inline uint32_t counter_get_frequency(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_GET_FREQUENCY); + } +#endif + compiler_barrier(); + return z_impl_counter_get_frequency(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_frequency(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_FREQUENCY, counter_get_frequency, dev); syscall__retval = counter_get_frequency(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_FREQUENCY, counter_get_frequency, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint64_t z_impl_counter_get_frequency_64(const struct device * dev); + +__pinned_func +static inline uint64_t counter_get_frequency_64(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke2(parm0.x, (uintptr_t)&ret64, K_SYSCALL_COUNTER_GET_FREQUENCY_64); + return (uint64_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_counter_get_frequency_64(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_frequency_64(dev) ({ uint64_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_FREQUENCY_64, counter_get_frequency_64, dev); syscall__retval = counter_get_frequency_64(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_FREQUENCY_64, counter_get_frequency_64, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_counter_us_to_ticks(const struct device * dev, uint64_t us); + +__pinned_func +static inline uint32_t counter_us_to_ticks(const struct device * dev, uint64_t us) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { struct { uintptr_t lo, hi; } split; uint64_t val; } parm1 = { .val = us }; + return (uint32_t) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_COUNTER_US_TO_TICKS); + } +#endif + compiler_barrier(); + return z_impl_counter_us_to_ticks(dev, us); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_us_to_ticks(dev, us) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_US_TO_TICKS, counter_us_to_ticks, dev, us); syscall__retval = counter_us_to_ticks(dev, us); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_US_TO_TICKS, counter_us_to_ticks, dev, us, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint64_t z_impl_counter_us_to_ticks_64(const struct device * dev, uint64_t us); + +__pinned_func +static inline uint64_t counter_us_to_ticks_64(const struct device * dev, uint64_t us) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { struct { uintptr_t lo, hi; } split; uint64_t val; } parm1 = { .val = us }; + (void) arch_syscall_invoke4(parm0.x, parm1.split.lo, parm1.split.hi, (uintptr_t)&ret64, K_SYSCALL_COUNTER_US_TO_TICKS_64); + return (uint64_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_counter_us_to_ticks_64(dev, us); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_us_to_ticks_64(dev, us) ({ uint64_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_US_TO_TICKS_64, counter_us_to_ticks_64, dev, us); syscall__retval = counter_us_to_ticks_64(dev, us); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_US_TO_TICKS_64, counter_us_to_ticks_64, dev, us, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint64_t z_impl_counter_ticks_to_us(const struct device * dev, uint32_t ticks); + +__pinned_func +static inline uint64_t counter_ticks_to_us(const struct device * dev, uint32_t ticks) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = ticks }; + (void) arch_syscall_invoke3(parm0.x, parm1.x, (uintptr_t)&ret64, K_SYSCALL_COUNTER_TICKS_TO_US); + return (uint64_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_counter_ticks_to_us(dev, ticks); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_ticks_to_us(dev, ticks) ({ uint64_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_TICKS_TO_US, counter_ticks_to_us, dev, ticks); syscall__retval = counter_ticks_to_us(dev, ticks); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_TICKS_TO_US, counter_ticks_to_us, dev, ticks, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint64_t z_impl_counter_ticks_to_us_64(const struct device * dev, uint64_t ticks); + +__pinned_func +static inline uint64_t counter_ticks_to_us_64(const struct device * dev, uint64_t ticks) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { struct { uintptr_t lo, hi; } split; uint64_t val; } parm1 = { .val = ticks }; + (void) arch_syscall_invoke4(parm0.x, parm1.split.lo, parm1.split.hi, (uintptr_t)&ret64, K_SYSCALL_COUNTER_TICKS_TO_US_64); + return (uint64_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_counter_ticks_to_us_64(dev, ticks); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_ticks_to_us_64(dev, ticks) ({ uint64_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_TICKS_TO_US_64, counter_ticks_to_us_64, dev, ticks); syscall__retval = counter_ticks_to_us_64(dev, ticks); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_TICKS_TO_US_64, counter_ticks_to_us_64, dev, ticks, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_counter_ns_to_ticks(const struct device * dev, uint64_t ns); + +__pinned_func +static inline uint32_t counter_ns_to_ticks(const struct device * dev, uint64_t ns) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { struct { uintptr_t lo, hi; } split; uint64_t val; } parm1 = { .val = ns }; + return (uint32_t) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_COUNTER_NS_TO_TICKS); + } +#endif + compiler_barrier(); + return z_impl_counter_ns_to_ticks(dev, ns); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_ns_to_ticks(dev, ns) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_NS_TO_TICKS, counter_ns_to_ticks, dev, ns); syscall__retval = counter_ns_to_ticks(dev, ns); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_NS_TO_TICKS, counter_ns_to_ticks, dev, ns, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint64_t z_impl_counter_ns_to_ticks_64(const struct device * dev, uint64_t ns); + +__pinned_func +static inline uint64_t counter_ns_to_ticks_64(const struct device * dev, uint64_t ns) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { struct { uintptr_t lo, hi; } split; uint64_t val; } parm1 = { .val = ns }; + (void) arch_syscall_invoke4(parm0.x, parm1.split.lo, parm1.split.hi, (uintptr_t)&ret64, K_SYSCALL_COUNTER_NS_TO_TICKS_64); + return (uint64_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_counter_ns_to_ticks_64(dev, ns); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_ns_to_ticks_64(dev, ns) ({ uint64_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_NS_TO_TICKS_64, counter_ns_to_ticks_64, dev, ns); syscall__retval = counter_ns_to_ticks_64(dev, ns); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_NS_TO_TICKS_64, counter_ns_to_ticks_64, dev, ns, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint64_t z_impl_counter_ticks_to_ns(const struct device * dev, uint32_t ticks); + +__pinned_func +static inline uint64_t counter_ticks_to_ns(const struct device * dev, uint32_t ticks) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = ticks }; + (void) arch_syscall_invoke3(parm0.x, parm1.x, (uintptr_t)&ret64, K_SYSCALL_COUNTER_TICKS_TO_NS); + return (uint64_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_counter_ticks_to_ns(dev, ticks); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_ticks_to_ns(dev, ticks) ({ uint64_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_TICKS_TO_NS, counter_ticks_to_ns, dev, ticks); syscall__retval = counter_ticks_to_ns(dev, ticks); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_TICKS_TO_NS, counter_ticks_to_ns, dev, ticks, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint64_t z_impl_counter_ticks_to_ns_64(const struct device * dev, uint64_t ticks); + +__pinned_func +static inline uint64_t counter_ticks_to_ns_64(const struct device * dev, uint64_t ticks) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { struct { uintptr_t lo, hi; } split; uint64_t val; } parm1 = { .val = ticks }; + (void) arch_syscall_invoke4(parm0.x, parm1.split.lo, parm1.split.hi, (uintptr_t)&ret64, K_SYSCALL_COUNTER_TICKS_TO_NS_64); + return (uint64_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_counter_ticks_to_ns_64(dev, ticks); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_ticks_to_ns_64(dev, ticks) ({ uint64_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_TICKS_TO_NS_64, counter_ticks_to_ns_64, dev, ticks); syscall__retval = counter_ticks_to_ns_64(dev, ticks); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_TICKS_TO_NS_64, counter_ticks_to_ns_64, dev, ticks, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_counter_get_max_top_value(const struct device * dev); + +__pinned_func +static inline uint32_t counter_get_max_top_value(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_GET_MAX_TOP_VALUE); + } +#endif + compiler_barrier(); + return z_impl_counter_get_max_top_value(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_max_top_value(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_MAX_TOP_VALUE, counter_get_max_top_value, dev); syscall__retval = counter_get_max_top_value(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_MAX_TOP_VALUE, counter_get_max_top_value, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_start(const struct device * dev); + +__pinned_func +static inline int counter_start(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_START); + } +#endif + compiler_barrier(); + return z_impl_counter_start(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_start(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_START, counter_start, dev); syscall__retval = counter_start(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_START, counter_start, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_stop(const struct device * dev); + +__pinned_func +static inline int counter_stop(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_STOP); + } +#endif + compiler_barrier(); + return z_impl_counter_stop(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_stop(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_STOP, counter_stop, dev); syscall__retval = counter_stop(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_STOP, counter_stop, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_get_value(const struct device * dev, uint32_t * ticks); + +__pinned_func +static inline int counter_get_value(const struct device * dev, uint32_t * ticks) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t * val; } parm1 = { .val = ticks }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_COUNTER_GET_VALUE); + } +#endif + compiler_barrier(); + return z_impl_counter_get_value(dev, ticks); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_value(dev, ticks) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_VALUE, counter_get_value, dev, ticks); syscall__retval = counter_get_value(dev, ticks); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_VALUE, counter_get_value, dev, ticks, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_reset(const struct device * dev); + +__pinned_func +static inline int counter_reset(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_RESET); + } +#endif + compiler_barrier(); + return z_impl_counter_reset(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_reset(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_RESET, counter_reset, dev); syscall__retval = counter_reset(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_RESET, counter_reset, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_set_value(const struct device * dev, uint32_t ticks); + +__pinned_func +static inline int counter_set_value(const struct device * dev, uint32_t ticks) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = ticks }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_COUNTER_SET_VALUE); + } +#endif + compiler_barrier(); + return z_impl_counter_set_value(dev, ticks); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_set_value(dev, ticks) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_SET_VALUE, counter_set_value, dev, ticks); syscall__retval = counter_set_value(dev, ticks); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_SET_VALUE, counter_set_value, dev, ticks, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_set_channel_alarm(const struct device * dev, uint8_t chan_id, const struct counter_alarm_cfg * alarm_cfg); + +__pinned_func +static inline int counter_set_channel_alarm(const struct device * dev, uint8_t chan_id, const struct counter_alarm_cfg * alarm_cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = chan_id }; + union { uintptr_t x; const struct counter_alarm_cfg * val; } parm2 = { .val = alarm_cfg }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_COUNTER_SET_CHANNEL_ALARM); + } +#endif + compiler_barrier(); + return z_impl_counter_set_channel_alarm(dev, chan_id, alarm_cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_set_channel_alarm(dev, chan_id, alarm_cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_SET_CHANNEL_ALARM, counter_set_channel_alarm, dev, chan_id, alarm_cfg); syscall__retval = counter_set_channel_alarm(dev, chan_id, alarm_cfg); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_SET_CHANNEL_ALARM, counter_set_channel_alarm, dev, chan_id, alarm_cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_cancel_channel_alarm(const struct device * dev, uint8_t chan_id); + +__pinned_func +static inline int counter_cancel_channel_alarm(const struct device * dev, uint8_t chan_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = chan_id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_COUNTER_CANCEL_CHANNEL_ALARM); + } +#endif + compiler_barrier(); + return z_impl_counter_cancel_channel_alarm(dev, chan_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_cancel_channel_alarm(dev, chan_id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_CANCEL_CHANNEL_ALARM, counter_cancel_channel_alarm, dev, chan_id); syscall__retval = counter_cancel_channel_alarm(dev, chan_id); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_CANCEL_CHANNEL_ALARM, counter_cancel_channel_alarm, dev, chan_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_set_top_value(const struct device * dev, const struct counter_top_cfg * cfg); + +__pinned_func +static inline int counter_set_top_value(const struct device * dev, const struct counter_top_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct counter_top_cfg * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_COUNTER_SET_TOP_VALUE); + } +#endif + compiler_barrier(); + return z_impl_counter_set_top_value(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_set_top_value(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_SET_TOP_VALUE, counter_set_top_value, dev, cfg); syscall__retval = counter_set_top_value(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_SET_TOP_VALUE, counter_set_top_value, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_get_pending_int(const struct device * dev); + +__pinned_func +static inline int counter_get_pending_int(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_GET_PENDING_INT); + } +#endif + compiler_barrier(); + return z_impl_counter_get_pending_int(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_pending_int(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_PENDING_INT, counter_get_pending_int, dev); syscall__retval = counter_get_pending_int(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_PENDING_INT, counter_get_pending_int, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_counter_get_top_value(const struct device * dev); + +__pinned_func +static inline uint32_t counter_get_top_value(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_COUNTER_GET_TOP_VALUE); + } +#endif + compiler_barrier(); + return z_impl_counter_get_top_value(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_top_value(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_TOP_VALUE, counter_get_top_value, dev); syscall__retval = counter_get_top_value(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_TOP_VALUE, counter_get_top_value, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_set_guard_period(const struct device * dev, uint32_t ticks, uint32_t flags); + +__pinned_func +static inline int counter_set_guard_period(const struct device * dev, uint32_t ticks, uint32_t flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = ticks }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = flags }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_COUNTER_SET_GUARD_PERIOD); + } +#endif + compiler_barrier(); + return z_impl_counter_set_guard_period(dev, ticks, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_set_guard_period(dev, ticks, flags) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_SET_GUARD_PERIOD, counter_set_guard_period, dev, ticks, flags); syscall__retval = counter_set_guard_period(dev, ticks, flags); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_SET_GUARD_PERIOD, counter_set_guard_period, dev, ticks, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_counter_get_guard_period(const struct device * dev, uint32_t flags); + +__pinned_func +static inline uint32_t counter_get_guard_period(const struct device * dev, uint32_t flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = flags }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_COUNTER_GET_GUARD_PERIOD); + } +#endif + compiler_barrier(); + return z_impl_counter_get_guard_period(dev, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_guard_period(dev, flags) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_GUARD_PERIOD, counter_get_guard_period, dev, flags); syscall__retval = counter_get_guard_period(dev, flags); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_GUARD_PERIOD, counter_get_guard_period, dev, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint64_t z_impl_counter_get_max_top_value_64(const struct device * dev); + +__pinned_func +static inline uint64_t counter_get_max_top_value_64(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke2(parm0.x, (uintptr_t)&ret64, K_SYSCALL_COUNTER_GET_MAX_TOP_VALUE_64); + return (uint64_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_counter_get_max_top_value_64(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_max_top_value_64(dev) ({ uint64_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_MAX_TOP_VALUE_64, counter_get_max_top_value_64, dev); syscall__retval = counter_get_max_top_value_64(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_MAX_TOP_VALUE_64, counter_get_max_top_value_64, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_set_top_value_64(const struct device * dev, const struct counter_top_cfg_64 * cfg); + +__pinned_func +static inline int counter_set_top_value_64(const struct device * dev, const struct counter_top_cfg_64 * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct counter_top_cfg_64 * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_COUNTER_SET_TOP_VALUE_64); + } +#endif + compiler_barrier(); + return z_impl_counter_set_top_value_64(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_set_top_value_64(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_SET_TOP_VALUE_64, counter_set_top_value_64, dev, cfg); syscall__retval = counter_set_top_value_64(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_SET_TOP_VALUE_64, counter_set_top_value_64, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_set_channel_alarm_64(const struct device * dev, uint8_t chan_id, const struct counter_alarm_cfg_64 * alarm_cfg); + +__pinned_func +static inline int counter_set_channel_alarm_64(const struct device * dev, uint8_t chan_id, const struct counter_alarm_cfg_64 * alarm_cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = chan_id }; + union { uintptr_t x; const struct counter_alarm_cfg_64 * val; } parm2 = { .val = alarm_cfg }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_COUNTER_SET_CHANNEL_ALARM_64); + } +#endif + compiler_barrier(); + return z_impl_counter_set_channel_alarm_64(dev, chan_id, alarm_cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_set_channel_alarm_64(dev, chan_id, alarm_cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_SET_CHANNEL_ALARM_64, counter_set_channel_alarm_64, dev, chan_id, alarm_cfg); syscall__retval = counter_set_channel_alarm_64(dev, chan_id, alarm_cfg); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_SET_CHANNEL_ALARM_64, counter_set_channel_alarm_64, dev, chan_id, alarm_cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint64_t z_impl_counter_get_top_value_64(const struct device * dev); + +__pinned_func +static inline uint64_t counter_get_top_value_64(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke2(parm0.x, (uintptr_t)&ret64, K_SYSCALL_COUNTER_GET_TOP_VALUE_64); + return (uint64_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_counter_get_top_value_64(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_top_value_64(dev) ({ uint64_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_TOP_VALUE_64, counter_get_top_value_64, dev); syscall__retval = counter_get_top_value_64(dev); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_TOP_VALUE_64, counter_get_top_value_64, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_set_guard_period_64(const struct device * dev, uint64_t ticks, uint32_t flags); + +__pinned_func +static inline int counter_set_guard_period_64(const struct device * dev, uint64_t ticks, uint32_t flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { struct { uintptr_t lo, hi; } split; uint64_t val; } parm1 = { .val = ticks }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = flags }; + return (int) arch_syscall_invoke4(parm0.x, parm1.split.lo, parm1.split.hi, parm2.x, K_SYSCALL_COUNTER_SET_GUARD_PERIOD_64); + } +#endif + compiler_barrier(); + return z_impl_counter_set_guard_period_64(dev, ticks, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_set_guard_period_64(dev, ticks, flags) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_SET_GUARD_PERIOD_64, counter_set_guard_period_64, dev, ticks, flags); syscall__retval = counter_set_guard_period_64(dev, ticks, flags); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_SET_GUARD_PERIOD_64, counter_set_guard_period_64, dev, ticks, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint64_t z_impl_counter_get_guard_period_64(const struct device * dev, uint32_t flags); + +__pinned_func +static inline uint64_t counter_get_guard_period_64(const struct device * dev, uint32_t flags) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = flags }; + (void) arch_syscall_invoke3(parm0.x, parm1.x, (uintptr_t)&ret64, K_SYSCALL_COUNTER_GET_GUARD_PERIOD_64); + return (uint64_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_counter_get_guard_period_64(dev, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_guard_period_64(dev, flags) ({ uint64_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_GUARD_PERIOD_64, counter_get_guard_period_64, dev, flags); syscall__retval = counter_get_guard_period_64(dev, flags); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_GUARD_PERIOD_64, counter_get_guard_period_64, dev, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_get_value_64(const struct device * dev, uint64_t * ticks); + +__pinned_func +static inline int counter_get_value_64(const struct device * dev, uint64_t * ticks) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint64_t * val; } parm1 = { .val = ticks }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_COUNTER_GET_VALUE_64); + } +#endif + compiler_barrier(); + return z_impl_counter_get_value_64(dev, ticks); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_get_value_64(dev, ticks) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_GET_VALUE_64, counter_get_value_64, dev, ticks); syscall__retval = counter_get_value_64(dev, ticks); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_GET_VALUE_64, counter_get_value_64, dev, ticks, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_counter_set_value_64(const struct device * dev, uint64_t ticks); + +__pinned_func +static inline int counter_set_value_64(const struct device * dev, uint64_t ticks) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { struct { uintptr_t lo, hi; } split; uint64_t val; } parm1 = { .val = ticks }; + return (int) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_COUNTER_SET_VALUE_64); + } +#endif + compiler_barrier(); + return z_impl_counter_set_value_64(dev, ticks); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define counter_set_value_64(dev, ticks) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_COUNTER_SET_VALUE_64, counter_set_value_64, dev, ticks); syscall__retval = counter_set_value_64(dev, ticks); sys_port_trace_syscall_exit(K_SYSCALL_COUNTER_SET_VALUE_64, counter_set_value_64, dev, ticks, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/crc.h b/build/zephyr/include/generated/zephyr/syscalls/crc.h new file mode 100644 index 0000000..c719ca6 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/crc.h @@ -0,0 +1,102 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_CRC_H +#define Z_INCLUDE_SYSCALLS_CRC_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_crc_begin(const struct device * dev, struct crc_ctx * ctx); + +__pinned_func +static inline int crc_begin(const struct device * dev, struct crc_ctx * ctx) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct crc_ctx * val; } parm1 = { .val = ctx }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CRC_BEGIN); + } +#endif + compiler_barrier(); + return z_impl_crc_begin(dev, ctx); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define crc_begin(dev, ctx) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CRC_BEGIN, crc_begin, dev, ctx); syscall__retval = crc_begin(dev, ctx); sys_port_trace_syscall_exit(K_SYSCALL_CRC_BEGIN, crc_begin, dev, ctx, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_crc_update(const struct device * dev, struct crc_ctx * ctx, const void * buffer, size_t bufsize); + +__pinned_func +static inline int crc_update(const struct device * dev, struct crc_ctx * ctx, const void * buffer, size_t bufsize) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct crc_ctx * val; } parm1 = { .val = ctx }; + union { uintptr_t x; const void * val; } parm2 = { .val = buffer }; + union { uintptr_t x; size_t val; } parm3 = { .val = bufsize }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_CRC_UPDATE); + } +#endif + compiler_barrier(); + return z_impl_crc_update(dev, ctx, buffer, bufsize); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define crc_update(dev, ctx, buffer, bufsize) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CRC_UPDATE, crc_update, dev, ctx, buffer, bufsize); syscall__retval = crc_update(dev, ctx, buffer, bufsize); sys_port_trace_syscall_exit(K_SYSCALL_CRC_UPDATE, crc_update, dev, ctx, buffer, bufsize, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_crc_finish(const struct device * dev, struct crc_ctx * ctx); + +__pinned_func +static inline int crc_finish(const struct device * dev, struct crc_ctx * ctx) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct crc_ctx * val; } parm1 = { .val = ctx }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_CRC_FINISH); + } +#endif + compiler_barrier(); + return z_impl_crc_finish(dev, ctx); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define crc_finish(dev, ctx) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_CRC_FINISH, crc_finish, dev, ctx); syscall__retval = crc_finish(dev, ctx); sys_port_trace_syscall_exit(K_SYSCALL_CRC_FINISH, crc_finish, dev, ctx, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/dac.h b/build/zephyr/include/generated/zephyr/syscalls/dac.h new file mode 100644 index 0000000..4e61714 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/dac.h @@ -0,0 +1,77 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_DAC_H +#define Z_INCLUDE_SYSCALLS_DAC_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_dac_channel_setup(const struct device * dev, const struct dac_channel_cfg * channel_cfg); + +__pinned_func +static inline int dac_channel_setup(const struct device * dev, const struct dac_channel_cfg * channel_cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct dac_channel_cfg * val; } parm1 = { .val = channel_cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_DAC_CHANNEL_SETUP); + } +#endif + compiler_barrier(); + return z_impl_dac_channel_setup(dev, channel_cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dac_channel_setup(dev, channel_cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DAC_CHANNEL_SETUP, dac_channel_setup, dev, channel_cfg); syscall__retval = dac_channel_setup(dev, channel_cfg); sys_port_trace_syscall_exit(K_SYSCALL_DAC_CHANNEL_SETUP, dac_channel_setup, dev, channel_cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_dac_write_value(const struct device * dev, uint8_t channel, uint32_t value); + +__pinned_func +static inline int dac_write_value(const struct device * dev, uint8_t channel, uint32_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = channel }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = value }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_DAC_WRITE_VALUE); + } +#endif + compiler_barrier(); + return z_impl_dac_write_value(dev, channel, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dac_write_value(dev, channel, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DAC_WRITE_VALUE, dac_write_value, dev, channel, value); syscall__retval = dac_write_value(dev, channel, value); sys_port_trace_syscall_exit(K_SYSCALL_DAC_WRITE_VALUE, dac_write_value, dev, channel, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/dai.h b/build/zephyr/include/generated/zephyr/syscalls/dai.h new file mode 100644 index 0000000..0a62f00 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/dai.h @@ -0,0 +1,298 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_DAI_H +#define Z_INCLUDE_SYSCALLS_DAI_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_dai_probe(const struct device * dev); + +__pinned_func +static inline int dai_probe(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_DAI_PROBE); + } +#endif + compiler_barrier(); + return z_impl_dai_probe(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dai_probe(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DAI_PROBE, dai_probe, dev); syscall__retval = dai_probe(dev); sys_port_trace_syscall_exit(K_SYSCALL_DAI_PROBE, dai_probe, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_dai_remove(const struct device * dev); + +__pinned_func +static inline int dai_remove(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_DAI_REMOVE); + } +#endif + compiler_barrier(); + return z_impl_dai_remove(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dai_remove(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DAI_REMOVE, dai_remove, dev); syscall__retval = dai_remove(dev); sys_port_trace_syscall_exit(K_SYSCALL_DAI_REMOVE, dai_remove, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_dai_config_set(const struct device * dev, const struct dai_config * cfg, const void * bespoke_cfg, size_t size); + +__pinned_func +static inline int dai_config_set(const struct device * dev, const struct dai_config * cfg, const void * bespoke_cfg, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct dai_config * val; } parm1 = { .val = cfg }; + union { uintptr_t x; const void * val; } parm2 = { .val = bespoke_cfg }; + union { uintptr_t x; size_t val; } parm3 = { .val = size }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_DAI_CONFIG_SET); + } +#endif + compiler_barrier(); + return z_impl_dai_config_set(dev, cfg, bespoke_cfg, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dai_config_set(dev, cfg, bespoke_cfg, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DAI_CONFIG_SET, dai_config_set, dev, cfg, bespoke_cfg, size); syscall__retval = dai_config_set(dev, cfg, bespoke_cfg, size); sys_port_trace_syscall_exit(K_SYSCALL_DAI_CONFIG_SET, dai_config_set, dev, cfg, bespoke_cfg, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_dai_config_get(const struct device * dev, struct dai_config * cfg, enum dai_dir dir); + +__pinned_func +static inline int dai_config_get(const struct device * dev, struct dai_config * cfg, enum dai_dir dir) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct dai_config * val; } parm1 = { .val = cfg }; + union { uintptr_t x; enum dai_dir val; } parm2 = { .val = dir }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_DAI_CONFIG_GET); + } +#endif + compiler_barrier(); + return z_impl_dai_config_get(dev, cfg, dir); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dai_config_get(dev, cfg, dir) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DAI_CONFIG_GET, dai_config_get, dev, cfg, dir); syscall__retval = dai_config_get(dev, cfg, dir); sys_port_trace_syscall_exit(K_SYSCALL_DAI_CONFIG_GET, dai_config_get, dev, cfg, dir, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_dai_get_properties_copy(const struct device * dev, enum dai_dir dir, int stream_id, struct dai_properties * dst); + +__pinned_func +static inline int dai_get_properties_copy(const struct device * dev, enum dai_dir dir, int stream_id, struct dai_properties * dst) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum dai_dir val; } parm1 = { .val = dir }; + union { uintptr_t x; int val; } parm2 = { .val = stream_id }; + union { uintptr_t x; struct dai_properties * val; } parm3 = { .val = dst }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_DAI_GET_PROPERTIES_COPY); + } +#endif + compiler_barrier(); + return z_impl_dai_get_properties_copy(dev, dir, stream_id, dst); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dai_get_properties_copy(dev, dir, stream_id, dst) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DAI_GET_PROPERTIES_COPY, dai_get_properties_copy, dev, dir, stream_id, dst); syscall__retval = dai_get_properties_copy(dev, dir, stream_id, dst); sys_port_trace_syscall_exit(K_SYSCALL_DAI_GET_PROPERTIES_COPY, dai_get_properties_copy, dev, dir, stream_id, dst, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_dai_trigger(const struct device * dev, enum dai_dir dir, enum dai_trigger_cmd cmd); + +__pinned_func +static inline int dai_trigger(const struct device * dev, enum dai_dir dir, enum dai_trigger_cmd cmd) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum dai_dir val; } parm1 = { .val = dir }; + union { uintptr_t x; enum dai_trigger_cmd val; } parm2 = { .val = cmd }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_DAI_TRIGGER); + } +#endif + compiler_barrier(); + return z_impl_dai_trigger(dev, dir, cmd); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dai_trigger(dev, dir, cmd) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DAI_TRIGGER, dai_trigger, dev, dir, cmd); syscall__retval = dai_trigger(dev, dir, cmd); sys_port_trace_syscall_exit(K_SYSCALL_DAI_TRIGGER, dai_trigger, dev, dir, cmd, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_dai_ts_config(const struct device * dev, struct dai_ts_cfg * cfg); + +__pinned_func +static inline int dai_ts_config(const struct device * dev, struct dai_ts_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct dai_ts_cfg * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_DAI_TS_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_dai_ts_config(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dai_ts_config(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DAI_TS_CONFIG, dai_ts_config, dev, cfg); syscall__retval = dai_ts_config(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_DAI_TS_CONFIG, dai_ts_config, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_dai_ts_start(const struct device * dev, struct dai_ts_cfg * cfg); + +__pinned_func +static inline int dai_ts_start(const struct device * dev, struct dai_ts_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct dai_ts_cfg * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_DAI_TS_START); + } +#endif + compiler_barrier(); + return z_impl_dai_ts_start(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dai_ts_start(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DAI_TS_START, dai_ts_start, dev, cfg); syscall__retval = dai_ts_start(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_DAI_TS_START, dai_ts_start, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_dai_ts_stop(const struct device * dev, struct dai_ts_cfg * cfg); + +__pinned_func +static inline int dai_ts_stop(const struct device * dev, struct dai_ts_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct dai_ts_cfg * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_DAI_TS_STOP); + } +#endif + compiler_barrier(); + return z_impl_dai_ts_stop(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dai_ts_stop(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DAI_TS_STOP, dai_ts_stop, dev, cfg); syscall__retval = dai_ts_stop(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_DAI_TS_STOP, dai_ts_stop, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_dai_ts_get(const struct device * dev, struct dai_ts_cfg * cfg, struct dai_ts_data * tsd); + +__pinned_func +static inline int dai_ts_get(const struct device * dev, struct dai_ts_cfg * cfg, struct dai_ts_data * tsd) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct dai_ts_cfg * val; } parm1 = { .val = cfg }; + union { uintptr_t x; struct dai_ts_data * val; } parm2 = { .val = tsd }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_DAI_TS_GET); + } +#endif + compiler_barrier(); + return z_impl_dai_ts_get(dev, cfg, tsd); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dai_ts_get(dev, cfg, tsd) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DAI_TS_GET, dai_ts_get, dev, cfg, tsd); syscall__retval = dai_ts_get(dev, cfg, tsd); sys_port_trace_syscall_exit(K_SYSCALL_DAI_TS_GET, dai_ts_get, dev, cfg, tsd, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_dai_config_update(const struct device * dev, const void * bespoke_cfg, size_t size); + +__pinned_func +static inline int dai_config_update(const struct device * dev, const void * bespoke_cfg, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const void * val; } parm1 = { .val = bespoke_cfg }; + union { uintptr_t x; size_t val; } parm2 = { .val = size }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_DAI_CONFIG_UPDATE); + } +#endif + compiler_barrier(); + return z_impl_dai_config_update(dev, bespoke_cfg, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define dai_config_update(dev, bespoke_cfg, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DAI_CONFIG_UPDATE, dai_config_update, dev, bespoke_cfg, size); syscall__retval = dai_config_update(dev, bespoke_cfg, size); sys_port_trace_syscall_exit(K_SYSCALL_DAI_CONFIG_UPDATE, dai_config_update, dev, bespoke_cfg, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/demand_paging.h b/build/zephyr/include/generated/zephyr/syscalls/demand_paging.h new file mode 100644 index 0000000..7887736 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/demand_paging.h @@ -0,0 +1,149 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_DEMAND_PAGING_H +#define Z_INCLUDE_SYSCALLS_DEMAND_PAGING_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_k_mem_paging_stats_get(struct k_mem_paging_stats_t * stats); + +__pinned_func +static inline void k_mem_paging_stats_get(struct k_mem_paging_stats_t * stats) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_mem_paging_stats_t * val; } parm0 = { .val = stats }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MEM_PAGING_STATS_GET); + return; + } +#endif + compiler_barrier(); + z_impl_k_mem_paging_stats_get(stats); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_mem_paging_stats_get(stats) do { sys_port_trace_syscall_enter(K_SYSCALL_K_MEM_PAGING_STATS_GET, k_mem_paging_stats_get, stats); k_mem_paging_stats_get(stats); sys_port_trace_syscall_exit(K_SYSCALL_K_MEM_PAGING_STATS_GET, k_mem_paging_stats_get, stats); } while(false) +#endif +#endif + + +extern void z_impl_k_mem_paging_thread_stats_get(struct k_thread * thread, struct k_mem_paging_stats_t * stats); + +__pinned_func +static inline void k_mem_paging_thread_stats_get(struct k_thread * thread, struct k_mem_paging_stats_t * stats) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_thread * val; } parm0 = { .val = thread }; + union { uintptr_t x; struct k_mem_paging_stats_t * val; } parm1 = { .val = stats }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_MEM_PAGING_THREAD_STATS_GET); + return; + } +#endif + compiler_barrier(); + z_impl_k_mem_paging_thread_stats_get(thread, stats); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_mem_paging_thread_stats_get(thread, stats) do { sys_port_trace_syscall_enter(K_SYSCALL_K_MEM_PAGING_THREAD_STATS_GET, k_mem_paging_thread_stats_get, thread, stats); k_mem_paging_thread_stats_get(thread, stats); sys_port_trace_syscall_exit(K_SYSCALL_K_MEM_PAGING_THREAD_STATS_GET, k_mem_paging_thread_stats_get, thread, stats); } while(false) +#endif +#endif + + +extern void z_impl_k_mem_paging_histogram_eviction_get(struct k_mem_paging_histogram_t * hist); + +__pinned_func +static inline void k_mem_paging_histogram_eviction_get(struct k_mem_paging_histogram_t * hist) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_mem_paging_histogram_t * val; } parm0 = { .val = hist }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MEM_PAGING_HISTOGRAM_EVICTION_GET); + return; + } +#endif + compiler_barrier(); + z_impl_k_mem_paging_histogram_eviction_get(hist); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_mem_paging_histogram_eviction_get(hist) do { sys_port_trace_syscall_enter(K_SYSCALL_K_MEM_PAGING_HISTOGRAM_EVICTION_GET, k_mem_paging_histogram_eviction_get, hist); k_mem_paging_histogram_eviction_get(hist); sys_port_trace_syscall_exit(K_SYSCALL_K_MEM_PAGING_HISTOGRAM_EVICTION_GET, k_mem_paging_histogram_eviction_get, hist); } while(false) +#endif +#endif + + +extern void z_impl_k_mem_paging_histogram_backing_store_page_in_get(struct k_mem_paging_histogram_t * hist); + +__pinned_func +static inline void k_mem_paging_histogram_backing_store_page_in_get(struct k_mem_paging_histogram_t * hist) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_mem_paging_histogram_t * val; } parm0 = { .val = hist }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_IN_GET); + return; + } +#endif + compiler_barrier(); + z_impl_k_mem_paging_histogram_backing_store_page_in_get(hist); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_mem_paging_histogram_backing_store_page_in_get(hist) do { sys_port_trace_syscall_enter(K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_IN_GET, k_mem_paging_histogram_backing_store_page_in_get, hist); k_mem_paging_histogram_backing_store_page_in_get(hist); sys_port_trace_syscall_exit(K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_IN_GET, k_mem_paging_histogram_backing_store_page_in_get, hist); } while(false) +#endif +#endif + + +extern void z_impl_k_mem_paging_histogram_backing_store_page_out_get(struct k_mem_paging_histogram_t * hist); + +__pinned_func +static inline void k_mem_paging_histogram_backing_store_page_out_get(struct k_mem_paging_histogram_t * hist) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_mem_paging_histogram_t * val; } parm0 = { .val = hist }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_OUT_GET); + return; + } +#endif + compiler_barrier(); + z_impl_k_mem_paging_histogram_backing_store_page_out_get(hist); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_mem_paging_histogram_backing_store_page_out_get(hist) do { sys_port_trace_syscall_enter(K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_OUT_GET, k_mem_paging_histogram_backing_store_page_out_get, hist); k_mem_paging_histogram_backing_store_page_out_get(hist); sys_port_trace_syscall_exit(K_SYSCALL_K_MEM_PAGING_HISTOGRAM_BACKING_STORE_PAGE_OUT_GET, k_mem_paging_histogram_backing_store_page_out_get, hist); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/device.h b/build/zephyr/include/generated/zephyr/syscalls/device.h new file mode 100644 index 0000000..bcdb837 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/device.h @@ -0,0 +1,143 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_DEVICE_H +#define Z_INCLUDE_SYSCALLS_DEVICE_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern const struct device * z_impl_device_get_binding(const char * name); + +__pinned_func +static inline const struct device * device_get_binding(const char * name) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const char * val; } parm0 = { .val = name }; + return (const struct device *) arch_syscall_invoke1(parm0.x, K_SYSCALL_DEVICE_GET_BINDING); + } +#endif + compiler_barrier(); + return z_impl_device_get_binding(name); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define device_get_binding(name) ({ const struct device * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DEVICE_GET_BINDING, device_get_binding, name); syscall__retval = device_get_binding(name); sys_port_trace_syscall_exit(K_SYSCALL_DEVICE_GET_BINDING, device_get_binding, name, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_device_is_ready(const struct device * dev); + +__pinned_func +static inline bool device_is_ready(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (bool) arch_syscall_invoke1(parm0.x, K_SYSCALL_DEVICE_IS_READY); + } +#endif + compiler_barrier(); + return z_impl_device_is_ready(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define device_is_ready(dev) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DEVICE_IS_READY, device_is_ready, dev); syscall__retval = device_is_ready(dev); sys_port_trace_syscall_exit(K_SYSCALL_DEVICE_IS_READY, device_is_ready, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_device_init(const struct device * dev); + +__pinned_func +static inline int device_init(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_DEVICE_INIT); + } +#endif + compiler_barrier(); + return z_impl_device_init(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define device_init(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DEVICE_INIT, device_init, dev); syscall__retval = device_init(dev); sys_port_trace_syscall_exit(K_SYSCALL_DEVICE_INIT, device_init, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_device_deinit(const struct device * dev); + +__pinned_func +static inline int device_deinit(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_DEVICE_DEINIT); + } +#endif + compiler_barrier(); + return z_impl_device_deinit(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define device_deinit(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DEVICE_DEINIT, device_deinit, dev); syscall__retval = device_deinit(dev); sys_port_trace_syscall_exit(K_SYSCALL_DEVICE_DEINIT, device_deinit, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern const struct device * z_impl_device_get_by_dt_nodelabel(const char * nodelabel); + +__pinned_func +static inline const struct device * device_get_by_dt_nodelabel(const char * nodelabel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const char * val; } parm0 = { .val = nodelabel }; + return (const struct device *) arch_syscall_invoke1(parm0.x, K_SYSCALL_DEVICE_GET_BY_DT_NODELABEL); + } +#endif + compiler_barrier(); + return z_impl_device_get_by_dt_nodelabel(nodelabel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define device_get_by_dt_nodelabel(nodelabel) ({ const struct device * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DEVICE_GET_BY_DT_NODELABEL, device_get_by_dt_nodelabel, nodelabel); syscall__retval = device_get_by_dt_nodelabel(nodelabel); sys_port_trace_syscall_exit(K_SYSCALL_DEVICE_GET_BY_DT_NODELABEL, device_get_by_dt_nodelabel, nodelabel, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/devmux.h b/build/zephyr/include/generated/zephyr/syscalls/devmux.h new file mode 100644 index 0000000..dc5b4a9 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/devmux.h @@ -0,0 +1,75 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_DEVMUX_H +#define Z_INCLUDE_SYSCALLS_DEVMUX_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_devmux_select_get(const struct device * dev); + +__pinned_func +static inline int devmux_select_get(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_DEVMUX_SELECT_GET); + } +#endif + compiler_barrier(); + return z_impl_devmux_select_get(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define devmux_select_get(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DEVMUX_SELECT_GET, devmux_select_get, dev); syscall__retval = devmux_select_get(dev); sys_port_trace_syscall_exit(K_SYSCALL_DEVMUX_SELECT_GET, devmux_select_get, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_devmux_select_set(struct device * dev, size_t index); + +__pinned_func +static inline int devmux_select_set(struct device * dev, size_t index) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; size_t val; } parm1 = { .val = index }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_DEVMUX_SELECT_SET); + } +#endif + compiler_barrier(); + return z_impl_devmux_select_set(dev, index); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define devmux_select_set(dev, index) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_DEVMUX_SELECT_SET, devmux_select_set, dev, index); syscall__retval = devmux_select_set(dev, index); sys_port_trace_syscall_exit(K_SYSCALL_DEVMUX_SELECT_SET, devmux_select_set, dev, index, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/eeprom.h b/build/zephyr/include/generated/zephyr/syscalls/eeprom.h new file mode 100644 index 0000000..4034552 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/eeprom.h @@ -0,0 +1,103 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_EEPROM_H +#define Z_INCLUDE_SYSCALLS_EEPROM_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_eeprom_read(const struct device * dev, off_t offset, void * data, size_t len); + +__pinned_func +static inline int eeprom_read(const struct device * dev, off_t offset, void * data, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; void * val; } parm2 = { .val = data }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_EEPROM_READ); + } +#endif + compiler_barrier(); + return z_impl_eeprom_read(dev, offset, data, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define eeprom_read(dev, offset, data, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_EEPROM_READ, eeprom_read, dev, offset, data, len); syscall__retval = eeprom_read(dev, offset, data, len); sys_port_trace_syscall_exit(K_SYSCALL_EEPROM_READ, eeprom_read, dev, offset, data, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_eeprom_write(const struct device * dev, off_t offset, const void * data, size_t len); + +__pinned_func +static inline int eeprom_write(const struct device * dev, off_t offset, const void * data, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; const void * val; } parm2 = { .val = data }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_EEPROM_WRITE); + } +#endif + compiler_barrier(); + return z_impl_eeprom_write(dev, offset, data, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define eeprom_write(dev, offset, data, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_EEPROM_WRITE, eeprom_write, dev, offset, data, len); syscall__retval = eeprom_write(dev, offset, data, len); sys_port_trace_syscall_exit(K_SYSCALL_EEPROM_WRITE, eeprom_write, dev, offset, data, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern size_t z_impl_eeprom_get_size(const struct device * dev); + +__pinned_func +static inline size_t eeprom_get_size(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (size_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_EEPROM_GET_SIZE); + } +#endif + compiler_barrier(); + return z_impl_eeprom_get_size(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define eeprom_get_size(dev) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_EEPROM_GET_SIZE, eeprom_get_size, dev); syscall__retval = eeprom_get_size(dev); sys_port_trace_syscall_exit(K_SYSCALL_EEPROM_GET_SIZE, eeprom_get_size, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/emul_fuel_gauge.h b/build/zephyr/include/generated/zephyr/syscalls/emul_fuel_gauge.h new file mode 100644 index 0000000..d54cdec --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/emul_fuel_gauge.h @@ -0,0 +1,77 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_EMUL_FUEL_GAUGE_H +#define Z_INCLUDE_SYSCALLS_EMUL_FUEL_GAUGE_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_emul_fuel_gauge_set_battery_charging(const struct emul * target, uint32_t uV, int uA); + +__pinned_func +static inline int emul_fuel_gauge_set_battery_charging(const struct emul * target, uint32_t uV, int uA) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct emul * val; } parm0 = { .val = target }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = uV }; + union { uintptr_t x; int val; } parm2 = { .val = uA }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_EMUL_FUEL_GAUGE_SET_BATTERY_CHARGING); + } +#endif + compiler_barrier(); + return z_impl_emul_fuel_gauge_set_battery_charging(target, uV, uA); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define emul_fuel_gauge_set_battery_charging(target, uV, uA) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_EMUL_FUEL_GAUGE_SET_BATTERY_CHARGING, emul_fuel_gauge_set_battery_charging, target, uV, uA); syscall__retval = emul_fuel_gauge_set_battery_charging(target, uV, uA); sys_port_trace_syscall_exit(K_SYSCALL_EMUL_FUEL_GAUGE_SET_BATTERY_CHARGING, emul_fuel_gauge_set_battery_charging, target, uV, uA, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_emul_fuel_gauge_is_battery_cutoff(const struct emul * target, bool * cutoff); + +__pinned_func +static inline int emul_fuel_gauge_is_battery_cutoff(const struct emul * target, bool * cutoff) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct emul * val; } parm0 = { .val = target }; + union { uintptr_t x; bool * val; } parm1 = { .val = cutoff }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_EMUL_FUEL_GAUGE_IS_BATTERY_CUTOFF); + } +#endif + compiler_barrier(); + return z_impl_emul_fuel_gauge_is_battery_cutoff(target, cutoff); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define emul_fuel_gauge_is_battery_cutoff(target, cutoff) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_EMUL_FUEL_GAUGE_IS_BATTERY_CUTOFF, emul_fuel_gauge_is_battery_cutoff, target, cutoff); syscall__retval = emul_fuel_gauge_is_battery_cutoff(target, cutoff); sys_port_trace_syscall_exit(K_SYSCALL_EMUL_FUEL_GAUGE_IS_BATTERY_CUTOFF, emul_fuel_gauge_is_battery_cutoff, target, cutoff, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/entropy.h b/build/zephyr/include/generated/zephyr/syscalls/entropy.h new file mode 100644 index 0000000..543cc20 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/entropy.h @@ -0,0 +1,53 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ENTROPY_H +#define Z_INCLUDE_SYSCALLS_ENTROPY_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_entropy_get_entropy(const struct device * dev, uint8_t * buffer, uint16_t length); + +__pinned_func +static inline int entropy_get_entropy(const struct device * dev, uint8_t * buffer, uint16_t length) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = buffer }; + union { uintptr_t x; uint16_t val; } parm2 = { .val = length }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ENTROPY_GET_ENTROPY); + } +#endif + compiler_barrier(); + return z_impl_entropy_get_entropy(dev, buffer, length); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define entropy_get_entropy(dev, buffer, length) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ENTROPY_GET_ENTROPY, entropy_get_entropy, dev, buffer, length); syscall__retval = entropy_get_entropy(dev, buffer, length); sys_port_trace_syscall_exit(K_SYSCALL_ENTROPY_GET_ENTROPY, entropy_get_entropy, dev, buffer, length, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/errno_private.h b/build/zephyr/include/generated/zephyr/syscalls/errno_private.h new file mode 100644 index 0000000..4c4571c --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/errno_private.h @@ -0,0 +1,43 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ERRNO_PRIVATE_H +#define Z_INCLUDE_SYSCALLS_ERRNO_PRIVATE_H + + + + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int * z_impl_z_errno(void); + +__pinned_func +static inline int * z_errno(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (int *) arch_syscall_invoke0(K_SYSCALL_Z_ERRNO); + } +#endif + compiler_barrier(); + return z_impl_z_errno(); +} + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/error.h b/build/zephyr/include/generated/zephyr/syscalls/error.h new file mode 100644 index 0000000..8ae9708 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/error.h @@ -0,0 +1,52 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ERROR_H +#define Z_INCLUDE_SYSCALLS_ERROR_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_user_fault(unsigned int reason); + +__pinned_func +static inline void user_fault(unsigned int reason) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; unsigned int val; } parm0 = { .val = reason }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_USER_FAULT); + return; + } +#endif + compiler_barrier(); + z_impl_user_fault(reason); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define user_fault(reason) do { sys_port_trace_syscall_enter(K_SYSCALL_USER_FAULT, user_fault, reason); user_fault(reason); sys_port_trace_syscall_exit(K_SYSCALL_USER_FAULT, user_fault, reason); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/espi.h b/build/zephyr/include/generated/zephyr/syscalls/espi.h new file mode 100644 index 0000000..b633999 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/espi.h @@ -0,0 +1,344 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ESPI_H +#define Z_INCLUDE_SYSCALLS_ESPI_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_espi_config(const struct device * dev, struct espi_cfg * cfg); + +__pinned_func +static inline int espi_config(const struct device * dev, struct espi_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_cfg * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_espi_config(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_config(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_CONFIG, espi_config, dev, cfg); syscall__retval = espi_config(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_CONFIG, espi_config, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_espi_get_channel_status(const struct device * dev, enum espi_channel ch); + +__pinned_func +static inline bool espi_get_channel_status(const struct device * dev, enum espi_channel ch) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum espi_channel val; } parm1 = { .val = ch }; + return (bool) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_GET_CHANNEL_STATUS); + } +#endif + compiler_barrier(); + return z_impl_espi_get_channel_status(dev, ch); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_get_channel_status(dev, ch) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_GET_CHANNEL_STATUS, espi_get_channel_status, dev, ch); syscall__retval = espi_get_channel_status(dev, ch); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_GET_CHANNEL_STATUS, espi_get_channel_status, dev, ch, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_read_request(const struct device * dev, struct espi_request_packet * req); + +__pinned_func +static inline int espi_read_request(const struct device * dev, struct espi_request_packet * req) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_request_packet * val; } parm1 = { .val = req }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_READ_REQUEST); + } +#endif + compiler_barrier(); + return z_impl_espi_read_request(dev, req); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_read_request(dev, req) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_READ_REQUEST, espi_read_request, dev, req); syscall__retval = espi_read_request(dev, req); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_READ_REQUEST, espi_read_request, dev, req, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_write_request(const struct device * dev, struct espi_request_packet * req); + +__pinned_func +static inline int espi_write_request(const struct device * dev, struct espi_request_packet * req) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_request_packet * val; } parm1 = { .val = req }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_WRITE_REQUEST); + } +#endif + compiler_barrier(); + return z_impl_espi_write_request(dev, req); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_write_request(dev, req) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_WRITE_REQUEST, espi_write_request, dev, req); syscall__retval = espi_write_request(dev, req); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_WRITE_REQUEST, espi_write_request, dev, req, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_read_lpc_request(const struct device * dev, enum lpc_peripheral_opcode op, uint32_t * data); + +__pinned_func +static inline int espi_read_lpc_request(const struct device * dev, enum lpc_peripheral_opcode op, uint32_t * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum lpc_peripheral_opcode val; } parm1 = { .val = op }; + union { uintptr_t x; uint32_t * val; } parm2 = { .val = data }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ESPI_READ_LPC_REQUEST); + } +#endif + compiler_barrier(); + return z_impl_espi_read_lpc_request(dev, op, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_read_lpc_request(dev, op, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_READ_LPC_REQUEST, espi_read_lpc_request, dev, op, data); syscall__retval = espi_read_lpc_request(dev, op, data); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_READ_LPC_REQUEST, espi_read_lpc_request, dev, op, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_write_lpc_request(const struct device * dev, enum lpc_peripheral_opcode op, uint32_t * data); + +__pinned_func +static inline int espi_write_lpc_request(const struct device * dev, enum lpc_peripheral_opcode op, uint32_t * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum lpc_peripheral_opcode val; } parm1 = { .val = op }; + union { uintptr_t x; uint32_t * val; } parm2 = { .val = data }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ESPI_WRITE_LPC_REQUEST); + } +#endif + compiler_barrier(); + return z_impl_espi_write_lpc_request(dev, op, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_write_lpc_request(dev, op, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_WRITE_LPC_REQUEST, espi_write_lpc_request, dev, op, data); syscall__retval = espi_write_lpc_request(dev, op, data); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_WRITE_LPC_REQUEST, espi_write_lpc_request, dev, op, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_send_vwire(const struct device * dev, enum espi_vwire_signal signal, uint8_t level); + +__pinned_func +static inline int espi_send_vwire(const struct device * dev, enum espi_vwire_signal signal, uint8_t level) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum espi_vwire_signal val; } parm1 = { .val = signal }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = level }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ESPI_SEND_VWIRE); + } +#endif + compiler_barrier(); + return z_impl_espi_send_vwire(dev, signal, level); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_send_vwire(dev, signal, level) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SEND_VWIRE, espi_send_vwire, dev, signal, level); syscall__retval = espi_send_vwire(dev, signal, level); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SEND_VWIRE, espi_send_vwire, dev, signal, level, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_receive_vwire(const struct device * dev, enum espi_vwire_signal signal, uint8_t * level); + +__pinned_func +static inline int espi_receive_vwire(const struct device * dev, enum espi_vwire_signal signal, uint8_t * level) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum espi_vwire_signal val; } parm1 = { .val = signal }; + union { uintptr_t x; uint8_t * val; } parm2 = { .val = level }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ESPI_RECEIVE_VWIRE); + } +#endif + compiler_barrier(); + return z_impl_espi_receive_vwire(dev, signal, level); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_receive_vwire(dev, signal, level) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_RECEIVE_VWIRE, espi_receive_vwire, dev, signal, level); syscall__retval = espi_receive_vwire(dev, signal, level); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_RECEIVE_VWIRE, espi_receive_vwire, dev, signal, level, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_send_oob(const struct device * dev, struct espi_oob_packet * pckt); + +__pinned_func +static inline int espi_send_oob(const struct device * dev, struct espi_oob_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_oob_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_SEND_OOB); + } +#endif + compiler_barrier(); + return z_impl_espi_send_oob(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_send_oob(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SEND_OOB, espi_send_oob, dev, pckt); syscall__retval = espi_send_oob(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SEND_OOB, espi_send_oob, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_receive_oob(const struct device * dev, struct espi_oob_packet * pckt); + +__pinned_func +static inline int espi_receive_oob(const struct device * dev, struct espi_oob_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_oob_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_RECEIVE_OOB); + } +#endif + compiler_barrier(); + return z_impl_espi_receive_oob(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_receive_oob(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_RECEIVE_OOB, espi_receive_oob, dev, pckt); syscall__retval = espi_receive_oob(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_RECEIVE_OOB, espi_receive_oob, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_read_flash(const struct device * dev, struct espi_flash_packet * pckt); + +__pinned_func +static inline int espi_read_flash(const struct device * dev, struct espi_flash_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_flash_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_READ_FLASH); + } +#endif + compiler_barrier(); + return z_impl_espi_read_flash(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_read_flash(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_READ_FLASH, espi_read_flash, dev, pckt); syscall__retval = espi_read_flash(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_READ_FLASH, espi_read_flash, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_write_flash(const struct device * dev, struct espi_flash_packet * pckt); + +__pinned_func +static inline int espi_write_flash(const struct device * dev, struct espi_flash_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_flash_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_WRITE_FLASH); + } +#endif + compiler_barrier(); + return z_impl_espi_write_flash(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_write_flash(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_WRITE_FLASH, espi_write_flash, dev, pckt); syscall__retval = espi_write_flash(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_WRITE_FLASH, espi_write_flash, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_flash_erase(const struct device * dev, struct espi_flash_packet * pckt); + +__pinned_func +static inline int espi_flash_erase(const struct device * dev, struct espi_flash_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_flash_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_FLASH_ERASE); + } +#endif + compiler_barrier(); + return z_impl_espi_flash_erase(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_flash_erase(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_FLASH_ERASE, espi_flash_erase, dev, pckt); syscall__retval = espi_flash_erase(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_FLASH_ERASE, espi_flash_erase, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/espi_saf.h b/build/zephyr/include/generated/zephyr/syscalls/espi_saf.h new file mode 100644 index 0000000..e345a18 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/espi_saf.h @@ -0,0 +1,218 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ESPI_SAF_H +#define Z_INCLUDE_SYSCALLS_ESPI_SAF_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_espi_saf_config(const struct device * dev, const struct espi_saf_cfg * cfg); + +__pinned_func +static inline int espi_saf_config(const struct device * dev, const struct espi_saf_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct espi_saf_cfg * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_SAF_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_config(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_config(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_CONFIG, espi_saf_config, dev, cfg); syscall__retval = espi_saf_config(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_CONFIG, espi_saf_config, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_saf_set_protection_regions(const struct device * dev, const struct espi_saf_protection * pr); + +__pinned_func +static inline int espi_saf_set_protection_regions(const struct device * dev, const struct espi_saf_protection * pr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct espi_saf_protection * val; } parm1 = { .val = pr }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_SAF_SET_PROTECTION_REGIONS); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_set_protection_regions(dev, pr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_set_protection_regions(dev, pr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_SET_PROTECTION_REGIONS, espi_saf_set_protection_regions, dev, pr); syscall__retval = espi_saf_set_protection_regions(dev, pr); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_SET_PROTECTION_REGIONS, espi_saf_set_protection_regions, dev, pr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_saf_activate(const struct device * dev); + +__pinned_func +static inline int espi_saf_activate(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_ESPI_SAF_ACTIVATE); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_activate(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_activate(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_ACTIVATE, espi_saf_activate, dev); syscall__retval = espi_saf_activate(dev); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_ACTIVATE, espi_saf_activate, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_espi_saf_get_channel_status(const struct device * dev); + +__pinned_func +static inline bool espi_saf_get_channel_status(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (bool) arch_syscall_invoke1(parm0.x, K_SYSCALL_ESPI_SAF_GET_CHANNEL_STATUS); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_get_channel_status(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_get_channel_status(dev) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_GET_CHANNEL_STATUS, espi_saf_get_channel_status, dev); syscall__retval = espi_saf_get_channel_status(dev); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_GET_CHANNEL_STATUS, espi_saf_get_channel_status, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_saf_flash_read(const struct device * dev, struct espi_saf_packet * pckt); + +__pinned_func +static inline int espi_saf_flash_read(const struct device * dev, struct espi_saf_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_saf_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_SAF_FLASH_READ); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_flash_read(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_flash_read(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_FLASH_READ, espi_saf_flash_read, dev, pckt); syscall__retval = espi_saf_flash_read(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_FLASH_READ, espi_saf_flash_read, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_saf_flash_write(const struct device * dev, struct espi_saf_packet * pckt); + +__pinned_func +static inline int espi_saf_flash_write(const struct device * dev, struct espi_saf_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_saf_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_SAF_FLASH_WRITE); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_flash_write(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_flash_write(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_FLASH_WRITE, espi_saf_flash_write, dev, pckt); syscall__retval = espi_saf_flash_write(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_FLASH_WRITE, espi_saf_flash_write, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_saf_flash_erase(const struct device * dev, struct espi_saf_packet * pckt); + +__pinned_func +static inline int espi_saf_flash_erase(const struct device * dev, struct espi_saf_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_saf_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_SAF_FLASH_ERASE); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_flash_erase(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_flash_erase(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_FLASH_ERASE, espi_saf_flash_erase, dev, pckt); syscall__retval = espi_saf_flash_erase(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_FLASH_ERASE, espi_saf_flash_erase, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_espi_saf_flash_unsuccess(const struct device * dev, struct espi_saf_packet * pckt); + +__pinned_func +static inline int espi_saf_flash_unsuccess(const struct device * dev, struct espi_saf_packet * pckt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct espi_saf_packet * val; } parm1 = { .val = pckt }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ESPI_SAF_FLASH_UNSUCCESS); + } +#endif + compiler_barrier(); + return z_impl_espi_saf_flash_unsuccess(dev, pckt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define espi_saf_flash_unsuccess(dev, pckt) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ESPI_SAF_FLASH_UNSUCCESS, espi_saf_flash_unsuccess, dev, pckt); syscall__retval = espi_saf_flash_unsuccess(dev, pckt); sys_port_trace_syscall_exit(K_SYSCALL_ESPI_SAF_FLASH_UNSUCCESS, espi_saf_flash_unsuccess, dev, pckt, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/ethernet.h b/build/zephyr/include/generated/zephyr/syscalls/ethernet.h new file mode 100644 index 0000000..af01e98 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/ethernet.h @@ -0,0 +1,51 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_ETHERNET_H +#define Z_INCLUDE_SYSCALLS_ETHERNET_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern const struct device * z_impl_net_eth_get_ptp_clock_by_index(int index); + +__pinned_func +static inline const struct device * net_eth_get_ptp_clock_by_index(int index) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + return (const struct device *) arch_syscall_invoke1(parm0.x, K_SYSCALL_NET_ETH_GET_PTP_CLOCK_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_eth_get_ptp_clock_by_index(index); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_eth_get_ptp_clock_by_index(index) ({ const struct device * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_ETH_GET_PTP_CLOCK_BY_INDEX, net_eth_get_ptp_clock_by_index, index); syscall__retval = net_eth_get_ptp_clock_by_index(index); sys_port_trace_syscall_exit(K_SYSCALL_NET_ETH_GET_PTP_CLOCK_BY_INDEX, net_eth_get_ptp_clock_by_index, index, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/fdtable.h b/build/zephyr/include/generated/zephyr/syscalls/fdtable.h new file mode 100644 index 0000000..7ef4114 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/fdtable.h @@ -0,0 +1,81 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_FDTABLE_H +#define Z_INCLUDE_SYSCALLS_FDTABLE_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_zvfs_poll(struct zvfs_pollfd * fds, int nfds, int poll_timeout); + +__pinned_func +static inline int zvfs_poll(struct zvfs_pollfd * fds, int nfds, int poll_timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct zvfs_pollfd * val; } parm0 = { .val = fds }; + union { uintptr_t x; int val; } parm1 = { .val = nfds }; + union { uintptr_t x; int val; } parm2 = { .val = poll_timeout }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZVFS_POLL); + } +#endif + compiler_barrier(); + return z_impl_zvfs_poll(fds, nfds, poll_timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zvfs_poll(fds, nfds, poll_timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZVFS_POLL, zvfs_poll, fds, nfds, poll_timeout); syscall__retval = zvfs_poll(fds, nfds, poll_timeout); sys_port_trace_syscall_exit(K_SYSCALL_ZVFS_POLL, zvfs_poll, fds, nfds, poll_timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zvfs_select(int nfds, struct zvfs_fd_set *ZRESTRICT readfds, struct zvfs_fd_set *ZRESTRICT writefds, struct zvfs_fd_set *ZRESTRICT errorfds, const struct timespec *ZRESTRICT timeout, const void *ZRESTRICT sigmask); + +__pinned_func +static inline int zvfs_select(int nfds, struct zvfs_fd_set *ZRESTRICT readfds, struct zvfs_fd_set *ZRESTRICT writefds, struct zvfs_fd_set *ZRESTRICT errorfds, const struct timespec *ZRESTRICT timeout, const void *ZRESTRICT sigmask) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = nfds }; + union { uintptr_t x; struct zvfs_fd_set *ZRESTRICT val; } parm1 = { .val = readfds }; + union { uintptr_t x; struct zvfs_fd_set *ZRESTRICT val; } parm2 = { .val = writefds }; + union { uintptr_t x; struct zvfs_fd_set *ZRESTRICT val; } parm3 = { .val = errorfds }; + union { uintptr_t x; const struct timespec *ZRESTRICT val; } parm4 = { .val = timeout }; + union { uintptr_t x; const void *ZRESTRICT val; } parm5 = { .val = sigmask }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, parm5.x, K_SYSCALL_ZVFS_SELECT); + } +#endif + compiler_barrier(); + return z_impl_zvfs_select(nfds, readfds, writefds, errorfds, timeout, sigmask); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zvfs_select(nfds, readfds, writefds, errorfds, timeout, sigmask) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZVFS_SELECT, zvfs_select, nfds, readfds, writefds, errorfds, timeout, sigmask); syscall__retval = zvfs_select(nfds, readfds, writefds, errorfds, timeout, sigmask); sys_port_trace_syscall_exit(K_SYSCALL_ZVFS_SELECT, zvfs_select, nfds, readfds, writefds, errorfds, timeout, sigmask, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/flash.h b/build/zephyr/include/generated/zephyr/syscalls/flash.h new file mode 100644 index 0000000..b9d580d --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/flash.h @@ -0,0 +1,408 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_FLASH_H +#define Z_INCLUDE_SYSCALLS_FLASH_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_flash_read(const struct device * dev, off_t offset, void * data, size_t len); + +__pinned_func +static inline int flash_read(const struct device * dev, off_t offset, void * data, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; void * val; } parm2 = { .val = data }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FLASH_READ); + } +#endif + compiler_barrier(); + return z_impl_flash_read(dev, offset, data, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_read(dev, offset, data, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_READ, flash_read, dev, offset, data, len); syscall__retval = flash_read(dev, offset, data, len); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_READ, flash_read, dev, offset, data, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_write(const struct device * dev, off_t offset, const void * data, size_t len); + +__pinned_func +static inline int flash_write(const struct device * dev, off_t offset, const void * data, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; const void * val; } parm2 = { .val = data }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FLASH_WRITE); + } +#endif + compiler_barrier(); + return z_impl_flash_write(dev, offset, data, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_write(dev, offset, data, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_WRITE, flash_write, dev, offset, data, len); syscall__retval = flash_write(dev, offset, data, len); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_WRITE, flash_write, dev, offset, data, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_erase(const struct device * dev, off_t offset, size_t size); + +__pinned_func +static inline int flash_erase(const struct device * dev, off_t offset, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; size_t val; } parm2 = { .val = size }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_FLASH_ERASE); + } +#endif + compiler_barrier(); + return z_impl_flash_erase(dev, offset, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_erase(dev, offset, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_ERASE, flash_erase, dev, offset, size); syscall__retval = flash_erase(dev, offset, size); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_ERASE, flash_erase, dev, offset, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_get_size(const struct device * dev, uint64_t * size); + +__pinned_func +static inline int flash_get_size(const struct device * dev, uint64_t * size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint64_t * val; } parm1 = { .val = size }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_FLASH_GET_SIZE); + } +#endif + compiler_barrier(); + return z_impl_flash_get_size(dev, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_get_size(dev, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_GET_SIZE, flash_get_size, dev, size); syscall__retval = flash_get_size(dev, size); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_GET_SIZE, flash_get_size, dev, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_fill(const struct device * dev, uint8_t val, off_t offset, size_t size); + +__pinned_func +static inline int flash_fill(const struct device * dev, uint8_t val, off_t offset, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = val }; + union { uintptr_t x; off_t val; } parm2 = { .val = offset }; + union { uintptr_t x; size_t val; } parm3 = { .val = size }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FLASH_FILL); + } +#endif + compiler_barrier(); + return z_impl_flash_fill(dev, val, offset, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_fill(dev, val, offset, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_FILL, flash_fill, dev, val, offset, size); syscall__retval = flash_fill(dev, val, offset, size); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_FILL, flash_fill, dev, val, offset, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_flatten(const struct device * dev, off_t offset, size_t size); + +__pinned_func +static inline int flash_flatten(const struct device * dev, off_t offset, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; size_t val; } parm2 = { .val = size }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_FLASH_FLATTEN); + } +#endif + compiler_barrier(); + return z_impl_flash_flatten(dev, offset, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_flatten(dev, offset, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_FLATTEN, flash_flatten, dev, offset, size); syscall__retval = flash_flatten(dev, offset, size); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_FLATTEN, flash_flatten, dev, offset, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_get_page_info_by_offs(const struct device * dev, off_t offset, struct flash_pages_info * info); + +__pinned_func +static inline int flash_get_page_info_by_offs(const struct device * dev, off_t offset, struct flash_pages_info * info) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; struct flash_pages_info * val; } parm2 = { .val = info }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_FLASH_GET_PAGE_INFO_BY_OFFS); + } +#endif + compiler_barrier(); + return z_impl_flash_get_page_info_by_offs(dev, offset, info); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_get_page_info_by_offs(dev, offset, info) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_GET_PAGE_INFO_BY_OFFS, flash_get_page_info_by_offs, dev, offset, info); syscall__retval = flash_get_page_info_by_offs(dev, offset, info); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_GET_PAGE_INFO_BY_OFFS, flash_get_page_info_by_offs, dev, offset, info, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_get_page_info_by_idx(const struct device * dev, uint32_t page_index, struct flash_pages_info * info); + +__pinned_func +static inline int flash_get_page_info_by_idx(const struct device * dev, uint32_t page_index, struct flash_pages_info * info) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = page_index }; + union { uintptr_t x; struct flash_pages_info * val; } parm2 = { .val = info }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_FLASH_GET_PAGE_INFO_BY_IDX); + } +#endif + compiler_barrier(); + return z_impl_flash_get_page_info_by_idx(dev, page_index, info); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_get_page_info_by_idx(dev, page_index, info) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_GET_PAGE_INFO_BY_IDX, flash_get_page_info_by_idx, dev, page_index, info); syscall__retval = flash_get_page_info_by_idx(dev, page_index, info); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_GET_PAGE_INFO_BY_IDX, flash_get_page_info_by_idx, dev, page_index, info, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern size_t z_impl_flash_get_page_count(const struct device * dev); + +__pinned_func +static inline size_t flash_get_page_count(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (size_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_FLASH_GET_PAGE_COUNT); + } +#endif + compiler_barrier(); + return z_impl_flash_get_page_count(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_get_page_count(dev) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_GET_PAGE_COUNT, flash_get_page_count, dev); syscall__retval = flash_get_page_count(dev); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_GET_PAGE_COUNT, flash_get_page_count, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_sfdp_read(const struct device * dev, off_t offset, void * data, size_t len); + +__pinned_func +static inline int flash_sfdp_read(const struct device * dev, off_t offset, void * data, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; void * val; } parm2 = { .val = data }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FLASH_SFDP_READ); + } +#endif + compiler_barrier(); + return z_impl_flash_sfdp_read(dev, offset, data, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_sfdp_read(dev, offset, data, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_SFDP_READ, flash_sfdp_read, dev, offset, data, len); syscall__retval = flash_sfdp_read(dev, offset, data, len); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_SFDP_READ, flash_sfdp_read, dev, offset, data, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_read_jedec_id(const struct device * dev, uint8_t * id); + +__pinned_func +static inline int flash_read_jedec_id(const struct device * dev, uint8_t * id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_FLASH_READ_JEDEC_ID); + } +#endif + compiler_barrier(); + return z_impl_flash_read_jedec_id(dev, id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_read_jedec_id(dev, id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_READ_JEDEC_ID, flash_read_jedec_id, dev, id); syscall__retval = flash_read_jedec_id(dev, id); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_READ_JEDEC_ID, flash_read_jedec_id, dev, id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern size_t z_impl_flash_get_write_block_size(const struct device * dev); + +__pinned_func +static inline size_t flash_get_write_block_size(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (size_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_FLASH_GET_WRITE_BLOCK_SIZE); + } +#endif + compiler_barrier(); + return z_impl_flash_get_write_block_size(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_get_write_block_size(dev) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_GET_WRITE_BLOCK_SIZE, flash_get_write_block_size, dev); syscall__retval = flash_get_write_block_size(dev); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_GET_WRITE_BLOCK_SIZE, flash_get_write_block_size, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern const struct flash_parameters * z_impl_flash_get_parameters(const struct device * dev); + +__pinned_func +static inline const struct flash_parameters * flash_get_parameters(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (const struct flash_parameters *) arch_syscall_invoke1(parm0.x, K_SYSCALL_FLASH_GET_PARAMETERS); + } +#endif + compiler_barrier(); + return z_impl_flash_get_parameters(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_get_parameters(dev) ({ const struct flash_parameters * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_GET_PARAMETERS, flash_get_parameters, dev); syscall__retval = flash_get_parameters(dev); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_GET_PARAMETERS, flash_get_parameters, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_ex_op(const struct device * dev, uint16_t code, const uintptr_t in, void * out); + +__pinned_func +static inline int flash_ex_op(const struct device * dev, uint16_t code, const uintptr_t in, void * out) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = code }; + union { uintptr_t x; const uintptr_t val; } parm2 = { .val = in }; + union { uintptr_t x; void * val; } parm3 = { .val = out }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FLASH_EX_OP); + } +#endif + compiler_barrier(); + return z_impl_flash_ex_op(dev, code, in, out); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_ex_op(dev, code, in, out) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_EX_OP, flash_ex_op, dev, code, in, out); syscall__retval = flash_ex_op(dev, code, in, out); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_EX_OP, flash_ex_op, dev, code, in, out, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_flash_copy(const struct device * src_dev, off_t src_offset, const struct device * dst_dev, off_t dst_offset, off_t size, uint8_t * buf, size_t buf_size); + +__pinned_func +static inline int flash_copy(const struct device * src_dev, off_t src_offset, const struct device * dst_dev, off_t dst_offset, off_t size, uint8_t * buf, size_t buf_size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = src_dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = src_offset }; + union { uintptr_t x; const struct device * val; } parm2 = { .val = dst_dev }; + union { uintptr_t x; off_t val; } parm3 = { .val = dst_offset }; + union { uintptr_t x; off_t val; } parm4 = { .val = size }; + union { uintptr_t x; uint8_t * val; } parm5 = { .val = buf }; + union { uintptr_t x; size_t val; } parm6 = { .val = buf_size }; + uintptr_t more[] = { + parm5.x, + parm6.x + }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, (uintptr_t) &more, K_SYSCALL_FLASH_COPY); + } +#endif + compiler_barrier(); + return z_impl_flash_copy(src_dev, src_offset, dst_dev, dst_offset, size, buf, buf_size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_copy(src_dev, src_offset, dst_dev, dst_offset, size, buf, buf_size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_COPY, flash_copy, src_dev, src_offset, dst_dev, dst_offset, size, buf, buf_size); syscall__retval = flash_copy(src_dev, src_offset, dst_dev, dst_offset, size, buf, buf_size); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_COPY, flash_copy, src_dev, src_offset, dst_dev, dst_offset, size, buf, buf_size, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/flash_simulator.h b/build/zephyr/include/generated/zephyr/syscalls/flash_simulator.h new file mode 100644 index 0000000..a9021de --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/flash_simulator.h @@ -0,0 +1,100 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_FLASH_SIMULATOR_H +#define Z_INCLUDE_SYSCALLS_FLASH_SIMULATOR_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern const struct flash_simulator_params * z_impl_flash_simulator_get_params(const struct device * dev); + +__pinned_func +static inline const struct flash_simulator_params * flash_simulator_get_params(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (const struct flash_simulator_params *) arch_syscall_invoke1(parm0.x, K_SYSCALL_FLASH_SIMULATOR_GET_PARAMS); + } +#endif + compiler_barrier(); + return z_impl_flash_simulator_get_params(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_simulator_get_params(dev) ({ const struct flash_simulator_params * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_SIMULATOR_GET_PARAMS, flash_simulator_get_params, dev); syscall__retval = flash_simulator_get_params(dev); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_SIMULATOR_GET_PARAMS, flash_simulator_get_params, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_flash_simulator_set_callbacks(const struct device * dev, const struct flash_simulator_cb * cb); + +__pinned_func +static inline void flash_simulator_set_callbacks(const struct device * dev, const struct flash_simulator_cb * cb) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct flash_simulator_cb * val; } parm1 = { .val = cb }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_FLASH_SIMULATOR_SET_CALLBACKS); + return; + } +#endif + compiler_barrier(); + z_impl_flash_simulator_set_callbacks(dev, cb); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_simulator_set_callbacks(dev, cb) do { sys_port_trace_syscall_enter(K_SYSCALL_FLASH_SIMULATOR_SET_CALLBACKS, flash_simulator_set_callbacks, dev, cb); flash_simulator_set_callbacks(dev, cb); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_SIMULATOR_SET_CALLBACKS, flash_simulator_set_callbacks, dev, cb); } while(false) +#endif +#endif + + +extern void * z_impl_flash_simulator_get_memory(const struct device * dev, size_t * mock_size); + +__pinned_func +static inline void * flash_simulator_get_memory(const struct device * dev, size_t * mock_size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; size_t * val; } parm1 = { .val = mock_size }; + return (void *) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_FLASH_SIMULATOR_GET_MEMORY); + } +#endif + compiler_barrier(); + return z_impl_flash_simulator_get_memory(dev, mock_size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define flash_simulator_get_memory(dev, mock_size) ({ void * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FLASH_SIMULATOR_GET_MEMORY, flash_simulator_get_memory, dev, mock_size); syscall__retval = flash_simulator_get_memory(dev, mock_size); sys_port_trace_syscall_exit(K_SYSCALL_FLASH_SIMULATOR_GET_MEMORY, flash_simulator_get_memory, dev, mock_size, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/fuel_gauge.h b/build/zephyr/include/generated/zephyr/syscalls/fuel_gauge.h new file mode 100644 index 0000000..b06201d --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/fuel_gauge.h @@ -0,0 +1,179 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_FUEL_GAUGE_H +#define Z_INCLUDE_SYSCALLS_FUEL_GAUGE_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_fuel_gauge_get_prop(const struct device * dev, fuel_gauge_prop_t prop, union fuel_gauge_prop_val * val); + +__pinned_func +static inline int fuel_gauge_get_prop(const struct device * dev, fuel_gauge_prop_t prop, union fuel_gauge_prop_val * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; fuel_gauge_prop_t val; } parm1 = { .val = prop }; + union { uintptr_t x; union fuel_gauge_prop_val * val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_FUEL_GAUGE_GET_PROP); + } +#endif + compiler_barrier(); + return z_impl_fuel_gauge_get_prop(dev, prop, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define fuel_gauge_get_prop(dev, prop, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FUEL_GAUGE_GET_PROP, fuel_gauge_get_prop, dev, prop, val); syscall__retval = fuel_gauge_get_prop(dev, prop, val); sys_port_trace_syscall_exit(K_SYSCALL_FUEL_GAUGE_GET_PROP, fuel_gauge_get_prop, dev, prop, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_fuel_gauge_get_props(const struct device * dev, const fuel_gauge_prop_t * props, union fuel_gauge_prop_val * vals, size_t len); + +__pinned_func +static inline int fuel_gauge_get_props(const struct device * dev, const fuel_gauge_prop_t * props, union fuel_gauge_prop_val * vals, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const fuel_gauge_prop_t * val; } parm1 = { .val = props }; + union { uintptr_t x; union fuel_gauge_prop_val * val; } parm2 = { .val = vals }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FUEL_GAUGE_GET_PROPS); + } +#endif + compiler_barrier(); + return z_impl_fuel_gauge_get_props(dev, props, vals, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define fuel_gauge_get_props(dev, props, vals, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FUEL_GAUGE_GET_PROPS, fuel_gauge_get_props, dev, props, vals, len); syscall__retval = fuel_gauge_get_props(dev, props, vals, len); sys_port_trace_syscall_exit(K_SYSCALL_FUEL_GAUGE_GET_PROPS, fuel_gauge_get_props, dev, props, vals, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_fuel_gauge_set_prop(const struct device * dev, fuel_gauge_prop_t prop, union fuel_gauge_prop_val val); + +__pinned_func +static inline int fuel_gauge_set_prop(const struct device * dev, fuel_gauge_prop_t prop, union fuel_gauge_prop_val val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; fuel_gauge_prop_t val; } parm1 = { .val = prop }; + union { uintptr_t x; union fuel_gauge_prop_val val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_FUEL_GAUGE_SET_PROP); + } +#endif + compiler_barrier(); + return z_impl_fuel_gauge_set_prop(dev, prop, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define fuel_gauge_set_prop(dev, prop, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FUEL_GAUGE_SET_PROP, fuel_gauge_set_prop, dev, prop, val); syscall__retval = fuel_gauge_set_prop(dev, prop, val); sys_port_trace_syscall_exit(K_SYSCALL_FUEL_GAUGE_SET_PROP, fuel_gauge_set_prop, dev, prop, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_fuel_gauge_set_props(const struct device * dev, const fuel_gauge_prop_t * props, const union fuel_gauge_prop_val * vals, size_t len); + +__pinned_func +static inline int fuel_gauge_set_props(const struct device * dev, const fuel_gauge_prop_t * props, const union fuel_gauge_prop_val * vals, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const fuel_gauge_prop_t * val; } parm1 = { .val = props }; + union { uintptr_t x; const union fuel_gauge_prop_val * val; } parm2 = { .val = vals }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FUEL_GAUGE_SET_PROPS); + } +#endif + compiler_barrier(); + return z_impl_fuel_gauge_set_props(dev, props, vals, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define fuel_gauge_set_props(dev, props, vals, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FUEL_GAUGE_SET_PROPS, fuel_gauge_set_props, dev, props, vals, len); syscall__retval = fuel_gauge_set_props(dev, props, vals, len); sys_port_trace_syscall_exit(K_SYSCALL_FUEL_GAUGE_SET_PROPS, fuel_gauge_set_props, dev, props, vals, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_fuel_gauge_get_buffer_prop(const struct device * dev, fuel_gauge_prop_t prop_type, void * dst, size_t dst_len); + +__pinned_func +static inline int fuel_gauge_get_buffer_prop(const struct device * dev, fuel_gauge_prop_t prop_type, void * dst, size_t dst_len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; fuel_gauge_prop_t val; } parm1 = { .val = prop_type }; + union { uintptr_t x; void * val; } parm2 = { .val = dst }; + union { uintptr_t x; size_t val; } parm3 = { .val = dst_len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_FUEL_GAUGE_GET_BUFFER_PROP); + } +#endif + compiler_barrier(); + return z_impl_fuel_gauge_get_buffer_prop(dev, prop_type, dst, dst_len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define fuel_gauge_get_buffer_prop(dev, prop_type, dst, dst_len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FUEL_GAUGE_GET_BUFFER_PROP, fuel_gauge_get_buffer_prop, dev, prop_type, dst, dst_len); syscall__retval = fuel_gauge_get_buffer_prop(dev, prop_type, dst, dst_len); sys_port_trace_syscall_exit(K_SYSCALL_FUEL_GAUGE_GET_BUFFER_PROP, fuel_gauge_get_buffer_prop, dev, prop_type, dst, dst_len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_fuel_gauge_battery_cutoff(const struct device * dev); + +__pinned_func +static inline int fuel_gauge_battery_cutoff(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_FUEL_GAUGE_BATTERY_CUTOFF); + } +#endif + compiler_barrier(); + return z_impl_fuel_gauge_battery_cutoff(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define fuel_gauge_battery_cutoff(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_FUEL_GAUGE_BATTERY_CUTOFF, fuel_gauge_battery_cutoff, dev); syscall__retval = fuel_gauge_battery_cutoff(dev); sys_port_trace_syscall_exit(K_SYSCALL_FUEL_GAUGE_BATTERY_CUTOFF, fuel_gauge_battery_cutoff, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/gnss.h b/build/zephyr/include/generated/zephyr/syscalls/gnss.h new file mode 100644 index 0000000..0c64597 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/gnss.h @@ -0,0 +1,220 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_GNSS_H +#define Z_INCLUDE_SYSCALLS_GNSS_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_gnss_set_fix_rate(const struct device * dev, uint32_t fix_interval_ms); + +__pinned_func +static inline int gnss_set_fix_rate(const struct device * dev, uint32_t fix_interval_ms) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = fix_interval_ms }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_SET_FIX_RATE); + } +#endif + compiler_barrier(); + return z_impl_gnss_set_fix_rate(dev, fix_interval_ms); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_set_fix_rate(dev, fix_interval_ms) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_SET_FIX_RATE, gnss_set_fix_rate, dev, fix_interval_ms); syscall__retval = gnss_set_fix_rate(dev, fix_interval_ms); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_SET_FIX_RATE, gnss_set_fix_rate, dev, fix_interval_ms, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gnss_get_fix_rate(const struct device * dev, uint32_t * fix_interval_ms); + +__pinned_func +static inline int gnss_get_fix_rate(const struct device * dev, uint32_t * fix_interval_ms) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t * val; } parm1 = { .val = fix_interval_ms }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_GET_FIX_RATE); + } +#endif + compiler_barrier(); + return z_impl_gnss_get_fix_rate(dev, fix_interval_ms); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_get_fix_rate(dev, fix_interval_ms) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_GET_FIX_RATE, gnss_get_fix_rate, dev, fix_interval_ms); syscall__retval = gnss_get_fix_rate(dev, fix_interval_ms); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_GET_FIX_RATE, gnss_get_fix_rate, dev, fix_interval_ms, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gnss_set_navigation_mode(const struct device * dev, enum gnss_navigation_mode mode); + +__pinned_func +static inline int gnss_set_navigation_mode(const struct device * dev, enum gnss_navigation_mode mode) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum gnss_navigation_mode val; } parm1 = { .val = mode }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_SET_NAVIGATION_MODE); + } +#endif + compiler_barrier(); + return z_impl_gnss_set_navigation_mode(dev, mode); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_set_navigation_mode(dev, mode) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_SET_NAVIGATION_MODE, gnss_set_navigation_mode, dev, mode); syscall__retval = gnss_set_navigation_mode(dev, mode); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_SET_NAVIGATION_MODE, gnss_set_navigation_mode, dev, mode, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gnss_get_navigation_mode(const struct device * dev, enum gnss_navigation_mode * mode); + +__pinned_func +static inline int gnss_get_navigation_mode(const struct device * dev, enum gnss_navigation_mode * mode) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum gnss_navigation_mode * val; } parm1 = { .val = mode }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_GET_NAVIGATION_MODE); + } +#endif + compiler_barrier(); + return z_impl_gnss_get_navigation_mode(dev, mode); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_get_navigation_mode(dev, mode) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_GET_NAVIGATION_MODE, gnss_get_navigation_mode, dev, mode); syscall__retval = gnss_get_navigation_mode(dev, mode); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_GET_NAVIGATION_MODE, gnss_get_navigation_mode, dev, mode, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gnss_set_enabled_systems(const struct device * dev, gnss_systems_t systems); + +__pinned_func +static inline int gnss_set_enabled_systems(const struct device * dev, gnss_systems_t systems) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; gnss_systems_t val; } parm1 = { .val = systems }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_SET_ENABLED_SYSTEMS); + } +#endif + compiler_barrier(); + return z_impl_gnss_set_enabled_systems(dev, systems); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_set_enabled_systems(dev, systems) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_SET_ENABLED_SYSTEMS, gnss_set_enabled_systems, dev, systems); syscall__retval = gnss_set_enabled_systems(dev, systems); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_SET_ENABLED_SYSTEMS, gnss_set_enabled_systems, dev, systems, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gnss_get_enabled_systems(const struct device * dev, gnss_systems_t * systems); + +__pinned_func +static inline int gnss_get_enabled_systems(const struct device * dev, gnss_systems_t * systems) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; gnss_systems_t * val; } parm1 = { .val = systems }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_GET_ENABLED_SYSTEMS); + } +#endif + compiler_barrier(); + return z_impl_gnss_get_enabled_systems(dev, systems); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_get_enabled_systems(dev, systems) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_GET_ENABLED_SYSTEMS, gnss_get_enabled_systems, dev, systems); syscall__retval = gnss_get_enabled_systems(dev, systems); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_GET_ENABLED_SYSTEMS, gnss_get_enabled_systems, dev, systems, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gnss_get_supported_systems(const struct device * dev, gnss_systems_t * systems); + +__pinned_func +static inline int gnss_get_supported_systems(const struct device * dev, gnss_systems_t * systems) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; gnss_systems_t * val; } parm1 = { .val = systems }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_GET_SUPPORTED_SYSTEMS); + } +#endif + compiler_barrier(); + return z_impl_gnss_get_supported_systems(dev, systems); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_get_supported_systems(dev, systems) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_GET_SUPPORTED_SYSTEMS, gnss_get_supported_systems, dev, systems); syscall__retval = gnss_get_supported_systems(dev, systems); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_GET_SUPPORTED_SYSTEMS, gnss_get_supported_systems, dev, systems, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gnss_get_latest_timepulse(const struct device * dev, k_ticks_t * timestamp); + +__pinned_func +static inline int gnss_get_latest_timepulse(const struct device * dev, k_ticks_t * timestamp) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; k_ticks_t * val; } parm1 = { .val = timestamp }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GNSS_GET_LATEST_TIMEPULSE); + } +#endif + compiler_barrier(); + return z_impl_gnss_get_latest_timepulse(dev, timestamp); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gnss_get_latest_timepulse(dev, timestamp) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GNSS_GET_LATEST_TIMEPULSE, gnss_get_latest_timepulse, dev, timestamp); syscall__retval = gnss_get_latest_timepulse(dev, timestamp); sys_port_trace_syscall_exit(K_SYSCALL_GNSS_GET_LATEST_TIMEPULSE, gnss_get_latest_timepulse, dev, timestamp, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/gpio.h b/build/zephyr/include/generated/zephyr/syscalls/gpio.h new file mode 100644 index 0000000..74a1873 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/gpio.h @@ -0,0 +1,273 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_GPIO_H +#define Z_INCLUDE_SYSCALLS_GPIO_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_gpio_pin_interrupt_configure(const struct device * port, gpio_pin_t pin, gpio_flags_t flags); + +__pinned_func +static inline int gpio_pin_interrupt_configure(const struct device * port, gpio_pin_t pin, gpio_flags_t flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_pin_t val; } parm1 = { .val = pin }; + union { uintptr_t x; gpio_flags_t val; } parm2 = { .val = flags }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_GPIO_PIN_INTERRUPT_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_gpio_pin_interrupt_configure(port, pin, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_pin_interrupt_configure(port, pin, flags) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PIN_INTERRUPT_CONFIGURE, gpio_pin_interrupt_configure, port, pin, flags); syscall__retval = gpio_pin_interrupt_configure(port, pin, flags); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PIN_INTERRUPT_CONFIGURE, gpio_pin_interrupt_configure, port, pin, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_pin_configure(const struct device * port, gpio_pin_t pin, gpio_flags_t flags); + +__pinned_func +static inline int gpio_pin_configure(const struct device * port, gpio_pin_t pin, gpio_flags_t flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_pin_t val; } parm1 = { .val = pin }; + union { uintptr_t x; gpio_flags_t val; } parm2 = { .val = flags }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_GPIO_PIN_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_gpio_pin_configure(port, pin, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_pin_configure(port, pin, flags) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PIN_CONFIGURE, gpio_pin_configure, port, pin, flags); syscall__retval = gpio_pin_configure(port, pin, flags); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PIN_CONFIGURE, gpio_pin_configure, port, pin, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_port_get_direction(const struct device * port, gpio_port_pins_t map, gpio_port_pins_t * inputs, gpio_port_pins_t * outputs); + +__pinned_func +static inline int gpio_port_get_direction(const struct device * port, gpio_port_pins_t map, gpio_port_pins_t * inputs, gpio_port_pins_t * outputs) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_port_pins_t val; } parm1 = { .val = map }; + union { uintptr_t x; gpio_port_pins_t * val; } parm2 = { .val = inputs }; + union { uintptr_t x; gpio_port_pins_t * val; } parm3 = { .val = outputs }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_GPIO_PORT_GET_DIRECTION); + } +#endif + compiler_barrier(); + return z_impl_gpio_port_get_direction(port, map, inputs, outputs); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_port_get_direction(port, map, inputs, outputs) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PORT_GET_DIRECTION, gpio_port_get_direction, port, map, inputs, outputs); syscall__retval = gpio_port_get_direction(port, map, inputs, outputs); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PORT_GET_DIRECTION, gpio_port_get_direction, port, map, inputs, outputs, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_pin_get_config(const struct device * port, gpio_pin_t pin, gpio_flags_t * flags); + +__pinned_func +static inline int gpio_pin_get_config(const struct device * port, gpio_pin_t pin, gpio_flags_t * flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_pin_t val; } parm1 = { .val = pin }; + union { uintptr_t x; gpio_flags_t * val; } parm2 = { .val = flags }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_GPIO_PIN_GET_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_gpio_pin_get_config(port, pin, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_pin_get_config(port, pin, flags) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PIN_GET_CONFIG, gpio_pin_get_config, port, pin, flags); syscall__retval = gpio_pin_get_config(port, pin, flags); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PIN_GET_CONFIG, gpio_pin_get_config, port, pin, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_port_get_raw(const struct device * port, gpio_port_value_t * value); + +__pinned_func +static inline int gpio_port_get_raw(const struct device * port, gpio_port_value_t * value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_port_value_t * val; } parm1 = { .val = value }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GPIO_PORT_GET_RAW); + } +#endif + compiler_barrier(); + return z_impl_gpio_port_get_raw(port, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_port_get_raw(port, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PORT_GET_RAW, gpio_port_get_raw, port, value); syscall__retval = gpio_port_get_raw(port, value); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PORT_GET_RAW, gpio_port_get_raw, port, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_port_set_masked_raw(const struct device * port, gpio_port_pins_t mask, gpio_port_value_t value); + +__pinned_func +static inline int gpio_port_set_masked_raw(const struct device * port, gpio_port_pins_t mask, gpio_port_value_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_port_pins_t val; } parm1 = { .val = mask }; + union { uintptr_t x; gpio_port_value_t val; } parm2 = { .val = value }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_GPIO_PORT_SET_MASKED_RAW); + } +#endif + compiler_barrier(); + return z_impl_gpio_port_set_masked_raw(port, mask, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_port_set_masked_raw(port, mask, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PORT_SET_MASKED_RAW, gpio_port_set_masked_raw, port, mask, value); syscall__retval = gpio_port_set_masked_raw(port, mask, value); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PORT_SET_MASKED_RAW, gpio_port_set_masked_raw, port, mask, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_port_set_bits_raw(const struct device * port, gpio_port_pins_t pins); + +__pinned_func +static inline int gpio_port_set_bits_raw(const struct device * port, gpio_port_pins_t pins) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_port_pins_t val; } parm1 = { .val = pins }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GPIO_PORT_SET_BITS_RAW); + } +#endif + compiler_barrier(); + return z_impl_gpio_port_set_bits_raw(port, pins); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_port_set_bits_raw(port, pins) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PORT_SET_BITS_RAW, gpio_port_set_bits_raw, port, pins); syscall__retval = gpio_port_set_bits_raw(port, pins); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PORT_SET_BITS_RAW, gpio_port_set_bits_raw, port, pins, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_port_clear_bits_raw(const struct device * port, gpio_port_pins_t pins); + +__pinned_func +static inline int gpio_port_clear_bits_raw(const struct device * port, gpio_port_pins_t pins) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_port_pins_t val; } parm1 = { .val = pins }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GPIO_PORT_CLEAR_BITS_RAW); + } +#endif + compiler_barrier(); + return z_impl_gpio_port_clear_bits_raw(port, pins); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_port_clear_bits_raw(port, pins) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PORT_CLEAR_BITS_RAW, gpio_port_clear_bits_raw, port, pins); syscall__retval = gpio_port_clear_bits_raw(port, pins); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PORT_CLEAR_BITS_RAW, gpio_port_clear_bits_raw, port, pins, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_port_toggle_bits(const struct device * port, gpio_port_pins_t pins); + +__pinned_func +static inline int gpio_port_toggle_bits(const struct device * port, gpio_port_pins_t pins) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = port }; + union { uintptr_t x; gpio_port_pins_t val; } parm1 = { .val = pins }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_GPIO_PORT_TOGGLE_BITS); + } +#endif + compiler_barrier(); + return z_impl_gpio_port_toggle_bits(port, pins); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_port_toggle_bits(port, pins) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_PORT_TOGGLE_BITS, gpio_port_toggle_bits, port, pins); syscall__retval = gpio_port_toggle_bits(port, pins); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_PORT_TOGGLE_BITS, gpio_port_toggle_bits, port, pins, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_gpio_get_pending_int(const struct device * dev); + +__pinned_func +static inline int gpio_get_pending_int(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_GPIO_GET_PENDING_INT); + } +#endif + compiler_barrier(); + return z_impl_gpio_get_pending_int(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define gpio_get_pending_int(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_GPIO_GET_PENDING_INT, gpio_get_pending_int, dev); syscall__retval = gpio_get_pending_int(dev); sys_port_trace_syscall_exit(K_SYSCALL_GPIO_GET_PENDING_INT, gpio_get_pending_int, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/haptics.h b/build/zephyr/include/generated/zephyr/syscalls/haptics.h new file mode 100644 index 0000000..b6e30be --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/haptics.h @@ -0,0 +1,74 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_HAPTICS_H +#define Z_INCLUDE_SYSCALLS_HAPTICS_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_haptics_start_output(const struct device * dev); + +__pinned_func +static inline int haptics_start_output(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_HAPTICS_START_OUTPUT); + } +#endif + compiler_barrier(); + return z_impl_haptics_start_output(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define haptics_start_output(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HAPTICS_START_OUTPUT, haptics_start_output, dev); syscall__retval = haptics_start_output(dev); sys_port_trace_syscall_exit(K_SYSCALL_HAPTICS_START_OUTPUT, haptics_start_output, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_haptics_stop_output(const struct device * dev); + +__pinned_func +static inline int haptics_stop_output(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_HAPTICS_STOP_OUTPUT); + } +#endif + compiler_barrier(); + return z_impl_haptics_stop_output(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define haptics_stop_output(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HAPTICS_STOP_OUTPUT, haptics_stop_output, dev); syscall__retval = haptics_stop_output(dev); sys_port_trace_syscall_exit(K_SYSCALL_HAPTICS_STOP_OUTPUT, haptics_stop_output, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/hwinfo.h b/build/zephyr/include/generated/zephyr/syscalls/hwinfo.h new file mode 100644 index 0000000..cd05615 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/hwinfo.h @@ -0,0 +1,143 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_HWINFO_H +#define Z_INCLUDE_SYSCALLS_HWINFO_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern ssize_t z_impl_hwinfo_get_device_id(uint8_t * buffer, size_t length); + +__pinned_func +static inline ssize_t hwinfo_get_device_id(uint8_t * buffer, size_t length) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; uint8_t * val; } parm0 = { .val = buffer }; + union { uintptr_t x; size_t val; } parm1 = { .val = length }; + return (ssize_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_HWINFO_GET_DEVICE_ID); + } +#endif + compiler_barrier(); + return z_impl_hwinfo_get_device_id(buffer, length); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define hwinfo_get_device_id(buffer, length) ({ ssize_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HWINFO_GET_DEVICE_ID, hwinfo_get_device_id, buffer, length); syscall__retval = hwinfo_get_device_id(buffer, length); sys_port_trace_syscall_exit(K_SYSCALL_HWINFO_GET_DEVICE_ID, hwinfo_get_device_id, buffer, length, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_hwinfo_get_device_eui64(uint8_t * buffer); + +__pinned_func +static inline int hwinfo_get_device_eui64(uint8_t * buffer) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; uint8_t * val; } parm0 = { .val = buffer }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_HWINFO_GET_DEVICE_EUI64); + } +#endif + compiler_barrier(); + return z_impl_hwinfo_get_device_eui64(buffer); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define hwinfo_get_device_eui64(buffer) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HWINFO_GET_DEVICE_EUI64, hwinfo_get_device_eui64, buffer); syscall__retval = hwinfo_get_device_eui64(buffer); sys_port_trace_syscall_exit(K_SYSCALL_HWINFO_GET_DEVICE_EUI64, hwinfo_get_device_eui64, buffer, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_hwinfo_get_reset_cause(uint32_t * cause); + +__pinned_func +static inline int hwinfo_get_reset_cause(uint32_t * cause) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; uint32_t * val; } parm0 = { .val = cause }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_HWINFO_GET_RESET_CAUSE); + } +#endif + compiler_barrier(); + return z_impl_hwinfo_get_reset_cause(cause); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define hwinfo_get_reset_cause(cause) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HWINFO_GET_RESET_CAUSE, hwinfo_get_reset_cause, cause); syscall__retval = hwinfo_get_reset_cause(cause); sys_port_trace_syscall_exit(K_SYSCALL_HWINFO_GET_RESET_CAUSE, hwinfo_get_reset_cause, cause, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_hwinfo_clear_reset_cause(void); + +__pinned_func +static inline int hwinfo_clear_reset_cause(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (int) arch_syscall_invoke0(K_SYSCALL_HWINFO_CLEAR_RESET_CAUSE); + } +#endif + compiler_barrier(); + return z_impl_hwinfo_clear_reset_cause(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define hwinfo_clear_reset_cause() ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HWINFO_CLEAR_RESET_CAUSE, hwinfo_clear_reset_cause); syscall__retval = hwinfo_clear_reset_cause(); sys_port_trace_syscall_exit(K_SYSCALL_HWINFO_CLEAR_RESET_CAUSE, hwinfo_clear_reset_cause, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_hwinfo_get_supported_reset_cause(uint32_t * supported); + +__pinned_func +static inline int hwinfo_get_supported_reset_cause(uint32_t * supported) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; uint32_t * val; } parm0 = { .val = supported }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_HWINFO_GET_SUPPORTED_RESET_CAUSE); + } +#endif + compiler_barrier(); + return z_impl_hwinfo_get_supported_reset_cause(supported); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define hwinfo_get_supported_reset_cause(supported) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_HWINFO_GET_SUPPORTED_RESET_CAUSE, hwinfo_get_supported_reset_cause, supported); syscall__retval = hwinfo_get_supported_reset_cause(supported); sys_port_trace_syscall_exit(K_SYSCALL_HWINFO_GET_SUPPORTED_RESET_CAUSE, hwinfo_get_supported_reset_cause, supported, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/i2c.h b/build/zephyr/include/generated/zephyr/syscalls/i2c.h new file mode 100644 index 0000000..8a11d7a --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/i2c.h @@ -0,0 +1,171 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_I2C_H +#define Z_INCLUDE_SYSCALLS_I2C_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_i2c_configure(const struct device * dev, uint32_t dev_config); + +__pinned_func +static inline int i2c_configure(const struct device * dev, uint32_t dev_config) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = dev_config }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_I2C_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_i2c_configure(dev, dev_config); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2c_configure(dev, dev_config) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2C_CONFIGURE, i2c_configure, dev, dev_config); syscall__retval = i2c_configure(dev, dev_config); sys_port_trace_syscall_exit(K_SYSCALL_I2C_CONFIGURE, i2c_configure, dev, dev_config, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2c_get_config(const struct device * dev, uint32_t * dev_config); + +__pinned_func +static inline int i2c_get_config(const struct device * dev, uint32_t * dev_config) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t * val; } parm1 = { .val = dev_config }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_I2C_GET_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_i2c_get_config(dev, dev_config); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2c_get_config(dev, dev_config) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2C_GET_CONFIG, i2c_get_config, dev, dev_config); syscall__retval = i2c_get_config(dev, dev_config); sys_port_trace_syscall_exit(K_SYSCALL_I2C_GET_CONFIG, i2c_get_config, dev, dev_config, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2c_transfer(const struct device * dev, struct i2c_msg * msgs, uint8_t num_msgs, uint16_t addr); + +__pinned_func +static inline int i2c_transfer(const struct device * dev, struct i2c_msg * msgs, uint8_t num_msgs, uint16_t addr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct i2c_msg * val; } parm1 = { .val = msgs }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = num_msgs }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = addr }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_I2C_TRANSFER); + } +#endif + compiler_barrier(); + return z_impl_i2c_transfer(dev, msgs, num_msgs, addr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2c_transfer(dev, msgs, num_msgs, addr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2C_TRANSFER, i2c_transfer, dev, msgs, num_msgs, addr); syscall__retval = i2c_transfer(dev, msgs, num_msgs, addr); sys_port_trace_syscall_exit(K_SYSCALL_I2C_TRANSFER, i2c_transfer, dev, msgs, num_msgs, addr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2c_recover_bus(const struct device * dev); + +__pinned_func +static inline int i2c_recover_bus(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_I2C_RECOVER_BUS); + } +#endif + compiler_barrier(); + return z_impl_i2c_recover_bus(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2c_recover_bus(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2C_RECOVER_BUS, i2c_recover_bus, dev); syscall__retval = i2c_recover_bus(dev); sys_port_trace_syscall_exit(K_SYSCALL_I2C_RECOVER_BUS, i2c_recover_bus, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2c_target_driver_register(const struct device * dev); + +__pinned_func +static inline int i2c_target_driver_register(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_I2C_TARGET_DRIVER_REGISTER); + } +#endif + compiler_barrier(); + return z_impl_i2c_target_driver_register(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2c_target_driver_register(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2C_TARGET_DRIVER_REGISTER, i2c_target_driver_register, dev); syscall__retval = i2c_target_driver_register(dev); sys_port_trace_syscall_exit(K_SYSCALL_I2C_TARGET_DRIVER_REGISTER, i2c_target_driver_register, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2c_target_driver_unregister(const struct device * dev); + +__pinned_func +static inline int i2c_target_driver_unregister(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_I2C_TARGET_DRIVER_UNREGISTER); + } +#endif + compiler_barrier(); + return z_impl_i2c_target_driver_unregister(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2c_target_driver_unregister(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2C_TARGET_DRIVER_UNREGISTER, i2c_target_driver_unregister, dev); syscall__retval = i2c_target_driver_unregister(dev); sys_port_trace_syscall_exit(K_SYSCALL_I2C_TARGET_DRIVER_UNREGISTER, i2c_target_driver_unregister, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/i2s.h b/build/zephyr/include/generated/zephyr/syscalls/i2s.h new file mode 100644 index 0000000..3176fec --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/i2s.h @@ -0,0 +1,128 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_I2S_H +#define Z_INCLUDE_SYSCALLS_I2S_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_i2s_configure(const struct device * dev, enum i2s_dir dir, const struct i2s_config * cfg); + +__pinned_func +static inline int i2s_configure(const struct device * dev, enum i2s_dir dir, const struct i2s_config * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum i2s_dir val; } parm1 = { .val = dir }; + union { uintptr_t x; const struct i2s_config * val; } parm2 = { .val = cfg }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_I2S_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_i2s_configure(dev, dir, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2s_configure(dev, dir, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2S_CONFIGURE, i2s_configure, dev, dir, cfg); syscall__retval = i2s_configure(dev, dir, cfg); sys_port_trace_syscall_exit(K_SYSCALL_I2S_CONFIGURE, i2s_configure, dev, dir, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2s_buf_read(const struct device * dev, void * buf, size_t * size); + +__pinned_func +static inline int i2s_buf_read(const struct device * dev, void * buf, size_t * size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; void * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t * val; } parm2 = { .val = size }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_I2S_BUF_READ); + } +#endif + compiler_barrier(); + return z_impl_i2s_buf_read(dev, buf, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2s_buf_read(dev, buf, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2S_BUF_READ, i2s_buf_read, dev, buf, size); syscall__retval = i2s_buf_read(dev, buf, size); sys_port_trace_syscall_exit(K_SYSCALL_I2S_BUF_READ, i2s_buf_read, dev, buf, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2s_buf_write(const struct device * dev, void * buf, size_t size); + +__pinned_func +static inline int i2s_buf_write(const struct device * dev, void * buf, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; void * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = size }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_I2S_BUF_WRITE); + } +#endif + compiler_barrier(); + return z_impl_i2s_buf_write(dev, buf, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2s_buf_write(dev, buf, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2S_BUF_WRITE, i2s_buf_write, dev, buf, size); syscall__retval = i2s_buf_write(dev, buf, size); sys_port_trace_syscall_exit(K_SYSCALL_I2S_BUF_WRITE, i2s_buf_write, dev, buf, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i2s_trigger(const struct device * dev, enum i2s_dir dir, enum i2s_trigger_cmd cmd); + +__pinned_func +static inline int i2s_trigger(const struct device * dev, enum i2s_dir dir, enum i2s_trigger_cmd cmd) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum i2s_dir val; } parm1 = { .val = dir }; + union { uintptr_t x; enum i2s_trigger_cmd val; } parm2 = { .val = cmd }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_I2S_TRIGGER); + } +#endif + compiler_barrier(); + return z_impl_i2s_trigger(dev, dir, cmd); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i2s_trigger(dev, dir, cmd) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I2S_TRIGGER, i2s_trigger, dev, dir, cmd); syscall__retval = i2s_trigger(dev, dir, cmd); sys_port_trace_syscall_exit(K_SYSCALL_I2S_TRIGGER, i2s_trigger, dev, dir, cmd, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/i3c.h b/build/zephyr/include/generated/zephyr/syscalls/i3c.h new file mode 100644 index 0000000..cb90359 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/i3c.h @@ -0,0 +1,77 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_I3C_H +#define Z_INCLUDE_SYSCALLS_I3C_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_i3c_do_ccc(const struct device * dev, struct i3c_ccc_payload * payload); + +__pinned_func +static inline int i3c_do_ccc(const struct device * dev, struct i3c_ccc_payload * payload) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct i3c_ccc_payload * val; } parm1 = { .val = payload }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_I3C_DO_CCC); + } +#endif + compiler_barrier(); + return z_impl_i3c_do_ccc(dev, payload); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i3c_do_ccc(dev, payload) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I3C_DO_CCC, i3c_do_ccc, dev, payload); syscall__retval = i3c_do_ccc(dev, payload); sys_port_trace_syscall_exit(K_SYSCALL_I3C_DO_CCC, i3c_do_ccc, dev, payload, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_i3c_transfer(struct i3c_device_desc * target, struct i3c_msg * msgs, uint8_t num_msgs); + +__pinned_func +static inline int i3c_transfer(struct i3c_device_desc * target, struct i3c_msg * msgs, uint8_t num_msgs) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct i3c_device_desc * val; } parm0 = { .val = target }; + union { uintptr_t x; struct i3c_msg * val; } parm1 = { .val = msgs }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = num_msgs }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_I3C_TRANSFER); + } +#endif + compiler_barrier(); + return z_impl_i3c_transfer(target, msgs, num_msgs); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define i3c_transfer(target, msgs, num_msgs) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_I3C_TRANSFER, i3c_transfer, target, msgs, num_msgs); syscall__retval = i3c_transfer(target, msgs, num_msgs); sys_port_trace_syscall_exit(K_SYSCALL_I3C_TRANSFER, i3c_transfer, target, msgs, num_msgs, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/input_renesas_ra_ctsu.h b/build/zephyr/include/generated/zephyr/syscalls/input_renesas_ra_ctsu.h new file mode 100644 index 0000000..39257f0 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/input_renesas_ra_ctsu.h @@ -0,0 +1,52 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_INPUT_RENESAS_RA_CTSU_H +#define Z_INCLUDE_SYSCALLS_INPUT_RENESAS_RA_CTSU_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_renesas_ra_ctsu_group_configure(const struct device * dev, const struct renesas_ra_ctsu_touch_cfg * cfg); + +__pinned_func +static inline int renesas_ra_ctsu_group_configure(const struct device * dev, const struct renesas_ra_ctsu_touch_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct renesas_ra_ctsu_touch_cfg * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RENESAS_RA_CTSU_GROUP_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_renesas_ra_ctsu_group_configure(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define renesas_ra_ctsu_group_configure(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RENESAS_RA_CTSU_GROUP_CONFIGURE, renesas_ra_ctsu_group_configure, dev, cfg); syscall__retval = renesas_ra_ctsu_group_configure(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_RENESAS_RA_CTSU_GROUP_CONFIGURE, renesas_ra_ctsu_group_configure, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/input_renesas_rx_ctsu.h b/build/zephyr/include/generated/zephyr/syscalls/input_renesas_rx_ctsu.h new file mode 100644 index 0000000..b82a17a --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/input_renesas_rx_ctsu.h @@ -0,0 +1,52 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_INPUT_RENESAS_RX_CTSU_H +#define Z_INCLUDE_SYSCALLS_INPUT_RENESAS_RX_CTSU_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_renesas_rx_ctsu_group_configure(const struct device * dev, const struct renesas_rx_ctsu_touch_cfg * cfg); + +__pinned_func +static inline int renesas_rx_ctsu_group_configure(const struct device * dev, const struct renesas_rx_ctsu_touch_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct renesas_rx_ctsu_touch_cfg * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RENESAS_RX_CTSU_GROUP_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_renesas_rx_ctsu_group_configure(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define renesas_rx_ctsu_group_configure(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RENESAS_RX_CTSU_GROUP_CONFIGURE, renesas_rx_ctsu_group_configure, dev, cfg); syscall__retval = renesas_rx_ctsu_group_configure(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_RENESAS_RX_CTSU_GROUP_CONFIGURE, renesas_rx_ctsu_group_configure, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/ipm.h b/build/zephyr/include/generated/zephyr/syscalls/ipm.h new file mode 100644 index 0000000..beafd88 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/ipm.h @@ -0,0 +1,149 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_IPM_H +#define Z_INCLUDE_SYSCALLS_IPM_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_ipm_send(const struct device * ipmdev, int wait, uint32_t id, const void * data, int size); + +__pinned_func +static inline int ipm_send(const struct device * ipmdev, int wait, uint32_t id, const void * data, int size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = ipmdev }; + union { uintptr_t x; int val; } parm1 = { .val = wait }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = id }; + union { uintptr_t x; const void * val; } parm3 = { .val = data }; + union { uintptr_t x; int val; } parm4 = { .val = size }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_IPM_SEND); + } +#endif + compiler_barrier(); + return z_impl_ipm_send(ipmdev, wait, id, data, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ipm_send(ipmdev, wait, id, data, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IPM_SEND, ipm_send, ipmdev, wait, id, data, size); syscall__retval = ipm_send(ipmdev, wait, id, data, size); sys_port_trace_syscall_exit(K_SYSCALL_IPM_SEND, ipm_send, ipmdev, wait, id, data, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ipm_max_data_size_get(const struct device * ipmdev); + +__pinned_func +static inline int ipm_max_data_size_get(const struct device * ipmdev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = ipmdev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_IPM_MAX_DATA_SIZE_GET); + } +#endif + compiler_barrier(); + return z_impl_ipm_max_data_size_get(ipmdev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ipm_max_data_size_get(ipmdev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IPM_MAX_DATA_SIZE_GET, ipm_max_data_size_get, ipmdev); syscall__retval = ipm_max_data_size_get(ipmdev); sys_port_trace_syscall_exit(K_SYSCALL_IPM_MAX_DATA_SIZE_GET, ipm_max_data_size_get, ipmdev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_ipm_max_id_val_get(const struct device * ipmdev); + +__pinned_func +static inline uint32_t ipm_max_id_val_get(const struct device * ipmdev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = ipmdev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_IPM_MAX_ID_VAL_GET); + } +#endif + compiler_barrier(); + return z_impl_ipm_max_id_val_get(ipmdev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ipm_max_id_val_get(ipmdev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IPM_MAX_ID_VAL_GET, ipm_max_id_val_get, ipmdev); syscall__retval = ipm_max_id_val_get(ipmdev); sys_port_trace_syscall_exit(K_SYSCALL_IPM_MAX_ID_VAL_GET, ipm_max_id_val_get, ipmdev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ipm_set_enabled(const struct device * ipmdev, int enable); + +__pinned_func +static inline int ipm_set_enabled(const struct device * ipmdev, int enable) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = ipmdev }; + union { uintptr_t x; int val; } parm1 = { .val = enable }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_IPM_SET_ENABLED); + } +#endif + compiler_barrier(); + return z_impl_ipm_set_enabled(ipmdev, enable); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ipm_set_enabled(ipmdev, enable) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IPM_SET_ENABLED, ipm_set_enabled, ipmdev, enable); syscall__retval = ipm_set_enabled(ipmdev, enable); sys_port_trace_syscall_exit(K_SYSCALL_IPM_SET_ENABLED, ipm_set_enabled, ipmdev, enable, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_ipm_complete(const struct device * ipmdev); + +__pinned_func +static inline void ipm_complete(const struct device * ipmdev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = ipmdev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_IPM_COMPLETE); + return; + } +#endif + compiler_barrier(); + z_impl_ipm_complete(ipmdev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ipm_complete(ipmdev) do { sys_port_trace_syscall_enter(K_SYSCALL_IPM_COMPLETE, ipm_complete, ipmdev); ipm_complete(ipmdev); sys_port_trace_syscall_exit(K_SYSCALL_IPM_COMPLETE, ipm_complete, ipmdev); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/ivshmem.h b/build/zephyr/include/generated/zephyr/syscalls/ivshmem.h new file mode 100644 index 0000000..d16fdd7 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/ivshmem.h @@ -0,0 +1,315 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_IVSHMEM_H +#define Z_INCLUDE_SYSCALLS_IVSHMEM_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern size_t z_impl_ivshmem_get_mem(const struct device * dev, uintptr_t * memmap); + +__pinned_func +static inline size_t ivshmem_get_mem(const struct device * dev, uintptr_t * memmap) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uintptr_t * val; } parm1 = { .val = memmap }; + return (size_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_IVSHMEM_GET_MEM); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_mem(dev, memmap); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_mem(dev, memmap) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_MEM, ivshmem_get_mem, dev, memmap); syscall__retval = ivshmem_get_mem(dev, memmap); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_MEM, ivshmem_get_mem, dev, memmap, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_ivshmem_get_id(const struct device * dev); + +__pinned_func +static inline uint32_t ivshmem_get_id(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_IVSHMEM_GET_ID); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_id(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_id(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_ID, ivshmem_get_id, dev); syscall__retval = ivshmem_get_id(dev); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_ID, ivshmem_get_id, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint16_t z_impl_ivshmem_get_vectors(const struct device * dev); + +__pinned_func +static inline uint16_t ivshmem_get_vectors(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint16_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_IVSHMEM_GET_VECTORS); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_vectors(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_vectors(dev) ({ uint16_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_VECTORS, ivshmem_get_vectors, dev); syscall__retval = ivshmem_get_vectors(dev); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_VECTORS, ivshmem_get_vectors, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ivshmem_int_peer(const struct device * dev, uint32_t peer_id, uint16_t vector); + +__pinned_func +static inline int ivshmem_int_peer(const struct device * dev, uint32_t peer_id, uint16_t vector) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = peer_id }; + union { uintptr_t x; uint16_t val; } parm2 = { .val = vector }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_IVSHMEM_INT_PEER); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_int_peer(dev, peer_id, vector); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_int_peer(dev, peer_id, vector) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_INT_PEER, ivshmem_int_peer, dev, peer_id, vector); syscall__retval = ivshmem_int_peer(dev, peer_id, vector); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_INT_PEER, ivshmem_int_peer, dev, peer_id, vector, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ivshmem_register_handler(const struct device * dev, struct k_poll_signal * signal, uint16_t vector); + +__pinned_func +static inline int ivshmem_register_handler(const struct device * dev, struct k_poll_signal * signal, uint16_t vector) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct k_poll_signal * val; } parm1 = { .val = signal }; + union { uintptr_t x; uint16_t val; } parm2 = { .val = vector }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_IVSHMEM_REGISTER_HANDLER); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_register_handler(dev, signal, vector); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_register_handler(dev, signal, vector) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_REGISTER_HANDLER, ivshmem_register_handler, dev, signal, vector); syscall__retval = ivshmem_register_handler(dev, signal, vector); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_REGISTER_HANDLER, ivshmem_register_handler, dev, signal, vector, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern size_t z_impl_ivshmem_get_rw_mem_section(const struct device * dev, uintptr_t * memmap); + +__pinned_func +static inline size_t ivshmem_get_rw_mem_section(const struct device * dev, uintptr_t * memmap) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uintptr_t * val; } parm1 = { .val = memmap }; + return (size_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_IVSHMEM_GET_RW_MEM_SECTION); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_rw_mem_section(dev, memmap); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_rw_mem_section(dev, memmap) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_RW_MEM_SECTION, ivshmem_get_rw_mem_section, dev, memmap); syscall__retval = ivshmem_get_rw_mem_section(dev, memmap); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_RW_MEM_SECTION, ivshmem_get_rw_mem_section, dev, memmap, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern size_t z_impl_ivshmem_get_output_mem_section(const struct device * dev, uint32_t peer_id, uintptr_t * memmap); + +__pinned_func +static inline size_t ivshmem_get_output_mem_section(const struct device * dev, uint32_t peer_id, uintptr_t * memmap) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = peer_id }; + union { uintptr_t x; uintptr_t * val; } parm2 = { .val = memmap }; + return (size_t) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_IVSHMEM_GET_OUTPUT_MEM_SECTION); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_output_mem_section(dev, peer_id, memmap); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_output_mem_section(dev, peer_id, memmap) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_OUTPUT_MEM_SECTION, ivshmem_get_output_mem_section, dev, peer_id, memmap); syscall__retval = ivshmem_get_output_mem_section(dev, peer_id, memmap); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_OUTPUT_MEM_SECTION, ivshmem_get_output_mem_section, dev, peer_id, memmap, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_ivshmem_get_state(const struct device * dev, uint32_t peer_id); + +__pinned_func +static inline uint32_t ivshmem_get_state(const struct device * dev, uint32_t peer_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = peer_id }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_IVSHMEM_GET_STATE); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_state(dev, peer_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_state(dev, peer_id) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_STATE, ivshmem_get_state, dev, peer_id); syscall__retval = ivshmem_get_state(dev, peer_id); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_STATE, ivshmem_get_state, dev, peer_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ivshmem_set_state(const struct device * dev, uint32_t state); + +__pinned_func +static inline int ivshmem_set_state(const struct device * dev, uint32_t state) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = state }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_IVSHMEM_SET_STATE); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_set_state(dev, state); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_set_state(dev, state) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_SET_STATE, ivshmem_set_state, dev, state); syscall__retval = ivshmem_set_state(dev, state); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_SET_STATE, ivshmem_set_state, dev, state, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_ivshmem_get_max_peers(const struct device * dev); + +__pinned_func +static inline uint32_t ivshmem_get_max_peers(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_IVSHMEM_GET_MAX_PEERS); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_max_peers(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_max_peers(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_MAX_PEERS, ivshmem_get_max_peers, dev); syscall__retval = ivshmem_get_max_peers(dev); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_MAX_PEERS, ivshmem_get_max_peers, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint16_t z_impl_ivshmem_get_protocol(const struct device * dev); + +__pinned_func +static inline uint16_t ivshmem_get_protocol(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint16_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_IVSHMEM_GET_PROTOCOL); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_get_protocol(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_get_protocol(dev) ({ uint16_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_GET_PROTOCOL, ivshmem_get_protocol, dev); syscall__retval = ivshmem_get_protocol(dev); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_GET_PROTOCOL, ivshmem_get_protocol, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ivshmem_enable_interrupts(const struct device * dev, bool enable); + +__pinned_func +static inline int ivshmem_enable_interrupts(const struct device * dev, bool enable) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bool val; } parm1 = { .val = enable }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_IVSHMEM_ENABLE_INTERRUPTS); + } +#endif + compiler_barrier(); + return z_impl_ivshmem_enable_interrupts(dev, enable); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ivshmem_enable_interrupts(dev, enable) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_IVSHMEM_ENABLE_INTERRUPTS, ivshmem_enable_interrupts, dev, enable); syscall__retval = ivshmem_enable_interrupts(dev, enable); sys_port_trace_syscall_exit(K_SYSCALL_IVSHMEM_ENABLE_INTERRUPTS, ivshmem_enable_interrupts, dev, enable, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/kernel.h b/build/zephyr/include/generated/zephyr/syscalls/kernel.h new file mode 100644 index 0000000..b5d73c4 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/kernel.h @@ -0,0 +1,1670 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_KERNEL_H +#define Z_INCLUDE_SYSCALLS_KERNEL_H + + + + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern k_thread_stack_t * z_impl_k_thread_stack_alloc(size_t size, int flags); + +__pinned_func +static inline k_thread_stack_t * k_thread_stack_alloc(size_t size, int flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; size_t val; } parm0 = { .val = size }; + union { uintptr_t x; int val; } parm1 = { .val = flags }; + return (k_thread_stack_t *) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_THREAD_STACK_ALLOC); + } +#endif + compiler_barrier(); + return z_impl_k_thread_stack_alloc(size, flags); +} + + +extern int z_impl_k_thread_stack_free(k_thread_stack_t * stack); + +__pinned_func +static inline int k_thread_stack_free(k_thread_stack_t * stack) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_thread_stack_t * val; } parm0 = { .val = stack }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_THREAD_STACK_FREE); + } +#endif + compiler_barrier(); + return z_impl_k_thread_stack_free(stack); +} + + +extern k_tid_t z_impl_k_thread_create(struct k_thread * new_thread, k_thread_stack_t * stack, size_t stack_size, k_thread_entry_t entry, void * p1, void * p2, void * p3, int prio, uint32_t options, k_timeout_t delay); + +__pinned_func +static inline k_tid_t k_thread_create(struct k_thread * new_thread, k_thread_stack_t * stack, size_t stack_size, k_thread_entry_t entry, void * p1, void * p2, void * p3, int prio, uint32_t options, k_timeout_t delay) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_thread * val; } parm0 = { .val = new_thread }; + union { uintptr_t x; k_thread_stack_t * val; } parm1 = { .val = stack }; + union { uintptr_t x; size_t val; } parm2 = { .val = stack_size }; + union { uintptr_t x; k_thread_entry_t val; } parm3 = { .val = entry }; + union { uintptr_t x; void * val; } parm4 = { .val = p1 }; + union { uintptr_t x; void * val; } parm5 = { .val = p2 }; + union { uintptr_t x; void * val; } parm6 = { .val = p3 }; + union { uintptr_t x; int val; } parm7 = { .val = prio }; + union { uintptr_t x; uint32_t val; } parm8 = { .val = options }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm9 = { .val = delay }; + uintptr_t more[] = { + parm5.x, + parm6.x, + parm7.x, + parm8.x, + parm9.split.lo, + parm9.split.hi + }; + return (k_tid_t) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, (uintptr_t) &more, K_SYSCALL_K_THREAD_CREATE); + } +#endif + compiler_barrier(); + return z_impl_k_thread_create(new_thread, stack, stack_size, entry, p1, p2, p3, prio, options, delay); +} + + +extern int z_impl_k_thread_stack_space_get(const struct k_thread * thread, size_t * unused_ptr); + +__pinned_func +static inline int k_thread_stack_space_get(const struct k_thread * thread, size_t * unused_ptr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct k_thread * val; } parm0 = { .val = thread }; + union { uintptr_t x; size_t * val; } parm1 = { .val = unused_ptr }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_THREAD_STACK_SPACE_GET); + } +#endif + compiler_barrier(); + return z_impl_k_thread_stack_space_get(thread, unused_ptr); +} + + +extern int z_impl_k_thread_runtime_stack_unused_threshold_pct_set(struct k_thread * thread, uint32_t pct); + +__pinned_func +static inline int k_thread_runtime_stack_unused_threshold_pct_set(struct k_thread * thread, uint32_t pct) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_thread * val; } parm0 = { .val = thread }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = pct }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_THREAD_RUNTIME_STACK_UNUSED_THRESHOLD_PCT_SET); + } +#endif + compiler_barrier(); + return z_impl_k_thread_runtime_stack_unused_threshold_pct_set(thread, pct); +} + + +extern int z_impl_k_thread_runtime_stack_unused_threshold_set(struct k_thread * thread, size_t threshold); + +__pinned_func +static inline int k_thread_runtime_stack_unused_threshold_set(struct k_thread * thread, size_t threshold) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_thread * val; } parm0 = { .val = thread }; + union { uintptr_t x; size_t val; } parm1 = { .val = threshold }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_THREAD_RUNTIME_STACK_UNUSED_THRESHOLD_SET); + } +#endif + compiler_barrier(); + return z_impl_k_thread_runtime_stack_unused_threshold_set(thread, threshold); +} + + +extern size_t z_impl_k_thread_runtime_stack_unused_threshold_get(struct k_thread * thread); + +__pinned_func +static inline size_t k_thread_runtime_stack_unused_threshold_get(struct k_thread * thread) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_thread * val; } parm0 = { .val = thread }; + return (size_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_THREAD_RUNTIME_STACK_UNUSED_THRESHOLD_GET); + } +#endif + compiler_barrier(); + return z_impl_k_thread_runtime_stack_unused_threshold_get(thread); +} + + +extern int z_impl_k_thread_join(struct k_thread * thread, k_timeout_t timeout); + +__pinned_func +static inline int k_thread_join(struct k_thread * thread, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_thread * val; } parm0 = { .val = thread }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = timeout }; + return (int) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_K_THREAD_JOIN); + } +#endif + compiler_barrier(); + return z_impl_k_thread_join(thread, timeout); +} + + +extern int32_t z_impl_k_sleep(k_timeout_t timeout); + +__pinned_func +static inline int32_t k_sleep(k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm0 = { .val = timeout }; + return (int32_t) arch_syscall_invoke2(parm0.split.lo, parm0.split.hi, K_SYSCALL_K_SLEEP); + } +#endif + compiler_barrier(); + return z_impl_k_sleep(timeout); +} + + +extern int32_t z_impl_k_usleep(int32_t us); + +__pinned_func +static inline int32_t k_usleep(int32_t us) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int32_t val; } parm0 = { .val = us }; + return (int32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_USLEEP); + } +#endif + compiler_barrier(); + return z_impl_k_usleep(us); +} + + +extern void z_impl_k_busy_wait(uint32_t usec_to_wait); + +__pinned_func +static inline void k_busy_wait(uint32_t usec_to_wait) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; uint32_t val; } parm0 = { .val = usec_to_wait }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_BUSY_WAIT); + return; + } +#endif + compiler_barrier(); + z_impl_k_busy_wait(usec_to_wait); +} + + +extern void z_impl_k_yield(void); + +__pinned_func +static inline void k_yield(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + (void) arch_syscall_invoke0(K_SYSCALL_K_YIELD); + return; + } +#endif + compiler_barrier(); + z_impl_k_yield(); +} + + +extern void z_impl_k_wakeup(k_tid_t thread); + +__pinned_func +static inline void k_wakeup(k_tid_t thread) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_WAKEUP); + return; + } +#endif + compiler_barrier(); + z_impl_k_wakeup(thread); +} + + +extern k_tid_t z_impl_k_sched_current_thread_query(void); + +__pinned_func +static inline k_tid_t k_sched_current_thread_query(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (k_tid_t) arch_syscall_invoke0(K_SYSCALL_K_SCHED_CURRENT_THREAD_QUERY); + } +#endif + compiler_barrier(); + return z_impl_k_sched_current_thread_query(); +} + + +extern void z_impl_k_thread_abort(k_tid_t thread); + +__pinned_func +static inline void k_thread_abort(k_tid_t thread) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_THREAD_ABORT); + return; + } +#endif + compiler_barrier(); + z_impl_k_thread_abort(thread); +} + + +extern k_ticks_t z_impl_k_thread_timeout_expires_ticks(const struct k_thread * thread); + +__pinned_func +static inline k_ticks_t k_thread_timeout_expires_ticks(const struct k_thread * thread) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct k_thread * val; } parm0 = { .val = thread }; + (void) arch_syscall_invoke2(parm0.x, (uintptr_t)&ret64, K_SYSCALL_K_THREAD_TIMEOUT_EXPIRES_TICKS); + return (k_ticks_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_k_thread_timeout_expires_ticks(thread); +} + + +extern k_ticks_t z_impl_k_thread_timeout_remaining_ticks(const struct k_thread * thread); + +__pinned_func +static inline k_ticks_t k_thread_timeout_remaining_ticks(const struct k_thread * thread) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct k_thread * val; } parm0 = { .val = thread }; + (void) arch_syscall_invoke2(parm0.x, (uintptr_t)&ret64, K_SYSCALL_K_THREAD_TIMEOUT_REMAINING_TICKS); + return (k_ticks_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_k_thread_timeout_remaining_ticks(thread); +} + + +extern int z_impl_k_thread_priority_get(k_tid_t thread); + +__pinned_func +static inline int k_thread_priority_get(k_tid_t thread) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_THREAD_PRIORITY_GET); + } +#endif + compiler_barrier(); + return z_impl_k_thread_priority_get(thread); +} + + +extern void z_impl_k_thread_priority_set(k_tid_t thread, int prio); + +__pinned_func +static inline void k_thread_priority_set(k_tid_t thread, int prio) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + union { uintptr_t x; int val; } parm1 = { .val = prio }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_THREAD_PRIORITY_SET); + return; + } +#endif + compiler_barrier(); + z_impl_k_thread_priority_set(thread, prio); +} + + +extern void z_impl_k_thread_deadline_set(k_tid_t thread, int deadline); + +__pinned_func +static inline void k_thread_deadline_set(k_tid_t thread, int deadline) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + union { uintptr_t x; int val; } parm1 = { .val = deadline }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_THREAD_DEADLINE_SET); + return; + } +#endif + compiler_barrier(); + z_impl_k_thread_deadline_set(thread, deadline); +} + + +extern void z_impl_k_thread_absolute_deadline_set(k_tid_t thread, int deadline); + +__pinned_func +static inline void k_thread_absolute_deadline_set(k_tid_t thread, int deadline) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + union { uintptr_t x; int val; } parm1 = { .val = deadline }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_THREAD_ABSOLUTE_DEADLINE_SET); + return; + } +#endif + compiler_barrier(); + z_impl_k_thread_absolute_deadline_set(thread, deadline); +} + + +extern void z_impl_k_reschedule(void); + +__pinned_func +static inline void k_reschedule(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + (void) arch_syscall_invoke0(K_SYSCALL_K_RESCHEDULE); + return; + } +#endif + compiler_barrier(); + z_impl_k_reschedule(); +} + + +extern void z_impl_k_thread_suspend(k_tid_t thread); + +__pinned_func +static inline void k_thread_suspend(k_tid_t thread) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_THREAD_SUSPEND); + return; + } +#endif + compiler_barrier(); + z_impl_k_thread_suspend(thread); +} + + +extern void z_impl_k_thread_resume(k_tid_t thread); + +__pinned_func +static inline void k_thread_resume(k_tid_t thread) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_THREAD_RESUME); + return; + } +#endif + compiler_barrier(); + z_impl_k_thread_resume(thread); +} + + +extern int z_impl_k_is_preempt_thread(void); + +__pinned_func +static inline int k_is_preempt_thread(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (int) arch_syscall_invoke0(K_SYSCALL_K_IS_PREEMPT_THREAD); + } +#endif + compiler_barrier(); + return z_impl_k_is_preempt_thread(); +} + + +extern void z_impl_k_thread_custom_data_set(void * value); + +__pinned_func +static inline void k_thread_custom_data_set(void * value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; void * val; } parm0 = { .val = value }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_THREAD_CUSTOM_DATA_SET); + return; + } +#endif + compiler_barrier(); + z_impl_k_thread_custom_data_set(value); +} + + +extern void * z_impl_k_thread_custom_data_get(void); + +__pinned_func +static inline void * k_thread_custom_data_get(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (void *) arch_syscall_invoke0(K_SYSCALL_K_THREAD_CUSTOM_DATA_GET); + } +#endif + compiler_barrier(); + return z_impl_k_thread_custom_data_get(); +} + + +extern int z_impl_k_thread_name_set(k_tid_t thread, const char * str); + +__pinned_func +static inline int k_thread_name_set(k_tid_t thread, const char * str) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + union { uintptr_t x; const char * val; } parm1 = { .val = str }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_THREAD_NAME_SET); + } +#endif + compiler_barrier(); + return z_impl_k_thread_name_set(thread, str); +} + + +extern int z_impl_k_thread_name_copy(k_tid_t thread, char * buf, size_t size); + +__pinned_func +static inline int k_thread_name_copy(k_tid_t thread, char * buf, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; k_tid_t val; } parm0 = { .val = thread }; + union { uintptr_t x; char * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = size }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_K_THREAD_NAME_COPY); + } +#endif + compiler_barrier(); + return z_impl_k_thread_name_copy(thread, buf, size); +} + + +extern void z_impl_k_timer_start(struct k_timer * timer, k_timeout_t duration, k_timeout_t period); + +__pinned_func +static inline void k_timer_start(struct k_timer * timer, k_timeout_t duration, k_timeout_t period) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_timer * val; } parm0 = { .val = timer }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = duration }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = period }; + (void) arch_syscall_invoke5(parm0.x, parm1.split.lo, parm1.split.hi, parm2.split.lo, parm2.split.hi, K_SYSCALL_K_TIMER_START); + return; + } +#endif + compiler_barrier(); + z_impl_k_timer_start(timer, duration, period); +} + + +extern void z_impl_k_timer_stop(struct k_timer * timer); + +__pinned_func +static inline void k_timer_stop(struct k_timer * timer) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_timer * val; } parm0 = { .val = timer }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_TIMER_STOP); + return; + } +#endif + compiler_barrier(); + z_impl_k_timer_stop(timer); +} + + +extern uint32_t z_impl_k_timer_status_get(struct k_timer * timer); + +__pinned_func +static inline uint32_t k_timer_status_get(struct k_timer * timer) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_timer * val; } parm0 = { .val = timer }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_TIMER_STATUS_GET); + } +#endif + compiler_barrier(); + return z_impl_k_timer_status_get(timer); +} + + +extern uint32_t z_impl_k_timer_status_sync(struct k_timer * timer); + +__pinned_func +static inline uint32_t k_timer_status_sync(struct k_timer * timer) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_timer * val; } parm0 = { .val = timer }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_TIMER_STATUS_SYNC); + } +#endif + compiler_barrier(); + return z_impl_k_timer_status_sync(timer); +} + + +extern k_ticks_t z_impl_k_timer_expires_ticks(const struct k_timer * timer); + +__pinned_func +static inline k_ticks_t k_timer_expires_ticks(const struct k_timer * timer) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct k_timer * val; } parm0 = { .val = timer }; + (void) arch_syscall_invoke2(parm0.x, (uintptr_t)&ret64, K_SYSCALL_K_TIMER_EXPIRES_TICKS); + return (k_ticks_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_k_timer_expires_ticks(timer); +} + + +extern k_ticks_t z_impl_k_timer_remaining_ticks(const struct k_timer * timer); + +__pinned_func +static inline k_ticks_t k_timer_remaining_ticks(const struct k_timer * timer) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + union { uintptr_t x; const struct k_timer * val; } parm0 = { .val = timer }; + (void) arch_syscall_invoke2(parm0.x, (uintptr_t)&ret64, K_SYSCALL_K_TIMER_REMAINING_TICKS); + return (k_ticks_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_k_timer_remaining_ticks(timer); +} + + +extern void z_impl_k_timer_user_data_set(struct k_timer * timer, void * user_data); + +__pinned_func +static inline void k_timer_user_data_set(struct k_timer * timer, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_timer * val; } parm0 = { .val = timer }; + union { uintptr_t x; void * val; } parm1 = { .val = user_data }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_TIMER_USER_DATA_SET); + return; + } +#endif + compiler_barrier(); + z_impl_k_timer_user_data_set(timer, user_data); +} + + +extern void * z_impl_k_timer_user_data_get(const struct k_timer * timer); + +__pinned_func +static inline void * k_timer_user_data_get(const struct k_timer * timer) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct k_timer * val; } parm0 = { .val = timer }; + return (void *) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_TIMER_USER_DATA_GET); + } +#endif + compiler_barrier(); + return z_impl_k_timer_user_data_get(timer); +} + + +extern int64_t z_impl_k_uptime_ticks(void); + +__pinned_func +static inline int64_t k_uptime_ticks(void) +{ +#ifdef CONFIG_USERSPACE + uint64_t ret64; + if (z_syscall_trap()) { + (void) arch_syscall_invoke1((uintptr_t)&ret64, K_SYSCALL_K_UPTIME_TICKS); + return (int64_t) ret64; + } +#endif + compiler_barrier(); + return z_impl_k_uptime_ticks(); +} + + +extern void z_impl_k_queue_init(struct k_queue * queue); + +__pinned_func +static inline void k_queue_init(struct k_queue * queue) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_QUEUE_INIT); + return; + } +#endif + compiler_barrier(); + z_impl_k_queue_init(queue); +} + + +extern void z_impl_k_queue_cancel_wait(struct k_queue * queue); + +__pinned_func +static inline void k_queue_cancel_wait(struct k_queue * queue) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_QUEUE_CANCEL_WAIT); + return; + } +#endif + compiler_barrier(); + z_impl_k_queue_cancel_wait(queue); +} + + +extern int32_t z_impl_k_queue_alloc_append(struct k_queue * queue, void * data); + +__pinned_func +static inline int32_t k_queue_alloc_append(struct k_queue * queue, void * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + union { uintptr_t x; void * val; } parm1 = { .val = data }; + return (int32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_QUEUE_ALLOC_APPEND); + } +#endif + compiler_barrier(); + return z_impl_k_queue_alloc_append(queue, data); +} + + +extern int32_t z_impl_k_queue_alloc_prepend(struct k_queue * queue, void * data); + +__pinned_func +static inline int32_t k_queue_alloc_prepend(struct k_queue * queue, void * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + union { uintptr_t x; void * val; } parm1 = { .val = data }; + return (int32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_QUEUE_ALLOC_PREPEND); + } +#endif + compiler_barrier(); + return z_impl_k_queue_alloc_prepend(queue, data); +} + + +extern void * z_impl_k_queue_get(struct k_queue * queue, k_timeout_t timeout); + +__pinned_func +static inline void * k_queue_get(struct k_queue * queue, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = timeout }; + return (void *) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_K_QUEUE_GET); + } +#endif + compiler_barrier(); + return z_impl_k_queue_get(queue, timeout); +} + + +extern int z_impl_k_queue_is_empty(struct k_queue * queue); + +__pinned_func +static inline int k_queue_is_empty(struct k_queue * queue) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_QUEUE_IS_EMPTY); + } +#endif + compiler_barrier(); + return z_impl_k_queue_is_empty(queue); +} + + +extern void * z_impl_k_queue_peek_head(struct k_queue * queue); + +__pinned_func +static inline void * k_queue_peek_head(struct k_queue * queue) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + return (void *) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_QUEUE_PEEK_HEAD); + } +#endif + compiler_barrier(); + return z_impl_k_queue_peek_head(queue); +} + + +extern void * z_impl_k_queue_peek_tail(struct k_queue * queue); + +__pinned_func +static inline void * k_queue_peek_tail(struct k_queue * queue) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_queue * val; } parm0 = { .val = queue }; + return (void *) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_QUEUE_PEEK_TAIL); + } +#endif + compiler_barrier(); + return z_impl_k_queue_peek_tail(queue); +} + + +extern int z_impl_k_futex_wait(struct k_futex * futex, int expected, k_timeout_t timeout); + +__pinned_func +static inline int k_futex_wait(struct k_futex * futex, int expected, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_futex * val; } parm0 = { .val = futex }; + union { uintptr_t x; int val; } parm1 = { .val = expected }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, K_SYSCALL_K_FUTEX_WAIT); + } +#endif + compiler_barrier(); + return z_impl_k_futex_wait(futex, expected, timeout); +} + + +extern int z_impl_k_futex_wake(struct k_futex * futex, bool wake_all); + +__pinned_func +static inline int k_futex_wake(struct k_futex * futex, bool wake_all) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_futex * val; } parm0 = { .val = futex }; + union { uintptr_t x; bool val; } parm1 = { .val = wake_all }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_FUTEX_WAKE); + } +#endif + compiler_barrier(); + return z_impl_k_futex_wake(futex, wake_all); +} + + +extern void z_impl_k_event_init(struct k_event * event); + +__pinned_func +static inline void k_event_init(struct k_event * event) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_EVENT_INIT); + return; + } +#endif + compiler_barrier(); + z_impl_k_event_init(event); +} + + +extern uint32_t z_impl_k_event_post(struct k_event * event, uint32_t events); + +__pinned_func +static inline uint32_t k_event_post(struct k_event * event, uint32_t events) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = events }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_EVENT_POST); + } +#endif + compiler_barrier(); + return z_impl_k_event_post(event, events); +} + + +extern uint32_t z_impl_k_event_set(struct k_event * event, uint32_t events); + +__pinned_func +static inline uint32_t k_event_set(struct k_event * event, uint32_t events) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = events }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_EVENT_SET); + } +#endif + compiler_barrier(); + return z_impl_k_event_set(event, events); +} + + +extern uint32_t z_impl_k_event_set_masked(struct k_event * event, uint32_t events, uint32_t events_mask); + +__pinned_func +static inline uint32_t k_event_set_masked(struct k_event * event, uint32_t events, uint32_t events_mask) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = events }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = events_mask }; + return (uint32_t) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_K_EVENT_SET_MASKED); + } +#endif + compiler_barrier(); + return z_impl_k_event_set_masked(event, events, events_mask); +} + + +extern uint32_t z_impl_k_event_clear(struct k_event * event, uint32_t events); + +__pinned_func +static inline uint32_t k_event_clear(struct k_event * event, uint32_t events) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = events }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_EVENT_CLEAR); + } +#endif + compiler_barrier(); + return z_impl_k_event_clear(event, events); +} + + +extern uint32_t z_impl_k_event_wait(struct k_event * event, uint32_t events, bool reset, k_timeout_t timeout); + +__pinned_func +static inline uint32_t k_event_wait(struct k_event * event, uint32_t events, bool reset, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = events }; + union { uintptr_t x; bool val; } parm2 = { .val = reset }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm3 = { .val = timeout }; + return (uint32_t) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.split.lo, parm3.split.hi, K_SYSCALL_K_EVENT_WAIT); + } +#endif + compiler_barrier(); + return z_impl_k_event_wait(event, events, reset, timeout); +} + + +extern uint32_t z_impl_k_event_wait_all(struct k_event * event, uint32_t events, bool reset, k_timeout_t timeout); + +__pinned_func +static inline uint32_t k_event_wait_all(struct k_event * event, uint32_t events, bool reset, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = events }; + union { uintptr_t x; bool val; } parm2 = { .val = reset }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm3 = { .val = timeout }; + return (uint32_t) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.split.lo, parm3.split.hi, K_SYSCALL_K_EVENT_WAIT_ALL); + } +#endif + compiler_barrier(); + return z_impl_k_event_wait_all(event, events, reset, timeout); +} + + +extern uint32_t z_impl_k_event_wait_safe(struct k_event * event, uint32_t events, bool reset, k_timeout_t timeout); + +__pinned_func +static inline uint32_t k_event_wait_safe(struct k_event * event, uint32_t events, bool reset, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = events }; + union { uintptr_t x; bool val; } parm2 = { .val = reset }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm3 = { .val = timeout }; + return (uint32_t) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.split.lo, parm3.split.hi, K_SYSCALL_K_EVENT_WAIT_SAFE); + } +#endif + compiler_barrier(); + return z_impl_k_event_wait_safe(event, events, reset, timeout); +} + + +extern uint32_t z_impl_k_event_wait_all_safe(struct k_event * event, uint32_t events, bool reset, k_timeout_t timeout); + +__pinned_func +static inline uint32_t k_event_wait_all_safe(struct k_event * event, uint32_t events, bool reset, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_event * val; } parm0 = { .val = event }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = events }; + union { uintptr_t x; bool val; } parm2 = { .val = reset }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm3 = { .val = timeout }; + return (uint32_t) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.split.lo, parm3.split.hi, K_SYSCALL_K_EVENT_WAIT_ALL_SAFE); + } +#endif + compiler_barrier(); + return z_impl_k_event_wait_all_safe(event, events, reset, timeout); +} + + +extern int32_t z_impl_k_stack_alloc_init(struct k_stack * stack, uint32_t num_entries); + +__pinned_func +static inline int32_t k_stack_alloc_init(struct k_stack * stack, uint32_t num_entries) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_stack * val; } parm0 = { .val = stack }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = num_entries }; + return (int32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_STACK_ALLOC_INIT); + } +#endif + compiler_barrier(); + return z_impl_k_stack_alloc_init(stack, num_entries); +} + + +extern int z_impl_k_stack_push(struct k_stack * stack, stack_data_t data); + +__pinned_func +static inline int k_stack_push(struct k_stack * stack, stack_data_t data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_stack * val; } parm0 = { .val = stack }; + union { uintptr_t x; stack_data_t val; } parm1 = { .val = data }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_STACK_PUSH); + } +#endif + compiler_barrier(); + return z_impl_k_stack_push(stack, data); +} + + +extern int z_impl_k_stack_pop(struct k_stack * stack, stack_data_t * data, k_timeout_t timeout); + +__pinned_func +static inline int k_stack_pop(struct k_stack * stack, stack_data_t * data, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_stack * val; } parm0 = { .val = stack }; + union { uintptr_t x; stack_data_t * val; } parm1 = { .val = data }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, K_SYSCALL_K_STACK_POP); + } +#endif + compiler_barrier(); + return z_impl_k_stack_pop(stack, data, timeout); +} + + +extern int z_impl_k_mutex_init(struct k_mutex * mutex); + +__pinned_func +static inline int k_mutex_init(struct k_mutex * mutex) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_mutex * val; } parm0 = { .val = mutex }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MUTEX_INIT); + } +#endif + compiler_barrier(); + return z_impl_k_mutex_init(mutex); +} + + +extern int z_impl_k_mutex_lock(struct k_mutex * mutex, k_timeout_t timeout); + +__pinned_func +static inline int k_mutex_lock(struct k_mutex * mutex, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_mutex * val; } parm0 = { .val = mutex }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = timeout }; + return (int) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_K_MUTEX_LOCK); + } +#endif + compiler_barrier(); + return z_impl_k_mutex_lock(mutex, timeout); +} + + +extern int z_impl_k_mutex_unlock(struct k_mutex * mutex); + +__pinned_func +static inline int k_mutex_unlock(struct k_mutex * mutex) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_mutex * val; } parm0 = { .val = mutex }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MUTEX_UNLOCK); + } +#endif + compiler_barrier(); + return z_impl_k_mutex_unlock(mutex); +} + + +extern int z_impl_k_condvar_init(struct k_condvar * condvar); + +__pinned_func +static inline int k_condvar_init(struct k_condvar * condvar) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_condvar * val; } parm0 = { .val = condvar }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_CONDVAR_INIT); + } +#endif + compiler_barrier(); + return z_impl_k_condvar_init(condvar); +} + + +extern int z_impl_k_condvar_signal(struct k_condvar * condvar); + +__pinned_func +static inline int k_condvar_signal(struct k_condvar * condvar) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_condvar * val; } parm0 = { .val = condvar }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_CONDVAR_SIGNAL); + } +#endif + compiler_barrier(); + return z_impl_k_condvar_signal(condvar); +} + + +extern int z_impl_k_condvar_broadcast(struct k_condvar * condvar); + +__pinned_func +static inline int k_condvar_broadcast(struct k_condvar * condvar) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_condvar * val; } parm0 = { .val = condvar }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_CONDVAR_BROADCAST); + } +#endif + compiler_barrier(); + return z_impl_k_condvar_broadcast(condvar); +} + + +extern int z_impl_k_condvar_wait(struct k_condvar * condvar, struct k_mutex * mutex, k_timeout_t timeout); + +__pinned_func +static inline int k_condvar_wait(struct k_condvar * condvar, struct k_mutex * mutex, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_condvar * val; } parm0 = { .val = condvar }; + union { uintptr_t x; struct k_mutex * val; } parm1 = { .val = mutex }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, K_SYSCALL_K_CONDVAR_WAIT); + } +#endif + compiler_barrier(); + return z_impl_k_condvar_wait(condvar, mutex, timeout); +} + + +extern int z_impl_k_sem_init(struct k_sem * sem, unsigned int initial_count, unsigned int limit); + +__pinned_func +static inline int k_sem_init(struct k_sem * sem, unsigned int initial_count, unsigned int limit) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_sem * val; } parm0 = { .val = sem }; + union { uintptr_t x; unsigned int val; } parm1 = { .val = initial_count }; + union { uintptr_t x; unsigned int val; } parm2 = { .val = limit }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_K_SEM_INIT); + } +#endif + compiler_barrier(); + return z_impl_k_sem_init(sem, initial_count, limit); +} + + +extern int z_impl_k_sem_take(struct k_sem * sem, k_timeout_t timeout); + +__pinned_func +static inline int k_sem_take(struct k_sem * sem, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_sem * val; } parm0 = { .val = sem }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = timeout }; + return (int) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_K_SEM_TAKE); + } +#endif + compiler_barrier(); + return z_impl_k_sem_take(sem, timeout); +} + + +extern void z_impl_k_sem_give(struct k_sem * sem); + +__pinned_func +static inline void k_sem_give(struct k_sem * sem) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_sem * val; } parm0 = { .val = sem }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_SEM_GIVE); + return; + } +#endif + compiler_barrier(); + z_impl_k_sem_give(sem); +} + + +extern void z_impl_k_sem_reset(struct k_sem * sem); + +__pinned_func +static inline void k_sem_reset(struct k_sem * sem) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_sem * val; } parm0 = { .val = sem }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_SEM_RESET); + return; + } +#endif + compiler_barrier(); + z_impl_k_sem_reset(sem); +} + + +extern unsigned int z_impl_k_sem_count_get(struct k_sem * sem); + +__pinned_func +static inline unsigned int k_sem_count_get(struct k_sem * sem) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_sem * val; } parm0 = { .val = sem }; + return (unsigned int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_SEM_COUNT_GET); + } +#endif + compiler_barrier(); + return z_impl_k_sem_count_get(sem); +} + + +extern int z_impl_k_msgq_alloc_init(struct k_msgq * msgq, size_t msg_size, uint32_t max_msgs); + +__pinned_func +static inline int k_msgq_alloc_init(struct k_msgq * msgq, size_t msg_size, uint32_t max_msgs) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + union { uintptr_t x; size_t val; } parm1 = { .val = msg_size }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = max_msgs }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_K_MSGQ_ALLOC_INIT); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_alloc_init(msgq, msg_size, max_msgs); +} + + +extern int z_impl_k_msgq_put(struct k_msgq * msgq, const void * data, k_timeout_t timeout); + +__pinned_func +static inline int k_msgq_put(struct k_msgq * msgq, const void * data, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + union { uintptr_t x; const void * val; } parm1 = { .val = data }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, K_SYSCALL_K_MSGQ_PUT); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_put(msgq, data, timeout); +} + + +extern int z_impl_k_msgq_put_front(struct k_msgq * msgq, const void * data); + +__pinned_func +static inline int k_msgq_put_front(struct k_msgq * msgq, const void * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + union { uintptr_t x; const void * val; } parm1 = { .val = data }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_MSGQ_PUT_FRONT); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_put_front(msgq, data); +} + + +extern int z_impl_k_msgq_get(struct k_msgq * msgq, void * data, k_timeout_t timeout); + +__pinned_func +static inline int k_msgq_get(struct k_msgq * msgq, void * data, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + union { uintptr_t x; void * val; } parm1 = { .val = data }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, K_SYSCALL_K_MSGQ_GET); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_get(msgq, data, timeout); +} + + +extern int z_impl_k_msgq_peek(struct k_msgq * msgq, void * data); + +__pinned_func +static inline int k_msgq_peek(struct k_msgq * msgq, void * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + union { uintptr_t x; void * val; } parm1 = { .val = data }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_MSGQ_PEEK); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_peek(msgq, data); +} + + +extern int z_impl_k_msgq_peek_at(struct k_msgq * msgq, void * data, uint32_t idx); + +__pinned_func +static inline int k_msgq_peek_at(struct k_msgq * msgq, void * data, uint32_t idx) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + union { uintptr_t x; void * val; } parm1 = { .val = data }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = idx }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_K_MSGQ_PEEK_AT); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_peek_at(msgq, data, idx); +} + + +extern void z_impl_k_msgq_purge(struct k_msgq * msgq); + +__pinned_func +static inline void k_msgq_purge(struct k_msgq * msgq) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MSGQ_PURGE); + return; + } +#endif + compiler_barrier(); + z_impl_k_msgq_purge(msgq); +} + + +extern uint32_t z_impl_k_msgq_num_free_get(struct k_msgq * msgq); + +__pinned_func +static inline uint32_t k_msgq_num_free_get(struct k_msgq * msgq) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MSGQ_NUM_FREE_GET); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_num_free_get(msgq); +} + + +extern void z_impl_k_msgq_get_attrs(struct k_msgq * msgq, struct k_msgq_attrs * attrs); + +__pinned_func +static inline void k_msgq_get_attrs(struct k_msgq * msgq, struct k_msgq_attrs * attrs) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + union { uintptr_t x; struct k_msgq_attrs * val; } parm1 = { .val = attrs }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_MSGQ_GET_ATTRS); + return; + } +#endif + compiler_barrier(); + z_impl_k_msgq_get_attrs(msgq, attrs); +} + + +extern uint32_t z_impl_k_msgq_num_used_get(struct k_msgq * msgq); + +__pinned_func +static inline uint32_t k_msgq_num_used_get(struct k_msgq * msgq) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_msgq * val; } parm0 = { .val = msgq }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_MSGQ_NUM_USED_GET); + } +#endif + compiler_barrier(); + return z_impl_k_msgq_num_used_get(msgq); +} + + +extern void z_impl_k_pipe_init(struct k_pipe * pipe, uint8_t * buffer, size_t buffer_size); + +__pinned_func +static inline void k_pipe_init(struct k_pipe * pipe, uint8_t * buffer, size_t buffer_size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_pipe * val; } parm0 = { .val = pipe }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = buffer }; + union { uintptr_t x; size_t val; } parm2 = { .val = buffer_size }; + (void) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_K_PIPE_INIT); + return; + } +#endif + compiler_barrier(); + z_impl_k_pipe_init(pipe, buffer, buffer_size); +} + + +extern int z_impl_k_pipe_write(struct k_pipe * pipe, const uint8_t * data, size_t len, k_timeout_t timeout); + +__pinned_func +static inline int k_pipe_write(struct k_pipe * pipe, const uint8_t * data, size_t len, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_pipe * val; } parm0 = { .val = pipe }; + union { uintptr_t x; const uint8_t * val; } parm1 = { .val = data }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm3 = { .val = timeout }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.split.lo, parm3.split.hi, K_SYSCALL_K_PIPE_WRITE); + } +#endif + compiler_barrier(); + return z_impl_k_pipe_write(pipe, data, len, timeout); +} + + +extern int z_impl_k_pipe_read(struct k_pipe * pipe, uint8_t * data, size_t len, k_timeout_t timeout); + +__pinned_func +static inline int k_pipe_read(struct k_pipe * pipe, uint8_t * data, size_t len, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_pipe * val; } parm0 = { .val = pipe }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = data }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm3 = { .val = timeout }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.split.lo, parm3.split.hi, K_SYSCALL_K_PIPE_READ); + } +#endif + compiler_barrier(); + return z_impl_k_pipe_read(pipe, data, len, timeout); +} + + +extern void z_impl_k_pipe_reset(struct k_pipe * pipe); + +__pinned_func +static inline void k_pipe_reset(struct k_pipe * pipe) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_pipe * val; } parm0 = { .val = pipe }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_PIPE_RESET); + return; + } +#endif + compiler_barrier(); + z_impl_k_pipe_reset(pipe); +} + + +extern void z_impl_k_pipe_close(struct k_pipe * pipe); + +__pinned_func +static inline void k_pipe_close(struct k_pipe * pipe) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_pipe * val; } parm0 = { .val = pipe }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_PIPE_CLOSE); + return; + } +#endif + compiler_barrier(); + z_impl_k_pipe_close(pipe); +} + + +extern int z_impl_k_poll(struct k_poll_event * events, int num_events, k_timeout_t timeout); + +__pinned_func +static inline int k_poll(struct k_poll_event * events, int num_events, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_poll_event * val; } parm0 = { .val = events }; + union { uintptr_t x; int val; } parm1 = { .val = num_events }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm2 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, K_SYSCALL_K_POLL); + } +#endif + compiler_barrier(); + return z_impl_k_poll(events, num_events, timeout); +} + + +extern void z_impl_k_poll_signal_init(struct k_poll_signal * sig); + +__pinned_func +static inline void k_poll_signal_init(struct k_poll_signal * sig) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_poll_signal * val; } parm0 = { .val = sig }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_POLL_SIGNAL_INIT); + return; + } +#endif + compiler_barrier(); + z_impl_k_poll_signal_init(sig); +} + + +extern void z_impl_k_poll_signal_reset(struct k_poll_signal * sig); + +__pinned_func +static inline void k_poll_signal_reset(struct k_poll_signal * sig) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_poll_signal * val; } parm0 = { .val = sig }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_POLL_SIGNAL_RESET); + return; + } +#endif + compiler_barrier(); + z_impl_k_poll_signal_reset(sig); +} + + +extern void z_impl_k_poll_signal_check(struct k_poll_signal * sig, unsigned int * signaled, int * result); + +__pinned_func +static inline void k_poll_signal_check(struct k_poll_signal * sig, unsigned int * signaled, int * result) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_poll_signal * val; } parm0 = { .val = sig }; + union { uintptr_t x; unsigned int * val; } parm1 = { .val = signaled }; + union { uintptr_t x; int * val; } parm2 = { .val = result }; + (void) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_K_POLL_SIGNAL_CHECK); + return; + } +#endif + compiler_barrier(); + z_impl_k_poll_signal_check(sig, signaled, result); +} + + +extern int z_impl_k_poll_signal_raise(struct k_poll_signal * sig, int result); + +__pinned_func +static inline int k_poll_signal_raise(struct k_poll_signal * sig, int result) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_poll_signal * val; } parm0 = { .val = sig }; + union { uintptr_t x; int val; } parm1 = { .val = result }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_POLL_SIGNAL_RAISE); + } +#endif + compiler_barrier(); + return z_impl_k_poll_signal_raise(sig, result); +} + + +extern void z_impl_k_str_out(char * c, size_t n); + +__pinned_func +static inline void k_str_out(char * c, size_t n) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; char * val; } parm0 = { .val = c }; + union { uintptr_t x; size_t val; } parm1 = { .val = n }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_STR_OUT); + return; + } +#endif + compiler_barrier(); + z_impl_k_str_out(c, n); +} + + +extern int z_impl_k_float_disable(struct k_thread * thread); + +__pinned_func +static inline int k_float_disable(struct k_thread * thread) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_thread * val; } parm0 = { .val = thread }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_FLOAT_DISABLE); + } +#endif + compiler_barrier(); + return z_impl_k_float_disable(thread); +} + + +extern int z_impl_k_float_enable(struct k_thread * thread, unsigned int options); + +__pinned_func +static inline int k_float_enable(struct k_thread * thread, unsigned int options) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct k_thread * val; } parm0 = { .val = thread }; + union { uintptr_t x; unsigned int val; } parm1 = { .val = options }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_FLOAT_ENABLE); + } +#endif + compiler_barrier(); + return z_impl_k_float_enable(thread, options); +} + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/kobject.h b/build/zephyr/include/generated/zephyr/syscalls/kobject.h new file mode 100644 index 0000000..b571b4d --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/kobject.h @@ -0,0 +1,147 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_KOBJECT_H +#define Z_INCLUDE_SYSCALLS_KOBJECT_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_k_object_access_grant(const void * object, struct k_thread * thread); + +__pinned_func +static inline void k_object_access_grant(const void * object, struct k_thread * thread) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void * val; } parm0 = { .val = object }; + union { uintptr_t x; struct k_thread * val; } parm1 = { .val = thread }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_OBJECT_ACCESS_GRANT); + return; + } +#endif + compiler_barrier(); + z_impl_k_object_access_grant(object, thread); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_object_access_grant(object, thread) do { sys_port_trace_syscall_enter(K_SYSCALL_K_OBJECT_ACCESS_GRANT, k_object_access_grant, object, thread); k_object_access_grant(object, thread); sys_port_trace_syscall_exit(K_SYSCALL_K_OBJECT_ACCESS_GRANT, k_object_access_grant, object, thread); } while(false) +#endif +#endif + + +extern void z_impl_k_object_release(const void * object); + +__pinned_func +static inline void k_object_release(const void * object) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void * val; } parm0 = { .val = object }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_OBJECT_RELEASE); + return; + } +#endif + compiler_barrier(); + z_impl_k_object_release(object); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_object_release(object) do { sys_port_trace_syscall_enter(K_SYSCALL_K_OBJECT_RELEASE, k_object_release, object); k_object_release(object); sys_port_trace_syscall_exit(K_SYSCALL_K_OBJECT_RELEASE, k_object_release, object); } while(false) +#endif +#endif + + +extern int z_impl_k_object_access_check(const void * object); + +__pinned_func +static inline int k_object_access_check(const void * object) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void * val; } parm0 = { .val = object }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_OBJECT_ACCESS_CHECK); + } +#endif + compiler_barrier(); + return z_impl_k_object_access_check(object); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_object_access_check(object) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_K_OBJECT_ACCESS_CHECK, k_object_access_check, object); syscall__retval = k_object_access_check(object); sys_port_trace_syscall_exit(K_SYSCALL_K_OBJECT_ACCESS_CHECK, k_object_access_check, object, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void * z_impl_k_object_alloc(enum k_objects otype); + +__pinned_func +static inline void * k_object_alloc(enum k_objects otype) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; enum k_objects val; } parm0 = { .val = otype }; + return (void *) arch_syscall_invoke1(parm0.x, K_SYSCALL_K_OBJECT_ALLOC); + } +#endif + compiler_barrier(); + return z_impl_k_object_alloc(otype); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_object_alloc(otype) ({ void * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_K_OBJECT_ALLOC, k_object_alloc, otype); syscall__retval = k_object_alloc(otype); sys_port_trace_syscall_exit(K_SYSCALL_K_OBJECT_ALLOC, k_object_alloc, otype, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void * z_impl_k_object_alloc_size(enum k_objects otype, size_t size); + +__pinned_func +static inline void * k_object_alloc_size(enum k_objects otype, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; enum k_objects val; } parm0 = { .val = otype }; + union { uintptr_t x; size_t val; } parm1 = { .val = size }; + return (void *) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_K_OBJECT_ALLOC_SIZE); + } +#endif + compiler_barrier(); + return z_impl_k_object_alloc_size(otype, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define k_object_alloc_size(otype, size) ({ void * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_K_OBJECT_ALLOC_SIZE, k_object_alloc_size, otype, size); syscall__retval = k_object_alloc_size(otype, size); sys_port_trace_syscall_exit(K_SYSCALL_K_OBJECT_ALLOC_SIZE, k_object_alloc_size, otype, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/led.h b/build/zephyr/include/generated/zephyr/syscalls/led.h new file mode 100644 index 0000000..ab2d074 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/led.h @@ -0,0 +1,229 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_LED_H +#define Z_INCLUDE_SYSCALLS_LED_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_led_blink(const struct device * dev, uint32_t led, uint32_t delay_on, uint32_t delay_off); + +__pinned_func +static inline int led_blink(const struct device * dev, uint32_t led, uint32_t delay_on, uint32_t delay_off) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = led }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = delay_on }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = delay_off }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_LED_BLINK); + } +#endif + compiler_barrier(); + return z_impl_led_blink(dev, led, delay_on, delay_off); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_blink(dev, led, delay_on, delay_off) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_BLINK, led_blink, dev, led, delay_on, delay_off); syscall__retval = led_blink(dev, led, delay_on, delay_off); sys_port_trace_syscall_exit(K_SYSCALL_LED_BLINK, led_blink, dev, led, delay_on, delay_off, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_led_get_info(const struct device * dev, uint32_t led, const struct led_info ** info); + +__pinned_func +static inline int led_get_info(const struct device * dev, uint32_t led, const struct led_info ** info) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = led }; + union { uintptr_t x; const struct led_info ** val; } parm2 = { .val = info }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_LED_GET_INFO); + } +#endif + compiler_barrier(); + return z_impl_led_get_info(dev, led, info); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_get_info(dev, led, info) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_GET_INFO, led_get_info, dev, led, info); syscall__retval = led_get_info(dev, led, info); sys_port_trace_syscall_exit(K_SYSCALL_LED_GET_INFO, led_get_info, dev, led, info, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_led_set_brightness(const struct device * dev, uint32_t led, uint8_t value); + +__pinned_func +static inline int led_set_brightness(const struct device * dev, uint32_t led, uint8_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = led }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = value }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_LED_SET_BRIGHTNESS); + } +#endif + compiler_barrier(); + return z_impl_led_set_brightness(dev, led, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_set_brightness(dev, led, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_SET_BRIGHTNESS, led_set_brightness, dev, led, value); syscall__retval = led_set_brightness(dev, led, value); sys_port_trace_syscall_exit(K_SYSCALL_LED_SET_BRIGHTNESS, led_set_brightness, dev, led, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_led_write_channels(const struct device * dev, uint32_t start_channel, uint32_t num_channels, const uint8_t * buf); + +__pinned_func +static inline int led_write_channels(const struct device * dev, uint32_t start_channel, uint32_t num_channels, const uint8_t * buf) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = start_channel }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = num_channels }; + union { uintptr_t x; const uint8_t * val; } parm3 = { .val = buf }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_LED_WRITE_CHANNELS); + } +#endif + compiler_barrier(); + return z_impl_led_write_channels(dev, start_channel, num_channels, buf); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_write_channels(dev, start_channel, num_channels, buf) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_WRITE_CHANNELS, led_write_channels, dev, start_channel, num_channels, buf); syscall__retval = led_write_channels(dev, start_channel, num_channels, buf); sys_port_trace_syscall_exit(K_SYSCALL_LED_WRITE_CHANNELS, led_write_channels, dev, start_channel, num_channels, buf, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_led_set_channel(const struct device * dev, uint32_t channel, uint8_t value); + +__pinned_func +static inline int led_set_channel(const struct device * dev, uint32_t channel, uint8_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = value }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_LED_SET_CHANNEL); + } +#endif + compiler_barrier(); + return z_impl_led_set_channel(dev, channel, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_set_channel(dev, channel, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_SET_CHANNEL, led_set_channel, dev, channel, value); syscall__retval = led_set_channel(dev, channel, value); sys_port_trace_syscall_exit(K_SYSCALL_LED_SET_CHANNEL, led_set_channel, dev, channel, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_led_set_color(const struct device * dev, uint32_t led, uint8_t num_colors, const uint8_t * color); + +__pinned_func +static inline int led_set_color(const struct device * dev, uint32_t led, uint8_t num_colors, const uint8_t * color) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = led }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = num_colors }; + union { uintptr_t x; const uint8_t * val; } parm3 = { .val = color }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_LED_SET_COLOR); + } +#endif + compiler_barrier(); + return z_impl_led_set_color(dev, led, num_colors, color); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_set_color(dev, led, num_colors, color) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_SET_COLOR, led_set_color, dev, led, num_colors, color); syscall__retval = led_set_color(dev, led, num_colors, color); sys_port_trace_syscall_exit(K_SYSCALL_LED_SET_COLOR, led_set_color, dev, led, num_colors, color, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_led_on(const struct device * dev, uint32_t led); + +__pinned_func +static inline int led_on(const struct device * dev, uint32_t led) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = led }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_LED_ON); + } +#endif + compiler_barrier(); + return z_impl_led_on(dev, led); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_on(dev, led) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_ON, led_on, dev, led); syscall__retval = led_on(dev, led); sys_port_trace_syscall_exit(K_SYSCALL_LED_ON, led_on, dev, led, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_led_off(const struct device * dev, uint32_t led); + +__pinned_func +static inline int led_off(const struct device * dev, uint32_t led) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = led }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_LED_OFF); + } +#endif + compiler_barrier(); + return z_impl_led_off(dev, led); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define led_off(dev, led) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LED_OFF, led_off, dev, led); syscall__retval = led_off(dev, led); sys_port_trace_syscall_exit(K_SYSCALL_LED_OFF, led_off, dev, led, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/libc-hooks.h b/build/zephyr/include/generated/zephyr/syscalls/libc-hooks.h new file mode 100644 index 0000000..f6f5042 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/libc-hooks.h @@ -0,0 +1,126 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_LIBC_HOOKS_H +#define Z_INCLUDE_SYSCALLS_LIBC_HOOKS_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_zephyr_read_stdin(char * buf, int nbytes); + +__pinned_func +static inline int zephyr_read_stdin(char * buf, int nbytes) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; char * val; } parm0 = { .val = buf }; + union { uintptr_t x; int val; } parm1 = { .val = nbytes }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ZEPHYR_READ_STDIN); + } +#endif + compiler_barrier(); + return z_impl_zephyr_read_stdin(buf, nbytes); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zephyr_read_stdin(buf, nbytes) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZEPHYR_READ_STDIN, zephyr_read_stdin, buf, nbytes); syscall__retval = zephyr_read_stdin(buf, nbytes); sys_port_trace_syscall_exit(K_SYSCALL_ZEPHYR_READ_STDIN, zephyr_read_stdin, buf, nbytes, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zephyr_write_stdout(const void * buf, int nbytes); + +__pinned_func +static inline int zephyr_write_stdout(const void * buf, int nbytes) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void * val; } parm0 = { .val = buf }; + union { uintptr_t x; int val; } parm1 = { .val = nbytes }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ZEPHYR_WRITE_STDOUT); + } +#endif + compiler_barrier(); + return z_impl_zephyr_write_stdout(buf, nbytes); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zephyr_write_stdout(buf, nbytes) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZEPHYR_WRITE_STDOUT, zephyr_write_stdout, buf, nbytes); syscall__retval = zephyr_write_stdout(buf, nbytes); sys_port_trace_syscall_exit(K_SYSCALL_ZEPHYR_WRITE_STDOUT, zephyr_write_stdout, buf, nbytes, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zephyr_fputc(int c, FILE * stream); + +__pinned_func +static inline int zephyr_fputc(int c, FILE * stream) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = c }; + union { uintptr_t x; FILE * val; } parm1 = { .val = stream }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ZEPHYR_FPUTC); + } +#endif + compiler_barrier(); + return z_impl_zephyr_fputc(c, stream); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zephyr_fputc(c, stream) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZEPHYR_FPUTC, zephyr_fputc, c, stream); syscall__retval = zephyr_fputc(c, stream); sys_port_trace_syscall_exit(K_SYSCALL_ZEPHYR_FPUTC, zephyr_fputc, c, stream, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern size_t z_impl_zephyr_fwrite(const void *ZRESTRICT ptr, size_t size, size_t nitems, FILE *ZRESTRICT stream); + +__pinned_func +static inline size_t zephyr_fwrite(const void *ZRESTRICT ptr, size_t size, size_t nitems, FILE *ZRESTRICT stream) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void *ZRESTRICT val; } parm0 = { .val = ptr }; + union { uintptr_t x; size_t val; } parm1 = { .val = size }; + union { uintptr_t x; size_t val; } parm2 = { .val = nitems }; + union { uintptr_t x; FILE *ZRESTRICT val; } parm3 = { .val = stream }; + return (size_t) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_ZEPHYR_FWRITE); + } +#endif + compiler_barrier(); + return z_impl_zephyr_fwrite(ptr, size, nitems, stream); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zephyr_fwrite(ptr, size, nitems, stream) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZEPHYR_FWRITE, zephyr_fwrite, ptr, size, nitems, stream); syscall__retval = zephyr_fwrite(ptr, size, nitems, stream); sys_port_trace_syscall_exit(K_SYSCALL_ZEPHYR_FWRITE, zephyr_fwrite, ptr, size, nitems, stream, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/llext.h b/build/zephyr/include/generated/zephyr/syscalls/llext.h new file mode 100644 index 0000000..72ba359 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/llext.h @@ -0,0 +1,54 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_LLEXT_H +#define Z_INCLUDE_SYSCALLS_LLEXT_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern ssize_t z_impl_llext_get_fn_table(struct llext * ext, bool is_init, void * buf, size_t size); + +__pinned_func +static inline ssize_t llext_get_fn_table(struct llext * ext, bool is_init, void * buf, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct llext * val; } parm0 = { .val = ext }; + union { uintptr_t x; bool val; } parm1 = { .val = is_init }; + union { uintptr_t x; void * val; } parm2 = { .val = buf }; + union { uintptr_t x; size_t val; } parm3 = { .val = size }; + return (ssize_t) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_LLEXT_GET_FN_TABLE); + } +#endif + compiler_barrier(); + return z_impl_llext_get_fn_table(ext, is_init, buf, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define llext_get_fn_table(ext, is_init, buf, size) ({ ssize_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LLEXT_GET_FN_TABLE, llext_get_fn_table, ext, is_init, buf, size); syscall__retval = llext_get_fn_table(ext, is_init, buf, size); sys_port_trace_syscall_exit(K_SYSCALL_LLEXT_GET_FN_TABLE, llext_get_fn_table, ext, is_init, buf, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/log_ctrl.h b/build/zephyr/include/generated/zephyr/syscalls/log_ctrl.h new file mode 100644 index 0000000..e4061a2 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/log_ctrl.h @@ -0,0 +1,145 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_LOG_CTRL_H +#define Z_INCLUDE_SYSCALLS_LOG_CTRL_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_log_panic(void); + +__pinned_func +static inline void log_panic(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + (void) arch_syscall_invoke0(K_SYSCALL_LOG_PANIC); + return; + } +#endif + compiler_barrier(); + z_impl_log_panic(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define log_panic() do { sys_port_trace_syscall_enter(K_SYSCALL_LOG_PANIC, log_panic); log_panic(); sys_port_trace_syscall_exit(K_SYSCALL_LOG_PANIC, log_panic); } while(false) +#endif +#endif + + +extern bool z_impl_log_process(void); + +__pinned_func +static inline bool log_process(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (bool) arch_syscall_invoke0(K_SYSCALL_LOG_PROCESS); + } +#endif + compiler_barrier(); + return z_impl_log_process(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define log_process() ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LOG_PROCESS, log_process); syscall__retval = log_process(); sys_port_trace_syscall_exit(K_SYSCALL_LOG_PROCESS, log_process, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_log_buffered_cnt(void); + +__pinned_func +static inline uint32_t log_buffered_cnt(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (uint32_t) arch_syscall_invoke0(K_SYSCALL_LOG_BUFFERED_CNT); + } +#endif + compiler_barrier(); + return z_impl_log_buffered_cnt(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define log_buffered_cnt() ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LOG_BUFFERED_CNT, log_buffered_cnt); syscall__retval = log_buffered_cnt(); sys_port_trace_syscall_exit(K_SYSCALL_LOG_BUFFERED_CNT, log_buffered_cnt, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_log_filter_set(struct log_backend const *const backend, uint32_t domain_id, int16_t source_id, uint32_t level); + +__pinned_func +static inline uint32_t log_filter_set(struct log_backend const *const backend, uint32_t domain_id, int16_t source_id, uint32_t level) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct log_backend const *const val; } parm0 = { .val = backend }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = domain_id }; + union { uintptr_t x; int16_t val; } parm2 = { .val = source_id }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = level }; + return (uint32_t) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_LOG_FILTER_SET); + } +#endif + compiler_barrier(); + return z_impl_log_filter_set(backend, domain_id, source_id, level); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define log_filter_set(backend, domain_id, source_id, level) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LOG_FILTER_SET, log_filter_set, backend, domain_id, source_id, level); syscall__retval = log_filter_set(backend, domain_id, source_id, level); sys_port_trace_syscall_exit(K_SYSCALL_LOG_FILTER_SET, log_filter_set, backend, domain_id, source_id, level, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_log_frontend_filter_set(int16_t source_id, uint32_t level); + +__pinned_func +static inline uint32_t log_frontend_filter_set(int16_t source_id, uint32_t level) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int16_t val; } parm0 = { .val = source_id }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = level }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_LOG_FRONTEND_FILTER_SET); + } +#endif + compiler_barrier(); + return z_impl_log_frontend_filter_set(source_id, level); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define log_frontend_filter_set(source_id, level) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_LOG_FRONTEND_FILTER_SET, log_frontend_filter_set, source_id, level); syscall__retval = log_frontend_filter_set(source_id, level); sys_port_trace_syscall_exit(K_SYSCALL_LOG_FRONTEND_FILTER_SET, log_frontend_filter_set, source_id, level, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/log_msg.h b/build/zephyr/include/generated/zephyr/syscalls/log_msg.h new file mode 100644 index 0000000..9b8bab5 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/log_msg.h @@ -0,0 +1,136 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_LOG_MSG_H +#define Z_INCLUDE_SYSCALLS_LOG_MSG_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_z_log_msg_simple_create_0(const void * source, uint32_t level, const char * fmt); + +__pinned_func +static inline void z_log_msg_simple_create_0(const void * source, uint32_t level, const char * fmt) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void * val; } parm0 = { .val = source }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = level }; + union { uintptr_t x; const char * val; } parm2 = { .val = fmt }; + (void) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_0); + return; + } +#endif + compiler_barrier(); + z_impl_z_log_msg_simple_create_0(source, level, fmt); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define z_log_msg_simple_create_0(source, level, fmt) do { sys_port_trace_syscall_enter(K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_0, z_log_msg_simple_create_0, source, level, fmt); z_log_msg_simple_create_0(source, level, fmt); sys_port_trace_syscall_exit(K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_0, z_log_msg_simple_create_0, source, level, fmt); } while(false) +#endif +#endif + + +extern void z_impl_z_log_msg_simple_create_1(const void * source, uint32_t level, const char * fmt, uint32_t arg); + +__pinned_func +static inline void z_log_msg_simple_create_1(const void * source, uint32_t level, const char * fmt, uint32_t arg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void * val; } parm0 = { .val = source }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = level }; + union { uintptr_t x; const char * val; } parm2 = { .val = fmt }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = arg }; + (void) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_1); + return; + } +#endif + compiler_barrier(); + z_impl_z_log_msg_simple_create_1(source, level, fmt, arg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define z_log_msg_simple_create_1(source, level, fmt, arg) do { sys_port_trace_syscall_enter(K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_1, z_log_msg_simple_create_1, source, level, fmt, arg); z_log_msg_simple_create_1(source, level, fmt, arg); sys_port_trace_syscall_exit(K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_1, z_log_msg_simple_create_1, source, level, fmt, arg); } while(false) +#endif +#endif + + +extern void z_impl_z_log_msg_simple_create_2(const void * source, uint32_t level, const char * fmt, uint32_t arg0, uint32_t arg1); + +__pinned_func +static inline void z_log_msg_simple_create_2(const void * source, uint32_t level, const char * fmt, uint32_t arg0, uint32_t arg1) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void * val; } parm0 = { .val = source }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = level }; + union { uintptr_t x; const char * val; } parm2 = { .val = fmt }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = arg0 }; + union { uintptr_t x; uint32_t val; } parm4 = { .val = arg1 }; + (void) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_2); + return; + } +#endif + compiler_barrier(); + z_impl_z_log_msg_simple_create_2(source, level, fmt, arg0, arg1); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define z_log_msg_simple_create_2(source, level, fmt, arg0, arg1) do { sys_port_trace_syscall_enter(K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_2, z_log_msg_simple_create_2, source, level, fmt, arg0, arg1); z_log_msg_simple_create_2(source, level, fmt, arg0, arg1); sys_port_trace_syscall_exit(K_SYSCALL_Z_LOG_MSG_SIMPLE_CREATE_2, z_log_msg_simple_create_2, source, level, fmt, arg0, arg1); } while(false) +#endif +#endif + + +extern void z_impl_z_log_msg_static_create(const void * source, const struct log_msg_desc desc, uint8_t * package, const void * data); + +__pinned_func +static inline void z_log_msg_static_create(const void * source, const struct log_msg_desc desc, uint8_t * package, const void * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const void * val; } parm0 = { .val = source }; + union { uintptr_t x; const struct log_msg_desc val; } parm1 = { .val = desc }; + union { uintptr_t x; uint8_t * val; } parm2 = { .val = package }; + union { uintptr_t x; const void * val; } parm3 = { .val = data }; + (void) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_Z_LOG_MSG_STATIC_CREATE); + return; + } +#endif + compiler_barrier(); + z_impl_z_log_msg_static_create(source, desc, package, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define z_log_msg_static_create(source, desc, package, data) do { sys_port_trace_syscall_enter(K_SYSCALL_Z_LOG_MSG_STATIC_CREATE, z_log_msg_static_create, source, desc, package, data); z_log_msg_static_create(source, desc, package, data); sys_port_trace_syscall_exit(K_SYSCALL_Z_LOG_MSG_STATIC_CREATE, z_log_msg_static_create, source, desc, package, data); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/maxim_ds3231.h b/build/zephyr/include/generated/zephyr/syscalls/maxim_ds3231.h new file mode 100644 index 0000000..d6e399d --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/maxim_ds3231.h @@ -0,0 +1,76 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_MAXIM_DS3231_H +#define Z_INCLUDE_SYSCALLS_MAXIM_DS3231_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_maxim_ds3231_req_syncpoint(const struct device * dev, struct k_poll_signal * signal); + +__pinned_func +static inline int maxim_ds3231_req_syncpoint(const struct device * dev, struct k_poll_signal * signal) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct k_poll_signal * val; } parm1 = { .val = signal }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_MAXIM_DS3231_REQ_SYNCPOINT); + } +#endif + compiler_barrier(); + return z_impl_maxim_ds3231_req_syncpoint(dev, signal); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define maxim_ds3231_req_syncpoint(dev, signal) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MAXIM_DS3231_REQ_SYNCPOINT, maxim_ds3231_req_syncpoint, dev, signal); syscall__retval = maxim_ds3231_req_syncpoint(dev, signal); sys_port_trace_syscall_exit(K_SYSCALL_MAXIM_DS3231_REQ_SYNCPOINT, maxim_ds3231_req_syncpoint, dev, signal, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_maxim_ds3231_get_syncpoint(const struct device * dev, struct maxim_ds3231_syncpoint * syncpoint); + +__pinned_func +static inline int maxim_ds3231_get_syncpoint(const struct device * dev, struct maxim_ds3231_syncpoint * syncpoint) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct maxim_ds3231_syncpoint * val; } parm1 = { .val = syncpoint }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_MAXIM_DS3231_GET_SYNCPOINT); + } +#endif + compiler_barrier(); + return z_impl_maxim_ds3231_get_syncpoint(dev, syncpoint); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define maxim_ds3231_get_syncpoint(dev, syncpoint) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MAXIM_DS3231_GET_SYNCPOINT, maxim_ds3231_get_syncpoint, dev, syncpoint); syscall__retval = maxim_ds3231_get_syncpoint(dev, syncpoint); sys_port_trace_syscall_exit(K_SYSCALL_MAXIM_DS3231_GET_SYNCPOINT, maxim_ds3231_get_syncpoint, dev, syncpoint, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/mbox.h b/build/zephyr/include/generated/zephyr/syscalls/mbox.h new file mode 100644 index 0000000..53ef70b --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/mbox.h @@ -0,0 +1,124 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_MBOX_H +#define Z_INCLUDE_SYSCALLS_MBOX_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_mbox_send(const struct device * dev, mbox_channel_id_t channel_id, const struct mbox_msg * msg); + +__pinned_func +static inline int mbox_send(const struct device * dev, mbox_channel_id_t channel_id, const struct mbox_msg * msg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; mbox_channel_id_t val; } parm1 = { .val = channel_id }; + union { uintptr_t x; const struct mbox_msg * val; } parm2 = { .val = msg }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_MBOX_SEND); + } +#endif + compiler_barrier(); + return z_impl_mbox_send(dev, channel_id, msg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mbox_send(dev, channel_id, msg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MBOX_SEND, mbox_send, dev, channel_id, msg); syscall__retval = mbox_send(dev, channel_id, msg); sys_port_trace_syscall_exit(K_SYSCALL_MBOX_SEND, mbox_send, dev, channel_id, msg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mbox_mtu_get(const struct device * dev); + +__pinned_func +static inline int mbox_mtu_get(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_MBOX_MTU_GET); + } +#endif + compiler_barrier(); + return z_impl_mbox_mtu_get(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mbox_mtu_get(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MBOX_MTU_GET, mbox_mtu_get, dev); syscall__retval = mbox_mtu_get(dev); sys_port_trace_syscall_exit(K_SYSCALL_MBOX_MTU_GET, mbox_mtu_get, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mbox_set_enabled(const struct device * dev, mbox_channel_id_t channel_id, bool enabled); + +__pinned_func +static inline int mbox_set_enabled(const struct device * dev, mbox_channel_id_t channel_id, bool enabled) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; mbox_channel_id_t val; } parm1 = { .val = channel_id }; + union { uintptr_t x; bool val; } parm2 = { .val = enabled }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_MBOX_SET_ENABLED); + } +#endif + compiler_barrier(); + return z_impl_mbox_set_enabled(dev, channel_id, enabled); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mbox_set_enabled(dev, channel_id, enabled) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MBOX_SET_ENABLED, mbox_set_enabled, dev, channel_id, enabled); syscall__retval = mbox_set_enabled(dev, channel_id, enabled); sys_port_trace_syscall_exit(K_SYSCALL_MBOX_SET_ENABLED, mbox_set_enabled, dev, channel_id, enabled, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_mbox_max_channels_get(const struct device * dev); + +__pinned_func +static inline uint32_t mbox_max_channels_get(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (uint32_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_MBOX_MAX_CHANNELS_GET); + } +#endif + compiler_barrier(); + return z_impl_mbox_max_channels_get(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mbox_max_channels_get(dev) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MBOX_MAX_CHANNELS_GET, mbox_max_channels_get, dev); syscall__retval = mbox_max_channels_get(dev); sys_port_trace_syscall_exit(K_SYSCALL_MBOX_MAX_CHANNELS_GET, mbox_max_channels_get, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/mdio.h b/build/zephyr/include/generated/zephyr/syscalls/mdio.h new file mode 100644 index 0000000..f1f26ae --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/mdio.h @@ -0,0 +1,134 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_MDIO_H +#define Z_INCLUDE_SYSCALLS_MDIO_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_mdio_read(const struct device * dev, uint8_t prtad, uint8_t regad, uint16_t * data); + +__pinned_func +static inline int mdio_read(const struct device * dev, uint8_t prtad, uint8_t regad, uint16_t * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = prtad }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = regad }; + union { uintptr_t x; uint16_t * val; } parm3 = { .val = data }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_MDIO_READ); + } +#endif + compiler_barrier(); + return z_impl_mdio_read(dev, prtad, regad, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mdio_read(dev, prtad, regad, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MDIO_READ, mdio_read, dev, prtad, regad, data); syscall__retval = mdio_read(dev, prtad, regad, data); sys_port_trace_syscall_exit(K_SYSCALL_MDIO_READ, mdio_read, dev, prtad, regad, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mdio_write(const struct device * dev, uint8_t prtad, uint8_t regad, uint16_t data); + +__pinned_func +static inline int mdio_write(const struct device * dev, uint8_t prtad, uint8_t regad, uint16_t data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = prtad }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = regad }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = data }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_MDIO_WRITE); + } +#endif + compiler_barrier(); + return z_impl_mdio_write(dev, prtad, regad, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mdio_write(dev, prtad, regad, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MDIO_WRITE, mdio_write, dev, prtad, regad, data); syscall__retval = mdio_write(dev, prtad, regad, data); sys_port_trace_syscall_exit(K_SYSCALL_MDIO_WRITE, mdio_write, dev, prtad, regad, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mdio_read_c45(const struct device * dev, uint8_t prtad, uint8_t devad, uint16_t regad, uint16_t * data); + +__pinned_func +static inline int mdio_read_c45(const struct device * dev, uint8_t prtad, uint8_t devad, uint16_t regad, uint16_t * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = prtad }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = devad }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = regad }; + union { uintptr_t x; uint16_t * val; } parm4 = { .val = data }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_MDIO_READ_C45); + } +#endif + compiler_barrier(); + return z_impl_mdio_read_c45(dev, prtad, devad, regad, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mdio_read_c45(dev, prtad, devad, regad, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MDIO_READ_C45, mdio_read_c45, dev, prtad, devad, regad, data); syscall__retval = mdio_read_c45(dev, prtad, devad, regad, data); sys_port_trace_syscall_exit(K_SYSCALL_MDIO_READ_C45, mdio_read_c45, dev, prtad, devad, regad, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mdio_write_c45(const struct device * dev, uint8_t prtad, uint8_t devad, uint16_t regad, uint16_t data); + +__pinned_func +static inline int mdio_write_c45(const struct device * dev, uint8_t prtad, uint8_t devad, uint16_t regad, uint16_t data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = prtad }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = devad }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = regad }; + union { uintptr_t x; uint16_t val; } parm4 = { .val = data }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_MDIO_WRITE_C45); + } +#endif + compiler_barrier(); + return z_impl_mdio_write_c45(dev, prtad, devad, regad, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mdio_write_c45(dev, prtad, devad, regad, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MDIO_WRITE_C45, mdio_write_c45, dev, prtad, devad, regad, data); syscall__retval = mdio_write_c45(dev, prtad, devad, regad, data); sys_port_trace_syscall_exit(K_SYSCALL_MDIO_WRITE_C45, mdio_write_c45, dev, prtad, devad, regad, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/mspi.h b/build/zephyr/include/generated/zephyr/syscalls/mspi.h new file mode 100644 index 0000000..6a72b61 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/mspi.h @@ -0,0 +1,202 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_MSPI_H +#define Z_INCLUDE_SYSCALLS_MSPI_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_mspi_config(const struct mspi_dt_spec * spec); + +__pinned_func +static inline int mspi_config(const struct mspi_dt_spec * spec) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct mspi_dt_spec * val; } parm0 = { .val = spec }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_MSPI_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_mspi_config(spec); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mspi_config(spec) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MSPI_CONFIG, mspi_config, spec); syscall__retval = mspi_config(spec); sys_port_trace_syscall_exit(K_SYSCALL_MSPI_CONFIG, mspi_config, spec, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mspi_dev_config(const struct device * controller, const struct mspi_dev_id * dev_id, const enum mspi_dev_cfg_mask param_mask, const struct mspi_dev_cfg * cfg); + +__pinned_func +static inline int mspi_dev_config(const struct device * controller, const struct mspi_dev_id * dev_id, const enum mspi_dev_cfg_mask param_mask, const struct mspi_dev_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = controller }; + union { uintptr_t x; const struct mspi_dev_id * val; } parm1 = { .val = dev_id }; + union { uintptr_t x; const enum mspi_dev_cfg_mask val; } parm2 = { .val = param_mask }; + union { uintptr_t x; const struct mspi_dev_cfg * val; } parm3 = { .val = cfg }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_MSPI_DEV_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_mspi_dev_config(controller, dev_id, param_mask, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mspi_dev_config(controller, dev_id, param_mask, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MSPI_DEV_CONFIG, mspi_dev_config, controller, dev_id, param_mask, cfg); syscall__retval = mspi_dev_config(controller, dev_id, param_mask, cfg); sys_port_trace_syscall_exit(K_SYSCALL_MSPI_DEV_CONFIG, mspi_dev_config, controller, dev_id, param_mask, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mspi_get_channel_status(const struct device * controller, uint8_t ch); + +__pinned_func +static inline int mspi_get_channel_status(const struct device * controller, uint8_t ch) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = controller }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = ch }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_MSPI_GET_CHANNEL_STATUS); + } +#endif + compiler_barrier(); + return z_impl_mspi_get_channel_status(controller, ch); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mspi_get_channel_status(controller, ch) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MSPI_GET_CHANNEL_STATUS, mspi_get_channel_status, controller, ch); syscall__retval = mspi_get_channel_status(controller, ch); sys_port_trace_syscall_exit(K_SYSCALL_MSPI_GET_CHANNEL_STATUS, mspi_get_channel_status, controller, ch, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mspi_transceive(const struct device * controller, const struct mspi_dev_id * dev_id, const struct mspi_xfer * req); + +__pinned_func +static inline int mspi_transceive(const struct device * controller, const struct mspi_dev_id * dev_id, const struct mspi_xfer * req) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = controller }; + union { uintptr_t x; const struct mspi_dev_id * val; } parm1 = { .val = dev_id }; + union { uintptr_t x; const struct mspi_xfer * val; } parm2 = { .val = req }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_MSPI_TRANSCEIVE); + } +#endif + compiler_barrier(); + return z_impl_mspi_transceive(controller, dev_id, req); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mspi_transceive(controller, dev_id, req) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MSPI_TRANSCEIVE, mspi_transceive, controller, dev_id, req); syscall__retval = mspi_transceive(controller, dev_id, req); sys_port_trace_syscall_exit(K_SYSCALL_MSPI_TRANSCEIVE, mspi_transceive, controller, dev_id, req, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mspi_xip_config(const struct device * controller, const struct mspi_dev_id * dev_id, const struct mspi_xip_cfg * cfg); + +__pinned_func +static inline int mspi_xip_config(const struct device * controller, const struct mspi_dev_id * dev_id, const struct mspi_xip_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = controller }; + union { uintptr_t x; const struct mspi_dev_id * val; } parm1 = { .val = dev_id }; + union { uintptr_t x; const struct mspi_xip_cfg * val; } parm2 = { .val = cfg }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_MSPI_XIP_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_mspi_xip_config(controller, dev_id, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mspi_xip_config(controller, dev_id, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MSPI_XIP_CONFIG, mspi_xip_config, controller, dev_id, cfg); syscall__retval = mspi_xip_config(controller, dev_id, cfg); sys_port_trace_syscall_exit(K_SYSCALL_MSPI_XIP_CONFIG, mspi_xip_config, controller, dev_id, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mspi_scramble_config(const struct device * controller, const struct mspi_dev_id * dev_id, const struct mspi_scramble_cfg * cfg); + +__pinned_func +static inline int mspi_scramble_config(const struct device * controller, const struct mspi_dev_id * dev_id, const struct mspi_scramble_cfg * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = controller }; + union { uintptr_t x; const struct mspi_dev_id * val; } parm1 = { .val = dev_id }; + union { uintptr_t x; const struct mspi_scramble_cfg * val; } parm2 = { .val = cfg }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_MSPI_SCRAMBLE_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_mspi_scramble_config(controller, dev_id, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mspi_scramble_config(controller, dev_id, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MSPI_SCRAMBLE_CONFIG, mspi_scramble_config, controller, dev_id, cfg); syscall__retval = mspi_scramble_config(controller, dev_id, cfg); sys_port_trace_syscall_exit(K_SYSCALL_MSPI_SCRAMBLE_CONFIG, mspi_scramble_config, controller, dev_id, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_mspi_timing_config(const struct device * controller, const struct mspi_dev_id * dev_id, const uint32_t param_mask, void * cfg); + +__pinned_func +static inline int mspi_timing_config(const struct device * controller, const struct mspi_dev_id * dev_id, const uint32_t param_mask, void * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = controller }; + union { uintptr_t x; const struct mspi_dev_id * val; } parm1 = { .val = dev_id }; + union { uintptr_t x; const uint32_t val; } parm2 = { .val = param_mask }; + union { uintptr_t x; void * val; } parm3 = { .val = cfg }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_MSPI_TIMING_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_mspi_timing_config(controller, dev_id, param_mask, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define mspi_timing_config(controller, dev_id, param_mask, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_MSPI_TIMING_CONFIG, mspi_timing_config, controller, dev_id, param_mask, cfg); syscall__retval = mspi_timing_config(controller, dev_id, param_mask, cfg); sys_port_trace_syscall_exit(K_SYSCALL_MSPI_TIMING_CONFIG, mspi_timing_config, controller, dev_id, param_mask, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/mutex.h b/build/zephyr/include/generated/zephyr/syscalls/mutex.h new file mode 100644 index 0000000..1e90425 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/mutex.h @@ -0,0 +1,75 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_MUTEX_H +#define Z_INCLUDE_SYSCALLS_MUTEX_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_z_sys_mutex_kernel_lock(struct sys_mutex * mutex, k_timeout_t timeout); + +__pinned_func +static inline int z_sys_mutex_kernel_lock(struct sys_mutex * mutex, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct sys_mutex * val; } parm0 = { .val = mutex }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm1 = { .val = timeout }; + return (int) arch_syscall_invoke3(parm0.x, parm1.split.lo, parm1.split.hi, K_SYSCALL_Z_SYS_MUTEX_KERNEL_LOCK); + } +#endif + compiler_barrier(); + return z_impl_z_sys_mutex_kernel_lock(mutex, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define z_sys_mutex_kernel_lock(mutex, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_Z_SYS_MUTEX_KERNEL_LOCK, z_sys_mutex_kernel_lock, mutex, timeout); syscall__retval = z_sys_mutex_kernel_lock(mutex, timeout); sys_port_trace_syscall_exit(K_SYSCALL_Z_SYS_MUTEX_KERNEL_LOCK, z_sys_mutex_kernel_lock, mutex, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_z_sys_mutex_kernel_unlock(struct sys_mutex * mutex); + +__pinned_func +static inline int z_sys_mutex_kernel_unlock(struct sys_mutex * mutex) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct sys_mutex * val; } parm0 = { .val = mutex }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_Z_SYS_MUTEX_KERNEL_UNLOCK); + } +#endif + compiler_barrier(); + return z_impl_z_sys_mutex_kernel_unlock(mutex); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define z_sys_mutex_kernel_unlock(mutex) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_Z_SYS_MUTEX_KERNEL_UNLOCK, z_sys_mutex_kernel_unlock, mutex); syscall__retval = z_sys_mutex_kernel_unlock(mutex); sys_port_trace_syscall_exit(K_SYSCALL_Z_SYS_MUTEX_KERNEL_UNLOCK, z_sys_mutex_kernel_unlock, mutex, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/net_if.h b/build/zephyr/include/generated/zephyr/syscalls/net_if.h new file mode 100644 index 0000000..bc3c9e2 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/net_if.h @@ -0,0 +1,270 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_NET_IF_H +#define Z_INCLUDE_SYSCALLS_NET_IF_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_net_if_ipv6_addr_lookup_by_index(const struct net_in6_addr * addr); + +__pinned_func +static inline int net_if_ipv6_addr_lookup_by_index(const struct net_in6_addr * addr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct net_in6_addr * val; } parm0 = { .val = addr }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_NET_IF_IPV6_ADDR_LOOKUP_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv6_addr_lookup_by_index(addr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv6_addr_lookup_by_index(addr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV6_ADDR_LOOKUP_BY_INDEX, net_if_ipv6_addr_lookup_by_index, addr); syscall__retval = net_if_ipv6_addr_lookup_by_index(addr); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV6_ADDR_LOOKUP_BY_INDEX, net_if_ipv6_addr_lookup_by_index, addr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_net_if_ipv6_addr_add_by_index(int index, const struct net_in6_addr * addr, enum net_addr_type addr_type, uint32_t vlifetime); + +__pinned_func +static inline bool net_if_ipv6_addr_add_by_index(int index, const struct net_in6_addr * addr, enum net_addr_type addr_type, uint32_t vlifetime) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + union { uintptr_t x; const struct net_in6_addr * val; } parm1 = { .val = addr }; + union { uintptr_t x; enum net_addr_type val; } parm2 = { .val = addr_type }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = vlifetime }; + return (bool) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_NET_IF_IPV6_ADDR_ADD_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv6_addr_add_by_index(index, addr, addr_type, vlifetime); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv6_addr_add_by_index(index, addr, addr_type, vlifetime) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV6_ADDR_ADD_BY_INDEX, net_if_ipv6_addr_add_by_index, index, addr, addr_type, vlifetime); syscall__retval = net_if_ipv6_addr_add_by_index(index, addr, addr_type, vlifetime); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV6_ADDR_ADD_BY_INDEX, net_if_ipv6_addr_add_by_index, index, addr, addr_type, vlifetime, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_net_if_ipv6_addr_rm_by_index(int index, const struct net_in6_addr * addr); + +__pinned_func +static inline bool net_if_ipv6_addr_rm_by_index(int index, const struct net_in6_addr * addr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + union { uintptr_t x; const struct net_in6_addr * val; } parm1 = { .val = addr }; + return (bool) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_NET_IF_IPV6_ADDR_RM_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv6_addr_rm_by_index(index, addr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv6_addr_rm_by_index(index, addr) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV6_ADDR_RM_BY_INDEX, net_if_ipv6_addr_rm_by_index, index, addr); syscall__retval = net_if_ipv6_addr_rm_by_index(index, addr); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV6_ADDR_RM_BY_INDEX, net_if_ipv6_addr_rm_by_index, index, addr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_net_if_ipv4_addr_lookup_by_index(const struct net_in_addr * addr); + +__pinned_func +static inline int net_if_ipv4_addr_lookup_by_index(const struct net_in_addr * addr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct net_in_addr * val; } parm0 = { .val = addr }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_NET_IF_IPV4_ADDR_LOOKUP_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv4_addr_lookup_by_index(addr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv4_addr_lookup_by_index(addr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV4_ADDR_LOOKUP_BY_INDEX, net_if_ipv4_addr_lookup_by_index, addr); syscall__retval = net_if_ipv4_addr_lookup_by_index(addr); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV4_ADDR_LOOKUP_BY_INDEX, net_if_ipv4_addr_lookup_by_index, addr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_net_if_ipv4_addr_add_by_index(int index, const struct net_in_addr * addr, enum net_addr_type addr_type, uint32_t vlifetime); + +__pinned_func +static inline bool net_if_ipv4_addr_add_by_index(int index, const struct net_in_addr * addr, enum net_addr_type addr_type, uint32_t vlifetime) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + union { uintptr_t x; const struct net_in_addr * val; } parm1 = { .val = addr }; + union { uintptr_t x; enum net_addr_type val; } parm2 = { .val = addr_type }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = vlifetime }; + return (bool) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_NET_IF_IPV4_ADDR_ADD_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv4_addr_add_by_index(index, addr, addr_type, vlifetime); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv4_addr_add_by_index(index, addr, addr_type, vlifetime) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV4_ADDR_ADD_BY_INDEX, net_if_ipv4_addr_add_by_index, index, addr, addr_type, vlifetime); syscall__retval = net_if_ipv4_addr_add_by_index(index, addr, addr_type, vlifetime); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV4_ADDR_ADD_BY_INDEX, net_if_ipv4_addr_add_by_index, index, addr, addr_type, vlifetime, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_net_if_ipv4_addr_rm_by_index(int index, const struct net_in_addr * addr); + +__pinned_func +static inline bool net_if_ipv4_addr_rm_by_index(int index, const struct net_in_addr * addr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + union { uintptr_t x; const struct net_in_addr * val; } parm1 = { .val = addr }; + return (bool) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_NET_IF_IPV4_ADDR_RM_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv4_addr_rm_by_index(index, addr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv4_addr_rm_by_index(index, addr) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV4_ADDR_RM_BY_INDEX, net_if_ipv4_addr_rm_by_index, index, addr); syscall__retval = net_if_ipv4_addr_rm_by_index(index, addr); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV4_ADDR_RM_BY_INDEX, net_if_ipv4_addr_rm_by_index, index, addr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_net_if_ipv4_set_netmask_by_index(int index, const struct net_in_addr * netmask); + +__pinned_func +static inline bool net_if_ipv4_set_netmask_by_index(int index, const struct net_in_addr * netmask) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + union { uintptr_t x; const struct net_in_addr * val; } parm1 = { .val = netmask }; + return (bool) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv4_set_netmask_by_index(index, netmask); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv4_set_netmask_by_index(index, netmask) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_INDEX, net_if_ipv4_set_netmask_by_index, index, netmask); syscall__retval = net_if_ipv4_set_netmask_by_index(index, netmask); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_INDEX, net_if_ipv4_set_netmask_by_index, index, netmask, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_net_if_ipv4_set_netmask_by_addr_by_index(int index, const struct net_in_addr * addr, const struct net_in_addr * netmask); + +__pinned_func +static inline bool net_if_ipv4_set_netmask_by_addr_by_index(int index, const struct net_in_addr * addr, const struct net_in_addr * netmask) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + union { uintptr_t x; const struct net_in_addr * val; } parm1 = { .val = addr }; + union { uintptr_t x; const struct net_in_addr * val; } parm2 = { .val = netmask }; + return (bool) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_ADDR_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv4_set_netmask_by_addr_by_index(index, addr, netmask); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv4_set_netmask_by_addr_by_index(index, addr, netmask) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_ADDR_BY_INDEX, net_if_ipv4_set_netmask_by_addr_by_index, index, addr, netmask); syscall__retval = net_if_ipv4_set_netmask_by_addr_by_index(index, addr, netmask); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV4_SET_NETMASK_BY_ADDR_BY_INDEX, net_if_ipv4_set_netmask_by_addr_by_index, index, addr, netmask, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern bool z_impl_net_if_ipv4_set_gw_by_index(int index, const struct net_in_addr * gw); + +__pinned_func +static inline bool net_if_ipv4_set_gw_by_index(int index, const struct net_in_addr * gw) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + union { uintptr_t x; const struct net_in_addr * val; } parm1 = { .val = gw }; + return (bool) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_NET_IF_IPV4_SET_GW_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_ipv4_set_gw_by_index(index, gw); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_ipv4_set_gw_by_index(index, gw) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_IPV4_SET_GW_BY_INDEX, net_if_ipv4_set_gw_by_index, index, gw); syscall__retval = net_if_ipv4_set_gw_by_index(index, gw); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_IPV4_SET_GW_BY_INDEX, net_if_ipv4_set_gw_by_index, index, gw, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern struct net_if * z_impl_net_if_get_by_index(int index); + +__pinned_func +static inline struct net_if * net_if_get_by_index(int index) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = index }; + return (struct net_if *) arch_syscall_invoke1(parm0.x, K_SYSCALL_NET_IF_GET_BY_INDEX); + } +#endif + compiler_barrier(); + return z_impl_net_if_get_by_index(index); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_if_get_by_index(index) ({ struct net_if * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_IF_GET_BY_INDEX, net_if_get_by_index, index); syscall__retval = net_if_get_by_index(index); sys_port_trace_syscall_exit(K_SYSCALL_NET_IF_GET_BY_INDEX, net_if_get_by_index, index, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/net_ip.h b/build/zephyr/include/generated/zephyr/syscalls/net_ip.h new file mode 100644 index 0000000..fe96588 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/net_ip.h @@ -0,0 +1,79 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_NET_IP_H +#define Z_INCLUDE_SYSCALLS_NET_IP_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_net_addr_pton(net_sa_family_t family, const char * src, void * dst); + +__pinned_func +static inline int net_addr_pton(net_sa_family_t family, const char * src, void * dst) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; net_sa_family_t val; } parm0 = { .val = family }; + union { uintptr_t x; const char * val; } parm1 = { .val = src }; + union { uintptr_t x; void * val; } parm2 = { .val = dst }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_NET_ADDR_PTON); + } +#endif + compiler_barrier(); + return z_impl_net_addr_pton(family, src, dst); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_addr_pton(family, src, dst) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_ADDR_PTON, net_addr_pton, family, src, dst); syscall__retval = net_addr_pton(family, src, dst); sys_port_trace_syscall_exit(K_SYSCALL_NET_ADDR_PTON, net_addr_pton, family, src, dst, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern char * z_impl_net_addr_ntop(net_sa_family_t family, const void * src, char * dst, size_t size); + +__pinned_func +static inline char * net_addr_ntop(net_sa_family_t family, const void * src, char * dst, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; net_sa_family_t val; } parm0 = { .val = family }; + union { uintptr_t x; const void * val; } parm1 = { .val = src }; + union { uintptr_t x; char * val; } parm2 = { .val = dst }; + union { uintptr_t x; size_t val; } parm3 = { .val = size }; + return (char *) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_NET_ADDR_NTOP); + } +#endif + compiler_barrier(); + return z_impl_net_addr_ntop(family, src, dst, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_addr_ntop(family, src, dst, size) ({ char * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_ADDR_NTOP, net_addr_ntop, family, src, dst, size); syscall__retval = net_addr_ntop(family, src, dst, size); sys_port_trace_syscall_exit(K_SYSCALL_NET_ADDR_NTOP, net_addr_ntop, family, src, dst, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/nrf_qspi_nor.h b/build/zephyr/include/generated/zephyr/syscalls/nrf_qspi_nor.h new file mode 100644 index 0000000..ea0c654 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/nrf_qspi_nor.h @@ -0,0 +1,53 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_NRF_QSPI_NOR_H +#define Z_INCLUDE_SYSCALLS_NRF_QSPI_NOR_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_nrf_qspi_nor_xip_enable(const struct device * dev, bool enable); + +__pinned_func +static inline void nrf_qspi_nor_xip_enable(const struct device * dev, bool enable) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bool val; } parm1 = { .val = enable }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_NRF_QSPI_NOR_XIP_ENABLE); + return; + } +#endif + compiler_barrier(); + z_impl_nrf_qspi_nor_xip_enable(dev, enable); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define nrf_qspi_nor_xip_enable(dev, enable) do { sys_port_trace_syscall_enter(K_SYSCALL_NRF_QSPI_NOR_XIP_ENABLE, nrf_qspi_nor_xip_enable, dev, enable); nrf_qspi_nor_xip_enable(dev, enable); sys_port_trace_syscall_exit(K_SYSCALL_NRF_QSPI_NOR_XIP_ENABLE, nrf_qspi_nor_xip_enable, dev, enable); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/opamp.h b/build/zephyr/include/generated/zephyr/syscalls/opamp.h new file mode 100644 index 0000000..5c45de9 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/opamp.h @@ -0,0 +1,52 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_OPAMP_H +#define Z_INCLUDE_SYSCALLS_OPAMP_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_opamp_set_gain(const struct device * dev, enum opamp_gain gain); + +__pinned_func +static inline int opamp_set_gain(const struct device * dev, enum opamp_gain gain) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum opamp_gain val; } parm1 = { .val = gain }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_OPAMP_SET_GAIN); + } +#endif + compiler_barrier(); + return z_impl_opamp_set_gain(dev, gain); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define opamp_set_gain(dev, gain) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_OPAMP_SET_GAIN, opamp_set_gain, dev, gain); syscall__retval = opamp_set_gain(dev, gain); sys_port_trace_syscall_exit(K_SYSCALL_OPAMP_SET_GAIN, opamp_set_gain, dev, gain, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/otp.h b/build/zephyr/include/generated/zephyr/syscalls/otp.h new file mode 100644 index 0000000..7fe4c67 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/otp.h @@ -0,0 +1,80 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_OTP_H +#define Z_INCLUDE_SYSCALLS_OTP_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_otp_read(const struct device * dev, off_t offset, void * data, size_t len); + +__pinned_func +static inline int otp_read(const struct device * dev, off_t offset, void * data, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; void * val; } parm2 = { .val = data }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_OTP_READ); + } +#endif + compiler_barrier(); + return z_impl_otp_read(dev, offset, data, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define otp_read(dev, offset, data, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_OTP_READ, otp_read, dev, offset, data, len); syscall__retval = otp_read(dev, offset, data, len); sys_port_trace_syscall_exit(K_SYSCALL_OTP_READ, otp_read, dev, offset, data, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_otp_program(const struct device * dev, off_t offset, const void * data, size_t len); + +__pinned_func +static inline int otp_program(const struct device * dev, off_t offset, const void * data, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; const void * val; } parm2 = { .val = data }; + union { uintptr_t x; size_t val; } parm3 = { .val = len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_OTP_PROGRAM); + } +#endif + compiler_barrier(); + return z_impl_otp_program(dev, offset, data, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define otp_program(dev, offset, data, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_OTP_PROGRAM, otp_program, dev, offset, data, len); syscall__retval = otp_program(dev, offset, data, len); sys_port_trace_syscall_exit(K_SYSCALL_OTP_PROGRAM, otp_program, dev, offset, data, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/peci.h b/build/zephyr/include/generated/zephyr/syscalls/peci.h new file mode 100644 index 0000000..17acef0 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/peci.h @@ -0,0 +1,122 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_PECI_H +#define Z_INCLUDE_SYSCALLS_PECI_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_peci_config(const struct device * dev, uint32_t bitrate); + +__pinned_func +static inline int peci_config(const struct device * dev, uint32_t bitrate) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = bitrate }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PECI_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_peci_config(dev, bitrate); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define peci_config(dev, bitrate) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PECI_CONFIG, peci_config, dev, bitrate); syscall__retval = peci_config(dev, bitrate); sys_port_trace_syscall_exit(K_SYSCALL_PECI_CONFIG, peci_config, dev, bitrate, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_peci_enable(const struct device * dev); + +__pinned_func +static inline int peci_enable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_PECI_ENABLE); + } +#endif + compiler_barrier(); + return z_impl_peci_enable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define peci_enable(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PECI_ENABLE, peci_enable, dev); syscall__retval = peci_enable(dev); sys_port_trace_syscall_exit(K_SYSCALL_PECI_ENABLE, peci_enable, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_peci_disable(const struct device * dev); + +__pinned_func +static inline int peci_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_PECI_DISABLE); + } +#endif + compiler_barrier(); + return z_impl_peci_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define peci_disable(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PECI_DISABLE, peci_disable, dev); syscall__retval = peci_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_PECI_DISABLE, peci_disable, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_peci_transfer(const struct device * dev, struct peci_msg * msg); + +__pinned_func +static inline int peci_transfer(const struct device * dev, struct peci_msg * msg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct peci_msg * val; } parm1 = { .val = msg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PECI_TRANSFER); + } +#endif + compiler_barrier(); + return z_impl_peci_transfer(dev, msg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define peci_transfer(dev, msg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PECI_TRANSFER, peci_transfer, dev, msg); syscall__retval = peci_transfer(dev, msg); sys_port_trace_syscall_exit(K_SYSCALL_PECI_TRANSFER, peci_transfer, dev, msg, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/ps2.h b/build/zephyr/include/generated/zephyr/syscalls/ps2.h new file mode 100644 index 0000000..4b94318 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/ps2.h @@ -0,0 +1,146 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_PS2_H +#define Z_INCLUDE_SYSCALLS_PS2_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_ps2_config(const struct device * dev, ps2_callback_t callback_isr); + +__pinned_func +static inline int ps2_config(const struct device * dev, ps2_callback_t callback_isr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; ps2_callback_t val; } parm1 = { .val = callback_isr }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PS2_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_ps2_config(dev, callback_isr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ps2_config(dev, callback_isr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PS2_CONFIG, ps2_config, dev, callback_isr); syscall__retval = ps2_config(dev, callback_isr); sys_port_trace_syscall_exit(K_SYSCALL_PS2_CONFIG, ps2_config, dev, callback_isr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ps2_write(const struct device * dev, uint8_t value); + +__pinned_func +static inline int ps2_write(const struct device * dev, uint8_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = value }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PS2_WRITE); + } +#endif + compiler_barrier(); + return z_impl_ps2_write(dev, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ps2_write(dev, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PS2_WRITE, ps2_write, dev, value); syscall__retval = ps2_write(dev, value); sys_port_trace_syscall_exit(K_SYSCALL_PS2_WRITE, ps2_write, dev, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ps2_read(const struct device * dev, uint8_t * value); + +__pinned_func +static inline int ps2_read(const struct device * dev, uint8_t * value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = value }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PS2_READ); + } +#endif + compiler_barrier(); + return z_impl_ps2_read(dev, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ps2_read(dev, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PS2_READ, ps2_read, dev, value); syscall__retval = ps2_read(dev, value); sys_port_trace_syscall_exit(K_SYSCALL_PS2_READ, ps2_read, dev, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ps2_enable_callback(const struct device * dev); + +__pinned_func +static inline int ps2_enable_callback(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_PS2_ENABLE_CALLBACK); + } +#endif + compiler_barrier(); + return z_impl_ps2_enable_callback(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ps2_enable_callback(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PS2_ENABLE_CALLBACK, ps2_enable_callback, dev); syscall__retval = ps2_enable_callback(dev); sys_port_trace_syscall_exit(K_SYSCALL_PS2_ENABLE_CALLBACK, ps2_enable_callback, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_ps2_disable_callback(const struct device * dev); + +__pinned_func +static inline int ps2_disable_callback(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_PS2_DISABLE_CALLBACK); + } +#endif + compiler_barrier(); + return z_impl_ps2_disable_callback(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ps2_disable_callback(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PS2_DISABLE_CALLBACK, ps2_disable_callback, dev); syscall__retval = ps2_disable_callback(dev); sys_port_trace_syscall_exit(K_SYSCALL_PS2_DISABLE_CALLBACK, ps2_disable_callback, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/psi5.h b/build/zephyr/include/generated/zephyr/syscalls/psi5.h new file mode 100644 index 0000000..d990afc --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/psi5.h @@ -0,0 +1,133 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_PSI5_H +#define Z_INCLUDE_SYSCALLS_PSI5_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_psi5_start_sync(const struct device * dev, uint8_t channel); + +__pinned_func +static inline int psi5_start_sync(const struct device * dev, uint8_t channel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = channel }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PSI5_START_SYNC); + } +#endif + compiler_barrier(); + return z_impl_psi5_start_sync(dev, channel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define psi5_start_sync(dev, channel) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PSI5_START_SYNC, psi5_start_sync, dev, channel); syscall__retval = psi5_start_sync(dev, channel); sys_port_trace_syscall_exit(K_SYSCALL_PSI5_START_SYNC, psi5_start_sync, dev, channel, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_psi5_stop_sync(const struct device * dev, uint8_t channel); + +__pinned_func +static inline int psi5_stop_sync(const struct device * dev, uint8_t channel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = channel }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PSI5_STOP_SYNC); + } +#endif + compiler_barrier(); + return z_impl_psi5_stop_sync(dev, channel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define psi5_stop_sync(dev, channel) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PSI5_STOP_SYNC, psi5_stop_sync, dev, channel); syscall__retval = psi5_stop_sync(dev, channel); sys_port_trace_syscall_exit(K_SYSCALL_PSI5_STOP_SYNC, psi5_stop_sync, dev, channel, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_psi5_send(const struct device * dev, uint8_t channel, const uint64_t data, k_timeout_t timeout, psi5_tx_callback_t callback, void * user_data); + +__pinned_func +static inline int psi5_send(const struct device * dev, uint8_t channel, const uint64_t data, k_timeout_t timeout, psi5_tx_callback_t callback, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = channel }; + union { uintptr_t x; const uint64_t val; } parm2 = { .val = data }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm3 = { .val = timeout }; + union { uintptr_t x; psi5_tx_callback_t val; } parm4 = { .val = callback }; + union { uintptr_t x; void * val; } parm5 = { .val = user_data }; + uintptr_t more[] = { + parm4.x, + parm5.x + }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.split.lo, parm3.split.hi, (uintptr_t) &more, K_SYSCALL_PSI5_SEND); + } +#endif + compiler_barrier(); + return z_impl_psi5_send(dev, channel, data, timeout, callback, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define psi5_send(dev, channel, data, timeout, callback, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PSI5_SEND, psi5_send, dev, channel, data, timeout, callback, user_data); syscall__retval = psi5_send(dev, channel, data, timeout, callback, user_data); sys_port_trace_syscall_exit(K_SYSCALL_PSI5_SEND, psi5_send, dev, channel, data, timeout, callback, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_psi5_register_callback(const struct device * dev, uint8_t channel, struct psi5_rx_callback_configs callback_configs); + +__pinned_func +static inline int psi5_register_callback(const struct device * dev, uint8_t channel, struct psi5_rx_callback_configs callback_configs) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = channel }; + union { uintptr_t x; struct psi5_rx_callback_configs val; } parm2 = { .val = callback_configs }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_PSI5_REGISTER_CALLBACK); + } +#endif + compiler_barrier(); + return z_impl_psi5_register_callback(dev, channel, callback_configs); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define psi5_register_callback(dev, channel, callback_configs) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PSI5_REGISTER_CALLBACK, psi5_register_callback, dev, channel, callback_configs); syscall__retval = psi5_register_callback(dev, channel, callback_configs); sys_port_trace_syscall_exit(K_SYSCALL_PSI5_REGISTER_CALLBACK, psi5_register_callback, dev, channel, callback_configs, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/ptp_clock.h b/build/zephyr/include/generated/zephyr/syscalls/ptp_clock.h new file mode 100644 index 0000000..399019c --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/ptp_clock.h @@ -0,0 +1,52 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_PTP_CLOCK_H +#define Z_INCLUDE_SYSCALLS_PTP_CLOCK_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_ptp_clock_get(const struct device * dev, struct net_ptp_time * tm); + +__pinned_func +static inline int ptp_clock_get(const struct device * dev, struct net_ptp_time * tm) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct net_ptp_time * val; } parm1 = { .val = tm }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PTP_CLOCK_GET); + } +#endif + compiler_barrier(); + return z_impl_ptp_clock_get(dev, tm); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define ptp_clock_get(dev, tm) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PTP_CLOCK_GET, ptp_clock_get, dev, tm); syscall__retval = ptp_clock_get(dev, tm); sys_port_trace_syscall_exit(K_SYSCALL_PTP_CLOCK_GET, ptp_clock_get, dev, tm, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/pwm.h b/build/zephyr/include/generated/zephyr/syscalls/pwm.h new file mode 100644 index 0000000..49fef8a --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/pwm.h @@ -0,0 +1,208 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_PWM_H +#define Z_INCLUDE_SYSCALLS_PWM_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_pwm_set_cycles(const struct device * dev, uint32_t channel, uint32_t period, uint32_t pulse, pwm_flags_t flags); + +__pinned_func +static inline int pwm_set_cycles(const struct device * dev, uint32_t channel, uint32_t period, uint32_t pulse, pwm_flags_t flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = period }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = pulse }; + union { uintptr_t x; pwm_flags_t val; } parm4 = { .val = flags }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_PWM_SET_CYCLES); + } +#endif + compiler_barrier(); + return z_impl_pwm_set_cycles(dev, channel, period, pulse, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define pwm_set_cycles(dev, channel, period, pulse, flags) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PWM_SET_CYCLES, pwm_set_cycles, dev, channel, period, pulse, flags); syscall__retval = pwm_set_cycles(dev, channel, period, pulse, flags); sys_port_trace_syscall_exit(K_SYSCALL_PWM_SET_CYCLES, pwm_set_cycles, dev, channel, period, pulse, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_pwm_get_cycles_per_sec(const struct device * dev, uint32_t channel, uint64_t * cycles); + +__pinned_func +static inline int pwm_get_cycles_per_sec(const struct device * dev, uint32_t channel, uint64_t * cycles) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + union { uintptr_t x; uint64_t * val; } parm2 = { .val = cycles }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_PWM_GET_CYCLES_PER_SEC); + } +#endif + compiler_barrier(); + return z_impl_pwm_get_cycles_per_sec(dev, channel, cycles); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define pwm_get_cycles_per_sec(dev, channel, cycles) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PWM_GET_CYCLES_PER_SEC, pwm_get_cycles_per_sec, dev, channel, cycles); syscall__retval = pwm_get_cycles_per_sec(dev, channel, cycles); sys_port_trace_syscall_exit(K_SYSCALL_PWM_GET_CYCLES_PER_SEC, pwm_get_cycles_per_sec, dev, channel, cycles, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_pwm_enable_capture(const struct device * dev, uint32_t channel); + +__pinned_func +static inline int pwm_enable_capture(const struct device * dev, uint32_t channel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PWM_ENABLE_CAPTURE); + } +#endif + compiler_barrier(); + return z_impl_pwm_enable_capture(dev, channel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define pwm_enable_capture(dev, channel) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PWM_ENABLE_CAPTURE, pwm_enable_capture, dev, channel); syscall__retval = pwm_enable_capture(dev, channel); sys_port_trace_syscall_exit(K_SYSCALL_PWM_ENABLE_CAPTURE, pwm_enable_capture, dev, channel, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_pwm_disable_capture(const struct device * dev, uint32_t channel); + +__pinned_func +static inline int pwm_disable_capture(const struct device * dev, uint32_t channel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PWM_DISABLE_CAPTURE); + } +#endif + compiler_barrier(); + return z_impl_pwm_disable_capture(dev, channel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define pwm_disable_capture(dev, channel) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PWM_DISABLE_CAPTURE, pwm_disable_capture, dev, channel); syscall__retval = pwm_disable_capture(dev, channel); sys_port_trace_syscall_exit(K_SYSCALL_PWM_DISABLE_CAPTURE, pwm_disable_capture, dev, channel, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_pwm_enable_dma(const struct device * dev, uint32_t channel); + +__pinned_func +static inline int pwm_enable_dma(const struct device * dev, uint32_t channel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PWM_ENABLE_DMA); + } +#endif + compiler_barrier(); + return z_impl_pwm_enable_dma(dev, channel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define pwm_enable_dma(dev, channel) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PWM_ENABLE_DMA, pwm_enable_dma, dev, channel); syscall__retval = pwm_enable_dma(dev, channel); sys_port_trace_syscall_exit(K_SYSCALL_PWM_ENABLE_DMA, pwm_enable_dma, dev, channel, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_pwm_disable_dma(const struct device * dev, uint32_t channel); + +__pinned_func +static inline int pwm_disable_dma(const struct device * dev, uint32_t channel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_PWM_DISABLE_DMA); + } +#endif + compiler_barrier(); + return z_impl_pwm_disable_dma(dev, channel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define pwm_disable_dma(dev, channel) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PWM_DISABLE_DMA, pwm_disable_dma, dev, channel); syscall__retval = pwm_disable_dma(dev, channel); sys_port_trace_syscall_exit(K_SYSCALL_PWM_DISABLE_DMA, pwm_disable_dma, dev, channel, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_pwm_capture_cycles(const struct device * dev, uint32_t channel, pwm_flags_t flags, uint32_t * period, uint32_t * pulse, k_timeout_t timeout); + +__pinned_func +static inline int pwm_capture_cycles(const struct device * dev, uint32_t channel, pwm_flags_t flags, uint32_t * period, uint32_t * pulse, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = channel }; + union { uintptr_t x; pwm_flags_t val; } parm2 = { .val = flags }; + union { uintptr_t x; uint32_t * val; } parm3 = { .val = period }; + union { uintptr_t x; uint32_t * val; } parm4 = { .val = pulse }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm5 = { .val = timeout }; + uintptr_t more[] = { + parm5.split.lo, + parm5.split.hi + }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, (uintptr_t) &more, K_SYSCALL_PWM_CAPTURE_CYCLES); + } +#endif + compiler_barrier(); + return z_impl_pwm_capture_cycles(dev, channel, flags, period, pulse, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define pwm_capture_cycles(dev, channel, flags, period, pulse, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_PWM_CAPTURE_CYCLES, pwm_capture_cycles, dev, channel, flags, period, pulse, timeout); syscall__retval = pwm_capture_cycles(dev, channel, flags, period, pulse, timeout); sys_port_trace_syscall_exit(K_SYSCALL_PWM_CAPTURE_CYCLES, pwm_capture_cycles, dev, channel, flags, period, pulse, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/random.h b/build/zephyr/include/generated/zephyr/syscalls/random.h new file mode 100644 index 0000000..0e0a77c --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/random.h @@ -0,0 +1,77 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_RANDOM_H +#define Z_INCLUDE_SYSCALLS_RANDOM_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_sys_rand_get(void * dst, size_t len); + +__pinned_func +static inline void sys_rand_get(void * dst, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; void * val; } parm0 = { .val = dst }; + union { uintptr_t x; size_t val; } parm1 = { .val = len }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYS_RAND_GET); + return; + } +#endif + compiler_barrier(); + z_impl_sys_rand_get(dst, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_rand_get(dst, len) do { sys_port_trace_syscall_enter(K_SYSCALL_SYS_RAND_GET, sys_rand_get, dst, len); sys_rand_get(dst, len); sys_port_trace_syscall_exit(K_SYSCALL_SYS_RAND_GET, sys_rand_get, dst, len); } while(false) +#endif +#endif + + +extern int z_impl_sys_csrand_get(void * dst, size_t len); + +__pinned_func +static inline int sys_csrand_get(void * dst, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; void * val; } parm0 = { .val = dst }; + union { uintptr_t x; size_t val; } parm1 = { .val = len }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYS_CSRAND_GET); + } +#endif + compiler_barrier(); + return z_impl_sys_csrand_get(dst, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_csrand_get(dst, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYS_CSRAND_GET, sys_csrand_get, dst, len); syscall__retval = sys_csrand_get(dst, len); sys_port_trace_syscall_exit(K_SYSCALL_SYS_CSRAND_GET, sys_csrand_get, dst, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/renesas_elc.h b/build/zephyr/include/generated/zephyr/syscalls/renesas_elc.h new file mode 100644 index 0000000..be08066 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/renesas_elc.h @@ -0,0 +1,147 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_RENESAS_ELC_H +#define Z_INCLUDE_SYSCALLS_RENESAS_ELC_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_renesas_elc_software_event_generate(const struct device * dev, uint32_t event); + +__pinned_func +static inline int renesas_elc_software_event_generate(const struct device * dev, uint32_t event) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = event }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RENESAS_ELC_SOFTWARE_EVENT_GENERATE); + } +#endif + compiler_barrier(); + return z_impl_renesas_elc_software_event_generate(dev, event); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define renesas_elc_software_event_generate(dev, event) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RENESAS_ELC_SOFTWARE_EVENT_GENERATE, renesas_elc_software_event_generate, dev, event); syscall__retval = renesas_elc_software_event_generate(dev, event); sys_port_trace_syscall_exit(K_SYSCALL_RENESAS_ELC_SOFTWARE_EVENT_GENERATE, renesas_elc_software_event_generate, dev, event, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_renesas_elc_link_set(const struct device * dev, uint32_t peripheral, uint32_t event); + +__pinned_func +static inline int renesas_elc_link_set(const struct device * dev, uint32_t peripheral, uint32_t event) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = peripheral }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = event }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_RENESAS_ELC_LINK_SET); + } +#endif + compiler_barrier(); + return z_impl_renesas_elc_link_set(dev, peripheral, event); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define renesas_elc_link_set(dev, peripheral, event) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RENESAS_ELC_LINK_SET, renesas_elc_link_set, dev, peripheral, event); syscall__retval = renesas_elc_link_set(dev, peripheral, event); sys_port_trace_syscall_exit(K_SYSCALL_RENESAS_ELC_LINK_SET, renesas_elc_link_set, dev, peripheral, event, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_renesas_elc_link_break(const struct device * dev, uint32_t peripheral); + +__pinned_func +static inline int renesas_elc_link_break(const struct device * dev, uint32_t peripheral) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = peripheral }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RENESAS_ELC_LINK_BREAK); + } +#endif + compiler_barrier(); + return z_impl_renesas_elc_link_break(dev, peripheral); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define renesas_elc_link_break(dev, peripheral) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RENESAS_ELC_LINK_BREAK, renesas_elc_link_break, dev, peripheral); syscall__retval = renesas_elc_link_break(dev, peripheral); sys_port_trace_syscall_exit(K_SYSCALL_RENESAS_ELC_LINK_BREAK, renesas_elc_link_break, dev, peripheral, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_renesas_elc_enable(const struct device * dev); + +__pinned_func +static inline int renesas_elc_enable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_RENESAS_ELC_ENABLE); + } +#endif + compiler_barrier(); + return z_impl_renesas_elc_enable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define renesas_elc_enable(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RENESAS_ELC_ENABLE, renesas_elc_enable, dev); syscall__retval = renesas_elc_enable(dev); sys_port_trace_syscall_exit(K_SYSCALL_RENESAS_ELC_ENABLE, renesas_elc_enable, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_renesas_elc_disable(const struct device * dev); + +__pinned_func +static inline int renesas_elc_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_RENESAS_ELC_DISABLE); + } +#endif + compiler_barrier(); + return z_impl_renesas_elc_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define renesas_elc_disable(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RENESAS_ELC_DISABLE, renesas_elc_disable, dev); syscall__retval = renesas_elc_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_RENESAS_ELC_DISABLE, renesas_elc_disable, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/reset.h b/build/zephyr/include/generated/zephyr/syscalls/reset.h new file mode 100644 index 0000000..c6be6fd --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/reset.h @@ -0,0 +1,125 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_RESET_H +#define Z_INCLUDE_SYSCALLS_RESET_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_reset_status(const struct device * dev, uint32_t id, uint8_t * status); + +__pinned_func +static inline int reset_status(const struct device * dev, uint32_t id, uint8_t * status) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = id }; + union { uintptr_t x; uint8_t * val; } parm2 = { .val = status }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_RESET_STATUS); + } +#endif + compiler_barrier(); + return z_impl_reset_status(dev, id, status); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define reset_status(dev, id, status) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RESET_STATUS, reset_status, dev, id, status); syscall__retval = reset_status(dev, id, status); sys_port_trace_syscall_exit(K_SYSCALL_RESET_STATUS, reset_status, dev, id, status, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_reset_line_assert(const struct device * dev, uint32_t id); + +__pinned_func +static inline int reset_line_assert(const struct device * dev, uint32_t id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RESET_LINE_ASSERT); + } +#endif + compiler_barrier(); + return z_impl_reset_line_assert(dev, id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define reset_line_assert(dev, id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RESET_LINE_ASSERT, reset_line_assert, dev, id); syscall__retval = reset_line_assert(dev, id); sys_port_trace_syscall_exit(K_SYSCALL_RESET_LINE_ASSERT, reset_line_assert, dev, id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_reset_line_deassert(const struct device * dev, uint32_t id); + +__pinned_func +static inline int reset_line_deassert(const struct device * dev, uint32_t id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RESET_LINE_DEASSERT); + } +#endif + compiler_barrier(); + return z_impl_reset_line_deassert(dev, id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define reset_line_deassert(dev, id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RESET_LINE_DEASSERT, reset_line_deassert, dev, id); syscall__retval = reset_line_deassert(dev, id); sys_port_trace_syscall_exit(K_SYSCALL_RESET_LINE_DEASSERT, reset_line_deassert, dev, id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_reset_line_toggle(const struct device * dev, uint32_t id); + +__pinned_func +static inline int reset_line_toggle(const struct device * dev, uint32_t id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RESET_LINE_TOGGLE); + } +#endif + compiler_barrier(); + return z_impl_reset_line_toggle(dev, id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define reset_line_toggle(dev, id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RESET_LINE_TOGGLE, reset_line_toggle, dev, id); syscall__retval = reset_line_toggle(dev, id); sys_port_trace_syscall_exit(K_SYSCALL_RESET_LINE_TOGGLE, reset_line_toggle, dev, id, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/retained_mem.h b/build/zephyr/include/generated/zephyr/syscalls/retained_mem.h new file mode 100644 index 0000000..b3725f1 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/retained_mem.h @@ -0,0 +1,126 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_RETAINED_MEM_H +#define Z_INCLUDE_SYSCALLS_RETAINED_MEM_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern ssize_t z_impl_retained_mem_size(const struct device * dev); + +__pinned_func +static inline ssize_t retained_mem_size(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (ssize_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_RETAINED_MEM_SIZE); + } +#endif + compiler_barrier(); + return z_impl_retained_mem_size(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define retained_mem_size(dev) ({ ssize_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RETAINED_MEM_SIZE, retained_mem_size, dev); syscall__retval = retained_mem_size(dev); sys_port_trace_syscall_exit(K_SYSCALL_RETAINED_MEM_SIZE, retained_mem_size, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_retained_mem_read(const struct device * dev, off_t offset, uint8_t * buffer, size_t size); + +__pinned_func +static inline int retained_mem_read(const struct device * dev, off_t offset, uint8_t * buffer, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; uint8_t * val; } parm2 = { .val = buffer }; + union { uintptr_t x; size_t val; } parm3 = { .val = size }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_RETAINED_MEM_READ); + } +#endif + compiler_barrier(); + return z_impl_retained_mem_read(dev, offset, buffer, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define retained_mem_read(dev, offset, buffer, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RETAINED_MEM_READ, retained_mem_read, dev, offset, buffer, size); syscall__retval = retained_mem_read(dev, offset, buffer, size); sys_port_trace_syscall_exit(K_SYSCALL_RETAINED_MEM_READ, retained_mem_read, dev, offset, buffer, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_retained_mem_write(const struct device * dev, off_t offset, const uint8_t * buffer, size_t size); + +__pinned_func +static inline int retained_mem_write(const struct device * dev, off_t offset, const uint8_t * buffer, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; off_t val; } parm1 = { .val = offset }; + union { uintptr_t x; const uint8_t * val; } parm2 = { .val = buffer }; + union { uintptr_t x; size_t val; } parm3 = { .val = size }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_RETAINED_MEM_WRITE); + } +#endif + compiler_barrier(); + return z_impl_retained_mem_write(dev, offset, buffer, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define retained_mem_write(dev, offset, buffer, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RETAINED_MEM_WRITE, retained_mem_write, dev, offset, buffer, size); syscall__retval = retained_mem_write(dev, offset, buffer, size); sys_port_trace_syscall_exit(K_SYSCALL_RETAINED_MEM_WRITE, retained_mem_write, dev, offset, buffer, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_retained_mem_clear(const struct device * dev); + +__pinned_func +static inline int retained_mem_clear(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_RETAINED_MEM_CLEAR); + } +#endif + compiler_barrier(); + return z_impl_retained_mem_clear(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define retained_mem_clear(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RETAINED_MEM_CLEAR, retained_mem_clear, dev); syscall__retval = retained_mem_clear(dev); sys_port_trace_syscall_exit(K_SYSCALL_RETAINED_MEM_CLEAR, retained_mem_clear, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/rtc.h b/build/zephyr/include/generated/zephyr/syscalls/rtc.h new file mode 100644 index 0000000..460c4e6 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/rtc.h @@ -0,0 +1,225 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_RTC_H +#define Z_INCLUDE_SYSCALLS_RTC_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_rtc_set_time(const struct device * dev, const struct rtc_time * timeptr); + +__pinned_func +static inline int rtc_set_time(const struct device * dev, const struct rtc_time * timeptr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct rtc_time * val; } parm1 = { .val = timeptr }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RTC_SET_TIME); + } +#endif + compiler_barrier(); + return z_impl_rtc_set_time(dev, timeptr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_set_time(dev, timeptr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_SET_TIME, rtc_set_time, dev, timeptr); syscall__retval = rtc_set_time(dev, timeptr); sys_port_trace_syscall_exit(K_SYSCALL_RTC_SET_TIME, rtc_set_time, dev, timeptr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_get_time(const struct device * dev, struct rtc_time * timeptr); + +__pinned_func +static inline int rtc_get_time(const struct device * dev, struct rtc_time * timeptr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct rtc_time * val; } parm1 = { .val = timeptr }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RTC_GET_TIME); + } +#endif + compiler_barrier(); + return z_impl_rtc_get_time(dev, timeptr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_get_time(dev, timeptr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_GET_TIME, rtc_get_time, dev, timeptr); syscall__retval = rtc_get_time(dev, timeptr); sys_port_trace_syscall_exit(K_SYSCALL_RTC_GET_TIME, rtc_get_time, dev, timeptr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_alarm_get_supported_fields(const struct device * dev, uint16_t id, uint16_t * mask); + +__pinned_func +static inline int rtc_alarm_get_supported_fields(const struct device * dev, uint16_t id, uint16_t * mask) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = id }; + union { uintptr_t x; uint16_t * val; } parm2 = { .val = mask }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_RTC_ALARM_GET_SUPPORTED_FIELDS); + } +#endif + compiler_barrier(); + return z_impl_rtc_alarm_get_supported_fields(dev, id, mask); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_alarm_get_supported_fields(dev, id, mask) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_ALARM_GET_SUPPORTED_FIELDS, rtc_alarm_get_supported_fields, dev, id, mask); syscall__retval = rtc_alarm_get_supported_fields(dev, id, mask); sys_port_trace_syscall_exit(K_SYSCALL_RTC_ALARM_GET_SUPPORTED_FIELDS, rtc_alarm_get_supported_fields, dev, id, mask, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_alarm_set_time(const struct device * dev, uint16_t id, uint16_t mask, const struct rtc_time * timeptr); + +__pinned_func +static inline int rtc_alarm_set_time(const struct device * dev, uint16_t id, uint16_t mask, const struct rtc_time * timeptr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = id }; + union { uintptr_t x; uint16_t val; } parm2 = { .val = mask }; + union { uintptr_t x; const struct rtc_time * val; } parm3 = { .val = timeptr }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_RTC_ALARM_SET_TIME); + } +#endif + compiler_barrier(); + return z_impl_rtc_alarm_set_time(dev, id, mask, timeptr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_alarm_set_time(dev, id, mask, timeptr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_ALARM_SET_TIME, rtc_alarm_set_time, dev, id, mask, timeptr); syscall__retval = rtc_alarm_set_time(dev, id, mask, timeptr); sys_port_trace_syscall_exit(K_SYSCALL_RTC_ALARM_SET_TIME, rtc_alarm_set_time, dev, id, mask, timeptr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_alarm_get_time(const struct device * dev, uint16_t id, uint16_t * mask, struct rtc_time * timeptr); + +__pinned_func +static inline int rtc_alarm_get_time(const struct device * dev, uint16_t id, uint16_t * mask, struct rtc_time * timeptr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = id }; + union { uintptr_t x; uint16_t * val; } parm2 = { .val = mask }; + union { uintptr_t x; struct rtc_time * val; } parm3 = { .val = timeptr }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_RTC_ALARM_GET_TIME); + } +#endif + compiler_barrier(); + return z_impl_rtc_alarm_get_time(dev, id, mask, timeptr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_alarm_get_time(dev, id, mask, timeptr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_ALARM_GET_TIME, rtc_alarm_get_time, dev, id, mask, timeptr); syscall__retval = rtc_alarm_get_time(dev, id, mask, timeptr); sys_port_trace_syscall_exit(K_SYSCALL_RTC_ALARM_GET_TIME, rtc_alarm_get_time, dev, id, mask, timeptr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_alarm_is_pending(const struct device * dev, uint16_t id); + +__pinned_func +static inline int rtc_alarm_is_pending(const struct device * dev, uint16_t id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RTC_ALARM_IS_PENDING); + } +#endif + compiler_barrier(); + return z_impl_rtc_alarm_is_pending(dev, id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_alarm_is_pending(dev, id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_ALARM_IS_PENDING, rtc_alarm_is_pending, dev, id); syscall__retval = rtc_alarm_is_pending(dev, id); sys_port_trace_syscall_exit(K_SYSCALL_RTC_ALARM_IS_PENDING, rtc_alarm_is_pending, dev, id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_set_calibration(const struct device * dev, int32_t calibration); + +__pinned_func +static inline int rtc_set_calibration(const struct device * dev, int32_t calibration) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int32_t val; } parm1 = { .val = calibration }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RTC_SET_CALIBRATION); + } +#endif + compiler_barrier(); + return z_impl_rtc_set_calibration(dev, calibration); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_set_calibration(dev, calibration) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_SET_CALIBRATION, rtc_set_calibration, dev, calibration); syscall__retval = rtc_set_calibration(dev, calibration); sys_port_trace_syscall_exit(K_SYSCALL_RTC_SET_CALIBRATION, rtc_set_calibration, dev, calibration, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtc_get_calibration(const struct device * dev, int32_t * calibration); + +__pinned_func +static inline int rtc_get_calibration(const struct device * dev, int32_t * calibration) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int32_t * val; } parm1 = { .val = calibration }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RTC_GET_CALIBRATION); + } +#endif + compiler_barrier(); + return z_impl_rtc_get_calibration(dev, calibration); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtc_get_calibration(dev, calibration) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTC_GET_CALIBRATION, rtc_get_calibration, dev, calibration); syscall__retval = rtc_get_calibration(dev, calibration); sys_port_trace_syscall_exit(K_SYSCALL_RTC_GET_CALIBRATION, rtc_get_calibration, dev, calibration, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/rtio.h b/build/zephyr/include/generated/zephyr/syscalls/rtio.h new file mode 100644 index 0000000..bac2508 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/rtio.h @@ -0,0 +1,251 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_RTIO_H +#define Z_INCLUDE_SYSCALLS_RTIO_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_rtio_sqe_signal(struct rtio_sqe * sqe); + +__pinned_func +static inline void rtio_sqe_signal(struct rtio_sqe * sqe) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct rtio_sqe * val; } parm0 = { .val = sqe }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_RTIO_SQE_SIGNAL); + return; + } +#endif + compiler_barrier(); + z_impl_rtio_sqe_signal(sqe); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_sqe_signal(sqe) do { sys_port_trace_syscall_enter(K_SYSCALL_RTIO_SQE_SIGNAL, rtio_sqe_signal, sqe); rtio_sqe_signal(sqe); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_SQE_SIGNAL, rtio_sqe_signal, sqe); } while(false) +#endif +#endif + + +extern int z_impl_rtio_cqe_get_mempool_buffer(const struct rtio * r, struct rtio_cqe * cqe, uint8_t ** buff, uint32_t * buff_len); + +__pinned_func +static inline int rtio_cqe_get_mempool_buffer(const struct rtio * r, struct rtio_cqe * cqe, uint8_t ** buff, uint32_t * buff_len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct rtio * val; } parm0 = { .val = r }; + union { uintptr_t x; struct rtio_cqe * val; } parm1 = { .val = cqe }; + union { uintptr_t x; uint8_t ** val; } parm2 = { .val = buff }; + union { uintptr_t x; uint32_t * val; } parm3 = { .val = buff_len }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_RTIO_CQE_GET_MEMPOOL_BUFFER); + } +#endif + compiler_barrier(); + return z_impl_rtio_cqe_get_mempool_buffer(r, cqe, buff, buff_len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_cqe_get_mempool_buffer(r, cqe, buff, buff_len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTIO_CQE_GET_MEMPOOL_BUFFER, rtio_cqe_get_mempool_buffer, r, cqe, buff, buff_len); syscall__retval = rtio_cqe_get_mempool_buffer(r, cqe, buff, buff_len); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_CQE_GET_MEMPOOL_BUFFER, rtio_cqe_get_mempool_buffer, r, cqe, buff, buff_len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_rtio_release_buffer(struct rtio * r, void * buff, uint32_t buff_len); + +__pinned_func +static inline void rtio_release_buffer(struct rtio * r, void * buff, uint32_t buff_len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct rtio * val; } parm0 = { .val = r }; + union { uintptr_t x; void * val; } parm1 = { .val = buff }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = buff_len }; + (void) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_RTIO_RELEASE_BUFFER); + return; + } +#endif + compiler_barrier(); + z_impl_rtio_release_buffer(r, buff, buff_len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_release_buffer(r, buff, buff_len) do { sys_port_trace_syscall_enter(K_SYSCALL_RTIO_RELEASE_BUFFER, rtio_release_buffer, r, buff, buff_len); rtio_release_buffer(r, buff, buff_len); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_RELEASE_BUFFER, rtio_release_buffer, r, buff, buff_len); } while(false) +#endif +#endif + + +extern int z_impl_rtio_sqe_cancel(struct rtio_sqe * sqe); + +__pinned_func +static inline int rtio_sqe_cancel(struct rtio_sqe * sqe) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct rtio_sqe * val; } parm0 = { .val = sqe }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_RTIO_SQE_CANCEL); + } +#endif + compiler_barrier(); + return z_impl_rtio_sqe_cancel(sqe); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_sqe_cancel(sqe) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTIO_SQE_CANCEL, rtio_sqe_cancel, sqe); syscall__retval = rtio_sqe_cancel(sqe); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_SQE_CANCEL, rtio_sqe_cancel, sqe, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtio_sqe_copy_in_get_handles(struct rtio * r, const struct rtio_sqe * sqes, struct rtio_sqe ** handle, size_t sqe_count); + +__pinned_func +static inline int rtio_sqe_copy_in_get_handles(struct rtio * r, const struct rtio_sqe * sqes, struct rtio_sqe ** handle, size_t sqe_count) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct rtio * val; } parm0 = { .val = r }; + union { uintptr_t x; const struct rtio_sqe * val; } parm1 = { .val = sqes }; + union { uintptr_t x; struct rtio_sqe ** val; } parm2 = { .val = handle }; + union { uintptr_t x; size_t val; } parm3 = { .val = sqe_count }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_RTIO_SQE_COPY_IN_GET_HANDLES); + } +#endif + compiler_barrier(); + return z_impl_rtio_sqe_copy_in_get_handles(r, sqes, handle, sqe_count); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_sqe_copy_in_get_handles(r, sqes, handle, sqe_count) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTIO_SQE_COPY_IN_GET_HANDLES, rtio_sqe_copy_in_get_handles, r, sqes, handle, sqe_count); syscall__retval = rtio_sqe_copy_in_get_handles(r, sqes, handle, sqe_count); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_SQE_COPY_IN_GET_HANDLES, rtio_sqe_copy_in_get_handles, r, sqes, handle, sqe_count, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtio_cqe_copy_out(struct rtio * r, struct rtio_cqe * cqes, size_t cqe_count, k_timeout_t timeout); + +__pinned_func +static inline int rtio_cqe_copy_out(struct rtio * r, struct rtio_cqe * cqes, size_t cqe_count, k_timeout_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct rtio * val; } parm0 = { .val = r }; + union { uintptr_t x; struct rtio_cqe * val; } parm1 = { .val = cqes }; + union { uintptr_t x; size_t val; } parm2 = { .val = cqe_count }; + union { struct { uintptr_t lo, hi; } split; k_timeout_t val; } parm3 = { .val = timeout }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.split.lo, parm3.split.hi, K_SYSCALL_RTIO_CQE_COPY_OUT); + } +#endif + compiler_barrier(); + return z_impl_rtio_cqe_copy_out(r, cqes, cqe_count, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_cqe_copy_out(r, cqes, cqe_count, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTIO_CQE_COPY_OUT, rtio_cqe_copy_out, r, cqes, cqe_count, timeout); syscall__retval = rtio_cqe_copy_out(r, cqes, cqe_count, timeout); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_CQE_COPY_OUT, rtio_cqe_copy_out, r, cqes, cqe_count, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_rtio_submit(struct rtio * r, uint32_t wait_count); + +__pinned_func +static inline int rtio_submit(struct rtio * r, uint32_t wait_count) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct rtio * val; } parm0 = { .val = r }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = wait_count }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RTIO_SUBMIT); + } +#endif + compiler_barrier(); + return z_impl_rtio_submit(r, wait_count); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_submit(r, wait_count) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTIO_SUBMIT, rtio_submit, r, wait_count); syscall__retval = rtio_submit(r, wait_count); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_SUBMIT, rtio_submit, r, wait_count, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern struct rtio * z_impl_rtio_pool_acquire(struct rtio_pool * pool); + +__pinned_func +static inline struct rtio * rtio_pool_acquire(struct rtio_pool * pool) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct rtio_pool * val; } parm0 = { .val = pool }; + return (struct rtio *) arch_syscall_invoke1(parm0.x, K_SYSCALL_RTIO_POOL_ACQUIRE); + } +#endif + compiler_barrier(); + return z_impl_rtio_pool_acquire(pool); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_pool_acquire(pool) ({ struct rtio * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_RTIO_POOL_ACQUIRE, rtio_pool_acquire, pool); syscall__retval = rtio_pool_acquire(pool); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_POOL_ACQUIRE, rtio_pool_acquire, pool, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_rtio_pool_release(struct rtio_pool * pool, struct rtio * r); + +__pinned_func +static inline void rtio_pool_release(struct rtio_pool * pool, struct rtio * r) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; struct rtio_pool * val; } parm0 = { .val = pool }; + union { uintptr_t x; struct rtio * val; } parm1 = { .val = r }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_RTIO_POOL_RELEASE); + return; + } +#endif + compiler_barrier(); + z_impl_rtio_pool_release(pool, r); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define rtio_pool_release(pool, r) do { sys_port_trace_syscall_enter(K_SYSCALL_RTIO_POOL_RELEASE, rtio_pool_release, pool, r); rtio_pool_release(pool, r); sys_port_trace_syscall_exit(K_SYSCALL_RTIO_POOL_RELEASE, rtio_pool_release, pool, r); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/sdhc.h b/build/zephyr/include/generated/zephyr/syscalls/sdhc.h new file mode 100644 index 0000000..5e0ec48 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/sdhc.h @@ -0,0 +1,243 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SDHC_H +#define Z_INCLUDE_SYSCALLS_SDHC_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_sdhc_hw_reset(const struct device * dev); + +__pinned_func +static inline int sdhc_hw_reset(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_SDHC_HW_RESET); + } +#endif + compiler_barrier(); + return z_impl_sdhc_hw_reset(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_hw_reset(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_HW_RESET, sdhc_hw_reset, dev); syscall__retval = sdhc_hw_reset(dev); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_HW_RESET, sdhc_hw_reset, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_request(const struct device * dev, struct sdhc_command * cmd, struct sdhc_data * data); + +__pinned_func +static inline int sdhc_request(const struct device * dev, struct sdhc_command * cmd, struct sdhc_data * data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct sdhc_command * val; } parm1 = { .val = cmd }; + union { uintptr_t x; struct sdhc_data * val; } parm2 = { .val = data }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SDHC_REQUEST); + } +#endif + compiler_barrier(); + return z_impl_sdhc_request(dev, cmd, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_request(dev, cmd, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_REQUEST, sdhc_request, dev, cmd, data); syscall__retval = sdhc_request(dev, cmd, data); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_REQUEST, sdhc_request, dev, cmd, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_set_io(const struct device * dev, struct sdhc_io * io); + +__pinned_func +static inline int sdhc_set_io(const struct device * dev, struct sdhc_io * io) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct sdhc_io * val; } parm1 = { .val = io }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SDHC_SET_IO); + } +#endif + compiler_barrier(); + return z_impl_sdhc_set_io(dev, io); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_set_io(dev, io) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_SET_IO, sdhc_set_io, dev, io); syscall__retval = sdhc_set_io(dev, io); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_SET_IO, sdhc_set_io, dev, io, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_card_present(const struct device * dev); + +__pinned_func +static inline int sdhc_card_present(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_SDHC_CARD_PRESENT); + } +#endif + compiler_barrier(); + return z_impl_sdhc_card_present(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_card_present(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_CARD_PRESENT, sdhc_card_present, dev); syscall__retval = sdhc_card_present(dev); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_CARD_PRESENT, sdhc_card_present, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_execute_tuning(const struct device * dev); + +__pinned_func +static inline int sdhc_execute_tuning(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_SDHC_EXECUTE_TUNING); + } +#endif + compiler_barrier(); + return z_impl_sdhc_execute_tuning(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_execute_tuning(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_EXECUTE_TUNING, sdhc_execute_tuning, dev); syscall__retval = sdhc_execute_tuning(dev); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_EXECUTE_TUNING, sdhc_execute_tuning, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_card_busy(const struct device * dev); + +__pinned_func +static inline int sdhc_card_busy(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_SDHC_CARD_BUSY); + } +#endif + compiler_barrier(); + return z_impl_sdhc_card_busy(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_card_busy(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_CARD_BUSY, sdhc_card_busy, dev); syscall__retval = sdhc_card_busy(dev); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_CARD_BUSY, sdhc_card_busy, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_get_host_props(const struct device * dev, struct sdhc_host_props * props); + +__pinned_func +static inline int sdhc_get_host_props(const struct device * dev, struct sdhc_host_props * props) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct sdhc_host_props * val; } parm1 = { .val = props }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SDHC_GET_HOST_PROPS); + } +#endif + compiler_barrier(); + return z_impl_sdhc_get_host_props(dev, props); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_get_host_props(dev, props) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_GET_HOST_PROPS, sdhc_get_host_props, dev, props); syscall__retval = sdhc_get_host_props(dev, props); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_GET_HOST_PROPS, sdhc_get_host_props, dev, props, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_enable_interrupt(const struct device * dev, sdhc_interrupt_cb_t callback, int sources, void * user_data); + +__pinned_func +static inline int sdhc_enable_interrupt(const struct device * dev, sdhc_interrupt_cb_t callback, int sources, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; sdhc_interrupt_cb_t val; } parm1 = { .val = callback }; + union { uintptr_t x; int val; } parm2 = { .val = sources }; + union { uintptr_t x; void * val; } parm3 = { .val = user_data }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SDHC_ENABLE_INTERRUPT); + } +#endif + compiler_barrier(); + return z_impl_sdhc_enable_interrupt(dev, callback, sources, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_enable_interrupt(dev, callback, sources, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_ENABLE_INTERRUPT, sdhc_enable_interrupt, dev, callback, sources, user_data); syscall__retval = sdhc_enable_interrupt(dev, callback, sources, user_data); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_ENABLE_INTERRUPT, sdhc_enable_interrupt, dev, callback, sources, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sdhc_disable_interrupt(const struct device * dev, int sources); + +__pinned_func +static inline int sdhc_disable_interrupt(const struct device * dev, int sources) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int val; } parm1 = { .val = sources }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SDHC_DISABLE_INTERRUPT); + } +#endif + compiler_barrier(); + return z_impl_sdhc_disable_interrupt(dev, sources); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sdhc_disable_interrupt(dev, sources) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SDHC_DISABLE_INTERRUPT, sdhc_disable_interrupt, dev, sources); syscall__retval = sdhc_disable_interrupt(dev, sources); sys_port_trace_syscall_exit(K_SYSCALL_SDHC_DISABLE_INTERRUPT, sdhc_disable_interrupt, dev, sources, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/sensor.h b/build/zephyr/include/generated/zephyr/syscalls/sensor.h new file mode 100644 index 0000000..582a83a --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/sensor.h @@ -0,0 +1,202 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SENSOR_H +#define Z_INCLUDE_SYSCALLS_SENSOR_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_sensor_attr_set(const struct device * dev, enum sensor_channel chan, enum sensor_attribute attr, const struct sensor_value * val); + +__pinned_func +static inline int sensor_attr_set(const struct device * dev, enum sensor_channel chan, enum sensor_attribute attr, const struct sensor_value * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum sensor_channel val; } parm1 = { .val = chan }; + union { uintptr_t x; enum sensor_attribute val; } parm2 = { .val = attr }; + union { uintptr_t x; const struct sensor_value * val; } parm3 = { .val = val }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SENSOR_ATTR_SET); + } +#endif + compiler_barrier(); + return z_impl_sensor_attr_set(dev, chan, attr, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sensor_attr_set(dev, chan, attr, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENSOR_ATTR_SET, sensor_attr_set, dev, chan, attr, val); syscall__retval = sensor_attr_set(dev, chan, attr, val); sys_port_trace_syscall_exit(K_SYSCALL_SENSOR_ATTR_SET, sensor_attr_set, dev, chan, attr, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sensor_attr_get(const struct device * dev, enum sensor_channel chan, enum sensor_attribute attr, struct sensor_value * val); + +__pinned_func +static inline int sensor_attr_get(const struct device * dev, enum sensor_channel chan, enum sensor_attribute attr, struct sensor_value * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum sensor_channel val; } parm1 = { .val = chan }; + union { uintptr_t x; enum sensor_attribute val; } parm2 = { .val = attr }; + union { uintptr_t x; struct sensor_value * val; } parm3 = { .val = val }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SENSOR_ATTR_GET); + } +#endif + compiler_barrier(); + return z_impl_sensor_attr_get(dev, chan, attr, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sensor_attr_get(dev, chan, attr, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENSOR_ATTR_GET, sensor_attr_get, dev, chan, attr, val); syscall__retval = sensor_attr_get(dev, chan, attr, val); sys_port_trace_syscall_exit(K_SYSCALL_SENSOR_ATTR_GET, sensor_attr_get, dev, chan, attr, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sensor_sample_fetch(const struct device * dev); + +__pinned_func +static inline int sensor_sample_fetch(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_SENSOR_SAMPLE_FETCH); + } +#endif + compiler_barrier(); + return z_impl_sensor_sample_fetch(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sensor_sample_fetch(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENSOR_SAMPLE_FETCH, sensor_sample_fetch, dev); syscall__retval = sensor_sample_fetch(dev); sys_port_trace_syscall_exit(K_SYSCALL_SENSOR_SAMPLE_FETCH, sensor_sample_fetch, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sensor_sample_fetch_chan(const struct device * dev, enum sensor_channel type); + +__pinned_func +static inline int sensor_sample_fetch_chan(const struct device * dev, enum sensor_channel type) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum sensor_channel val; } parm1 = { .val = type }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SENSOR_SAMPLE_FETCH_CHAN); + } +#endif + compiler_barrier(); + return z_impl_sensor_sample_fetch_chan(dev, type); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sensor_sample_fetch_chan(dev, type) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENSOR_SAMPLE_FETCH_CHAN, sensor_sample_fetch_chan, dev, type); syscall__retval = sensor_sample_fetch_chan(dev, type); sys_port_trace_syscall_exit(K_SYSCALL_SENSOR_SAMPLE_FETCH_CHAN, sensor_sample_fetch_chan, dev, type, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sensor_channel_get(const struct device * dev, enum sensor_channel chan, struct sensor_value * val); + +__pinned_func +static inline int sensor_channel_get(const struct device * dev, enum sensor_channel chan, struct sensor_value * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum sensor_channel val; } parm1 = { .val = chan }; + union { uintptr_t x; struct sensor_value * val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SENSOR_CHANNEL_GET); + } +#endif + compiler_barrier(); + return z_impl_sensor_channel_get(dev, chan, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sensor_channel_get(dev, chan, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENSOR_CHANNEL_GET, sensor_channel_get, dev, chan, val); syscall__retval = sensor_channel_get(dev, chan, val); sys_port_trace_syscall_exit(K_SYSCALL_SENSOR_CHANNEL_GET, sensor_channel_get, dev, chan, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sensor_get_decoder(const struct device * dev, const struct sensor_decoder_api ** decoder); + +__pinned_func +static inline int sensor_get_decoder(const struct device * dev, const struct sensor_decoder_api ** decoder) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct sensor_decoder_api ** val; } parm1 = { .val = decoder }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SENSOR_GET_DECODER); + } +#endif + compiler_barrier(); + return z_impl_sensor_get_decoder(dev, decoder); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sensor_get_decoder(dev, decoder) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENSOR_GET_DECODER, sensor_get_decoder, dev, decoder); syscall__retval = sensor_get_decoder(dev, decoder); sys_port_trace_syscall_exit(K_SYSCALL_SENSOR_GET_DECODER, sensor_get_decoder, dev, decoder, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sensor_reconfigure_read_iodev(const struct rtio_iodev * iodev, const struct device * sensor, const struct sensor_chan_spec * channels, size_t num_channels); + +__pinned_func +static inline int sensor_reconfigure_read_iodev(const struct rtio_iodev * iodev, const struct device * sensor, const struct sensor_chan_spec * channels, size_t num_channels) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct rtio_iodev * val; } parm0 = { .val = iodev }; + union { uintptr_t x; const struct device * val; } parm1 = { .val = sensor }; + union { uintptr_t x; const struct sensor_chan_spec * val; } parm2 = { .val = channels }; + union { uintptr_t x; size_t val; } parm3 = { .val = num_channels }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SENSOR_RECONFIGURE_READ_IODEV); + } +#endif + compiler_barrier(); + return z_impl_sensor_reconfigure_read_iodev(iodev, sensor, channels, num_channels); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sensor_reconfigure_read_iodev(iodev, sensor, channels, num_channels) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENSOR_RECONFIGURE_READ_IODEV, sensor_reconfigure_read_iodev, iodev, sensor, channels, num_channels); syscall__retval = sensor_reconfigure_read_iodev(iodev, sensor, channels, num_channels); sys_port_trace_syscall_exit(K_SYSCALL_SENSOR_RECONFIGURE_READ_IODEV, sensor_reconfigure_read_iodev, iodev, sensor, channels, num_channels, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/sent.h b/build/zephyr/include/generated/zephyr/syscalls/sent.h new file mode 100644 index 0000000..81d5487 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/sent.h @@ -0,0 +1,101 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SENT_H +#define Z_INCLUDE_SYSCALLS_SENT_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_sent_start_listening(const struct device * dev, uint8_t channel); + +__pinned_func +static inline int sent_start_listening(const struct device * dev, uint8_t channel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = channel }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SENT_START_LISTENING); + } +#endif + compiler_barrier(); + return z_impl_sent_start_listening(dev, channel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sent_start_listening(dev, channel) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENT_START_LISTENING, sent_start_listening, dev, channel); syscall__retval = sent_start_listening(dev, channel); sys_port_trace_syscall_exit(K_SYSCALL_SENT_START_LISTENING, sent_start_listening, dev, channel, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sent_stop_listening(const struct device * dev, uint8_t channel); + +__pinned_func +static inline int sent_stop_listening(const struct device * dev, uint8_t channel) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = channel }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SENT_STOP_LISTENING); + } +#endif + compiler_barrier(); + return z_impl_sent_stop_listening(dev, channel); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sent_stop_listening(dev, channel) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENT_STOP_LISTENING, sent_stop_listening, dev, channel); syscall__retval = sent_stop_listening(dev, channel); sys_port_trace_syscall_exit(K_SYSCALL_SENT_STOP_LISTENING, sent_stop_listening, dev, channel, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sent_register_callback(const struct device * dev, uint8_t channel, struct sent_rx_callback_configs callback_configs); + +__pinned_func +static inline int sent_register_callback(const struct device * dev, uint8_t channel, struct sent_rx_callback_configs callback_configs) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = channel }; + union { uintptr_t x; struct sent_rx_callback_configs val; } parm2 = { .val = callback_configs }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SENT_REGISTER_CALLBACK); + } +#endif + compiler_barrier(); + return z_impl_sent_register_callback(dev, channel, callback_configs); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sent_register_callback(dev, channel, callback_configs) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SENT_REGISTER_CALLBACK, sent_register_callback, dev, channel, callback_configs); syscall__retval = sent_register_callback(dev, channel, callback_configs); sys_port_trace_syscall_exit(K_SYSCALL_SENT_REGISTER_CALLBACK, sent_register_callback, dev, channel, callback_configs, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/sip_svc_driver.h b/build/zephyr/include/generated/zephyr/syscalls/sip_svc_driver.h new file mode 100644 index 0000000..7d306e7 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/sip_svc_driver.h @@ -0,0 +1,285 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SIP_SVC_DRIVER_H +#define Z_INCLUDE_SYSCALLS_SIP_SVC_DRIVER_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_sip_supervisory_call(const struct device * dev, unsigned long function_id, unsigned long arg0, unsigned long arg1, unsigned long arg2, unsigned long arg3, unsigned long arg4, unsigned long arg5, unsigned long arg6, struct arm_smccc_res * res); + +__pinned_func +static inline void sip_supervisory_call(const struct device * dev, unsigned long function_id, unsigned long arg0, unsigned long arg1, unsigned long arg2, unsigned long arg3, unsigned long arg4, unsigned long arg5, unsigned long arg6, struct arm_smccc_res * res) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; unsigned long val; } parm1 = { .val = function_id }; + union { uintptr_t x; unsigned long val; } parm2 = { .val = arg0 }; + union { uintptr_t x; unsigned long val; } parm3 = { .val = arg1 }; + union { uintptr_t x; unsigned long val; } parm4 = { .val = arg2 }; + union { uintptr_t x; unsigned long val; } parm5 = { .val = arg3 }; + union { uintptr_t x; unsigned long val; } parm6 = { .val = arg4 }; + union { uintptr_t x; unsigned long val; } parm7 = { .val = arg5 }; + union { uintptr_t x; unsigned long val; } parm8 = { .val = arg6 }; + union { uintptr_t x; struct arm_smccc_res * val; } parm9 = { .val = res }; + uintptr_t more[] = { + parm5.x, + parm6.x, + parm7.x, + parm8.x, + parm9.x + }; + (void) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, (uintptr_t) &more, K_SYSCALL_SIP_SUPERVISORY_CALL); + return; + } +#endif + compiler_barrier(); + z_impl_sip_supervisory_call(dev, function_id, arg0, arg1, arg2, arg3, arg4, arg5, arg6, res); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_supervisory_call(dev, function_id, arg0, arg1, arg2, arg3, arg4, arg5, arg6, res) do { sys_port_trace_syscall_enter(K_SYSCALL_SIP_SUPERVISORY_CALL, sip_supervisory_call, dev, function_id, arg0, arg1, arg2, arg3, arg4, arg5, arg6, res); sip_supervisory_call(dev, function_id, arg0, arg1, arg2, arg3, arg4, arg5, arg6, res); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SUPERVISORY_CALL, sip_supervisory_call, dev, function_id, arg0, arg1, arg2, arg3, arg4, arg5, arg6, res); } while(false) +#endif +#endif + + +extern bool z_impl_sip_svc_plat_func_id_valid(const struct device * dev, uint32_t command, uint32_t func_id); + +__pinned_func +static inline bool sip_svc_plat_func_id_valid(const struct device * dev, uint32_t command, uint32_t func_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = command }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = func_id }; + return (bool) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SIP_SVC_PLAT_FUNC_ID_VALID); + } +#endif + compiler_barrier(); + return z_impl_sip_svc_plat_func_id_valid(dev, command, func_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_func_id_valid(dev, command, func_id) ({ bool syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_FUNC_ID_VALID, sip_svc_plat_func_id_valid, dev, command, func_id); syscall__retval = sip_svc_plat_func_id_valid(dev, command, func_id); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_FUNC_ID_VALID, sip_svc_plat_func_id_valid, dev, command, func_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_sip_svc_plat_format_trans_id(const struct device * dev, uint32_t client_idx, uint32_t trans_idx); + +__pinned_func +static inline uint32_t sip_svc_plat_format_trans_id(const struct device * dev, uint32_t client_idx, uint32_t trans_idx) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = client_idx }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = trans_idx }; + return (uint32_t) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SIP_SVC_PLAT_FORMAT_TRANS_ID); + } +#endif + compiler_barrier(); + return z_impl_sip_svc_plat_format_trans_id(dev, client_idx, trans_idx); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_format_trans_id(dev, client_idx, trans_idx) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_FORMAT_TRANS_ID, sip_svc_plat_format_trans_id, dev, client_idx, trans_idx); syscall__retval = sip_svc_plat_format_trans_id(dev, client_idx, trans_idx); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_FORMAT_TRANS_ID, sip_svc_plat_format_trans_id, dev, client_idx, trans_idx, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern uint32_t z_impl_sip_svc_plat_get_trans_idx(const struct device * dev, uint32_t trans_id); + +__pinned_func +static inline uint32_t sip_svc_plat_get_trans_idx(const struct device * dev, uint32_t trans_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = trans_id }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SIP_SVC_PLAT_GET_TRANS_IDX); + } +#endif + compiler_barrier(); + return z_impl_sip_svc_plat_get_trans_idx(dev, trans_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_get_trans_idx(dev, trans_id) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_GET_TRANS_IDX, sip_svc_plat_get_trans_idx, dev, trans_id); syscall__retval = sip_svc_plat_get_trans_idx(dev, trans_id); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_GET_TRANS_IDX, sip_svc_plat_get_trans_idx, dev, trans_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_sip_svc_plat_update_trans_id(const struct device * dev, struct sip_svc_request * request, uint32_t trans_id); + +__pinned_func +static inline void sip_svc_plat_update_trans_id(const struct device * dev, struct sip_svc_request * request, uint32_t trans_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct sip_svc_request * val; } parm1 = { .val = request }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = trans_id }; + (void) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SIP_SVC_PLAT_UPDATE_TRANS_ID); + return; + } +#endif + compiler_barrier(); + z_impl_sip_svc_plat_update_trans_id(dev, request, trans_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_update_trans_id(dev, request, trans_id) do { sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_UPDATE_TRANS_ID, sip_svc_plat_update_trans_id, dev, request, trans_id); sip_svc_plat_update_trans_id(dev, request, trans_id); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_UPDATE_TRANS_ID, sip_svc_plat_update_trans_id, dev, request, trans_id); } while(false) +#endif +#endif + + +extern uint32_t z_impl_sip_svc_plat_get_error_code(const struct device * dev, struct arm_smccc_res * res); + +__pinned_func +static inline uint32_t sip_svc_plat_get_error_code(const struct device * dev, struct arm_smccc_res * res) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct arm_smccc_res * val; } parm1 = { .val = res }; + return (uint32_t) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SIP_SVC_PLAT_GET_ERROR_CODE); + } +#endif + compiler_barrier(); + return z_impl_sip_svc_plat_get_error_code(dev, res); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_get_error_code(dev, res) ({ uint32_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_GET_ERROR_CODE, sip_svc_plat_get_error_code, dev, res); syscall__retval = sip_svc_plat_get_error_code(dev, res); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_GET_ERROR_CODE, sip_svc_plat_get_error_code, dev, res, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sip_svc_plat_async_res_req(const struct device * dev, unsigned long * a0, unsigned long * a1, unsigned long * a2, unsigned long * a3, unsigned long * a4, unsigned long * a5, unsigned long * a6, unsigned long * a7, char * buf, size_t size); + +__pinned_func +static inline int sip_svc_plat_async_res_req(const struct device * dev, unsigned long * a0, unsigned long * a1, unsigned long * a2, unsigned long * a3, unsigned long * a4, unsigned long * a5, unsigned long * a6, unsigned long * a7, char * buf, size_t size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; unsigned long * val; } parm1 = { .val = a0 }; + union { uintptr_t x; unsigned long * val; } parm2 = { .val = a1 }; + union { uintptr_t x; unsigned long * val; } parm3 = { .val = a2 }; + union { uintptr_t x; unsigned long * val; } parm4 = { .val = a3 }; + union { uintptr_t x; unsigned long * val; } parm5 = { .val = a4 }; + union { uintptr_t x; unsigned long * val; } parm6 = { .val = a5 }; + union { uintptr_t x; unsigned long * val; } parm7 = { .val = a6 }; + union { uintptr_t x; unsigned long * val; } parm8 = { .val = a7 }; + union { uintptr_t x; char * val; } parm9 = { .val = buf }; + union { uintptr_t x; size_t val; } parm10 = { .val = size }; + uintptr_t more[] = { + parm5.x, + parm6.x, + parm7.x, + parm8.x, + parm9.x, + parm10.x + }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, (uintptr_t) &more, K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_REQ); + } +#endif + compiler_barrier(); + return z_impl_sip_svc_plat_async_res_req(dev, a0, a1, a2, a3, a4, a5, a6, a7, buf, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_async_res_req(dev, a0, a1, a2, a3, a4, a5, a6, a7, buf, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_REQ, sip_svc_plat_async_res_req, dev, a0, a1, a2, a3, a4, a5, a6, a7, buf, size); syscall__retval = sip_svc_plat_async_res_req(dev, a0, a1, a2, a3, a4, a5, a6, a7, buf, size); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_REQ, sip_svc_plat_async_res_req, dev, a0, a1, a2, a3, a4, a5, a6, a7, buf, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_sip_svc_plat_async_res_res(const struct device * dev, struct arm_smccc_res * res, char * buf, size_t * size, uint32_t * trans_id); + +__pinned_func +static inline int sip_svc_plat_async_res_res(const struct device * dev, struct arm_smccc_res * res, char * buf, size_t * size, uint32_t * trans_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct arm_smccc_res * val; } parm1 = { .val = res }; + union { uintptr_t x; char * val; } parm2 = { .val = buf }; + union { uintptr_t x; size_t * val; } parm3 = { .val = size }; + union { uintptr_t x; uint32_t * val; } parm4 = { .val = trans_id }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_RES); + } +#endif + compiler_barrier(); + return z_impl_sip_svc_plat_async_res_res(dev, res, buf, size, trans_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_async_res_res(dev, res, buf, size, trans_id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_RES, sip_svc_plat_async_res_res, dev, res, buf, size, trans_id); syscall__retval = sip_svc_plat_async_res_res(dev, res, buf, size, trans_id); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_ASYNC_RES_RES, sip_svc_plat_async_res_res, dev, res, buf, size, trans_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_sip_svc_plat_free_async_memory(const struct device * dev, struct sip_svc_request * request); + +__pinned_func +static inline void sip_svc_plat_free_async_memory(const struct device * dev, struct sip_svc_request * request) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct sip_svc_request * val; } parm1 = { .val = request }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SIP_SVC_PLAT_FREE_ASYNC_MEMORY); + return; + } +#endif + compiler_barrier(); + z_impl_sip_svc_plat_free_async_memory(dev, request); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sip_svc_plat_free_async_memory(dev, request) do { sys_port_trace_syscall_enter(K_SYSCALL_SIP_SVC_PLAT_FREE_ASYNC_MEMORY, sip_svc_plat_free_async_memory, dev, request); sip_svc_plat_free_async_memory(dev, request); sys_port_trace_syscall_exit(K_SYSCALL_SIP_SVC_PLAT_FREE_ASYNC_MEMORY, sip_svc_plat_free_async_memory, dev, request); } while(false) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/smbus.h b/build/zephyr/include/generated/zephyr/syscalls/smbus.h new file mode 100644 index 0000000..ff86135 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/smbus.h @@ -0,0 +1,417 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SMBUS_H +#define Z_INCLUDE_SYSCALLS_SMBUS_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_smbus_configure(const struct device * dev, uint32_t dev_config); + +__pinned_func +static inline int smbus_configure(const struct device * dev, uint32_t dev_config) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = dev_config }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SMBUS_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_smbus_configure(dev, dev_config); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_configure(dev, dev_config) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_CONFIGURE, smbus_configure, dev, dev_config); syscall__retval = smbus_configure(dev, dev_config); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_CONFIGURE, smbus_configure, dev, dev_config, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_get_config(const struct device * dev, uint32_t * dev_config); + +__pinned_func +static inline int smbus_get_config(const struct device * dev, uint32_t * dev_config) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t * val; } parm1 = { .val = dev_config }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SMBUS_GET_CONFIG); + } +#endif + compiler_barrier(); + return z_impl_smbus_get_config(dev, dev_config); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_get_config(dev, dev_config) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_GET_CONFIG, smbus_get_config, dev, dev_config); syscall__retval = smbus_get_config(dev, dev_config); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_GET_CONFIG, smbus_get_config, dev, dev_config, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_smbalert_remove_cb(const struct device * dev, struct smbus_callback * cb); + +__pinned_func +static inline int smbus_smbalert_remove_cb(const struct device * dev, struct smbus_callback * cb) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct smbus_callback * val; } parm1 = { .val = cb }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SMBUS_SMBALERT_REMOVE_CB); + } +#endif + compiler_barrier(); + return z_impl_smbus_smbalert_remove_cb(dev, cb); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_smbalert_remove_cb(dev, cb) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_SMBALERT_REMOVE_CB, smbus_smbalert_remove_cb, dev, cb); syscall__retval = smbus_smbalert_remove_cb(dev, cb); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_SMBALERT_REMOVE_CB, smbus_smbalert_remove_cb, dev, cb, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_host_notify_remove_cb(const struct device * dev, struct smbus_callback * cb); + +__pinned_func +static inline int smbus_host_notify_remove_cb(const struct device * dev, struct smbus_callback * cb) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct smbus_callback * val; } parm1 = { .val = cb }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SMBUS_HOST_NOTIFY_REMOVE_CB); + } +#endif + compiler_barrier(); + return z_impl_smbus_host_notify_remove_cb(dev, cb); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_host_notify_remove_cb(dev, cb) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_HOST_NOTIFY_REMOVE_CB, smbus_host_notify_remove_cb, dev, cb); syscall__retval = smbus_host_notify_remove_cb(dev, cb); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_HOST_NOTIFY_REMOVE_CB, smbus_host_notify_remove_cb, dev, cb, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_quick(const struct device * dev, uint16_t addr, enum smbus_direction direction); + +__pinned_func +static inline int smbus_quick(const struct device * dev, uint16_t addr, enum smbus_direction direction) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; enum smbus_direction val; } parm2 = { .val = direction }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SMBUS_QUICK); + } +#endif + compiler_barrier(); + return z_impl_smbus_quick(dev, addr, direction); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_quick(dev, addr, direction) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_QUICK, smbus_quick, dev, addr, direction); syscall__retval = smbus_quick(dev, addr, direction); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_QUICK, smbus_quick, dev, addr, direction, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_byte_write(const struct device * dev, uint16_t addr, uint8_t byte); + +__pinned_func +static inline int smbus_byte_write(const struct device * dev, uint16_t addr, uint8_t byte) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = byte }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SMBUS_BYTE_WRITE); + } +#endif + compiler_barrier(); + return z_impl_smbus_byte_write(dev, addr, byte); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_byte_write(dev, addr, byte) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_BYTE_WRITE, smbus_byte_write, dev, addr, byte); syscall__retval = smbus_byte_write(dev, addr, byte); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_BYTE_WRITE, smbus_byte_write, dev, addr, byte, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_byte_read(const struct device * dev, uint16_t addr, uint8_t * byte); + +__pinned_func +static inline int smbus_byte_read(const struct device * dev, uint16_t addr, uint8_t * byte) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t * val; } parm2 = { .val = byte }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SMBUS_BYTE_READ); + } +#endif + compiler_barrier(); + return z_impl_smbus_byte_read(dev, addr, byte); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_byte_read(dev, addr, byte) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_BYTE_READ, smbus_byte_read, dev, addr, byte); syscall__retval = smbus_byte_read(dev, addr, byte); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_BYTE_READ, smbus_byte_read, dev, addr, byte, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_byte_data_write(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t byte); + +__pinned_func +static inline int smbus_byte_data_write(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t byte) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint8_t val; } parm3 = { .val = byte }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SMBUS_BYTE_DATA_WRITE); + } +#endif + compiler_barrier(); + return z_impl_smbus_byte_data_write(dev, addr, cmd, byte); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_byte_data_write(dev, addr, cmd, byte) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_BYTE_DATA_WRITE, smbus_byte_data_write, dev, addr, cmd, byte); syscall__retval = smbus_byte_data_write(dev, addr, cmd, byte); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_BYTE_DATA_WRITE, smbus_byte_data_write, dev, addr, cmd, byte, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_byte_data_read(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t * byte); + +__pinned_func +static inline int smbus_byte_data_read(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t * byte) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint8_t * val; } parm3 = { .val = byte }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SMBUS_BYTE_DATA_READ); + } +#endif + compiler_barrier(); + return z_impl_smbus_byte_data_read(dev, addr, cmd, byte); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_byte_data_read(dev, addr, cmd, byte) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_BYTE_DATA_READ, smbus_byte_data_read, dev, addr, cmd, byte); syscall__retval = smbus_byte_data_read(dev, addr, cmd, byte); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_BYTE_DATA_READ, smbus_byte_data_read, dev, addr, cmd, byte, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_word_data_write(const struct device * dev, uint16_t addr, uint8_t cmd, uint16_t word); + +__pinned_func +static inline int smbus_word_data_write(const struct device * dev, uint16_t addr, uint8_t cmd, uint16_t word) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = word }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SMBUS_WORD_DATA_WRITE); + } +#endif + compiler_barrier(); + return z_impl_smbus_word_data_write(dev, addr, cmd, word); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_word_data_write(dev, addr, cmd, word) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_WORD_DATA_WRITE, smbus_word_data_write, dev, addr, cmd, word); syscall__retval = smbus_word_data_write(dev, addr, cmd, word); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_WORD_DATA_WRITE, smbus_word_data_write, dev, addr, cmd, word, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_word_data_read(const struct device * dev, uint16_t addr, uint8_t cmd, uint16_t * word); + +__pinned_func +static inline int smbus_word_data_read(const struct device * dev, uint16_t addr, uint8_t cmd, uint16_t * word) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint16_t * val; } parm3 = { .val = word }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SMBUS_WORD_DATA_READ); + } +#endif + compiler_barrier(); + return z_impl_smbus_word_data_read(dev, addr, cmd, word); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_word_data_read(dev, addr, cmd, word) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_WORD_DATA_READ, smbus_word_data_read, dev, addr, cmd, word); syscall__retval = smbus_word_data_read(dev, addr, cmd, word); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_WORD_DATA_READ, smbus_word_data_read, dev, addr, cmd, word, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_pcall(const struct device * dev, uint16_t addr, uint8_t cmd, uint16_t send_word, uint16_t * recv_word); + +__pinned_func +static inline int smbus_pcall(const struct device * dev, uint16_t addr, uint8_t cmd, uint16_t send_word, uint16_t * recv_word) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint16_t val; } parm3 = { .val = send_word }; + union { uintptr_t x; uint16_t * val; } parm4 = { .val = recv_word }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_SMBUS_PCALL); + } +#endif + compiler_barrier(); + return z_impl_smbus_pcall(dev, addr, cmd, send_word, recv_word); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_pcall(dev, addr, cmd, send_word, recv_word) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_PCALL, smbus_pcall, dev, addr, cmd, send_word, recv_word); syscall__retval = smbus_pcall(dev, addr, cmd, send_word, recv_word); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_PCALL, smbus_pcall, dev, addr, cmd, send_word, recv_word, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_block_write(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t count, uint8_t * buf); + +__pinned_func +static inline int smbus_block_write(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t count, uint8_t * buf) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint8_t val; } parm3 = { .val = count }; + union { uintptr_t x; uint8_t * val; } parm4 = { .val = buf }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_SMBUS_BLOCK_WRITE); + } +#endif + compiler_barrier(); + return z_impl_smbus_block_write(dev, addr, cmd, count, buf); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_block_write(dev, addr, cmd, count, buf) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_BLOCK_WRITE, smbus_block_write, dev, addr, cmd, count, buf); syscall__retval = smbus_block_write(dev, addr, cmd, count, buf); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_BLOCK_WRITE, smbus_block_write, dev, addr, cmd, count, buf, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_block_read(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t * count, uint8_t * buf); + +__pinned_func +static inline int smbus_block_read(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t * count, uint8_t * buf) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint8_t * val; } parm3 = { .val = count }; + union { uintptr_t x; uint8_t * val; } parm4 = { .val = buf }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_SMBUS_BLOCK_READ); + } +#endif + compiler_barrier(); + return z_impl_smbus_block_read(dev, addr, cmd, count, buf); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_block_read(dev, addr, cmd, count, buf) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_BLOCK_READ, smbus_block_read, dev, addr, cmd, count, buf); syscall__retval = smbus_block_read(dev, addr, cmd, count, buf); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_BLOCK_READ, smbus_block_read, dev, addr, cmd, count, buf, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_smbus_block_pcall(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t snd_count, uint8_t * snd_buf, uint8_t * rcv_count, uint8_t * rcv_buf); + +__pinned_func +static inline int smbus_block_pcall(const struct device * dev, uint16_t addr, uint8_t cmd, uint8_t snd_count, uint8_t * snd_buf, uint8_t * rcv_count, uint8_t * rcv_buf) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = addr }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = cmd }; + union { uintptr_t x; uint8_t val; } parm3 = { .val = snd_count }; + union { uintptr_t x; uint8_t * val; } parm4 = { .val = snd_buf }; + union { uintptr_t x; uint8_t * val; } parm5 = { .val = rcv_count }; + union { uintptr_t x; uint8_t * val; } parm6 = { .val = rcv_buf }; + uintptr_t more[] = { + parm5.x, + parm6.x + }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, (uintptr_t) &more, K_SYSCALL_SMBUS_BLOCK_PCALL); + } +#endif + compiler_barrier(); + return z_impl_smbus_block_pcall(dev, addr, cmd, snd_count, snd_buf, rcv_count, rcv_buf); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define smbus_block_pcall(dev, addr, cmd, snd_count, snd_buf, rcv_count, rcv_buf) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SMBUS_BLOCK_PCALL, smbus_block_pcall, dev, addr, cmd, snd_count, snd_buf, rcv_count, rcv_buf); syscall__retval = smbus_block_pcall(dev, addr, cmd, snd_count, snd_buf, rcv_count, rcv_buf); sys_port_trace_syscall_exit(K_SYSCALL_SMBUS_BLOCK_PCALL, smbus_block_pcall, dev, addr, cmd, snd_count, snd_buf, rcv_count, rcv_buf, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/socket.h b/build/zephyr/include/generated/zephyr/syscalls/socket.h new file mode 100644 index 0000000..1fb8600 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/socket.h @@ -0,0 +1,586 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SOCKET_H +#define Z_INCLUDE_SYSCALLS_SOCKET_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void * z_impl_zsock_get_context_object(int sock); + +__pinned_func +static inline void * zsock_get_context_object(int sock) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + return (void *) arch_syscall_invoke1(parm0.x, K_SYSCALL_ZSOCK_GET_CONTEXT_OBJECT); + } +#endif + compiler_barrier(); + return z_impl_zsock_get_context_object(sock); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_get_context_object(sock) ({ void * syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_GET_CONTEXT_OBJECT, zsock_get_context_object, sock); syscall__retval = zsock_get_context_object(sock); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_GET_CONTEXT_OBJECT, zsock_get_context_object, sock, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_socket(int family, int type, int proto); + +__pinned_func +static inline int zsock_socket(int family, int type, int proto) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = family }; + union { uintptr_t x; int val; } parm1 = { .val = type }; + union { uintptr_t x; int val; } parm2 = { .val = proto }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_SOCKET); + } +#endif + compiler_barrier(); + return z_impl_zsock_socket(family, type, proto); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_socket(family, type, proto) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_SOCKET, zsock_socket, family, type, proto); syscall__retval = zsock_socket(family, type, proto); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_SOCKET, zsock_socket, family, type, proto, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_socketpair(int family, int type, int proto, int * sv); + +__pinned_func +static inline int zsock_socketpair(int family, int type, int proto, int * sv) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = family }; + union { uintptr_t x; int val; } parm1 = { .val = type }; + union { uintptr_t x; int val; } parm2 = { .val = proto }; + union { uintptr_t x; int * val; } parm3 = { .val = sv }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_ZSOCK_SOCKETPAIR); + } +#endif + compiler_barrier(); + return z_impl_zsock_socketpair(family, type, proto, sv); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_socketpair(family, type, proto, sv) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_SOCKETPAIR, zsock_socketpair, family, type, proto, sv); syscall__retval = zsock_socketpair(family, type, proto, sv); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_SOCKETPAIR, zsock_socketpair, family, type, proto, sv, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_close(int sock); + +__pinned_func +static inline int zsock_close(int sock) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_ZSOCK_CLOSE); + } +#endif + compiler_barrier(); + return z_impl_zsock_close(sock); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_close(sock) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_CLOSE, zsock_close, sock); syscall__retval = zsock_close(sock); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_CLOSE, zsock_close, sock, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_shutdown(int sock, int how); + +__pinned_func +static inline int zsock_shutdown(int sock, int how) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; int val; } parm1 = { .val = how }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ZSOCK_SHUTDOWN); + } +#endif + compiler_barrier(); + return z_impl_zsock_shutdown(sock, how); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_shutdown(sock, how) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_SHUTDOWN, zsock_shutdown, sock, how); syscall__retval = zsock_shutdown(sock, how); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_SHUTDOWN, zsock_shutdown, sock, how, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_bind(int sock, const struct net_sockaddr * addr, net_socklen_t addrlen); + +__pinned_func +static inline int zsock_bind(int sock, const struct net_sockaddr * addr, net_socklen_t addrlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; const struct net_sockaddr * val; } parm1 = { .val = addr }; + union { uintptr_t x; net_socklen_t val; } parm2 = { .val = addrlen }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_BIND); + } +#endif + compiler_barrier(); + return z_impl_zsock_bind(sock, addr, addrlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_bind(sock, addr, addrlen) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_BIND, zsock_bind, sock, addr, addrlen); syscall__retval = zsock_bind(sock, addr, addrlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_BIND, zsock_bind, sock, addr, addrlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_connect(int sock, const struct net_sockaddr * addr, net_socklen_t addrlen); + +__pinned_func +static inline int zsock_connect(int sock, const struct net_sockaddr * addr, net_socklen_t addrlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; const struct net_sockaddr * val; } parm1 = { .val = addr }; + union { uintptr_t x; net_socklen_t val; } parm2 = { .val = addrlen }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_CONNECT); + } +#endif + compiler_barrier(); + return z_impl_zsock_connect(sock, addr, addrlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_connect(sock, addr, addrlen) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_CONNECT, zsock_connect, sock, addr, addrlen); syscall__retval = zsock_connect(sock, addr, addrlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_CONNECT, zsock_connect, sock, addr, addrlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_listen(int sock, int backlog); + +__pinned_func +static inline int zsock_listen(int sock, int backlog) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; int val; } parm1 = { .val = backlog }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ZSOCK_LISTEN); + } +#endif + compiler_barrier(); + return z_impl_zsock_listen(sock, backlog); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_listen(sock, backlog) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_LISTEN, zsock_listen, sock, backlog); syscall__retval = zsock_listen(sock, backlog); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_LISTEN, zsock_listen, sock, backlog, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_accept(int sock, struct net_sockaddr * addr, net_socklen_t * addrlen); + +__pinned_func +static inline int zsock_accept(int sock, struct net_sockaddr * addr, net_socklen_t * addrlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; struct net_sockaddr * val; } parm1 = { .val = addr }; + union { uintptr_t x; net_socklen_t * val; } parm2 = { .val = addrlen }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_ACCEPT); + } +#endif + compiler_barrier(); + return z_impl_zsock_accept(sock, addr, addrlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_accept(sock, addr, addrlen) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_ACCEPT, zsock_accept, sock, addr, addrlen); syscall__retval = zsock_accept(sock, addr, addrlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_ACCEPT, zsock_accept, sock, addr, addrlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern ssize_t z_impl_zsock_sendto(int sock, const void * buf, size_t len, int flags, const struct net_sockaddr * dest_addr, net_socklen_t addrlen); + +__pinned_func +static inline ssize_t zsock_sendto(int sock, const void * buf, size_t len, int flags, const struct net_sockaddr * dest_addr, net_socklen_t addrlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; const void * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + union { uintptr_t x; int val; } parm3 = { .val = flags }; + union { uintptr_t x; const struct net_sockaddr * val; } parm4 = { .val = dest_addr }; + union { uintptr_t x; net_socklen_t val; } parm5 = { .val = addrlen }; + return (ssize_t) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, parm5.x, K_SYSCALL_ZSOCK_SENDTO); + } +#endif + compiler_barrier(); + return z_impl_zsock_sendto(sock, buf, len, flags, dest_addr, addrlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_sendto(sock, buf, len, flags, dest_addr, addrlen) ({ ssize_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_SENDTO, zsock_sendto, sock, buf, len, flags, dest_addr, addrlen); syscall__retval = zsock_sendto(sock, buf, len, flags, dest_addr, addrlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_SENDTO, zsock_sendto, sock, buf, len, flags, dest_addr, addrlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern ssize_t z_impl_zsock_sendmsg(int sock, const struct net_msghdr * msg, int flags); + +__pinned_func +static inline ssize_t zsock_sendmsg(int sock, const struct net_msghdr * msg, int flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; const struct net_msghdr * val; } parm1 = { .val = msg }; + union { uintptr_t x; int val; } parm2 = { .val = flags }; + return (ssize_t) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_SENDMSG); + } +#endif + compiler_barrier(); + return z_impl_zsock_sendmsg(sock, msg, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_sendmsg(sock, msg, flags) ({ ssize_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_SENDMSG, zsock_sendmsg, sock, msg, flags); syscall__retval = zsock_sendmsg(sock, msg, flags); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_SENDMSG, zsock_sendmsg, sock, msg, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern ssize_t z_impl_zsock_recvfrom(int sock, void * buf, size_t max_len, int flags, struct net_sockaddr * src_addr, net_socklen_t * addrlen); + +__pinned_func +static inline ssize_t zsock_recvfrom(int sock, void * buf, size_t max_len, int flags, struct net_sockaddr * src_addr, net_socklen_t * addrlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; void * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = max_len }; + union { uintptr_t x; int val; } parm3 = { .val = flags }; + union { uintptr_t x; struct net_sockaddr * val; } parm4 = { .val = src_addr }; + union { uintptr_t x; net_socklen_t * val; } parm5 = { .val = addrlen }; + return (ssize_t) arch_syscall_invoke6(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, parm5.x, K_SYSCALL_ZSOCK_RECVFROM); + } +#endif + compiler_barrier(); + return z_impl_zsock_recvfrom(sock, buf, max_len, flags, src_addr, addrlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_recvfrom(sock, buf, max_len, flags, src_addr, addrlen) ({ ssize_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_RECVFROM, zsock_recvfrom, sock, buf, max_len, flags, src_addr, addrlen); syscall__retval = zsock_recvfrom(sock, buf, max_len, flags, src_addr, addrlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_RECVFROM, zsock_recvfrom, sock, buf, max_len, flags, src_addr, addrlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern ssize_t z_impl_zsock_recvmsg(int sock, struct net_msghdr * msg, int flags); + +__pinned_func +static inline ssize_t zsock_recvmsg(int sock, struct net_msghdr * msg, int flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; struct net_msghdr * val; } parm1 = { .val = msg }; + union { uintptr_t x; int val; } parm2 = { .val = flags }; + return (ssize_t) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_RECVMSG); + } +#endif + compiler_barrier(); + return z_impl_zsock_recvmsg(sock, msg, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_recvmsg(sock, msg, flags) ({ ssize_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_RECVMSG, zsock_recvmsg, sock, msg, flags); syscall__retval = zsock_recvmsg(sock, msg, flags); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_RECVMSG, zsock_recvmsg, sock, msg, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_fcntl_impl(int sock, int cmd, int flags); + +__pinned_func +static inline int zsock_fcntl_impl(int sock, int cmd, int flags) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; int val; } parm1 = { .val = cmd }; + union { uintptr_t x; int val; } parm2 = { .val = flags }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_FCNTL_IMPL); + } +#endif + compiler_barrier(); + return z_impl_zsock_fcntl_impl(sock, cmd, flags); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_fcntl_impl(sock, cmd, flags) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_FCNTL_IMPL, zsock_fcntl_impl, sock, cmd, flags); syscall__retval = zsock_fcntl_impl(sock, cmd, flags); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_FCNTL_IMPL, zsock_fcntl_impl, sock, cmd, flags, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_ioctl_impl(int sock, unsigned long request, va_list ap); + +__pinned_func +static inline int zsock_ioctl_impl(int sock, unsigned long request, va_list ap) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; unsigned long val; } parm1 = { .val = request }; + union { uintptr_t x; va_list val; } parm2; + va_copy(parm2.val, ap); + int invoke__retval = arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_IOCTL_IMPL); + va_end(parm2.val); + return invoke__retval; + } +#endif + compiler_barrier(); + return z_impl_zsock_ioctl_impl(sock, request, ap); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_ioctl_impl(sock, request, ap) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_IOCTL_IMPL, zsock_ioctl_impl, sock, request, ap); syscall__retval = zsock_ioctl_impl(sock, request, ap); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_IOCTL_IMPL, zsock_ioctl_impl, sock, request, ap, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_getsockopt(int sock, int level, int optname, void * optval, net_socklen_t * optlen); + +__pinned_func +static inline int zsock_getsockopt(int sock, int level, int optname, void * optval, net_socklen_t * optlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; int val; } parm1 = { .val = level }; + union { uintptr_t x; int val; } parm2 = { .val = optname }; + union { uintptr_t x; void * val; } parm3 = { .val = optval }; + union { uintptr_t x; net_socklen_t * val; } parm4 = { .val = optlen }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_ZSOCK_GETSOCKOPT); + } +#endif + compiler_barrier(); + return z_impl_zsock_getsockopt(sock, level, optname, optval, optlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_getsockopt(sock, level, optname, optval, optlen) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_GETSOCKOPT, zsock_getsockopt, sock, level, optname, optval, optlen); syscall__retval = zsock_getsockopt(sock, level, optname, optval, optlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_GETSOCKOPT, zsock_getsockopt, sock, level, optname, optval, optlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_setsockopt(int sock, int level, int optname, const void * optval, net_socklen_t optlen); + +__pinned_func +static inline int zsock_setsockopt(int sock, int level, int optname, const void * optval, net_socklen_t optlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; int val; } parm1 = { .val = level }; + union { uintptr_t x; int val; } parm2 = { .val = optname }; + union { uintptr_t x; const void * val; } parm3 = { .val = optval }; + union { uintptr_t x; net_socklen_t val; } parm4 = { .val = optlen }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_ZSOCK_SETSOCKOPT); + } +#endif + compiler_barrier(); + return z_impl_zsock_setsockopt(sock, level, optname, optval, optlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_setsockopt(sock, level, optname, optval, optlen) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_SETSOCKOPT, zsock_setsockopt, sock, level, optname, optval, optlen); syscall__retval = zsock_setsockopt(sock, level, optname, optval, optlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_SETSOCKOPT, zsock_setsockopt, sock, level, optname, optval, optlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_getpeername(int sock, struct net_sockaddr * addr, net_socklen_t * addrlen); + +__pinned_func +static inline int zsock_getpeername(int sock, struct net_sockaddr * addr, net_socklen_t * addrlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; struct net_sockaddr * val; } parm1 = { .val = addr }; + union { uintptr_t x; net_socklen_t * val; } parm2 = { .val = addrlen }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_GETPEERNAME); + } +#endif + compiler_barrier(); + return z_impl_zsock_getpeername(sock, addr, addrlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_getpeername(sock, addr, addrlen) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_GETPEERNAME, zsock_getpeername, sock, addr, addrlen); syscall__retval = zsock_getpeername(sock, addr, addrlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_GETPEERNAME, zsock_getpeername, sock, addr, addrlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_getsockname(int sock, struct net_sockaddr * addr, net_socklen_t * addrlen); + +__pinned_func +static inline int zsock_getsockname(int sock, struct net_sockaddr * addr, net_socklen_t * addrlen) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; int val; } parm0 = { .val = sock }; + union { uintptr_t x; struct net_sockaddr * val; } parm1 = { .val = addr }; + union { uintptr_t x; net_socklen_t * val; } parm2 = { .val = addrlen }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_GETSOCKNAME); + } +#endif + compiler_barrier(); + return z_impl_zsock_getsockname(sock, addr, addrlen); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_getsockname(sock, addr, addrlen) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_GETSOCKNAME, zsock_getsockname, sock, addr, addrlen); syscall__retval = zsock_getsockname(sock, addr, addrlen); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_GETSOCKNAME, zsock_getsockname, sock, addr, addrlen, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_gethostname(char * buf, size_t len); + +__pinned_func +static inline int zsock_gethostname(char * buf, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; char * val; } parm0 = { .val = buf }; + union { uintptr_t x; size_t val; } parm1 = { .val = len }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_ZSOCK_GETHOSTNAME); + } +#endif + compiler_barrier(); + return z_impl_zsock_gethostname(buf, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_gethostname(buf, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_GETHOSTNAME, zsock_gethostname, buf, len); syscall__retval = zsock_gethostname(buf, len); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_GETHOSTNAME, zsock_gethostname, buf, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_zsock_inet_pton(net_sa_family_t family, const char * src, void * dst); + +__pinned_func +static inline int zsock_inet_pton(net_sa_family_t family, const char * src, void * dst) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; net_sa_family_t val; } parm0 = { .val = family }; + union { uintptr_t x; const char * val; } parm1 = { .val = src }; + union { uintptr_t x; void * val; } parm2 = { .val = dst }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_ZSOCK_INET_PTON); + } +#endif + compiler_barrier(); + return z_impl_zsock_inet_pton(family, src, dst); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define zsock_inet_pton(family, src, dst) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_ZSOCK_INET_PTON, zsock_inet_pton, family, src, dst); syscall__retval = zsock_inet_pton(family, src, dst); sys_port_trace_syscall_exit(K_SYSCALL_ZSOCK_INET_PTON, zsock_inet_pton, family, src, dst, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_z_zsock_getaddrinfo_internal(const char * host, const char * service, const struct zsock_addrinfo * hints, struct zsock_addrinfo * res); + +__pinned_func +static inline int z_zsock_getaddrinfo_internal(const char * host, const char * service, const struct zsock_addrinfo * hints, struct zsock_addrinfo * res) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const char * val; } parm0 = { .val = host }; + union { uintptr_t x; const char * val; } parm1 = { .val = service }; + union { uintptr_t x; const struct zsock_addrinfo * val; } parm2 = { .val = hints }; + union { uintptr_t x; struct zsock_addrinfo * val; } parm3 = { .val = res }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_Z_ZSOCK_GETADDRINFO_INTERNAL); + } +#endif + compiler_barrier(); + return z_impl_z_zsock_getaddrinfo_internal(host, service, hints, res); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define z_zsock_getaddrinfo_internal(host, service, hints, res) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_Z_ZSOCK_GETADDRINFO_INTERNAL, z_zsock_getaddrinfo_internal, host, service, hints, res); syscall__retval = z_zsock_getaddrinfo_internal(host, service, hints, res); sys_port_trace_syscall_exit(K_SYSCALL_Z_ZSOCK_GETADDRINFO_INTERNAL, z_zsock_getaddrinfo_internal, host, service, hints, res, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/socket_service.h b/build/zephyr/include/generated/zephyr/syscalls/socket_service.h new file mode 100644 index 0000000..6660b91 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/socket_service.h @@ -0,0 +1,54 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SOCKET_SERVICE_H +#define Z_INCLUDE_SYSCALLS_SOCKET_SERVICE_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_net_socket_service_register(const struct net_socket_service_desc * service, struct zsock_pollfd * fds, int len, void * user_data); + +__pinned_func +static inline int net_socket_service_register(const struct net_socket_service_desc * service, struct zsock_pollfd * fds, int len, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct net_socket_service_desc * val; } parm0 = { .val = service }; + union { uintptr_t x; struct zsock_pollfd * val; } parm1 = { .val = fds }; + union { uintptr_t x; int val; } parm2 = { .val = len }; + union { uintptr_t x; void * val; } parm3 = { .val = user_data }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_NET_SOCKET_SERVICE_REGISTER); + } +#endif + compiler_barrier(); + return z_impl_net_socket_service_register(service, fds, len, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define net_socket_service_register(service, fds, len, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_NET_SOCKET_SERVICE_REGISTER, net_socket_service_register, service, fds, len, user_data); syscall__retval = net_socket_service_register(service, fds, len, user_data); sys_port_trace_syscall_exit(K_SYSCALL_NET_SOCKET_SERVICE_REGISTER, net_socket_service_register, service, fds, len, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/spi.h b/build/zephyr/include/generated/zephyr/syscalls/spi.h new file mode 100644 index 0000000..0737a35 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/spi.h @@ -0,0 +1,78 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SPI_H +#define Z_INCLUDE_SYSCALLS_SPI_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_spi_transceive(const struct device * dev, const struct spi_config * config, const struct spi_buf_set * tx_bufs, const struct spi_buf_set * rx_bufs); + +__pinned_func +static inline int spi_transceive(const struct device * dev, const struct spi_config * config, const struct spi_buf_set * tx_bufs, const struct spi_buf_set * rx_bufs) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct spi_config * val; } parm1 = { .val = config }; + union { uintptr_t x; const struct spi_buf_set * val; } parm2 = { .val = tx_bufs }; + union { uintptr_t x; const struct spi_buf_set * val; } parm3 = { .val = rx_bufs }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_SPI_TRANSCEIVE); + } +#endif + compiler_barrier(); + return z_impl_spi_transceive(dev, config, tx_bufs, rx_bufs); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define spi_transceive(dev, config, tx_bufs, rx_bufs) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SPI_TRANSCEIVE, spi_transceive, dev, config, tx_bufs, rx_bufs); syscall__retval = spi_transceive(dev, config, tx_bufs, rx_bufs); sys_port_trace_syscall_exit(K_SYSCALL_SPI_TRANSCEIVE, spi_transceive, dev, config, tx_bufs, rx_bufs, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_spi_release(const struct device * dev, const struct spi_config * config); + +__pinned_func +static inline int spi_release(const struct device * dev, const struct spi_config * config) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct spi_config * val; } parm1 = { .val = config }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SPI_RELEASE); + } +#endif + compiler_barrier(); + return z_impl_spi_release(dev, config); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define spi_release(dev, config) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SPI_RELEASE, spi_release, dev, config); syscall__retval = spi_release(dev, config); sys_port_trace_syscall_exit(K_SYSCALL_SPI_RELEASE, spi_release, dev, config, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/stepper.h b/build/zephyr/include/generated/zephyr/syscalls/stepper.h new file mode 100644 index 0000000..db79485 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/stepper.h @@ -0,0 +1,147 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_STEPPER_H +#define Z_INCLUDE_SYSCALLS_STEPPER_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_stepper_enable(const struct device * dev); + +__pinned_func +static inline int stepper_enable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_STEPPER_ENABLE); + } +#endif + compiler_barrier(); + return z_impl_stepper_enable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_enable(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_ENABLE, stepper_enable, dev); syscall__retval = stepper_enable(dev); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_ENABLE, stepper_enable, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_disable(const struct device * dev); + +__pinned_func +static inline int stepper_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_STEPPER_DISABLE); + } +#endif + compiler_barrier(); + return z_impl_stepper_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_disable(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_DISABLE, stepper_disable, dev); syscall__retval = stepper_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_DISABLE, stepper_disable, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_set_micro_step_res(const struct device * dev, enum stepper_micro_step_resolution res); + +__pinned_func +static inline int stepper_set_micro_step_res(const struct device * dev, enum stepper_micro_step_resolution res) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum stepper_micro_step_resolution val; } parm1 = { .val = res }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_SET_MICRO_STEP_RES); + } +#endif + compiler_barrier(); + return z_impl_stepper_set_micro_step_res(dev, res); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_set_micro_step_res(dev, res) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_SET_MICRO_STEP_RES, stepper_set_micro_step_res, dev, res); syscall__retval = stepper_set_micro_step_res(dev, res); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_SET_MICRO_STEP_RES, stepper_set_micro_step_res, dev, res, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_get_micro_step_res(const struct device * dev, enum stepper_micro_step_resolution * res); + +__pinned_func +static inline int stepper_get_micro_step_res(const struct device * dev, enum stepper_micro_step_resolution * res) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum stepper_micro_step_resolution * val; } parm1 = { .val = res }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_GET_MICRO_STEP_RES); + } +#endif + compiler_barrier(); + return z_impl_stepper_get_micro_step_res(dev, res); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_get_micro_step_res(dev, res) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_GET_MICRO_STEP_RES, stepper_get_micro_step_res, dev, res); syscall__retval = stepper_get_micro_step_res(dev, res); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_GET_MICRO_STEP_RES, stepper_get_micro_step_res, dev, res, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_set_event_cb(const struct device * dev, stepper_event_cb_t callback, void * user_data); + +__pinned_func +static inline int stepper_set_event_cb(const struct device * dev, stepper_event_cb_t callback, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; stepper_event_cb_t val; } parm1 = { .val = callback }; + union { uintptr_t x; void * val; } parm2 = { .val = user_data }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_STEPPER_SET_EVENT_CB); + } +#endif + compiler_barrier(); + return z_impl_stepper_set_event_cb(dev, callback, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_set_event_cb(dev, callback, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_SET_EVENT_CB, stepper_set_event_cb, dev, callback, user_data); syscall__retval = stepper_set_event_cb(dev, callback, user_data); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_SET_EVENT_CB, stepper_set_event_cb, dev, callback, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/stepper_ctrl.h b/build/zephyr/include/generated/zephyr/syscalls/stepper_ctrl.h new file mode 100644 index 0000000..faba21c --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/stepper_ctrl.h @@ -0,0 +1,268 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_STEPPER_CTRL_H +#define Z_INCLUDE_SYSCALLS_STEPPER_CTRL_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_stepper_ctrl_set_reference_position(const struct device * dev, const int32_t value); + +__pinned_func +static inline int stepper_ctrl_set_reference_position(const struct device * dev, const int32_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const int32_t val; } parm1 = { .val = value }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_CTRL_SET_REFERENCE_POSITION); + } +#endif + compiler_barrier(); + return z_impl_stepper_ctrl_set_reference_position(dev, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_ctrl_set_reference_position(dev, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_CTRL_SET_REFERENCE_POSITION, stepper_ctrl_set_reference_position, dev, value); syscall__retval = stepper_ctrl_set_reference_position(dev, value); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_CTRL_SET_REFERENCE_POSITION, stepper_ctrl_set_reference_position, dev, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_ctrl_get_actual_position(const struct device * dev, int32_t * value); + +__pinned_func +static inline int stepper_ctrl_get_actual_position(const struct device * dev, int32_t * value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int32_t * val; } parm1 = { .val = value }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_CTRL_GET_ACTUAL_POSITION); + } +#endif + compiler_barrier(); + return z_impl_stepper_ctrl_get_actual_position(dev, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_ctrl_get_actual_position(dev, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_CTRL_GET_ACTUAL_POSITION, stepper_ctrl_get_actual_position, dev, value); syscall__retval = stepper_ctrl_get_actual_position(dev, value); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_CTRL_GET_ACTUAL_POSITION, stepper_ctrl_get_actual_position, dev, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_ctrl_set_event_cb(const struct device * dev, stepper_ctrl_event_callback_t callback, void * user_data); + +__pinned_func +static inline int stepper_ctrl_set_event_cb(const struct device * dev, stepper_ctrl_event_callback_t callback, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; stepper_ctrl_event_callback_t val; } parm1 = { .val = callback }; + union { uintptr_t x; void * val; } parm2 = { .val = user_data }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_STEPPER_CTRL_SET_EVENT_CB); + } +#endif + compiler_barrier(); + return z_impl_stepper_ctrl_set_event_cb(dev, callback, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_ctrl_set_event_cb(dev, callback, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_CTRL_SET_EVENT_CB, stepper_ctrl_set_event_cb, dev, callback, user_data); syscall__retval = stepper_ctrl_set_event_cb(dev, callback, user_data); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_CTRL_SET_EVENT_CB, stepper_ctrl_set_event_cb, dev, callback, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_ctrl_set_microstep_interval(const struct device * dev, const uint64_t microstep_interval_ns); + +__pinned_func +static inline int stepper_ctrl_set_microstep_interval(const struct device * dev, const uint64_t microstep_interval_ns) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const uint64_t val; } parm1 = { .val = microstep_interval_ns }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_CTRL_SET_MICROSTEP_INTERVAL); + } +#endif + compiler_barrier(); + return z_impl_stepper_ctrl_set_microstep_interval(dev, microstep_interval_ns); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_ctrl_set_microstep_interval(dev, microstep_interval_ns) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_CTRL_SET_MICROSTEP_INTERVAL, stepper_ctrl_set_microstep_interval, dev, microstep_interval_ns); syscall__retval = stepper_ctrl_set_microstep_interval(dev, microstep_interval_ns); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_CTRL_SET_MICROSTEP_INTERVAL, stepper_ctrl_set_microstep_interval, dev, microstep_interval_ns, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_ctrl_configure_ramp(const struct device * dev, const struct stepper_ctrl_ramp * ramp); + +__pinned_func +static inline int stepper_ctrl_configure_ramp(const struct device * dev, const struct stepper_ctrl_ramp * ramp) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct stepper_ctrl_ramp * val; } parm1 = { .val = ramp }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_CTRL_CONFIGURE_RAMP); + } +#endif + compiler_barrier(); + return z_impl_stepper_ctrl_configure_ramp(dev, ramp); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_ctrl_configure_ramp(dev, ramp) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_CTRL_CONFIGURE_RAMP, stepper_ctrl_configure_ramp, dev, ramp); syscall__retval = stepper_ctrl_configure_ramp(dev, ramp); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_CTRL_CONFIGURE_RAMP, stepper_ctrl_configure_ramp, dev, ramp, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_ctrl_move_by(const struct device * dev, const int32_t micro_steps); + +__pinned_func +static inline int stepper_ctrl_move_by(const struct device * dev, const int32_t micro_steps) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const int32_t val; } parm1 = { .val = micro_steps }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_CTRL_MOVE_BY); + } +#endif + compiler_barrier(); + return z_impl_stepper_ctrl_move_by(dev, micro_steps); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_ctrl_move_by(dev, micro_steps) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_CTRL_MOVE_BY, stepper_ctrl_move_by, dev, micro_steps); syscall__retval = stepper_ctrl_move_by(dev, micro_steps); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_CTRL_MOVE_BY, stepper_ctrl_move_by, dev, micro_steps, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_ctrl_move_to(const struct device * dev, const int32_t micro_steps); + +__pinned_func +static inline int stepper_ctrl_move_to(const struct device * dev, const int32_t micro_steps) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const int32_t val; } parm1 = { .val = micro_steps }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_CTRL_MOVE_TO); + } +#endif + compiler_barrier(); + return z_impl_stepper_ctrl_move_to(dev, micro_steps); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_ctrl_move_to(dev, micro_steps) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_CTRL_MOVE_TO, stepper_ctrl_move_to, dev, micro_steps); syscall__retval = stepper_ctrl_move_to(dev, micro_steps); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_CTRL_MOVE_TO, stepper_ctrl_move_to, dev, micro_steps, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_ctrl_run(const struct device * dev, const enum stepper_ctrl_direction direction); + +__pinned_func +static inline int stepper_ctrl_run(const struct device * dev, const enum stepper_ctrl_direction direction) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const enum stepper_ctrl_direction val; } parm1 = { .val = direction }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_CTRL_RUN); + } +#endif + compiler_barrier(); + return z_impl_stepper_ctrl_run(dev, direction); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_ctrl_run(dev, direction) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_CTRL_RUN, stepper_ctrl_run, dev, direction); syscall__retval = stepper_ctrl_run(dev, direction); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_CTRL_RUN, stepper_ctrl_run, dev, direction, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_ctrl_stop(const struct device * dev); + +__pinned_func +static inline int stepper_ctrl_stop(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_STEPPER_CTRL_STOP); + } +#endif + compiler_barrier(); + return z_impl_stepper_ctrl_stop(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_ctrl_stop(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_CTRL_STOP, stepper_ctrl_stop, dev); syscall__retval = stepper_ctrl_stop(dev); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_CTRL_STOP, stepper_ctrl_stop, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_stepper_ctrl_is_moving(const struct device * dev, bool * is_moving); + +__pinned_func +static inline int stepper_ctrl_is_moving(const struct device * dev, bool * is_moving) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bool * val; } parm1 = { .val = is_moving }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_STEPPER_CTRL_IS_MOVING); + } +#endif + compiler_barrier(); + return z_impl_stepper_ctrl_is_moving(dev, is_moving); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define stepper_ctrl_is_moving(dev, is_moving) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_STEPPER_CTRL_IS_MOVING, stepper_ctrl_is_moving, dev, is_moving); syscall__retval = stepper_ctrl_is_moving(dev, is_moving); sys_port_trace_syscall_exit(K_SYSCALL_STEPPER_CTRL_IS_MOVING, stepper_ctrl_is_moving, dev, is_moving, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/swdp.h b/build/zephyr/include/generated/zephyr/syscalls/swdp.h new file mode 100644 index 0000000..4bba1b1 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/swdp.h @@ -0,0 +1,249 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SWDP_H +#define Z_INCLUDE_SYSCALLS_SWDP_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_swdp_output_sequence(const struct device * dev, const uint32_t count, const uint8_t *const data); + +__pinned_func +static inline int swdp_output_sequence(const struct device * dev, const uint32_t count, const uint8_t *const data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const uint32_t val; } parm1 = { .val = count }; + union { uintptr_t x; const uint8_t *const val; } parm2 = { .val = data }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SWDP_OUTPUT_SEQUENCE); + } +#endif + compiler_barrier(); + return z_impl_swdp_output_sequence(dev, count, data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define swdp_output_sequence(dev, count, data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SWDP_OUTPUT_SEQUENCE, swdp_output_sequence, dev, count, data); syscall__retval = swdp_output_sequence(dev, count, data); sys_port_trace_syscall_exit(K_SYSCALL_SWDP_OUTPUT_SEQUENCE, swdp_output_sequence, dev, count, data, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_swdp_input_sequence(const struct device * dev, const uint32_t count, uint8_t *const buf); + +__pinned_func +static inline int swdp_input_sequence(const struct device * dev, const uint32_t count, uint8_t *const buf) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const uint32_t val; } parm1 = { .val = count }; + union { uintptr_t x; uint8_t *const val; } parm2 = { .val = buf }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SWDP_INPUT_SEQUENCE); + } +#endif + compiler_barrier(); + return z_impl_swdp_input_sequence(dev, count, buf); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define swdp_input_sequence(dev, count, buf) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SWDP_INPUT_SEQUENCE, swdp_input_sequence, dev, count, buf); syscall__retval = swdp_input_sequence(dev, count, buf); sys_port_trace_syscall_exit(K_SYSCALL_SWDP_INPUT_SEQUENCE, swdp_input_sequence, dev, count, buf, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_swdp_transfer(const struct device * dev, const uint8_t request, uint32_t *const data, const uint8_t idle_cycles, uint8_t *const response); + +__pinned_func +static inline int swdp_transfer(const struct device * dev, const uint8_t request, uint32_t *const data, const uint8_t idle_cycles, uint8_t *const response) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const uint8_t val; } parm1 = { .val = request }; + union { uintptr_t x; uint32_t *const val; } parm2 = { .val = data }; + union { uintptr_t x; const uint8_t val; } parm3 = { .val = idle_cycles }; + union { uintptr_t x; uint8_t *const val; } parm4 = { .val = response }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_SWDP_TRANSFER); + } +#endif + compiler_barrier(); + return z_impl_swdp_transfer(dev, request, data, idle_cycles, response); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define swdp_transfer(dev, request, data, idle_cycles, response) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SWDP_TRANSFER, swdp_transfer, dev, request, data, idle_cycles, response); syscall__retval = swdp_transfer(dev, request, data, idle_cycles, response); sys_port_trace_syscall_exit(K_SYSCALL_SWDP_TRANSFER, swdp_transfer, dev, request, data, idle_cycles, response, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_swdp_set_pins(const struct device * dev, const uint8_t pins, const uint8_t value); + +__pinned_func +static inline int swdp_set_pins(const struct device * dev, const uint8_t pins, const uint8_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const uint8_t val; } parm1 = { .val = pins }; + union { uintptr_t x; const uint8_t val; } parm2 = { .val = value }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SWDP_SET_PINS); + } +#endif + compiler_barrier(); + return z_impl_swdp_set_pins(dev, pins, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define swdp_set_pins(dev, pins, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SWDP_SET_PINS, swdp_set_pins, dev, pins, value); syscall__retval = swdp_set_pins(dev, pins, value); sys_port_trace_syscall_exit(K_SYSCALL_SWDP_SET_PINS, swdp_set_pins, dev, pins, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_swdp_get_pins(const struct device * dev, uint8_t *const state); + +__pinned_func +static inline int swdp_get_pins(const struct device * dev, uint8_t *const state) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t *const val; } parm1 = { .val = state }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SWDP_GET_PINS); + } +#endif + compiler_barrier(); + return z_impl_swdp_get_pins(dev, state); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define swdp_get_pins(dev, state) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SWDP_GET_PINS, swdp_get_pins, dev, state); syscall__retval = swdp_get_pins(dev, state); sys_port_trace_syscall_exit(K_SYSCALL_SWDP_GET_PINS, swdp_get_pins, dev, state, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_swdp_set_clock(const struct device * dev, const uint32_t clock); + +__pinned_func +static inline int swdp_set_clock(const struct device * dev, const uint32_t clock) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const uint32_t val; } parm1 = { .val = clock }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SWDP_SET_CLOCK); + } +#endif + compiler_barrier(); + return z_impl_swdp_set_clock(dev, clock); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define swdp_set_clock(dev, clock) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SWDP_SET_CLOCK, swdp_set_clock, dev, clock); syscall__retval = swdp_set_clock(dev, clock); sys_port_trace_syscall_exit(K_SYSCALL_SWDP_SET_CLOCK, swdp_set_clock, dev, clock, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_swdp_port_on(const struct device * dev); + +__pinned_func +static inline int swdp_port_on(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_SWDP_PORT_ON); + } +#endif + compiler_barrier(); + return z_impl_swdp_port_on(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define swdp_port_on(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SWDP_PORT_ON, swdp_port_on, dev); syscall__retval = swdp_port_on(dev); sys_port_trace_syscall_exit(K_SYSCALL_SWDP_PORT_ON, swdp_port_on, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_swdp_port_off(const struct device * dev); + +__pinned_func +static inline int swdp_port_off(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_SWDP_PORT_OFF); + } +#endif + compiler_barrier(); + return z_impl_swdp_port_off(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define swdp_port_off(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SWDP_PORT_OFF, swdp_port_off, dev); syscall__retval = swdp_port_off(dev); sys_port_trace_syscall_exit(K_SYSCALL_SWDP_PORT_OFF, swdp_port_off, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_swdp_configure(const struct device * dev, const uint8_t turnaround, const bool data_phase); + +__pinned_func +static inline int swdp_configure(const struct device * dev, const uint8_t turnaround, const bool data_phase) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const uint8_t val; } parm1 = { .val = turnaround }; + union { uintptr_t x; const bool val; } parm2 = { .val = data_phase }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SWDP_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_swdp_configure(dev, turnaround, data_phase); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define swdp_configure(dev, turnaround, data_phase) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SWDP_CONFIGURE, swdp_configure, dev, turnaround, data_phase); syscall__retval = swdp_configure(dev, turnaround, data_phase); sys_port_trace_syscall_exit(K_SYSCALL_SWDP_CONFIGURE, swdp_configure, dev, turnaround, data_phase, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/syscon.h b/build/zephyr/include/generated/zephyr/syscalls/syscon.h new file mode 100644 index 0000000..3f0eaba --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/syscon.h @@ -0,0 +1,126 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_SYSCON_H +#define Z_INCLUDE_SYSCALLS_SYSCON_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_syscon_get_base(const struct device * dev, uintptr_t * addr); + +__pinned_func +static inline int syscon_get_base(const struct device * dev, uintptr_t * addr) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uintptr_t * val; } parm1 = { .val = addr }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYSCON_GET_BASE); + } +#endif + compiler_barrier(); + return z_impl_syscon_get_base(dev, addr); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define syscon_get_base(dev, addr) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYSCON_GET_BASE, syscon_get_base, dev, addr); syscall__retval = syscon_get_base(dev, addr); sys_port_trace_syscall_exit(K_SYSCALL_SYSCON_GET_BASE, syscon_get_base, dev, addr, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_syscon_read_reg(const struct device * dev, uint16_t reg, uint32_t * val); + +__pinned_func +static inline int syscon_read_reg(const struct device * dev, uint16_t reg, uint32_t * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = reg }; + union { uintptr_t x; uint32_t * val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SYSCON_READ_REG); + } +#endif + compiler_barrier(); + return z_impl_syscon_read_reg(dev, reg, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define syscon_read_reg(dev, reg, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYSCON_READ_REG, syscon_read_reg, dev, reg, val); syscall__retval = syscon_read_reg(dev, reg, val); sys_port_trace_syscall_exit(K_SYSCALL_SYSCON_READ_REG, syscon_read_reg, dev, reg, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_syscon_write_reg(const struct device * dev, uint16_t reg, uint32_t val); + +__pinned_func +static inline int syscon_write_reg(const struct device * dev, uint16_t reg, uint32_t val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = reg }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_SYSCON_WRITE_REG); + } +#endif + compiler_barrier(); + return z_impl_syscon_write_reg(dev, reg, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define syscon_write_reg(dev, reg, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYSCON_WRITE_REG, syscon_write_reg, dev, reg, val); syscall__retval = syscon_write_reg(dev, reg, val); sys_port_trace_syscall_exit(K_SYSCALL_SYSCON_WRITE_REG, syscon_write_reg, dev, reg, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_syscon_get_size(const struct device * dev, size_t * size); + +__pinned_func +static inline int syscon_get_size(const struct device * dev, size_t * size) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; size_t * val; } parm1 = { .val = size }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_SYSCON_GET_SIZE); + } +#endif + compiler_barrier(); + return z_impl_syscon_get_size(dev, size); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define syscon_get_size(dev, size) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYSCON_GET_SIZE, syscon_get_size, dev, size); syscall__retval = syscon_get_size(dev, size); sys_port_trace_syscall_exit(K_SYSCALL_SYSCON_GET_SIZE, syscon_get_size, dev, size, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/tee.h b/build/zephyr/include/generated/zephyr/syscalls/tee.h new file mode 100644 index 0000000..e579353 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/tee.h @@ -0,0 +1,307 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_TEE_H +#define Z_INCLUDE_SYSCALLS_TEE_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_tee_get_version(const struct device * dev, struct tee_version_info * info); + +__pinned_func +static inline int tee_get_version(const struct device * dev, struct tee_version_info * info) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct tee_version_info * val; } parm1 = { .val = info }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_TEE_GET_VERSION); + } +#endif + compiler_barrier(); + return z_impl_tee_get_version(dev, info); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_get_version(dev, info) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_GET_VERSION, tee_get_version, dev, info); syscall__retval = tee_get_version(dev, info); sys_port_trace_syscall_exit(K_SYSCALL_TEE_GET_VERSION, tee_get_version, dev, info, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_open_session(const struct device * dev, struct tee_open_session_arg * arg, unsigned int num_param, struct tee_param * param, uint32_t * session_id); + +__pinned_func +static inline int tee_open_session(const struct device * dev, struct tee_open_session_arg * arg, unsigned int num_param, struct tee_param * param, uint32_t * session_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct tee_open_session_arg * val; } parm1 = { .val = arg }; + union { uintptr_t x; unsigned int val; } parm2 = { .val = num_param }; + union { uintptr_t x; struct tee_param * val; } parm3 = { .val = param }; + union { uintptr_t x; uint32_t * val; } parm4 = { .val = session_id }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_TEE_OPEN_SESSION); + } +#endif + compiler_barrier(); + return z_impl_tee_open_session(dev, arg, num_param, param, session_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_open_session(dev, arg, num_param, param, session_id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_OPEN_SESSION, tee_open_session, dev, arg, num_param, param, session_id); syscall__retval = tee_open_session(dev, arg, num_param, param, session_id); sys_port_trace_syscall_exit(K_SYSCALL_TEE_OPEN_SESSION, tee_open_session, dev, arg, num_param, param, session_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_close_session(const struct device * dev, uint32_t session_id); + +__pinned_func +static inline int tee_close_session(const struct device * dev, uint32_t session_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = session_id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_TEE_CLOSE_SESSION); + } +#endif + compiler_barrier(); + return z_impl_tee_close_session(dev, session_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_close_session(dev, session_id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_CLOSE_SESSION, tee_close_session, dev, session_id); syscall__retval = tee_close_session(dev, session_id); sys_port_trace_syscall_exit(K_SYSCALL_TEE_CLOSE_SESSION, tee_close_session, dev, session_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_cancel(const struct device * dev, uint32_t session_id, uint32_t cancel_id); + +__pinned_func +static inline int tee_cancel(const struct device * dev, uint32_t session_id, uint32_t cancel_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = session_id }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = cancel_id }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_TEE_CANCEL); + } +#endif + compiler_barrier(); + return z_impl_tee_cancel(dev, session_id, cancel_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_cancel(dev, session_id, cancel_id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_CANCEL, tee_cancel, dev, session_id, cancel_id); syscall__retval = tee_cancel(dev, session_id, cancel_id); sys_port_trace_syscall_exit(K_SYSCALL_TEE_CANCEL, tee_cancel, dev, session_id, cancel_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_invoke_func(const struct device * dev, struct tee_invoke_func_arg * arg, unsigned int num_param, struct tee_param * param); + +__pinned_func +static inline int tee_invoke_func(const struct device * dev, struct tee_invoke_func_arg * arg, unsigned int num_param, struct tee_param * param) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct tee_invoke_func_arg * val; } parm1 = { .val = arg }; + union { uintptr_t x; unsigned int val; } parm2 = { .val = num_param }; + union { uintptr_t x; struct tee_param * val; } parm3 = { .val = param }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_TEE_INVOKE_FUNC); + } +#endif + compiler_barrier(); + return z_impl_tee_invoke_func(dev, arg, num_param, param); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_invoke_func(dev, arg, num_param, param) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_INVOKE_FUNC, tee_invoke_func, dev, arg, num_param, param); syscall__retval = tee_invoke_func(dev, arg, num_param, param); sys_port_trace_syscall_exit(K_SYSCALL_TEE_INVOKE_FUNC, tee_invoke_func, dev, arg, num_param, param, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_shm_register(const struct device * dev, void * addr, size_t size, uint32_t flags, struct tee_shm ** shm); + +__pinned_func +static inline int tee_shm_register(const struct device * dev, void * addr, size_t size, uint32_t flags, struct tee_shm ** shm) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; void * val; } parm1 = { .val = addr }; + union { uintptr_t x; size_t val; } parm2 = { .val = size }; + union { uintptr_t x; uint32_t val; } parm3 = { .val = flags }; + union { uintptr_t x; struct tee_shm ** val; } parm4 = { .val = shm }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_TEE_SHM_REGISTER); + } +#endif + compiler_barrier(); + return z_impl_tee_shm_register(dev, addr, size, flags, shm); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_shm_register(dev, addr, size, flags, shm) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_SHM_REGISTER, tee_shm_register, dev, addr, size, flags, shm); syscall__retval = tee_shm_register(dev, addr, size, flags, shm); sys_port_trace_syscall_exit(K_SYSCALL_TEE_SHM_REGISTER, tee_shm_register, dev, addr, size, flags, shm, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_shm_unregister(const struct device * dev, struct tee_shm * shm); + +__pinned_func +static inline int tee_shm_unregister(const struct device * dev, struct tee_shm * shm) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct tee_shm * val; } parm1 = { .val = shm }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_TEE_SHM_UNREGISTER); + } +#endif + compiler_barrier(); + return z_impl_tee_shm_unregister(dev, shm); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_shm_unregister(dev, shm) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_SHM_UNREGISTER, tee_shm_unregister, dev, shm); syscall__retval = tee_shm_unregister(dev, shm); sys_port_trace_syscall_exit(K_SYSCALL_TEE_SHM_UNREGISTER, tee_shm_unregister, dev, shm, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_shm_alloc(const struct device * dev, size_t size, uint32_t flags, struct tee_shm ** shm); + +__pinned_func +static inline int tee_shm_alloc(const struct device * dev, size_t size, uint32_t flags, struct tee_shm ** shm) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; size_t val; } parm1 = { .val = size }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = flags }; + union { uintptr_t x; struct tee_shm ** val; } parm3 = { .val = shm }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_TEE_SHM_ALLOC); + } +#endif + compiler_barrier(); + return z_impl_tee_shm_alloc(dev, size, flags, shm); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_shm_alloc(dev, size, flags, shm) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_SHM_ALLOC, tee_shm_alloc, dev, size, flags, shm); syscall__retval = tee_shm_alloc(dev, size, flags, shm); sys_port_trace_syscall_exit(K_SYSCALL_TEE_SHM_ALLOC, tee_shm_alloc, dev, size, flags, shm, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_shm_free(const struct device * dev, struct tee_shm * shm); + +__pinned_func +static inline int tee_shm_free(const struct device * dev, struct tee_shm * shm) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct tee_shm * val; } parm1 = { .val = shm }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_TEE_SHM_FREE); + } +#endif + compiler_barrier(); + return z_impl_tee_shm_free(dev, shm); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_shm_free(dev, shm) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_SHM_FREE, tee_shm_free, dev, shm); syscall__retval = tee_shm_free(dev, shm); sys_port_trace_syscall_exit(K_SYSCALL_TEE_SHM_FREE, tee_shm_free, dev, shm, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_suppl_recv(const struct device * dev, uint32_t * func, unsigned int * num_params, struct tee_param * param); + +__pinned_func +static inline int tee_suppl_recv(const struct device * dev, uint32_t * func, unsigned int * num_params, struct tee_param * param) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t * val; } parm1 = { .val = func }; + union { uintptr_t x; unsigned int * val; } parm2 = { .val = num_params }; + union { uintptr_t x; struct tee_param * val; } parm3 = { .val = param }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_TEE_SUPPL_RECV); + } +#endif + compiler_barrier(); + return z_impl_tee_suppl_recv(dev, func, num_params, param); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_suppl_recv(dev, func, num_params, param) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_SUPPL_RECV, tee_suppl_recv, dev, func, num_params, param); syscall__retval = tee_suppl_recv(dev, func, num_params, param); sys_port_trace_syscall_exit(K_SYSCALL_TEE_SUPPL_RECV, tee_suppl_recv, dev, func, num_params, param, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tee_suppl_send(const struct device * dev, unsigned int ret, unsigned int num_params, struct tee_param * param); + +__pinned_func +static inline int tee_suppl_send(const struct device * dev, unsigned int ret, unsigned int num_params, struct tee_param * param) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; unsigned int val; } parm1 = { .val = ret }; + union { uintptr_t x; unsigned int val; } parm2 = { .val = num_params }; + union { uintptr_t x; struct tee_param * val; } parm3 = { .val = param }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_TEE_SUPPL_SEND); + } +#endif + compiler_barrier(); + return z_impl_tee_suppl_send(dev, ret, num_params, param); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tee_suppl_send(dev, ret, num_params, param) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TEE_SUPPL_SEND, tee_suppl_send, dev, ret, num_params, param); syscall__retval = tee_suppl_send(dev, ret, num_params, param); sys_port_trace_syscall_exit(K_SYSCALL_TEE_SUPPL_SEND, tee_suppl_send, dev, ret, num_params, param, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/time_units.h b/build/zephyr/include/generated/zephyr/syscalls/time_units.h new file mode 100644 index 0000000..4d6fb28 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/time_units.h @@ -0,0 +1,50 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_TIME_UNITS_H +#define Z_INCLUDE_SYSCALLS_TIME_UNITS_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern unsigned int z_impl_sys_clock_hw_cycles_per_sec_runtime_get(void); + +__pinned_func +static inline unsigned int sys_clock_hw_cycles_per_sec_runtime_get(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (unsigned int) arch_syscall_invoke0(K_SYSCALL_SYS_CLOCK_HW_CYCLES_PER_SEC_RUNTIME_GET); + } +#endif + compiler_barrier(); + return z_impl_sys_clock_hw_cycles_per_sec_runtime_get(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define sys_clock_hw_cycles_per_sec_runtime_get() ({ unsigned int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_SYS_CLOCK_HW_CYCLES_PER_SEC_RUNTIME_GET, sys_clock_hw_cycles_per_sec_runtime_get); syscall__retval = sys_clock_hw_cycles_per_sec_runtime_get(); sys_port_trace_syscall_exit(K_SYSCALL_SYS_CLOCK_HW_CYCLES_PER_SEC_RUNTIME_GET, sys_clock_hw_cycles_per_sec_runtime_get, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/timeaware_gpio.h b/build/zephyr/include/generated/zephyr/syscalls/timeaware_gpio.h new file mode 100644 index 0000000..2b97560 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/timeaware_gpio.h @@ -0,0 +1,182 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_TIMEAWARE_GPIO_H +#define Z_INCLUDE_SYSCALLS_TIMEAWARE_GPIO_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_tgpio_port_get_time(const struct device * dev, uint64_t * current_time); + +__pinned_func +static inline int tgpio_port_get_time(const struct device * dev, uint64_t * current_time) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint64_t * val; } parm1 = { .val = current_time }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_TGPIO_PORT_GET_TIME); + } +#endif + compiler_barrier(); + return z_impl_tgpio_port_get_time(dev, current_time); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tgpio_port_get_time(dev, current_time) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TGPIO_PORT_GET_TIME, tgpio_port_get_time, dev, current_time); syscall__retval = tgpio_port_get_time(dev, current_time); sys_port_trace_syscall_exit(K_SYSCALL_TGPIO_PORT_GET_TIME, tgpio_port_get_time, dev, current_time, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tgpio_port_get_cycles_per_second(const struct device * dev, uint32_t * cycles); + +__pinned_func +static inline int tgpio_port_get_cycles_per_second(const struct device * dev, uint32_t * cycles) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t * val; } parm1 = { .val = cycles }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_TGPIO_PORT_GET_CYCLES_PER_SECOND); + } +#endif + compiler_barrier(); + return z_impl_tgpio_port_get_cycles_per_second(dev, cycles); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tgpio_port_get_cycles_per_second(dev, cycles) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TGPIO_PORT_GET_CYCLES_PER_SECOND, tgpio_port_get_cycles_per_second, dev, cycles); syscall__retval = tgpio_port_get_cycles_per_second(dev, cycles); sys_port_trace_syscall_exit(K_SYSCALL_TGPIO_PORT_GET_CYCLES_PER_SECOND, tgpio_port_get_cycles_per_second, dev, cycles, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tgpio_pin_disable(const struct device * dev, uint32_t pin); + +__pinned_func +static inline int tgpio_pin_disable(const struct device * dev, uint32_t pin) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = pin }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_TGPIO_PIN_DISABLE); + } +#endif + compiler_barrier(); + return z_impl_tgpio_pin_disable(dev, pin); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tgpio_pin_disable(dev, pin) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TGPIO_PIN_DISABLE, tgpio_pin_disable, dev, pin); syscall__retval = tgpio_pin_disable(dev, pin); sys_port_trace_syscall_exit(K_SYSCALL_TGPIO_PIN_DISABLE, tgpio_pin_disable, dev, pin, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tgpio_pin_config_ext_timestamp(const struct device * dev, uint32_t pin, uint32_t event_polarity); + +__pinned_func +static inline int tgpio_pin_config_ext_timestamp(const struct device * dev, uint32_t pin, uint32_t event_polarity) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = pin }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = event_polarity }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_TGPIO_PIN_CONFIG_EXT_TIMESTAMP); + } +#endif + compiler_barrier(); + return z_impl_tgpio_pin_config_ext_timestamp(dev, pin, event_polarity); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tgpio_pin_config_ext_timestamp(dev, pin, event_polarity) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TGPIO_PIN_CONFIG_EXT_TIMESTAMP, tgpio_pin_config_ext_timestamp, dev, pin, event_polarity); syscall__retval = tgpio_pin_config_ext_timestamp(dev, pin, event_polarity); sys_port_trace_syscall_exit(K_SYSCALL_TGPIO_PIN_CONFIG_EXT_TIMESTAMP, tgpio_pin_config_ext_timestamp, dev, pin, event_polarity, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tgpio_pin_periodic_output(const struct device * dev, uint32_t pin, uint64_t start_time, uint64_t repeat_interval, bool periodic_enable); + +__pinned_func +static inline int tgpio_pin_periodic_output(const struct device * dev, uint32_t pin, uint64_t start_time, uint64_t repeat_interval, bool periodic_enable) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = pin }; + union { struct { uintptr_t lo, hi; } split; uint64_t val; } parm2 = { .val = start_time }; + union { struct { uintptr_t lo, hi; } split; uint64_t val; } parm3 = { .val = repeat_interval }; + union { uintptr_t x; bool val; } parm4 = { .val = periodic_enable }; + uintptr_t more[] = { + parm3.split.hi, + parm4.x + }; + return (int) arch_syscall_invoke6(parm0.x, parm1.x, parm2.split.lo, parm2.split.hi, parm3.split.lo, (uintptr_t) &more, K_SYSCALL_TGPIO_PIN_PERIODIC_OUTPUT); + } +#endif + compiler_barrier(); + return z_impl_tgpio_pin_periodic_output(dev, pin, start_time, repeat_interval, periodic_enable); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tgpio_pin_periodic_output(dev, pin, start_time, repeat_interval, periodic_enable) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TGPIO_PIN_PERIODIC_OUTPUT, tgpio_pin_periodic_output, dev, pin, start_time, repeat_interval, periodic_enable); syscall__retval = tgpio_pin_periodic_output(dev, pin, start_time, repeat_interval, periodic_enable); sys_port_trace_syscall_exit(K_SYSCALL_TGPIO_PIN_PERIODIC_OUTPUT, tgpio_pin_periodic_output, dev, pin, start_time, repeat_interval, periodic_enable, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_tgpio_pin_read_ts_ec(const struct device * dev, uint32_t pin, uint64_t * timestamp, uint64_t * event_count); + +__pinned_func +static inline int tgpio_pin_read_ts_ec(const struct device * dev, uint32_t pin, uint64_t * timestamp, uint64_t * event_count) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = pin }; + union { uintptr_t x; uint64_t * val; } parm2 = { .val = timestamp }; + union { uintptr_t x; uint64_t * val; } parm3 = { .val = event_count }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_TGPIO_PIN_READ_TS_EC); + } +#endif + compiler_barrier(); + return z_impl_tgpio_pin_read_ts_ec(dev, pin, timestamp, event_count); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define tgpio_pin_read_ts_ec(dev, pin, timestamp, event_count) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_TGPIO_PIN_READ_TS_EC, tgpio_pin_read_ts_ec, dev, pin, timestamp, event_count); syscall__retval = tgpio_pin_read_ts_ec(dev, pin, timestamp, event_count); sys_port_trace_syscall_exit(K_SYSCALL_TGPIO_PIN_READ_TS_EC, tgpio_pin_read_ts_ec, dev, pin, timestamp, event_count, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/uart.h b/build/zephyr/include/generated/zephyr/syscalls/uart.h new file mode 100644 index 0000000..d7094ca --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/uart.h @@ -0,0 +1,612 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_UART_H +#define Z_INCLUDE_SYSCALLS_UART_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_uart_err_check(const struct device * dev); + +__pinned_func +static inline int uart_err_check(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_ERR_CHECK); + } +#endif + compiler_barrier(); + return z_impl_uart_err_check(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_err_check(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_ERR_CHECK, uart_err_check, dev); syscall__retval = uart_err_check(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_ERR_CHECK, uart_err_check, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_poll_in(const struct device * dev, unsigned char * p_char); + +__pinned_func +static inline int uart_poll_in(const struct device * dev, unsigned char * p_char) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; unsigned char * val; } parm1 = { .val = p_char }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_UART_POLL_IN); + } +#endif + compiler_barrier(); + return z_impl_uart_poll_in(dev, p_char); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_poll_in(dev, p_char) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_POLL_IN, uart_poll_in, dev, p_char); syscall__retval = uart_poll_in(dev, p_char); sys_port_trace_syscall_exit(K_SYSCALL_UART_POLL_IN, uart_poll_in, dev, p_char, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_poll_in_u16(const struct device * dev, uint16_t * p_u16); + +__pinned_func +static inline int uart_poll_in_u16(const struct device * dev, uint16_t * p_u16) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t * val; } parm1 = { .val = p_u16 }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_UART_POLL_IN_U16); + } +#endif + compiler_barrier(); + return z_impl_uart_poll_in_u16(dev, p_u16); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_poll_in_u16(dev, p_u16) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_POLL_IN_U16, uart_poll_in_u16, dev, p_u16); syscall__retval = uart_poll_in_u16(dev, p_u16); sys_port_trace_syscall_exit(K_SYSCALL_UART_POLL_IN_U16, uart_poll_in_u16, dev, p_u16, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_uart_poll_out(const struct device * dev, unsigned char out_char); + +__pinned_func +static inline void uart_poll_out(const struct device * dev, unsigned char out_char) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; unsigned char val; } parm1 = { .val = out_char }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_UART_POLL_OUT); + return; + } +#endif + compiler_barrier(); + z_impl_uart_poll_out(dev, out_char); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_poll_out(dev, out_char) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_POLL_OUT, uart_poll_out, dev, out_char); uart_poll_out(dev, out_char); sys_port_trace_syscall_exit(K_SYSCALL_UART_POLL_OUT, uart_poll_out, dev, out_char); } while(false) +#endif +#endif + + +extern void z_impl_uart_poll_out_u16(const struct device * dev, uint16_t out_u16); + +__pinned_func +static inline void uart_poll_out_u16(const struct device * dev, uint16_t out_u16) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t val; } parm1 = { .val = out_u16 }; + (void) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_UART_POLL_OUT_U16); + return; + } +#endif + compiler_barrier(); + z_impl_uart_poll_out_u16(dev, out_u16); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_poll_out_u16(dev, out_u16) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_POLL_OUT_U16, uart_poll_out_u16, dev, out_u16); uart_poll_out_u16(dev, out_u16); sys_port_trace_syscall_exit(K_SYSCALL_UART_POLL_OUT_U16, uart_poll_out_u16, dev, out_u16); } while(false) +#endif +#endif + + +extern int z_impl_uart_configure(const struct device * dev, const struct uart_config * cfg); + +__pinned_func +static inline int uart_configure(const struct device * dev, const struct uart_config * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const struct uart_config * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_UART_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_uart_configure(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_configure(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_CONFIGURE, uart_configure, dev, cfg); syscall__retval = uart_configure(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_UART_CONFIGURE, uart_configure, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_config_get(const struct device * dev, struct uart_config * cfg); + +__pinned_func +static inline int uart_config_get(const struct device * dev, struct uart_config * cfg) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; struct uart_config * val; } parm1 = { .val = cfg }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_UART_CONFIG_GET); + } +#endif + compiler_barrier(); + return z_impl_uart_config_get(dev, cfg); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_config_get(dev, cfg) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_CONFIG_GET, uart_config_get, dev, cfg); syscall__retval = uart_config_get(dev, cfg); sys_port_trace_syscall_exit(K_SYSCALL_UART_CONFIG_GET, uart_config_get, dev, cfg, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern void z_impl_uart_irq_tx_enable(const struct device * dev); + +__pinned_func +static inline void uart_irq_tx_enable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_TX_ENABLE); + return; + } +#endif + compiler_barrier(); + z_impl_uart_irq_tx_enable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_tx_enable(dev) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_TX_ENABLE, uart_irq_tx_enable, dev); uart_irq_tx_enable(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_TX_ENABLE, uart_irq_tx_enable, dev); } while(false) +#endif +#endif + + +extern void z_impl_uart_irq_tx_disable(const struct device * dev); + +__pinned_func +static inline void uart_irq_tx_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_TX_DISABLE); + return; + } +#endif + compiler_barrier(); + z_impl_uart_irq_tx_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_tx_disable(dev) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_TX_DISABLE, uart_irq_tx_disable, dev); uart_irq_tx_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_TX_DISABLE, uart_irq_tx_disable, dev); } while(false) +#endif +#endif + + +extern void z_impl_uart_irq_rx_enable(const struct device * dev); + +__pinned_func +static inline void uart_irq_rx_enable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_RX_ENABLE); + return; + } +#endif + compiler_barrier(); + z_impl_uart_irq_rx_enable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_rx_enable(dev) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_RX_ENABLE, uart_irq_rx_enable, dev); uart_irq_rx_enable(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_RX_ENABLE, uart_irq_rx_enable, dev); } while(false) +#endif +#endif + + +extern void z_impl_uart_irq_rx_disable(const struct device * dev); + +__pinned_func +static inline void uart_irq_rx_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_RX_DISABLE); + return; + } +#endif + compiler_barrier(); + z_impl_uart_irq_rx_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_rx_disable(dev) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_RX_DISABLE, uart_irq_rx_disable, dev); uart_irq_rx_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_RX_DISABLE, uart_irq_rx_disable, dev); } while(false) +#endif +#endif + + +extern void z_impl_uart_irq_err_enable(const struct device * dev); + +__pinned_func +static inline void uart_irq_err_enable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_ERR_ENABLE); + return; + } +#endif + compiler_barrier(); + z_impl_uart_irq_err_enable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_err_enable(dev) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_ERR_ENABLE, uart_irq_err_enable, dev); uart_irq_err_enable(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_ERR_ENABLE, uart_irq_err_enable, dev); } while(false) +#endif +#endif + + +extern void z_impl_uart_irq_err_disable(const struct device * dev); + +__pinned_func +static inline void uart_irq_err_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + (void) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_ERR_DISABLE); + return; + } +#endif + compiler_barrier(); + z_impl_uart_irq_err_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_err_disable(dev) do { sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_ERR_DISABLE, uart_irq_err_disable, dev); uart_irq_err_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_ERR_DISABLE, uart_irq_err_disable, dev); } while(false) +#endif +#endif + + +extern int z_impl_uart_irq_is_pending(const struct device * dev); + +__pinned_func +static inline int uart_irq_is_pending(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_IS_PENDING); + } +#endif + compiler_barrier(); + return z_impl_uart_irq_is_pending(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_is_pending(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_IS_PENDING, uart_irq_is_pending, dev); syscall__retval = uart_irq_is_pending(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_IS_PENDING, uart_irq_is_pending, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_irq_update(const struct device * dev); + +__pinned_func +static inline int uart_irq_update(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_IRQ_UPDATE); + } +#endif + compiler_barrier(); + return z_impl_uart_irq_update(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_irq_update(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_IRQ_UPDATE, uart_irq_update, dev); syscall__retval = uart_irq_update(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_IRQ_UPDATE, uart_irq_update, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_tx(const struct device * dev, const uint8_t * buf, size_t len, int32_t timeout); + +__pinned_func +static inline int uart_tx(const struct device * dev, const uint8_t * buf, size_t len, int32_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const uint8_t * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + union { uintptr_t x; int32_t val; } parm3 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_UART_TX); + } +#endif + compiler_barrier(); + return z_impl_uart_tx(dev, buf, len, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_tx(dev, buf, len, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_TX, uart_tx, dev, buf, len, timeout); syscall__retval = uart_tx(dev, buf, len, timeout); sys_port_trace_syscall_exit(K_SYSCALL_UART_TX, uart_tx, dev, buf, len, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_tx_u16(const struct device * dev, const uint16_t * buf, size_t len, int32_t timeout); + +__pinned_func +static inline int uart_tx_u16(const struct device * dev, const uint16_t * buf, size_t len, int32_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const uint16_t * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + union { uintptr_t x; int32_t val; } parm3 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_UART_TX_U16); + } +#endif + compiler_barrier(); + return z_impl_uart_tx_u16(dev, buf, len, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_tx_u16(dev, buf, len, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_TX_U16, uart_tx_u16, dev, buf, len, timeout); syscall__retval = uart_tx_u16(dev, buf, len, timeout); sys_port_trace_syscall_exit(K_SYSCALL_UART_TX_U16, uart_tx_u16, dev, buf, len, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_tx_abort(const struct device * dev); + +__pinned_func +static inline int uart_tx_abort(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_TX_ABORT); + } +#endif + compiler_barrier(); + return z_impl_uart_tx_abort(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_tx_abort(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_TX_ABORT, uart_tx_abort, dev); syscall__retval = uart_tx_abort(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_TX_ABORT, uart_tx_abort, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_rx_enable(const struct device * dev, uint8_t * buf, size_t len, int32_t timeout); + +__pinned_func +static inline int uart_rx_enable(const struct device * dev, uint8_t * buf, size_t len, int32_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + union { uintptr_t x; int32_t val; } parm3 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_UART_RX_ENABLE); + } +#endif + compiler_barrier(); + return z_impl_uart_rx_enable(dev, buf, len, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_rx_enable(dev, buf, len, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_RX_ENABLE, uart_rx_enable, dev, buf, len, timeout); syscall__retval = uart_rx_enable(dev, buf, len, timeout); sys_port_trace_syscall_exit(K_SYSCALL_UART_RX_ENABLE, uart_rx_enable, dev, buf, len, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_rx_enable_u16(const struct device * dev, uint16_t * buf, size_t len, int32_t timeout); + +__pinned_func +static inline int uart_rx_enable_u16(const struct device * dev, uint16_t * buf, size_t len, int32_t timeout) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint16_t * val; } parm1 = { .val = buf }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + union { uintptr_t x; int32_t val; } parm3 = { .val = timeout }; + return (int) arch_syscall_invoke4(parm0.x, parm1.x, parm2.x, parm3.x, K_SYSCALL_UART_RX_ENABLE_U16); + } +#endif + compiler_barrier(); + return z_impl_uart_rx_enable_u16(dev, buf, len, timeout); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_rx_enable_u16(dev, buf, len, timeout) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_RX_ENABLE_U16, uart_rx_enable_u16, dev, buf, len, timeout); syscall__retval = uart_rx_enable_u16(dev, buf, len, timeout); sys_port_trace_syscall_exit(K_SYSCALL_UART_RX_ENABLE_U16, uart_rx_enable_u16, dev, buf, len, timeout, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_rx_disable(const struct device * dev); + +__pinned_func +static inline int uart_rx_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_UART_RX_DISABLE); + } +#endif + compiler_barrier(); + return z_impl_uart_rx_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_rx_disable(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_RX_DISABLE, uart_rx_disable, dev); syscall__retval = uart_rx_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_UART_RX_DISABLE, uart_rx_disable, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_line_ctrl_set(const struct device * dev, uint32_t ctrl, uint32_t val); + +__pinned_func +static inline int uart_line_ctrl_set(const struct device * dev, uint32_t ctrl, uint32_t val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = ctrl }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_UART_LINE_CTRL_SET); + } +#endif + compiler_barrier(); + return z_impl_uart_line_ctrl_set(dev, ctrl, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_line_ctrl_set(dev, ctrl, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_LINE_CTRL_SET, uart_line_ctrl_set, dev, ctrl, val); syscall__retval = uart_line_ctrl_set(dev, ctrl, val); sys_port_trace_syscall_exit(K_SYSCALL_UART_LINE_CTRL_SET, uart_line_ctrl_set, dev, ctrl, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_line_ctrl_get(const struct device * dev, uint32_t ctrl, uint32_t * val); + +__pinned_func +static inline int uart_line_ctrl_get(const struct device * dev, uint32_t ctrl, uint32_t * val) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = ctrl }; + union { uintptr_t x; uint32_t * val; } parm2 = { .val = val }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_UART_LINE_CTRL_GET); + } +#endif + compiler_barrier(); + return z_impl_uart_line_ctrl_get(dev, ctrl, val); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_line_ctrl_get(dev, ctrl, val) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_LINE_CTRL_GET, uart_line_ctrl_get, dev, ctrl, val); syscall__retval = uart_line_ctrl_get(dev, ctrl, val); sys_port_trace_syscall_exit(K_SYSCALL_UART_LINE_CTRL_GET, uart_line_ctrl_get, dev, ctrl, val, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_uart_drv_cmd(const struct device * dev, uint32_t cmd, uint32_t p); + +__pinned_func +static inline int uart_drv_cmd(const struct device * dev, uint32_t cmd, uint32_t p) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint32_t val; } parm1 = { .val = cmd }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = p }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_UART_DRV_CMD); + } +#endif + compiler_barrier(); + return z_impl_uart_drv_cmd(dev, cmd, p); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define uart_drv_cmd(dev, cmd, p) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UART_DRV_CMD, uart_drv_cmd, dev, cmd, p); syscall__retval = uart_drv_cmd(dev, cmd, p); sys_port_trace_syscall_exit(K_SYSCALL_UART_DRV_CMD, uart_drv_cmd, dev, cmd, p, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/updatehub.h b/build/zephyr/include/generated/zephyr/syscalls/updatehub.h new file mode 100644 index 0000000..1307ab4 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/updatehub.h @@ -0,0 +1,161 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_UPDATEHUB_H +#define Z_INCLUDE_SYSCALLS_UPDATEHUB_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void z_impl_updatehub_autohandler(void); + +__pinned_func +static inline void updatehub_autohandler(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + (void) arch_syscall_invoke0(K_SYSCALL_UPDATEHUB_AUTOHANDLER); + return; + } +#endif + compiler_barrier(); + z_impl_updatehub_autohandler(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define updatehub_autohandler() do { sys_port_trace_syscall_enter(K_SYSCALL_UPDATEHUB_AUTOHANDLER, updatehub_autohandler); updatehub_autohandler(); sys_port_trace_syscall_exit(K_SYSCALL_UPDATEHUB_AUTOHANDLER, updatehub_autohandler); } while(false) +#endif +#endif + + +extern enum updatehub_response z_impl_updatehub_probe(void); + +__pinned_func +static inline enum updatehub_response updatehub_probe(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (enum updatehub_response) arch_syscall_invoke0(K_SYSCALL_UPDATEHUB_PROBE); + } +#endif + compiler_barrier(); + return z_impl_updatehub_probe(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define updatehub_probe() ({ enum updatehub_response syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UPDATEHUB_PROBE, updatehub_probe); syscall__retval = updatehub_probe(); sys_port_trace_syscall_exit(K_SYSCALL_UPDATEHUB_PROBE, updatehub_probe, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern enum updatehub_response z_impl_updatehub_update(void); + +__pinned_func +static inline enum updatehub_response updatehub_update(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (enum updatehub_response) arch_syscall_invoke0(K_SYSCALL_UPDATEHUB_UPDATE); + } +#endif + compiler_barrier(); + return z_impl_updatehub_update(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define updatehub_update() ({ enum updatehub_response syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UPDATEHUB_UPDATE, updatehub_update); syscall__retval = updatehub_update(); sys_port_trace_syscall_exit(K_SYSCALL_UPDATEHUB_UPDATE, updatehub_update, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_updatehub_confirm(void); + +__pinned_func +static inline int updatehub_confirm(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (int) arch_syscall_invoke0(K_SYSCALL_UPDATEHUB_CONFIRM); + } +#endif + compiler_barrier(); + return z_impl_updatehub_confirm(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define updatehub_confirm() ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UPDATEHUB_CONFIRM, updatehub_confirm); syscall__retval = updatehub_confirm(); sys_port_trace_syscall_exit(K_SYSCALL_UPDATEHUB_CONFIRM, updatehub_confirm, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_updatehub_reboot(void); + +__pinned_func +static inline int updatehub_reboot(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (int) arch_syscall_invoke0(K_SYSCALL_UPDATEHUB_REBOOT); + } +#endif + compiler_barrier(); + return z_impl_updatehub_reboot(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define updatehub_reboot() ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UPDATEHUB_REBOOT, updatehub_reboot); syscall__retval = updatehub_reboot(); sys_port_trace_syscall_exit(K_SYSCALL_UPDATEHUB_REBOOT, updatehub_reboot, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_updatehub_report_error(void); + +__pinned_func +static inline int updatehub_report_error(void) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + return (int) arch_syscall_invoke0(K_SYSCALL_UPDATEHUB_REPORT_ERROR); + } +#endif + compiler_barrier(); + return z_impl_updatehub_report_error(); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define updatehub_report_error() ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_UPDATEHUB_REPORT_ERROR, updatehub_report_error); syscall__retval = updatehub_report_error(); sys_port_trace_syscall_exit(K_SYSCALL_UPDATEHUB_REPORT_ERROR, updatehub_report_error, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/usb_bc12.h b/build/zephyr/include/generated/zephyr/syscalls/usb_bc12.h new file mode 100644 index 0000000..7a6ff29 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/usb_bc12.h @@ -0,0 +1,77 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_USB_BC12_H +#define Z_INCLUDE_SYSCALLS_USB_BC12_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_bc12_set_role(const struct device * dev, enum bc12_role role); + +__pinned_func +static inline int bc12_set_role(const struct device * dev, enum bc12_role role) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum bc12_role val; } parm1 = { .val = role }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_BC12_SET_ROLE); + } +#endif + compiler_barrier(); + return z_impl_bc12_set_role(dev, role); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bc12_set_role(dev, role) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BC12_SET_ROLE, bc12_set_role, dev, role); syscall__retval = bc12_set_role(dev, role); sys_port_trace_syscall_exit(K_SYSCALL_BC12_SET_ROLE, bc12_set_role, dev, role, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_bc12_set_result_cb(const struct device * dev, bc12_callback_t cb, void * user_data); + +__pinned_func +static inline int bc12_set_result_cb(const struct device * dev, bc12_callback_t cb, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bc12_callback_t val; } parm1 = { .val = cb }; + union { uintptr_t x; void * val; } parm2 = { .val = user_data }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_BC12_SET_RESULT_CB); + } +#endif + compiler_barrier(); + return z_impl_bc12_set_result_cb(dev, cb, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define bc12_set_result_cb(dev, cb, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_BC12_SET_RESULT_CB, bc12_set_result_cb, dev, cb, user_data); syscall__retval = bc12_set_result_cb(dev, cb, user_data); sys_port_trace_syscall_exit(K_SYSCALL_BC12_SET_RESULT_CB, bc12_set_result_cb, dev, cb, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/w1.h b/build/zephyr/include/generated/zephyr/syscalls/w1.h new file mode 100644 index 0000000..4fdd7a9 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/w1.h @@ -0,0 +1,294 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_W1_H +#define Z_INCLUDE_SYSCALLS_W1_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_w1_change_bus_lock(const struct device * dev, bool lock); + +__pinned_func +static inline int w1_change_bus_lock(const struct device * dev, bool lock) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; bool val; } parm1 = { .val = lock }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_W1_CHANGE_BUS_LOCK); + } +#endif + compiler_barrier(); + return z_impl_w1_change_bus_lock(dev, lock); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_change_bus_lock(dev, lock) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_CHANGE_BUS_LOCK, w1_change_bus_lock, dev, lock); syscall__retval = w1_change_bus_lock(dev, lock); sys_port_trace_syscall_exit(K_SYSCALL_W1_CHANGE_BUS_LOCK, w1_change_bus_lock, dev, lock, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_reset_bus(const struct device * dev); + +__pinned_func +static inline int w1_reset_bus(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_W1_RESET_BUS); + } +#endif + compiler_barrier(); + return z_impl_w1_reset_bus(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_reset_bus(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_RESET_BUS, w1_reset_bus, dev); syscall__retval = w1_reset_bus(dev); sys_port_trace_syscall_exit(K_SYSCALL_W1_RESET_BUS, w1_reset_bus, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_read_bit(const struct device * dev); + +__pinned_func +static inline int w1_read_bit(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_W1_READ_BIT); + } +#endif + compiler_barrier(); + return z_impl_w1_read_bit(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_read_bit(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_READ_BIT, w1_read_bit, dev); syscall__retval = w1_read_bit(dev); sys_port_trace_syscall_exit(K_SYSCALL_W1_READ_BIT, w1_read_bit, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_write_bit(const struct device * dev, const bool bit); + +__pinned_func +static inline int w1_write_bit(const struct device * dev, const bool bit) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const bool val; } parm1 = { .val = bit }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_W1_WRITE_BIT); + } +#endif + compiler_barrier(); + return z_impl_w1_write_bit(dev, bit); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_write_bit(dev, bit) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_WRITE_BIT, w1_write_bit, dev, bit); syscall__retval = w1_write_bit(dev, bit); sys_port_trace_syscall_exit(K_SYSCALL_W1_WRITE_BIT, w1_write_bit, dev, bit, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_read_byte(const struct device * dev); + +__pinned_func +static inline int w1_read_byte(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_W1_READ_BYTE); + } +#endif + compiler_barrier(); + return z_impl_w1_read_byte(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_read_byte(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_READ_BYTE, w1_read_byte, dev); syscall__retval = w1_read_byte(dev); sys_port_trace_syscall_exit(K_SYSCALL_W1_READ_BYTE, w1_read_byte, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_write_byte(const struct device * dev, uint8_t byte); + +__pinned_func +static inline int w1_write_byte(const struct device * dev, uint8_t byte) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = byte }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_W1_WRITE_BYTE); + } +#endif + compiler_barrier(); + return z_impl_w1_write_byte(dev, byte); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_write_byte(dev, byte) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_WRITE_BYTE, w1_write_byte, dev, byte); syscall__retval = w1_write_byte(dev, byte); sys_port_trace_syscall_exit(K_SYSCALL_W1_WRITE_BYTE, w1_write_byte, dev, byte, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_read_block(const struct device * dev, uint8_t * buffer, size_t len); + +__pinned_func +static inline int w1_read_block(const struct device * dev, uint8_t * buffer, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t * val; } parm1 = { .val = buffer }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_W1_READ_BLOCK); + } +#endif + compiler_barrier(); + return z_impl_w1_read_block(dev, buffer, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_read_block(dev, buffer, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_READ_BLOCK, w1_read_block, dev, buffer, len); syscall__retval = w1_read_block(dev, buffer, len); sys_port_trace_syscall_exit(K_SYSCALL_W1_READ_BLOCK, w1_read_block, dev, buffer, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_write_block(const struct device * dev, const uint8_t * buffer, size_t len); + +__pinned_func +static inline int w1_write_block(const struct device * dev, const uint8_t * buffer, size_t len) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; const uint8_t * val; } parm1 = { .val = buffer }; + union { uintptr_t x; size_t val; } parm2 = { .val = len }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_W1_WRITE_BLOCK); + } +#endif + compiler_barrier(); + return z_impl_w1_write_block(dev, buffer, len); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_write_block(dev, buffer, len) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_WRITE_BLOCK, w1_write_block, dev, buffer, len); syscall__retval = w1_write_block(dev, buffer, len); sys_port_trace_syscall_exit(K_SYSCALL_W1_WRITE_BLOCK, w1_write_block, dev, buffer, len, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern size_t z_impl_w1_get_slave_count(const struct device * dev); + +__pinned_func +static inline size_t w1_get_slave_count(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (size_t) arch_syscall_invoke1(parm0.x, K_SYSCALL_W1_GET_SLAVE_COUNT); + } +#endif + compiler_barrier(); + return z_impl_w1_get_slave_count(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_get_slave_count(dev) ({ size_t syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_GET_SLAVE_COUNT, w1_get_slave_count, dev); syscall__retval = w1_get_slave_count(dev); sys_port_trace_syscall_exit(K_SYSCALL_W1_GET_SLAVE_COUNT, w1_get_slave_count, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_configure(const struct device * dev, enum w1_settings_type type, uint32_t value); + +__pinned_func +static inline int w1_configure(const struct device * dev, enum w1_settings_type type, uint32_t value) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; enum w1_settings_type val; } parm1 = { .val = type }; + union { uintptr_t x; uint32_t val; } parm2 = { .val = value }; + return (int) arch_syscall_invoke3(parm0.x, parm1.x, parm2.x, K_SYSCALL_W1_CONFIGURE); + } +#endif + compiler_barrier(); + return z_impl_w1_configure(dev, type, value); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_configure(dev, type, value) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_CONFIGURE, w1_configure, dev, type, value); syscall__retval = w1_configure(dev, type, value); sys_port_trace_syscall_exit(K_SYSCALL_W1_CONFIGURE, w1_configure, dev, type, value, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_w1_search_bus(const struct device * dev, uint8_t command, uint8_t family, w1_search_callback_t callback, void * user_data); + +__pinned_func +static inline int w1_search_bus(const struct device * dev, uint8_t command, uint8_t family, w1_search_callback_t callback, void * user_data) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = command }; + union { uintptr_t x; uint8_t val; } parm2 = { .val = family }; + union { uintptr_t x; w1_search_callback_t val; } parm3 = { .val = callback }; + union { uintptr_t x; void * val; } parm4 = { .val = user_data }; + return (int) arch_syscall_invoke5(parm0.x, parm1.x, parm2.x, parm3.x, parm4.x, K_SYSCALL_W1_SEARCH_BUS); + } +#endif + compiler_barrier(); + return z_impl_w1_search_bus(dev, command, family, callback, user_data); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define w1_search_bus(dev, command, family, callback, user_data) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_W1_SEARCH_BUS, w1_search_bus, dev, command, family, callback, user_data); syscall__retval = w1_search_bus(dev, command, family, callback, user_data); sys_port_trace_syscall_exit(K_SYSCALL_W1_SEARCH_BUS, w1_search_bus, dev, command, family, callback, user_data, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/syscalls/watchdog.h b/build/zephyr/include/generated/zephyr/syscalls/watchdog.h new file mode 100644 index 0000000..7bfc784 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/syscalls/watchdog.h @@ -0,0 +1,99 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#ifndef Z_INCLUDE_SYSCALLS_WATCHDOG_H +#define Z_INCLUDE_SYSCALLS_WATCHDOG_H + + +#include + +#ifndef _ASMLANGUAGE + +#include + +#include +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +extern int z_impl_wdt_setup(const struct device * dev, uint8_t options); + +__pinned_func +static inline int wdt_setup(const struct device * dev, uint8_t options) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; uint8_t val; } parm1 = { .val = options }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_WDT_SETUP); + } +#endif + compiler_barrier(); + return z_impl_wdt_setup(dev, options); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define wdt_setup(dev, options) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_WDT_SETUP, wdt_setup, dev, options); syscall__retval = wdt_setup(dev, options); sys_port_trace_syscall_exit(K_SYSCALL_WDT_SETUP, wdt_setup, dev, options, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_wdt_disable(const struct device * dev); + +__pinned_func +static inline int wdt_disable(const struct device * dev) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + return (int) arch_syscall_invoke1(parm0.x, K_SYSCALL_WDT_DISABLE); + } +#endif + compiler_barrier(); + return z_impl_wdt_disable(dev); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define wdt_disable(dev) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_WDT_DISABLE, wdt_disable, dev); syscall__retval = wdt_disable(dev); sys_port_trace_syscall_exit(K_SYSCALL_WDT_DISABLE, wdt_disable, dev, syscall__retval); syscall__retval; }) +#endif +#endif + + +extern int z_impl_wdt_feed(const struct device * dev, int channel_id); + +__pinned_func +static inline int wdt_feed(const struct device * dev, int channel_id) +{ +#ifdef CONFIG_USERSPACE + if (z_syscall_trap()) { + union { uintptr_t x; const struct device * val; } parm0 = { .val = dev }; + union { uintptr_t x; int val; } parm1 = { .val = channel_id }; + return (int) arch_syscall_invoke2(parm0.x, parm1.x, K_SYSCALL_WDT_FEED); + } +#endif + compiler_barrier(); + return z_impl_wdt_feed(dev, channel_id); +} + +#if defined(CONFIG_TRACING_SYSCALL) +#ifndef DISABLE_SYSCALL_TRACING + +#define wdt_feed(dev, channel_id) ({ int syscall__retval; sys_port_trace_syscall_enter(K_SYSCALL_WDT_FEED, wdt_feed, dev, channel_id); syscall__retval = wdt_feed(dev, channel_id); sys_port_trace_syscall_exit(K_SYSCALL_WDT_FEED, wdt_feed, dev, channel_id, syscall__retval); syscall__retval; }) +#endif +#endif + + +#ifdef __cplusplus +} +#endif + +#endif +#endif /* include guard */ diff --git a/build/zephyr/include/generated/zephyr/version.h b/build/zephyr/include/generated/zephyr/version.h new file mode 100644 index 0000000..154d508 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/version.h @@ -0,0 +1,25 @@ +#ifndef _KERNEL_VERSION_H_ +#define _KERNEL_VERSION_H_ + +/* The template values come from cmake/modules/version.cmake + * BUILD_VERSION related template values will be 'git describe', + * alternatively user defined BUILD_VERSION. + */ + +#define ZEPHYR_VERSION_CODE 263168 +#define ZEPHYR_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) + +#define KERNELVERSION 0x4040000 +#define KERNEL_VERSION_NUMBER 0x40400 +#define KERNEL_VERSION_MAJOR 4 +#define KERNEL_VERSION_MINOR 4 +#define KERNEL_PATCHLEVEL 0 +#define KERNEL_TWEAK 0 +#define KERNEL_VERSION_STRING "4.4.0-rc1" +#define KERNEL_VERSION_EXTENDED_STRING "4.4.0-rc1+0" +#define KERNEL_VERSION_TWEAK_STRING "4.4.0+0" + +#define BUILD_VERSION v4.4.0-rc1-32-gb93e61d02d5c + + +#endif /* _KERNEL_VERSION_H_ */ diff --git a/build/zephyr/include/generated/zephyr/zsr.h b/build/zephyr/include/generated/zephyr/zsr.h new file mode 100644 index 0000000..203e752 --- /dev/null +++ b/build/zephyr/include/generated/zephyr/zsr.h @@ -0,0 +1,28 @@ +/* Generated File, see gen_zsr.py */ +#ifndef ZEPHYR_ZSR_H +#define ZEPHYR_ZSR_H +# define ZSR_A0SAVE MISC0 +# define ZSR_A0SAVE_STR "MISC0" +# define ZSR_CPU MISC1 +# define ZSR_CPU_STR "MISC1" +# define ZSR_EXTRA0 MISC2 +# define ZSR_EXTRA0_STR "MISC2" +# define ZSR_EXTRA1 MISC3 +# define ZSR_EXTRA1_STR "MISC3" +# define ZSR_EXTRA2 EXCSAVE1 +# define ZSR_EXTRA2_STR "EXCSAVE1" +# define ZSR_EXTRA3 EXCSAVE2 +# define ZSR_EXTRA3_STR "EXCSAVE2" +# define ZSR_EXTRA4 EXCSAVE3 +# define ZSR_EXTRA4_STR "EXCSAVE3" +# define ZSR_EXTRA5 EXCSAVE4 +# define ZSR_EXTRA5_STR "EXCSAVE4" +# define ZSR_EXTRA6 EXCSAVE5 +# define ZSR_EXTRA6_STR "EXCSAVE5" +# define ZSR_EXTRA7 EXCSAVE6 +# define ZSR_EXTRA7_STR "EXCSAVE6" +# define ZSR_RFI_LEVEL 5 +# define ZSR_EPC EPC5 +# define ZSR_EPS EPS5 +# define ZSR_IRQ_OFFLOAD_INT 29 +#endif diff --git a/build/zephyr/isr_tables.c b/build/zephyr/isr_tables.c new file mode 100644 index 0000000..741ed85 --- /dev/null +++ b/build/zephyr/isr_tables.c @@ -0,0 +1,43 @@ + +/* AUTO-GENERATED by gen_isr_tables.py, do not edit! */ + +#include +#include +#include +#include + +typedef void (* ISR)(const void *); +struct _isr_table_entry __sw_isr_table _sw_isr_table[32] = { + {(const void *)0x0, (ISR)z_irq_spurious}, /* 0 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 1 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 2 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 3 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 4 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 5 */ + {(const void *)0x0, (ISR)0x40378c0c}, /* 6 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 7 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 8 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 9 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 10 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 11 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 12 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 13 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 14 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 15 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 16 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 17 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 18 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 19 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 20 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 21 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 22 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 23 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 24 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 25 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 26 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 27 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 28 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 29 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 30 */ + {(const void *)0x0, (ISR)z_irq_spurious}, /* 31 */ +}; diff --git a/build/zephyr/isr_tables_swi.ld b/build/zephyr/isr_tables_swi.ld new file mode 100644 index 0000000..710cecc --- /dev/null +++ b/build/zephyr/isr_tables_swi.ld @@ -0,0 +1 @@ +/* Empty */ diff --git a/build/zephyr/isr_tables_vt.ld b/build/zephyr/isr_tables_vt.ld new file mode 100644 index 0000000..710cecc --- /dev/null +++ b/build/zephyr/isr_tables_vt.ld @@ -0,0 +1 @@ +/* Empty */ diff --git a/build/zephyr/kconfig/sources.txt b/build/zephyr/kconfig/sources.txt new file mode 100644 index 0000000..00860fa --- /dev/null +++ b/build/zephyr/kconfig/sources.txt @@ -0,0 +1,4539 @@ +/Users/wijnand/zephyr-sdk-1.0.0/cmake/zephyr/Kconfig +/Users/wijnand/zephyrproject/modules/debug/percepio/DFM/kernelports/Zephyr/Kconfig +/Users/wijnand/zephyrproject/modules/debug/percepio/DFM/kernelports/Zephyr/storageports/Filesystem/Kconfig +/Users/wijnand/zephyrproject/modules/debug/percepio/DFM/kernelports/Zephyr/storageports/Flash/Kconfig +/Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig +/Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.BufferAllocation +/Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.Debug +/Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.EntryTable +/Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.ISR +/Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.InternalBuffer +/Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.StackMonitor +/Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.StartMode +/Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.StreamPort +/Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.TraceControl +/Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/config/Kconfig/Kconfig.TraceCoverage +/Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/kernelports/ESP-IDF_FreeRTOS/streamports/ESP_IDF_APPTRACE/Kconfig +/Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/kernelports/Zephyr/Kconfig +/Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/kernelports/Zephyr/streamports/Semihost/Kconfig +/Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/ARM_ITM/Kconfig +/Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/File/Kconfig +/Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/Jlink_RTT/Kconfig +/Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/RingBuffer/Kconfig +/Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/STM32_USB_CDC/Kconfig +/Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/TCPIP/Kconfig +/Users/wijnand/zephyrproject/modules/debug/percepio/TraceRecorder/streamports/UDP/Kconfig +/Users/wijnand/zephyrproject/modules/debug/percepio/zephyr/Kconfig +/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32/include/soc/Kconfig.soc_caps.in +/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32c2/include/soc/Kconfig.soc_caps.in +/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32c3/include/soc/Kconfig.soc_caps.in +/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32c5/include/soc/Kconfig.soc_caps.in +/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32c6/include/soc/Kconfig.soc_caps.in +/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32h2/include/soc/Kconfig.soc_caps.in +/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32s2/include/soc/Kconfig.soc_caps.in +/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32s3/include/soc/Kconfig.soc_caps.in +/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/Kconfig +/Users/wijnand/zephyrproject/modules/hal/intel/zephyr/Kconfig +/Users/wijnand/zephyrproject/modules/hal/intel/zephyr/bsp_sedi/Kconfig +/Users/wijnand/zephyrproject/modules/hal/intel/zephyr/subsys/logging/backends/Kconfig.i2c +/Users/wijnand/zephyrproject/modules/hal/realtek/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/ameba/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/ameba/amebad/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/ameba/amebadplus/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/ameba/amebag2/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/adc/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/bluetooth/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/can/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/codec/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/dma/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/gpio/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/i2c/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/i2s/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/ir/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/keyscan/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/mac_802154/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/nvic/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/pinmux/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/qdec/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/rcc/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/rtc/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/sdhc/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/spi/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/tim/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/uart/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/usb/Kconfig +/Users/wijnand/zephyrproject/modules/hal/realtek/bee/drivers/wdt/Kconfig +/Users/wijnand/zephyrproject/modules/hal/telink/Kconfig +/Users/wijnand/zephyrproject/modules/hal/telink/tlsr9/Kconfig +/Users/wijnand/zephyrproject/modules/lib/gui/lvgl/Kconfig +/Users/wijnand/zephyrproject/modules/lib/gui/lvgl/zephyr/Kconfig +/Users/wijnand/zephyrproject/modules/lib/picolibc/zephyr/Kconfig +/Users/wijnand/zephyrproject/zephyr/Kconfig.constants +/Users/wijnand/zephyrproject/zephyr/Kconfig.zephyr +/Users/wijnand/zephyrproject/zephyr/arch/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/arc/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/arc/core/dsp/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/arc/core/mpu/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/arm/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/arm/core/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/arm/core/Kconfig.vfp +/Users/wijnand/zephyrproject/zephyr/arch/arm/core/arm9/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/arm/core/cortex_a_r/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/arm/core/cortex_m/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/arm/core/cortex_m/tz/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/arm/core/mmu/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/arm/core/mpu/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/arm64/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/arm64/core/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/arm64/core/cortex_r/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/arm64/core/xen/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/common/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/mips/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/openrisc/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/posix/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/posix/Kconfig.natsim_optional +/Users/wijnand/zephyrproject/zephyr/arch/riscv/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/riscv/Kconfig.isa +/Users/wijnand/zephyrproject/zephyr/arch/riscv/custom/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/riscv/custom/andes/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/riscv/custom/thead/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/riscv/custom/thead/Kconfig.core +/Users/wijnand/zephyrproject/zephyr/arch/riscv/custom/vexriscv/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/rx/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/sparc/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/x86/Kconfig +/Users/wijnand/zephyrproject/zephyr/arch/x86/core/Kconfig.ia32 +/Users/wijnand/zephyrproject/zephyr/arch/x86/core/Kconfig.intel64 +/Users/wijnand/zephyrproject/zephyr/arch/xtensa/Kconfig +/Users/wijnand/zephyrproject/zephyr/boards/Kconfig +/Users/wijnand/zephyrproject/zephyr/boards/Kconfig.v2 +/Users/wijnand/zephyrproject/zephyr/boards/Kconfig.whisper +/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig +/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig.xiao_esp32s3 +/Users/wijnand/zephyrproject/zephyr/boards/shields/abrobot_esp32c3_oled/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_24lc32/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_2_8_tft_touch_v2/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_2_8_tft_touch_v2/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_8chan_solenoid/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ad5693r/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_adalogger_featherwing/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_aht20/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_apds9960/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_aw9523/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_data_logger/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_dps310/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_drv2605l/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ds2484/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_featherwing_128x32_oled/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_featherwing_128x32_oled/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_featherwing_128x64_oled/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_featherwing_128x64_oled/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ht16k33/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_hts221/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ina219/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ina228/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ina237/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ina3221/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_lis2mdl/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_lis3dh/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_lis3mdl/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_lps22/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_ltr329/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_max17048/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_mcp4728/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_mcp9808/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_neopixel_grid_bff/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_neopixel_grid_bff/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_pca9685/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_pcf8523/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_sht4x/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_tsl2591/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_vcnl4040/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_veml7700/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_winc1500/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/adafruit_winc1500/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/amg88xx/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/arceli_eth_w5500/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/arceli_eth_w5500/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/arducam_cu450_ov5640/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_giga_display_shield/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_giga_display_shield/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_modulino_buttons/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_modulino_latch_relay/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_modulino_movement/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_modulino_pixels/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_modulino_thermo/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/arduino_uno_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/atmel_rf2xx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/atmel_rf2xx/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/boostxl_ulpsense/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/buydisplay_2_8_tft_touch_arduino/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/buydisplay_2_8_tft_touch_arduino/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/buydisplay_3_5_tft_touch_arduino/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/buydisplay_3_5_tft_touch_arduino/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/canis_canpico/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/dac80508_evm/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/dvp_20pin_ov7670/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/dvp_fpc24_mt9m114/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/ek_ra8d1_rtk7eka6m3b00001bu/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/esp_8266/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/esp_8266/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/esp_8266/boards/disco_l475_iot1.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/esp_8266/boards/sam4e_xpro.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/esp_threadbr_ethernet/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/esp_threadbr_ethernet/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/eval_ad4052_ardz/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/eval_adxl362_ardz/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/eval_adxl367_ardz/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/eval_adxl372_ardz/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/eval_cn0391_ardz/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/frdm_cr20a/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/frdm_cr20a/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/frdm_cr20a/boards/frdm_k64f.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/frdm_kw41z/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/frdm_stbc_agm01/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/ftdi_vm800c/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/g1120b0mipi/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/g1120b0mipi/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/inventek_eswifi/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/inventek_eswifi/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/inventek_eswifi/boards/frdm_k64f.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/inventek_eswifi/boards/nucleo_f767zi.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/lcd_par_s035/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/lcd_par_s035/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/link_board_eth/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/link_board_eth/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/lmp90100_evb/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/lmp90100_evb/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/ls0xx_generic/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/ls0xx_generic/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/m5stack_cardputer/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/m5stack_cardputer/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/m5stack_core2_ext/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/max3421e/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/max7219/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mchp_rnbd451_bt/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/mchp_rnbd451_bt/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mcp2515/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_3d_hall_3_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_accel13_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_accel4_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_adc_click/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_adc_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_air_quality_3_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_ambient_2_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_ble_tiny_click/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_ble_tiny_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_can_fd_6_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_eeprom_13_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_eth3_click/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_eth3_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_eth_click/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_eth_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_flash_5_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_flash_6_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_flash_8_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_h_bridge_4_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_illuminance_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_ir_gesture_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_lsm6dsl_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_lte_iot10_click/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_lte_iot10_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_lte_iot7_click/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_lte_iot7_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_mcp251x_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_mcp251xfd_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_pressure_3_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_proximity_9_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_rs485_isolator_5_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_rtc_18_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_stepper_18_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_stepper_19_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_temp_hum_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_weather_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_wifi_bt_click/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/mikroe_wifi_bt_click/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/npm1100_ek/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/npm1300_ek/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/npm1304_ek/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/npm2100_ek/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/npm6001_ek/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/nrf7002eb/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/nrf7002eb2/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/nrf7002ek/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/nxp_adtja1101/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/nxp_btb44_ov5640/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/nxp_m2_wifi_bt/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/nxp_m2_wifi_bt/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/nxp_s32k5xx_mb/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/olimex_shield_midi/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/openthread_rcp_arduino/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/openthread_rcp_arduino/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/p3t1755dp_ard_i2c/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/p3t1755dp_ard_i3c/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/pmod_acl/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/pmod_sd/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/raspberry_pi_camera_module_2/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/renesas_aik_ov2640_cam/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/renesas_us159_da14531evz/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/reyax_lora/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/rk043fn02h_ct/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/rk043fn02h_ct/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/rk043fn66hs_ctg/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/rk043fn66hs_ctg/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/rk055hdmipi4m/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/rk055hdmipi4m/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/rk055hdmipi4ma0/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/rk055hdmipi4ma0/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/rpi_pico_uno_flexypin/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/rtk0eg0019b01002bj/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/rtk0eg0019b01002bj/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/rtk7eka6m3b00001bu/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/rtk7eka6m3b00001bu/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/rtk7eka6m3b00001bu/boards/ek_ra8d1.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/rtklcdpar1s00001be/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/rtklcdpar1s00001be/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/rtklcdpar1s00001be/boards/ek_ra8d2_r7ka8d2kflcac_cm85.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/rtklcdpar1s00001be/boards/ek_ra8p1_r7ka8p1kflcac_cm85.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/rtkmipilcdb00000be/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/rtkmipilcdb00000be/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/rtkmipilcdb00000be/boards/aik_ra8d1.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/rtkmipilcdb00000be/boards/ek_ra8d1.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/rtkmipilcdb00000be/boards/ek_ra8p1_r7ka8p1kflcac_cm85.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/seeed_w5500/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/seeed_w5500/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/seeed_xiao_expansion_board/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/seeed_xiao_expansion_board/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/seeed_xiao_hsp24/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/seeed_xiao_round_display/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/seeed_xiao_round_display/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/semtech_sx1261mb2bas/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/semtech_sx1262mb2das/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/semtech_sx1272mb2das/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/semtech_sx1276mb1mas/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/sparkfun_carrier_asset_tracker/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/sparkfun_environmental_combo/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/sparkfun_rv8803/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/sparkfun_sara_r4/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/sparkfun_sara_r4/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/sparkfun_shtc3/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/ssd1306/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/ssd1306/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/st7735r/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/st7735r/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/st7789v_generic/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/st7789v_generic/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/st87mxx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/st87mxx/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_cams_imx_mb1854/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_cams_imx_mb1854/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_cams_omv_mb1683/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_dsi_mb1314/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/boards/stm32h747i_disco_stm32h747xx_m7.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/st_b_lcd40_dsi1_mb1166/boards/stm32h757i_eval_stm32h757xx_m7.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/st_lcd_dsi_mb1835/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/st_mb1897_cam/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/st_stm32f4dis_cam/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/swir_hl78xx_ev_kit/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/tcan4550evm/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/ti_bp_bassensorsmkii/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/v2c_daplink/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_dsi_lcd/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_dsi_lcd/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_epaper/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_epaper/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_pico_lcd_1_14/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_pico_lcd_1_14/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_pico_oled_1_3/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_pico_oled_1_3/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/waveshare_ups/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/weact_ov2640_cam_module/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/wiznet_w5500/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/wiznet_w5500/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/wnc_m14a2a/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/wnc_m14a2a/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_53l0a1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_53l0a1/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_bnrg2a1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_bnrg2a1/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_eeprma2/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_eeprma2/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_gfx01m2/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_gfx01m2/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_idb05a1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_idb05a1/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_iks01a1/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_iks01a2/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_iks01a3/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_iks02a1/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_iks4a1/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_iks5a1/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_wb05kn1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/x_nucleo_wb05kn1/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/zc143ac72mipi/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/boards/shields/zc143ac72mipi/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/boards/shields/zhaw_lumamatrix/Kconfig.shield +/Users/wijnand/zephyrproject/zephyr/drivers/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ad405x +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ad4114 +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ad4130 +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ad4170 +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ad559x +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ad7124 +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.adc_emul +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ads1112 +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ads1119 +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ads131m02 +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ads1x1x +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ads1x4s0x +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ads7052 +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ads79xx +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ambiq +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.b91 +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.bflb +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.cc13xx_cc26xx +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.cc23x0 +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.cc32xx +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ch32v00x +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ene +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.gd32 +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.infineon +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.infineon_autanalog_sar +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.infineon_hppass_sar +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.infineon_sar +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.it51xxx +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.it8xxx2 +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.lmp90xxx +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ltc2451 +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.max11102_17 +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.max1125x +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.max2253x +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.max32 +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.mchp +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.mcp320x +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.mcp3221 +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.mcp356xr +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.mcux +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.npcx +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.nrfx +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.numaker +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.nxp_s32 +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.renesas_rx +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.renesas_rz +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.rpi_pico +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.rts5912 +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.sam +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.sam0 +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.sam_afec +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.sf32lb +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.silabs +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.smartbond +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.test +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.ti_am335x +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.tla202x +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.vf610 +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.xec +/Users/wijnand/zephyrproject/zephyr/drivers/adc/Kconfig.xmc4xxx +/Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.aw88298 +/Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.cs43l22 +/Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.da7212 +/Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_ambiq_pdm +/Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_infineon +/Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_mcux +/Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_nxp_micfil +/Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.dmic_pdm_nrfx +/Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.max98091 +/Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.mpxxdtyy +/Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.pcm1681 +/Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.sf32lb +/Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.tas6422dac +/Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.tlv320aic3110 +/Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.tlv320dac +/Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.wm8904 +/Users/wijnand/zephyrproject/zephyr/drivers/audio/Kconfig.wm8962 +/Users/wijnand/zephyrproject/zephyr/drivers/audio/mic_privacy/intel/Kconfig.mic_privacy +/Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.gpio +/Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.hd44780 +/Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.itron +/Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.jhd1313 +/Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.pt6314 +/Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.serlcd +/Users/wijnand/zephyrproject/zephyr/drivers/auxdisplay/Kconfig.tm1637 +/Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.bbram_emul +/Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.it8xxx2 +/Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.mc146818 +/Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.microchip +/Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.npcx +/Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.rts5912 +/Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/bbram/Kconfig.xec +/Users/wijnand/zephyrproject/zephyr/drivers/biometrics/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/biometrics/Kconfig.emul +/Users/wijnand/zephyrproject/zephyr/drivers/biometrics/Kconfig.gt5x +/Users/wijnand/zephyrproject/zephyr/drivers/biometrics/Kconfig.zfm_x0 +/Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.bee +/Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.bflb +/Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.infineon +/Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.nxp +/Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.silabs +/Users/wijnand/zephyrproject/zephyr/drivers/bluetooth/hci/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.andes +/Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.aspeed +/Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.bflb +/Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.nrf +/Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.nxp_lmem_cache +/Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.nxp_syscon_lpcac +/Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.nxp_xcache +/Users/wijnand/zephyrproject/zephyr/drivers/cache/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.fake +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.infineon +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.kvaser +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.loopback +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.max32 +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.mcan +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.mcp2515 +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.mcp251xfd +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.mcux +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.native_linux +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.nrf +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.numaker +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.nxp_lpc_mcan +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.nxp_s32 +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.rcar +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.renesas_rz +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.sam +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.sam0 +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.sja1000 +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.tcan4x5x +/Users/wijnand/zephyrproject/zephyr/drivers/can/Kconfig.xmc4xxx +/Users/wijnand/zephyrproject/zephyr/drivers/can/transceiver/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.axp2101 +/Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.bq24190 +/Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.bq2518x +/Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.bq25713 +/Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.gpio +/Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.max20335 +/Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.npm10xx +/Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.pca9422 +/Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.pf1550 +/Users/wijnand/zephyrproject/zephyr/drivers/charger/Kconfig.sbs_charger +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.agilex5 +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.alif +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.ambiq +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.ameba +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.arm_scmi +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.aspeed +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.bee +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.beetle +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.bflb +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.cavs +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.fixed +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.focaltech +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.gd32 +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.infineon +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.it51xxx +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.litex +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.lpc11u6x +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.max32 +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.mchp +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.mspm0 +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.npcm +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.npcx +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.nrf +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.numaker +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.nxp +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.pwm +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.rcar +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.renesas_ra_cgc +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.renesas_rx_cgc +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.renesas_rz_cgc +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.renesas_rz_cpg +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.rpi_pico +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.rts5817 +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.rts5912 +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.rv32m1 +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.sam +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.sf32lb_hxt48 +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.sf32lb_rcc +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.si32 +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.silabs +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.siwx91x +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.smartbond +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.syna_sr100 +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.tisci +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.wch_rcc +/Users/wijnand/zephyrproject/zephyr/drivers/clock_control/Kconfig.xec +/Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.fake_comp +/Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.it51xxx_vcmp +/Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.mchp +/Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.mcux_acmp +/Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.nrf_comp +/Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.nrf_lpcomp +/Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.nxp_acomp +/Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.nxp_cmp +/Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.nxp_hscmp +/Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.nxp_lpcmp +/Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.renesas_rx +/Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.shell +/Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.silabs_acmp +/Users/wijnand/zephyrproject/zephyr/drivers/comparator/Kconfig.stm32_comp +/Users/wijnand/zephyrproject/zephyr/drivers/console/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/coredump/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.ace +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.ambiq +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.andes_atcpit100 +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.bee_timer +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.bflb +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.cc23x0_lgpt +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.cc23x0_rtc +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.cmos +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.dtmr_cmsdk_apb +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.dw +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.esp32_rtc +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.esp32_tmr +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.gd32 +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.imx_epit +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.infineon +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.infineon_tcpwm +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.ite_it51xxx +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.ite_it8xxx2 +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.max32_rtc +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.max32_timer +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.max32_wut +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.maxim_ds3231 +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mchp +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mchp_sam_pit64b +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcp7940n +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_ctimer +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_ftm +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_gpt +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_lpc_rtc +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_lpit +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_lptmr +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_qtmr +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_rtc +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_rtc_jdp +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_snvs +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_stm +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mcux_tpm +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.mspm0 +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.native_sim +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.neorv32 +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.npcx +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.nrfx +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.nxp_mrt +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.nxp_pit +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.nxp_s32 +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.renesas_rz +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.rpi_pico +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.rpi_pico_pit +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.rts5912 +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.rts5912_slwtmr +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.rv3032_counter +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.sam +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.sam0 +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.silabs +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.smartbond_timer +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.stm32_rtc +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.stm32_timer +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.tmr_cmsdk_apb +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.xec +/Users/wijnand/zephyrproject/zephyr/drivers/counter/Kconfig.xlnx +/Users/wijnand/zephyrproject/zephyr/drivers/crc/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/crc/Kconfig.nxp +/Users/wijnand/zephyrproject/zephyr/drivers/crc/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/crc/Kconfig.sf32lb +/Users/wijnand/zephyrproject/zephyr/drivers/crc/Kconfig.silabs +/Users/wijnand/zephyrproject/zephyr/drivers/crc/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.ataes132a +/Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.bflb +/Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.cc23x0 +/Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.intel +/Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.it51xxx +/Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.it8xxx2 +/Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.mchp +/Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.mcux_dcp +/Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.npcx +/Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.nrf_ecb +/Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.nxp_s32_hse +/Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.rpi_pico +/Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.rts5912 +/Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.sf32lb +/Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.si32 +/Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.smartbond +/Users/wijnand/zephyrproject/zephyr/drivers/crypto/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.ad559x +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.ad569x +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.ad56x1 +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.ad56xx +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.dac161s997 +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.dac_emul +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.dacx0501 +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.dacx0508 +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.dacx311 +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.dacx3608 +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.gd32 +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.ltc166x +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.max22017 +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.mchp +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.mcp4725 +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.mcp4728 +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.mcux +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.sam +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.sam0 +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.samd5x +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.silabs +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/dac/Kconfig.test +/Users/wijnand/zephyrproject/zephyr/drivers/dai/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/dai/intel/alh/Kconfig.alh +/Users/wijnand/zephyrproject/zephyr/drivers/dai/intel/dmic/Kconfig.dmic +/Users/wijnand/zephyrproject/zephyr/drivers/dai/intel/hda/Kconfig.hda +/Users/wijnand/zephyrproject/zephyr/drivers/dai/intel/ssp/Kconfig.ssp +/Users/wijnand/zephyrproject/zephyr/drivers/dai/intel/uaol/Kconfig.uaol +/Users/wijnand/zephyrproject/zephyr/drivers/dai/nxp/esai/Kconfig.esai +/Users/wijnand/zephyrproject/zephyr/drivers/dai/nxp/micfil/Kconfig.micfil +/Users/wijnand/zephyrproject/zephyr/drivers/dai/nxp/sai/Kconfig.sai +/Users/wijnand/zephyrproject/zephyr/drivers/debug/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/debug/Kconfig.nrf +/Users/wijnand/zephyrproject/zephyr/drivers/debug/Kconfig.silabs +/Users/wijnand/zephyrproject/zephyr/drivers/disk/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/disk/Kconfig.flash +/Users/wijnand/zephyrproject/zephyr/drivers/disk/Kconfig.ftl +/Users/wijnand/zephyrproject/zephyr/drivers/disk/Kconfig.loopback +/Users/wijnand/zephyrproject/zephyr/drivers/disk/Kconfig.mmc +/Users/wijnand/zephyrproject/zephyr/drivers/disk/Kconfig.ram +/Users/wijnand/zephyrproject/zephyr/drivers/disk/Kconfig.sdmmc +/Users/wijnand/zephyrproject/zephyr/drivers/disk/nvme/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ac057tc1 +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.co5300 +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.dummy +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.gc9x01x +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.hub12 +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.hx8379c +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.hx8394 +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ili9806e_dsi +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ili9xxx +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.intel_multibootfb +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ist3931 +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.led_strip_matrix +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.lpm013m126 +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ls0xx +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.max7219 +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.mcux_dcnano_lcdif +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.mcux_elcdif +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.mcux_lcdifv2 +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.mcux_lcdifv3 +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.microbit +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.nrf_led_matrix +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.nt35510 +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.otm8009a +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.qemu_ramfb +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.renesas_lcdc +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.rm67162 +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.rm68200 +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.sdl +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.sh1122 +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd1306 +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd1320 +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd1322 +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd1327_5 +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd1331 +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd135x +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd1363 +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.ssd16xx +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st730x +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st75256 +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st7567 +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st7586s +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st7701 +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st7735r +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st7789v +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.st7796s +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.stm32_ltdc +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.uc81xx +/Users/wijnand/zephyrproject/zephyr/drivers/display/Kconfig.waveshare_dsi2dpi +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.andes_atcdmacx00 +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.bflb +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.dma_pl330 +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.dw +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.dw_axi_dmac +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.dw_common +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.emul +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.gd32 +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.infineon +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.intel_adsp_gpdma +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.intel_adsp_hda +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.intel_lpss +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.iproc_pax +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.max32 +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.mchp +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.mcux_edma +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.mcux_lpc +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.mcux_pxp +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.mcux_smartdma +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.nios2_msgdma +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.npcx +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.nxp_4ch_dma +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.nxp_edma +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.nxp_sdma +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.nxp_sof_host_dma +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.renesas_rz +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.rpi_pico +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.sam0 +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.sam_xdmac +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.sedi +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.sf32lb +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.si32 +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.silabs +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.siwx91x +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.smartbond +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.ti_cc23x0 +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.wch +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.xec +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.xilinx_axi_dma +/Users/wijnand/zephyrproject/zephyr/drivers/dma/Kconfig.xmc4xxx +/Users/wijnand/zephyrproject/zephyr/drivers/dp/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/edac/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/edac/Kconfig.mcux_erm +/Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.eeprom_emu +/Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.fm25xxx +/Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.lpc11u6x +/Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.mb85rcxx +/Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.mb85rsxx +/Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.tmp11x +/Users/wijnand/zephyrproject/zephyr/drivers/eeprom/Kconfig.xec +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.ambiq +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.b91 +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.bflb +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.bt_hci +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.cc13xx_cc26xx +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.gd32 +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.gecko +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.iproc +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.litex +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.max32 +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.maxq10xx +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.mchp +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.mcux +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.mspm0_trng +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.native_sim +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.neorv32 +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.npcx +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.nrf5 +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.nrf_cracen +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.nxp +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.psa_crypto +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.rpi_pico +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.rv32m1 +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.sam +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.sf32lb +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.siwx91x +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.smartbond +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.sy1xx +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.virtio +/Users/wijnand/zephyrproject/zephyr/drivers/entropy/Kconfig.wch +/Users/wijnand/zephyrproject/zephyr/drivers/espi/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/espi/Kconfig.espi_emul +/Users/wijnand/zephyrproject/zephyr/drivers/espi/Kconfig.it8xxx2 +/Users/wijnand/zephyrproject/zephyr/drivers/espi/Kconfig.npcx +/Users/wijnand/zephyrproject/zephyr/drivers/espi/Kconfig.rts5912 +/Users/wijnand/zephyrproject/zephyr/drivers/espi/Kconfig.xec +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.adin2111 +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.cyclonev +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.dm9051 +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.dwmac +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.e1000 +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.enc28j60 +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.enc424j600 +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.gecko +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.ivshmem +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.lan865x +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.lan9250 +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.litex +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.native_tap +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.numaker +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.nxp_enet +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.nxp_s32_gmac +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.nxp_s32_netc +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.renesas_ra_rmac +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.sam_gmac +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.smsc911x +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.smsc91x +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.stellaris +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.stm32_hal +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.sy1xx_mac +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.test +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.virtio_net +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.w5500 +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.w6100 +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.wch +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.xilinx_axi_ethernet_lite +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.xilinx_axienet +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.xlnx_gem +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/Kconfig.xmc4xxx +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/dsa/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/dwc_xgmac/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/eth_nxp_enet_qos/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/intel/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/intel/Kconfig.intel_igc +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.adin2111 +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.dwcxgmac +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.gpio +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.intel_igc +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.lan865x +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.litex +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.nxp_enet +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.nxp_enet_qos +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.nxp_imx_netc +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.nxp_s32_gmac +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.nxp_s32_netc +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.sam +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.stm32_hal +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.sy1xx +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.wch +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.xilinx_axi_ethernet_lite +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.xilinx_axienet +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/mdio/Kconfig.xmc4xxx +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/nxp_imx_netc/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.dm8806 +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.microchip_t1s +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.nxp_t1s +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.tja1103 +/Users/wijnand/zephyrproject/zephyr/drivers/ethernet/phy/Kconfig.tja11xx +/Users/wijnand/zephyrproject/zephyr/drivers/firmware/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/firmware/qemu_fwcfg/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/firmware/scmi/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/firmware/scmi/nxp/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/firmware/scmi/shell/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/firmware/tisci/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.adi_max32_spixf +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.ambiq +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.andes +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.at25xv021a +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.at45 +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.b91 +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.bflb +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.cadence_nand +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.cadence_qspi_nor +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.cc13xx_cc26xx +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.cc23x0 +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.gd32 +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.gecko +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.infineon +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.it51xxx_m1k +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.it8xxx2 +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.lpc +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.max32 +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.mchp +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.mcux +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.mspi +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nand +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nor +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nordic_qspi_nor +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.npcx_fiu +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nrf +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nrf_mram +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nrf_mramc +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nrf_rram +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.numaker +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.numaker_rmc +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nxp_s32_qspi +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.nxp_s32_xspi +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_ra_ospi +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_ra_qspi +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_rx +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.renesas_rz_qspi +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.rpi_pico +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.rts5912 +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.rv32m1 +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.s3axx04 +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.sam +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.sam0 +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.sf32lb_mpi_qspi_nor +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.si32 +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.silabs +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.simulator +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.siwx91x +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.smartbond +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.stm32_ospi +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.stm32_qspi +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.stm32_xspi +/Users/wijnand/zephyrproject/zephyr/drivers/flash/Kconfig.xmc4xxx +/Users/wijnand/zephyrproject/zephyr/drivers/fpga/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/fpga/Kconfig.altera_agilex_bridge +/Users/wijnand/zephyrproject/zephyr/drivers/fpga/Kconfig.eos_s3 +/Users/wijnand/zephyrproject/zephyr/drivers/fpga/Kconfig.ice40 +/Users/wijnand/zephyrproject/zephyr/drivers/fpga/Kconfig.mpfs +/Users/wijnand/zephyrproject/zephyr/drivers/fpga/Kconfig.slg471x5 +/Users/wijnand/zephyrproject/zephyr/drivers/fpga/Kconfig.zynqmp +/Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/axp2101/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/bq27z746/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/bq40z50/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/composite/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/hy4245/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/lc709203f/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/ltc2959/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/max17048/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/sbs_gauge/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/sbs_gauge/Kconfig.emul_sbs_gauge +/Users/wijnand/zephyrproject/zephyr/drivers/fuel_gauge/sy24561/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/gnss/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/gnss/Kconfig.emul +/Users/wijnand/zephyrproject/zephyr/drivers/gnss/Kconfig.generic +/Users/wijnand/zephyrproject/zephyr/drivers/gnss/Kconfig.globaltop_pa6h +/Users/wijnand/zephyrproject/zephyr/drivers/gnss/Kconfig.luatos_air530z +/Users/wijnand/zephyrproject/zephyr/drivers/gnss/Kconfig.quectel_lcx6g +/Users/wijnand/zephyrproject/zephyr/drivers/gnss/u_blox/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/gnss/u_blox/Kconfig.u_blox_common +/Users/wijnand/zephyrproject/zephyr/drivers/gnss/u_blox/Kconfig.u_blox_f9p +/Users/wijnand/zephyrproject/zephyr/drivers/gnss/u_blox/Kconfig.u_blox_m8 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.ad559x +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.adp5585 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.ads1x4s0x +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.aesc +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.altera +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.ambiq +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.ameba +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.andes_atcgpio100 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.aw9523b +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.axp192 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.b91 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.bcm2711 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.bd8lb600fs +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.bee +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.bflb +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.brcmstb +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.cc13xx_cc26xx +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.cc23x0 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.cc32xx +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.cmsdk_ahb +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.creg_gpio +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.cy8c95xx +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.cyw43 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.davinci +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.dw +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.efinix_sapphire +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.emul +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.emul_sdl +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.ene +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.eos_s3 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.fxl6408 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.gd32 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.gecko +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.grgpio +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.imx +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.infineon +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.intel +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.iproc +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.it51xxx +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.it8801 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.it8xxx2 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.litex +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.lmp90xxx +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.lpc11u6x +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.max14906 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.max14916 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.max14917 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.max22017 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.max2219x +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.max32 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mchp +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mchp_mss +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mcp23xxx +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mcux +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mcux_igpio +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mcux_lpc +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mcux_rgpio +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mfxstm32l152 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mmio32 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.mspm0 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.nct38xx +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.neorv32 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.npcx +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.npm13xx +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.npm2100 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.npm6001 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.nrfx +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.numaker +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.numicro +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.nxp_siul2 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.pca953x +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.pca95xx +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.pca_series +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.pcal64xxa +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.pcal9722 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.pcf857x +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.psoc6 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.rcar +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.renesas_ra_ioport +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.renesas_rx +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.renesas_rz +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.renesas_rza2m +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.rp1 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.rpi_pico +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.rt1718s +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.rts5912 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.rv32m1 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.rzt2m +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sam +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sam0 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sc18im704 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sc18is606 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sedi +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sf32lb +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.si32 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sifive +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.silabs +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.siwx91x +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.smartbond +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sn74hc595 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.stellaris +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.stmpe1600 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sx1509b +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.sy1xx +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.tca6424a +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.test +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.tle9104 +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.wch_ch32v00x +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.xec +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.xlnx +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.xlnx_ps +/Users/wijnand/zephyrproject/zephyr/drivers/gpio/Kconfig.xmc4xxx +/Users/wijnand/zephyrproject/zephyr/drivers/haptics/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/haptics/cirrus/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/haptics/cirrus/Kconfig.cs40l5x +/Users/wijnand/zephyrproject/zephyr/drivers/haptics/ti/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/haptics/ti/Kconfig.drv2605 +/Users/wijnand/zephyrproject/zephyr/drivers/hdlc_rcp_if/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/hdlc_rcp_if/Kconfig.nxp +/Users/wijnand/zephyrproject/zephyr/drivers/hdlc_rcp_if/Kconfig.spi +/Users/wijnand/zephyrproject/zephyr/drivers/hdlc_rcp_if/Kconfig.uart +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.ambiq +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.andes +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.bflb +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.cc13xx_cc26xx +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.cc23x0 +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.gd32 +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.gecko +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.imxrt +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.litex +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.max32 +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mchp +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_mcx_cmc +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_rcm +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_rstctl +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_sim +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_src +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_src_rev2 +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mcux_syscon +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.mspm0 +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.native +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.nrf +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.numaker +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.numaker_rmc +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.psoc6 +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.rpi_pico +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.rw61x +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.sam +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.sam0 +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.sam4l +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.sam_rstc +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.silabs_series2 +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.smartbond +/Users/wijnand/zephyrproject/zephyr/drivers/hwinfo/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/hwspinlock/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/hwspinlock/Kconfig.nxp_sema42 +/Users/wijnand/zephyrproject/zephyr/drivers/hwspinlock/Kconfig.sqn +/Users/wijnand/zephyrproject/zephyr/drivers/hwspinlock/Kconfig.test +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.ambiq +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.andes_atciic100 +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.b91 +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.bcm_iproc +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.bflb +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.cc13xx_cc26xx +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.cc23x0 +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.cdns +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.dw +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.ene +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.gd32 +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.gpio +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.i2c_emul +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.infineon +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.infineon_xmc4 +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.it51xxx +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.it8xxx2 +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.litex +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.lpc11u6x +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.max32 +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.mchp +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.mchp_mss +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.mchp_xec +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.mcux +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.npcx +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.nrfx +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.numaker +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.omap +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.rcar +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.renesas_rx +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.renesas_rz +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.rts5912 +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sam0 +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sam_twihs +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sbcon +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sc18im704 +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sedi +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sf32lb +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sifive +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.silabs +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.smartbond +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.sy1xx +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.tca954x +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.test +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.wch +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/Kconfig.xilinx_axi +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/target/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/i2c/target/Kconfig.eeprom +/Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.ambiq +/Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.infineon +/Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.litex +/Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.max32 +/Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.mcux +/Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.mcux_flexcomm +/Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.nrfx +/Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.sam_ssc +/Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.siwx91x +/Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/i2s/Kconfig.test +/Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.cdns +/Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.dw +/Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.it51xxx +/Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.max32 +/Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.npcx +/Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.nxp +/Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.renesas +/Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/i3c/Kconfig.test +/Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.b91 +/Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.cc1200 +/Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.cc13xx_cc26xx +/Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.cc2520 +/Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.dw1000 +/Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.kw41z +/Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.mcr20a +/Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.mcxw +/Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.nrf5 +/Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.rf2xx +/Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.stm32wba +/Users/wijnand/zephyrproject/zephyr/drivers/ieee802154/Kconfig.uart_pipe +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.adafruit_seesaw_gamepad +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.adc_keys +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.analog_axis +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.bee_keyscan +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.bflb +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.cap12xx +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.cf1133 +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.ch9350l +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.chsc5x +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.chsc6x +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.cst8xx +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.cy8cmbr3xxx +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.evdev +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.ft5336 +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.ft6146 +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.gpio_kbd_matrix +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.gpio_keys +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.gpio_qdec +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.gt911 +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.ili2132a +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.it51xxx +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.it8801 +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.it8xxx2 +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.kbd_matrix +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.mcux_kpp +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.mcux_tsi +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.modulino +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.npcx +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.nunchuk +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.pat912x +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.paw32xx +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.pinnacle +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.pmw3610 +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.renesas_rx +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.rts5912 +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.sbus +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.sdl +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.stmpe811 +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.tma525b +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.touch +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.tsc_keys +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.vs1838b +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.xec +/Users/wijnand/zephyrproject/zephyr/drivers/input/Kconfig.xpt2046 +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.cavs +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.clic +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.dw +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.gd32_exti +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.gic +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.intel_vtd +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.it51xxx +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.it8xxx2 +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.loapic +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.max32_rv32 +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.mchp +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.mtk_adsp +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.multilevel +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.multilevel.aggregator_template +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.npcx +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_gint +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_irqsteer +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_pint +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_s32 +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.nxp_siul2 +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.plic +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.renesas_rx +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.renesas_rz +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.riscv_aia +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.rv32m1 +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.sam0 +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.shared_irq +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.swerv +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.vim +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.wch_exti +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.wch_pfic +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.xec +/Users/wijnand/zephyrproject/zephyr/drivers/interrupt_controller/Kconfig.xmc4xxx +/Users/wijnand/zephyrproject/zephyr/drivers/ipm/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/ipm/Kconfig.imx +/Users/wijnand/zephyrproject/zephyr/drivers/ipm/Kconfig.ivshmem +/Users/wijnand/zephyrproject/zephyr/drivers/ipm/Kconfig.nrfx +/Users/wijnand/zephyrproject/zephyr/drivers/ipm/Kconfig.nrfx_ipc_channel +/Users/wijnand/zephyrproject/zephyr/drivers/ipm/Kconfig.sedi +/Users/wijnand/zephyrproject/zephyr/drivers/ipm/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.axp192 +/Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.dac +/Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.gpio +/Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.ht16k33 +/Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.is31fl319x +/Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.is31fl3216a +/Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.is31fl3733 +/Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.leds-group-multicolor +/Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.lp3943 +/Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.lp50xx +/Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.lp5562 +/Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.lp5569 +/Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.modulino +/Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.ncp5623 +/Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.npm13xx +/Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.pca9533 +/Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.pca9633 +/Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.pwm +/Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.sct2024 +/Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.tlc59108 +/Users/wijnand/zephyrproject/zephyr/drivers/led/Kconfig.xec +/Users/wijnand/zephyrproject/zephyr/drivers/led_strip/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/led_strip/Kconfig.apa102 +/Users/wijnand/zephyrproject/zephyr/drivers/led_strip/Kconfig.lpd880x +/Users/wijnand/zephyrproject/zephyr/drivers/led_strip/Kconfig.modulino +/Users/wijnand/zephyrproject/zephyr/drivers/led_strip/Kconfig.tlc5971 +/Users/wijnand/zephyrproject/zephyr/drivers/led_strip/Kconfig.tlc59731 +/Users/wijnand/zephyrproject/zephyr/drivers/led_strip/Kconfig.ws2812 +/Users/wijnand/zephyrproject/zephyr/drivers/lora/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/lora/Kconfig.rylrxxx +/Users/wijnand/zephyrproject/zephyr/drivers/lora/Kconfig.sx12xx +/Users/wijnand/zephyrproject/zephyr/drivers/lora/lora-basics-modem/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/lora/native/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/lora/native/sx126x/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.adi_max32 +/Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.andes +/Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.ivshmem +/Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.mhuv3 +/Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.nrf_bellboard +/Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.nrf_vevif_event +/Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.nrf_vevif_task +/Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.nrfx +/Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.nxp_imx +/Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.nxp_mailbox +/Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.nxp_s32 +/Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.renesas_rz +/Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.rpi_pico +/Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.stm32_hsem +/Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.ti_omap +/Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.ti_secproxy +/Users/wijnand/zephyrproject/zephyr/drivers/mbox/Kconfig.xlnx +/Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.bflb +/Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.max32_hpb +/Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.mcux +/Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.mspi +/Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.nxp_s32_qspi +/Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.nxp_s32_xspi +/Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.sam +/Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.sifive +/Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.siwx91x_qspi +/Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.smartbond +/Users/wijnand/zephyrproject/zephyr/drivers/memc/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.ad559x +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.adp5585 +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.aw9523b +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.axp192 +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.axp2101 +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.bd8lb600fs +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.ds3231 +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.it8801 +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.lpflexcomm +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.max20335 +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.max22017 +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.max2221x +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.max31790 +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.maxq10xx +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.mc146818 +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.mchp_sam +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.nct38xx +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.npm10xx +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.npm13xx +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.npm2100 +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.npm6001 +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.pca9422 +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.pf1550 +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.rv3032_mfd +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.sc18is606_mfd +/Users/wijnand/zephyrproject/zephyr/drivers/mfd/Kconfig.tle9104 +/Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.bflb +/Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.bitbang +/Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.nxp_dcnano_lcdif +/Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.nxp_flexio_lcdif +/Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.nxp_lcdic +/Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.rpi_pico +/Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.sf32lb_lcdc +/Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.smartbond +/Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.spi +/Users/wijnand/zephyrproject/zephyr/drivers/mipi_dbi/Kconfig.stm32_fmc +/Users/wijnand/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig.mcux +/Users/wijnand/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/mipi_dsi/Kconfig.test +/Users/wijnand/zephyrproject/zephyr/drivers/misc/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/misc/devmux/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/misc/ethos_u/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/misc/ft8xx/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/misc/grove_lcd_rgb/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/misc/interconn/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/misc/interconn/renesas_elc/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/misc/interconn/renesas_elc/Kconfig.renesas_ra_elc +/Users/wijnand/zephyrproject/zephyr/drivers/misc/max2221x/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/misc/mcux_flexio/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/misc/nordic_vpr_launcher/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/misc/nxp_flexram/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/misc/nxp_imx93_mediamix/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/misc/nxp_inputmux/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/misc/nxp_rtxxx_dsp_ctrl/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/misc/nxp_s32_emios/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/misc/pio_rpi_pico/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/misc/renesas_drw/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/misc/renesas_drw/Kconfig.renesas_ra_drw +/Users/wijnand/zephyrproject/zephyr/drivers/misc/renesas_ra_external_interrupt/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/misc/renesas_rx_dtc/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/misc/renesas_rx_external_interrupt/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/misc/stm32n6_axisram/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/misc/timeaware_gpio/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/misc/timeaware_gpio/Kconfig.timeaware_gpio_intel +/Users/wijnand/zephyrproject/zephyr/drivers/mm/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig.at_shell +/Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig.cellular +/Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig.hl7800 +/Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig.quectel-bg9x +/Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig.st87mxx +/Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig.ublox-sara-r4 +/Users/wijnand/zephyrproject/zephyr/drivers/modem/Kconfig.wncm14a2a +/Users/wijnand/zephyrproject/zephyr/drivers/modem/hl78xx/Kconfig.hl78xx +/Users/wijnand/zephyrproject/zephyr/drivers/modem/hl78xx/hl78xx_evt_monitor/Kconfig.hl78xx_evt_monitor +/Users/wijnand/zephyrproject/zephyr/drivers/modem/simcom/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/modem/simcom/sim7080/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/mspi/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/mspi/Kconfig.ambiq +/Users/wijnand/zephyrproject/zephyr/drivers/mspi/Kconfig.dw +/Users/wijnand/zephyrproject/zephyr/drivers/mspi/Kconfig.mspi_emul +/Users/wijnand/zephyrproject/zephyr/drivers/mspi/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/net/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/opamp/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/opamp/Kconfig.mcux_opamp +/Users/wijnand/zephyrproject/zephyr/drivers/opamp/Kconfig.mcux_opamp_fast +/Users/wijnand/zephyrproject/zephyr/drivers/opamp/Kconfig.stm32_opamp +/Users/wijnand/zephyrproject/zephyr/drivers/otp/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/otp/Kconfig.emu +/Users/wijnand/zephyrproject/zephyr/drivers/otp/Kconfig.mcux_ocotp +/Users/wijnand/zephyrproject/zephyr/drivers/otp/Kconfig.sifli +/Users/wijnand/zephyrproject/zephyr/drivers/otp/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/pcie/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/pcie/controller/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/pcie/controller/Kconfig.brcmstb +/Users/wijnand/zephyrproject/zephyr/drivers/pcie/endpoint/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/pcie/endpoint/Kconfig.iproc +/Users/wijnand/zephyrproject/zephyr/drivers/pcie/host/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/peci/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/peci/Kconfig.it8xxx2 +/Users/wijnand/zephyrproject/zephyr/drivers/peci/Kconfig.npcx +/Users/wijnand/zephyrproject/zephyr/drivers/peci/Kconfig.xec +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.alif +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ambiq +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ameba +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.arm_mps2 +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.arm_mps3 +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.arm_mps4 +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.arm_v2m_beetle +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.b91 +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.bcm2711 +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.bee +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.bflb +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.cc13xx_cc26xx +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.cc23x0 +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.emsdp +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ene +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.eos_s3 +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.gd32 +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.gecko +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.imx +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.infineon +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.it8xxx2 +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.lpc_iocon +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.max32 +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.mchp +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.mci_io_mux +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.mspm0 +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.npcx +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.nrf +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.numaker +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.numicro +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.nxp_port +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.nxp_siul2 +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.realtek_rts5912 +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.rpi_pico +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.rts5817 +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.rv32m1 +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sam +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sam0 +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sf32lb52x +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sifive +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.silabs_dbus +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.siwx91x +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.sy1xx +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.syna_sr100 +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ti_cc32xx +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.ti_k3 +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.wch_00x_afio +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.wch_20x_30x_afio +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.wch_afio +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.xec +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.xlnx +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.xmc4xxx +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/Kconfig.zynqmp +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/renesas/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/renesas/ra/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/renesas/rcar/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/renesas/rx/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/renesas/rz/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/pinctrl/renesas/smartbond/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/pm_cpu_ops/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/power_domain/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/power_domain/Kconfig.nrfs_gdpwr +/Users/wijnand/zephyrproject/zephyr/drivers/power_domain/Kconfig.nrfs_swext +/Users/wijnand/zephyrproject/zephyr/drivers/power_domain/Kconfig.silabs_siwx91x +/Users/wijnand/zephyrproject/zephyr/drivers/ps2/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/ps2/Kconfig.it51xxx +/Users/wijnand/zephyrproject/zephyr/drivers/ps2/Kconfig.npcx +/Users/wijnand/zephyrproject/zephyr/drivers/ps2/Kconfig.xec +/Users/wijnand/zephyrproject/zephyr/drivers/psi5/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/psi5/Kconfig.nxp_s32 +/Users/wijnand/zephyrproject/zephyr/drivers/ptp_clock/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/ptp_clock/Kconfig.nxp_enet +/Users/wijnand/zephyrproject/zephyr/drivers/ptp_clock/Kconfig.nxp_netc +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.ambiq_timer +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.b91 +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.bflb +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.cc13xx_cc26xx_timer +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.cc23x0_timer +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.ene +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.fake +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.gd32 +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.gecko +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.imx +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.infineon_tcpwm +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.intel_blinky +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.it51xxx +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.it8801 +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.it8xxx2 +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.litex +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.max2221x +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.max31790 +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.max32 +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mchp +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_ctimer +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_ftm +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_pwt +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_qtmr +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_sctimer +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mcux_tpm +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.mspm0 +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.neorv32 +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.npcx +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.nrf_sw +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.nrfx +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.numaker +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.nxp_flexio +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.nxp_s32_emios +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.pca9685 +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.rcar +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.renesas_rx_mtu +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.renesas_rz +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.rpi_pico +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.rts5912 +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.rv32m1_tpm +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.sam +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.sam0 +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.sam0_tc +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.sf32lb +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.sifive +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.silabs +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.siwx91x +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.test +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.wch +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.xec +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.xlnx +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.xmc4xxx_ccu4 +/Users/wijnand/zephyrproject/zephyr/drivers/pwm/Kconfig.xmc4xxx_ccu8 +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.adp5360 +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.axp192 +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.bflb +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.cp9314 +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.da1469x +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.fake +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.fixed +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.gpio +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.max20335 +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.modulino_latch_relay +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.mpm54304 +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.npm10xx +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.npm1100 +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.npm13xx +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.npm2100 +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.npm6001 +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.nrf_vregusb +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.nxp_vref +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.nxp_vrefv1 +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.pca9420 +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.pca9422 +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.pf1550 +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.rpi_pico +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.stm32_vrefbuf +/Users/wijnand/zephyrproject/zephyr/drivers/regulator/Kconfig.tps55287 +/Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.aspeed +/Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.focaltech +/Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.gd32 +/Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.intel_socfpga +/Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.lpc_syscon +/Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.mchp +/Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.mchp_mss +/Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.mmio +/Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.npcx +/Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.numaker +/Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.nxp_mrcc +/Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.nxp_rstctl +/Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.rpi_pico +/Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.rts5817 +/Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.sf32lb +/Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/reset/Kconfig.syna_sr100 +/Users/wijnand/zephyrproject/zephyr/drivers/retained_mem/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/retained_mem/Kconfig.nrf +/Users/wijnand/zephyrproject/zephyr/drivers/retained_mem/Kconfig.silabs +/Users/wijnand/zephyrproject/zephyr/drivers/retained_mem/Kconfig.zephyr +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.am1805 +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.ambiq +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.bq32002 +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.counter +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.ds1302 +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.ds1307 +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.ds1337 +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.ds3231 +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.emul +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.fake +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.infineon +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.max31331 +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.mc146818 +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.mchp +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.numaker +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.nxp_irtc +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.pcf2123 +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.pcf85063a +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.pcf8523 +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.pcf8563 +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.rpi_pico +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.rts5912 +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.rv3028 +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.rv3032 +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.rv8263 +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.rv8803 +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.rx8130ce +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.sam +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.sam0 +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.sf32lb +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.siwx91x +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.smartbond +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.ti_mspm0 +/Users/wijnand/zephyrproject/zephyr/drivers/rtc/Kconfig.xmc4xxx +/Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.ambiq +/Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.imx +/Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.infineon +/Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.intel +/Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.litex +/Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.max32 +/Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.mcux_sdif +/Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.rcar +/Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.sam_hsmci +/Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.sam_sdmmc +/Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.sdhc_cdns +/Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.spi +/Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/sdhc/Kconfig.xlnx +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/Kconfig.sensor_clock +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/Kconfig.trigger_template +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/a01nyub/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/ad2s1210/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/ade7978/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adltc2990/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adt7310/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adt7420/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adxl345/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adxl355/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adxl362/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adxl367/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/adxl372/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/max30210/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/adi/max32664c/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/als31300/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/amd_sb_tsi/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/amg88xx/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/ams_as5048/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/ams_as5600/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/ams_iAQcore/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/ccs811/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/ens210/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/tcs3400/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/tmd2620/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/tsl2540/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/tsl2561/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ams/tsl2591/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/aosong/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/aosong/ags10/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/aosong/dht/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/aosong/dht20/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/apds9253/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/apds9306/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/apds9960/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/asahi_kasei/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/asahi_kasei/ak8975/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/asahi_kasei/akm09918c/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bma280/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bma4xx/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmc150_magn/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bme280/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bme680/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmg160/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmi08x/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmi160/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmi270/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmi323/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmm150/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmm350/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmp180/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmp388/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/bosch/bmp581/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/broadcom/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/broadcom/afbr_s50/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/current_amp/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ene_tach_kb1200/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ens160/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/espressif/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/espressif/esp32_temp/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/espressif/pcnt_esp32/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/everlight/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/everlight/als_pt19/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/explorir_m/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/f75303/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/fcx_mldx5/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/grow_r502a/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/hc_sr04/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/honeywell/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/honeywell/hmc5883l/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/honeywell/mpr/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/honeywell/sm351lt/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/hp206c/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/hx711_spi/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/iclegend/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/iclegend/s3km1110/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/infineon/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/infineon/dps310/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/infineon/tle9104/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/infineon/xmc4xxx_temp/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ist8310/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ite/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ite/ite_tach_it51xxx/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ite/ite_tach_it8xxx2/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ite/ite_vcmp_it8xxx2/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/jedec/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/jedec/jc42/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/liteon/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/liteon/ltr55x/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/liteon/ltrf216a/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/lm35/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/lm75/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/lm77/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/ds18b20/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/ds3231/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max17055/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max17262/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max30101/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max31790/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max31855/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max31865/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max31875/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max44009/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/maxim/max6675/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/mb7040/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/meas/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/meas/ms5607/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/meas/ms5837/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/melexis/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/melexis/mlx90394/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/memsic/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/memsic/mc3419/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/memsic/mmc56x3/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/mhz19b/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/microchip/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/microchip/mchp_tach_xec/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/microchip/mcp9600/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/microchip/mcp970x/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/microchip/mtch9010/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/microchip/tcn75a/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nct75/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nordic/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nordic/npm10xx_adc/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nordic/npm13xx_charger/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nordic/npm2100_vbat/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nordic/qdec_nrfx/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nordic/temp/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ntc_thermistor/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nuvoton/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nuvoton/nuvoton_adc_cmp_npcx/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nuvoton/nuvoton_adc_v2t_npcx/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nuvoton/nuvoton_tach_npcx/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/fxas21002/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/fxls8974/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/fxos8700/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/mcux_acmp/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/mcux_lpcmp/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/nxp_kinetis_temp/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/nxp_lpadc_temp40/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/nxp_pmc_tmpsns/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/nxp_tempmon/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/nxp_tempsense/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/nxp_tmpsns/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/p3t1755/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/qdc_mcux/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/qdec_mcux/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/qdec_nxp_s32/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/nxp/qdec_tpm/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/omron/2smpb_02e/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/omron/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/omron/d6f/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/pixart/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/pixart/paa3905/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/pixart/paj7620/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/pixart/pat9136/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/pms7003/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/pni/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/pni/rm3100/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/pzem004t/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/qdec_sam/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/qst/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/qst/qmi8658a/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/realtek/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/realtek/rts5912/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/renesas/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/renesas/hs300x/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/renesas/hs400x/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/renesas/isl29035/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/rohm/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/rohm/bd8lb600fs/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/rohm/bh1730/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/rohm/bh1750/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/rohm/bh1790/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/rpi_pico_temp/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/rv3032_temp/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/s11059/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/sbs_gauge/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/seeed/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/seeed/grove/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/seeed/hm330x/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/scd4x/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/sgp40/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/sht3xd/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/sht4x/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/shtcx/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/stcc4/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/sensirion/sts4x/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/sifli/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/sifli/sf32lb_tsen/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/silabs/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/silabs/si7006/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/silabs/si7055/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/silabs/si7060/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/silabs/si7210/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/hts221/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/i3g4250d/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/iis2dh/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/iis2dlpc/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/iis2iclx/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/iis2mdc/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/iis328dq/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/iis3dhhc/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/iis3dwb/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/ism330dhcx/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis2de12/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis2dh/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis2ds12/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis2du12/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis2dux12/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis2dw12/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis2mdl/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lis3mdl/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lps22hb/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lps22hh/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lps25hb/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lps2xdf/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm303dlhc_magn/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm6ds0/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm6dsl/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm6dso/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm6dso16is/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm6dsv16x/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm6dsvxxx/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm9ds0_gyro/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm9ds0_mfd/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm9ds1/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/lsm9ds1_mag/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/qdec_stm32/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/stm32_digi_temp/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/stm32_temp/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/stm32_vbat/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/stm32_vref/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/stmemsc/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/stts22h/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/stts751/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/vl53l0x/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/st/vl53l1x/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/sx9500/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/tach_gpio/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/icm40627/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/icm42605/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/icm4268x/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/icm42x70/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/icm45686/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/icp101xx/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/icp201xx/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/mpu6050/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/tdk/mpu9250/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/th02/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/bq274xx/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/fdc2x1x/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/ina219/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/ina2xx/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/ina3221/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/ina7xx/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/lm95234/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/opt300x/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/ti_hdc/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/ti_hdc20xx/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/ti_hdc302x/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmag5170/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmag5273/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmp007/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmp1075/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmp108/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmp112/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmp114/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmp11x/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/ti/tmp435/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/tsic_xx6/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/veaa_x_3/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/vishay/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/vishay/vcnl36825t/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/vishay/vcnl4040/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/vishay/veml6031/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/vishay/veml6046/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/vishay/veml7700/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/voltage_divider/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/wsen_hids_2525020210002/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/wsen_isds_2536030320001/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/wsen_itds_2533020201601/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/wsen_pads_2511020213301/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/wsen_pdms_25131308XXX05/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/wsen_pdus_25131308XXXXX/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/wsen/wsen_tids_2521020222501/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sensor/xbr818/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sent/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sent/Kconfig.nxp_s32 +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.aesc +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.altera +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.altera_jtag +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.ambiq +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.ameba_loguart +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.apbuart +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.b91 +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.bcm2711 +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.bee +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.bflb +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.bitbang +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.bridge +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.bt +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.cc13xx_cc26xx +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.cc23x0 +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.cc32xx +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.cdns +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.cmsdk_apb +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.efinix_sapphire +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.emul +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.ene +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.focaltech +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.gd32 +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.gecko +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.hostlink +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.imx +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.infineon +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.intel_lw +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.it51xxx +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.it8xxx2 +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.leuart_gecko +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.litex +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.lpc11u6x +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.max32 +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.mchp +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.mcux +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.mcux_flexcomm +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.mcux_iuart +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.mcux_lpsci +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.mcux_lpuart +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.miv +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.msp432p4xx +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.mspm0 +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.native_pty +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.native_tty +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.neorv32 +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.npcx +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.nrfx +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.nrfx_uart_instance +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.ns16550 +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.numaker +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.numicro +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.nxp_s32 +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.opentitan +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.pl011 +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.psoc6 +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.ql_usbserialport_s3b +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.rcar +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.realtek_rts5912 +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_ra8 +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_rx +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_rx_qemu +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.renesas_rz +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.rpi_pico +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.rpmsg +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.rtt +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.rv32m1_lpuart +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.rzt2m +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.sam0 +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.sedi +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.sf32lb +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.si32 +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.sifive +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.silabs_eusart +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.silabs_usart +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.smartbond +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.stellaris +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.sy1xx +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.test +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.uart_sam +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.usart_sam +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.virtio_console +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.wch_usart +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.xec +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.xen +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.xlnx +/Users/wijnand/zephyrproject/zephyr/drivers/serial/Kconfig.xmc4xxx +/Users/wijnand/zephyrproject/zephyr/drivers/sip_svc/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/sip_svc/Kconfig.sip_smc_agilex +/Users/wijnand/zephyrproject/zephyr/drivers/smbus/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.ambiq +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.andes_atcspi200 +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.b91 +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.bflb +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.bitbang +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.cc13xx_cc26xx +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.cc23x0 +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.cdns +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.dw +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.egis_et171 +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.gd32 +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.grlib_spimctrl +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.infineon +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.it51xxx +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.it8xxx2 +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.litex +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.max32 +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.mchp +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.mchp_mss +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.mchp_mss_qspi +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.mcux_dspi +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.mcux_ecspi +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.mcux_flexcomm +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.mcux_flexio +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.npcx +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.nrfx +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.numaker +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.nxp_s32 +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.oc_simple +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.omap +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.opentitan +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.pl022 +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.psoc6 +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.pw +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.renesas_ra8 +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.renesas_rx +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.renesas_rz +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.rpi_pico +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.rts5912 +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.rv32m1_lpspi +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.sam +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.sam0 +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.sc18is606 +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.sedi +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.sf32lb +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.sifive +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.silabs_eusart +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.silabs_siwx91x_gspi +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.silabs_usart +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.smartbond +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.spi_emul +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.sy1xx +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.test +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.wch +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.xec_qmspi +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.xlnx +/Users/wijnand/zephyrproject/zephyr/drivers/spi/Kconfig.xmc4xxx +/Users/wijnand/zephyrproject/zephyr/drivers/spi/spi_nxp_lpspi/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/stepper/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/stepper/Kconfig.fake +/Users/wijnand/zephyrproject/zephyr/drivers/stepper/adi_tmc/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/stepper/adi_tmc/Kconfig.tmc_rampgen_template +/Users/wijnand/zephyrproject/zephyr/drivers/stepper/adi_tmc/bus/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/stepper/adi_tmc/tmc22xx/Kconfig.tmc22xx +/Users/wijnand/zephyrproject/zephyr/drivers/stepper/adi_tmc/tmc50xx/Kconfig.tmc50xx +/Users/wijnand/zephyrproject/zephyr/drivers/stepper/adi_tmc/tmc51xx/Kconfig.tmc51xx +/Users/wijnand/zephyrproject/zephyr/drivers/stepper/adi_tmc/tmcm3216/Kconfig.tmcm3216 +/Users/wijnand/zephyrproject/zephyr/drivers/stepper/allegro/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/stepper/allegro/Kconfig.a4979 +/Users/wijnand/zephyrproject/zephyr/drivers/stepper/event_handler/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/stepper/gpio_stepper/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/stepper/gpio_stepper/Kconfig.gpio_step_dir +/Users/wijnand/zephyrproject/zephyr/drivers/stepper/gpio_stepper/Kconfig.h_bridge +/Users/wijnand/zephyrproject/zephyr/drivers/stepper/gpio_stepper/common/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/stepper/step_dir/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/stepper/ti/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/stepper/ti/Kconfig.drv84xx +/Users/wijnand/zephyrproject/zephyr/drivers/syscon/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/syscon/Kconfig.bflb_efuse +/Users/wijnand/zephyrproject/zephyr/drivers/tee/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/tee/optee/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.ambiq +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.arcv2 +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.arm_arch +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.cavs +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.cc13xx_cc26xx_rtc +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.cc23x0 +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.cortex_m_systick +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.gecko +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.infineon_lp +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.it51xxx +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.ite_it8xxx2 +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.leon_gptimer +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.litex +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.max32_rv32_sys_timer +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.max32_wut +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.mchp_sam +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.mchp_xec_rtos +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.mcux_gpt +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.mcux_lptmr +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.mcux_os +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.mips_cp0 +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.mtk_adsp +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.native_sim +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.npcx_itim +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.nrf_grtc +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.nrf_rtc +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.nrf_xrtc +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.openrisc_tick +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.rcar_cmt +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.realtek_rts5912_rtmr +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.renesas_ra_ulpt +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.renesas_rx +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.renesas_rz +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.renesas_rza2m +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.riscv_machine +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.rv32m1_lptmr +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.sam0_rtc +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.silabs +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.smartbond +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.stm32_lptim +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.stm32wb0_radio_timer +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.sy1xx_sys_timer +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.system_timer_lpm +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.ti_dm_timer +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.wch_ch32v00x +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.x86 +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.xlnx_psttc +/Users/wijnand/zephyrproject/zephyr/drivers/timer/Kconfig.xtensa +/Users/wijnand/zephyrproject/zephyr/drivers/uaol/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/usb/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/usb/bc12/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/usb/bc12/Kconfig.pi3usb9201 +/Users/wijnand/zephyrproject/zephyr/drivers/usb/common/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/usb/common/nrf_usbd_common/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/usb/common/stm32/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/usb/device/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.ambiq +/Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.bflb_v1 +/Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.dwc2 +/Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.it82xx2 +/Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.kinetis +/Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.max32 +/Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.mcux +/Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.nrf +/Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.numaker +/Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.rpi_pico +/Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.sam0 +/Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.sam_udp +/Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.sam_usbc +/Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.sam_usbhs +/Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.skeleton +/Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.smartbond +/Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/usb/udc/Kconfig.virtual +/Users/wijnand/zephyrproject/zephyr/drivers/usb/uhc/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/usb/uhc/Kconfig.max3421e +/Users/wijnand/zephyrproject/zephyr/drivers/usb/uhc/Kconfig.mcux +/Users/wijnand/zephyrproject/zephyr/drivers/usb/uhc/Kconfig.virtual +/Users/wijnand/zephyrproject/zephyr/drivers/usb/uvb/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/usb_c/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/usb_c/ppc/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/usb_c/ppc/Kconfig.numaker +/Users/wijnand/zephyrproject/zephyr/drivers/usb_c/ppc/Kconfig.nxp +/Users/wijnand/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_fusb307 +/Users/wijnand/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_numaker +/Users/wijnand/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_ps8xxx +/Users/wijnand/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_rt1715 +/Users/wijnand/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/usb_c/tcpc/Kconfig.tcpc_tcpci +/Users/wijnand/zephyrproject/zephyr/drivers/usb_c/vbus/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/usb_c/vbus/Kconfig.numaker +/Users/wijnand/zephyrproject/zephyr/drivers/usb_c/vbus/Kconfig.usbc_vbus_adc +/Users/wijnand/zephyrproject/zephyr/drivers/usb_c/vbus/Kconfig.usbc_vbus_tcpci +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.arducam_mega +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.emul_imager +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.emul_rx +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.esp32_dvp +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.gc2145 +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.hm01b0 +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.hm0360 +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.imx219 +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.imx335 +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.mcux_csi +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.mcux_mipi_csi2rx +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.mcux_sdma +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.mt9m114 +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.ov2640 +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.ov5640 +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.ov5642 +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.ov767x +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.ov7725 +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.ov9655 +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.renesas_ra_ceu +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.shell +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.st_mipid02 +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.stm32_dcmi +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.stm32_dcmipp +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.stm32_jpeg +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.stm32_venc +/Users/wijnand/zephyrproject/zephyr/drivers/video/Kconfig.sw_generator +/Users/wijnand/zephyrproject/zephyr/drivers/virtio/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/virtualization/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.ds2477_85 +/Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.ds2482-800 +/Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.ds2484 +/Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.ds2485 +/Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.max32 +/Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.test +/Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.zephyr_gpio +/Users/wijnand/zephyrproject/zephyr/drivers/w1/Kconfig.zephyr_serial +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.adi_max42500 +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.ambiq +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.andes_atcwdt200 +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.bflb +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.cc13xx_cc26xx +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.cc23x0 +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.cc32xx +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.cmsdk_apb +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.dw +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.ene +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.gd32 +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.gecko +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.infineon +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.intel_adsp +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.it51xxx +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.it8xxx2 +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.litex +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.max32 +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.mchp +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.mcux +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.mcux_imx +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.npcx +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.npm13xx +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.npm2100 +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.npm6001 +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.nrfx +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.numaker +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.nxp_ewm +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.nxp_fs26 +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.nxp_s32 +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.opentitan +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.renesas_ra +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.renesas_rx +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.renesas_rz +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.rpi_pico +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.rts5817 +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.rts5912 +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.sam +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.sam0 +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.sam4l +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.sf32lb +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.shell +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.sifive +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.siwx91x +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.smartbond +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.tco +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.ti_rti +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.ti_tps382x +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.wch +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.xec +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.xilinx_wwdt +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.xlnx +/Users/wijnand/zephyrproject/zephyr/drivers/watchdog/Kconfig.xmc4xxx +/Users/wijnand/zephyrproject/zephyr/drivers/wifi/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/wifi/esp32/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/drivers/wifi/esp_at/Kconfig.esp_at +/Users/wijnand/zephyrproject/zephyr/drivers/wifi/esp_hosted/Kconfig.esp_hosted +/Users/wijnand/zephyrproject/zephyr/drivers/wifi/eswifi/Kconfig.eswifi +/Users/wijnand/zephyrproject/zephyr/drivers/wifi/infineon/Kconfig.airoc +/Users/wijnand/zephyrproject/zephyr/drivers/wifi/nrf_wifi/Kconfig.nrfwifi +/Users/wijnand/zephyrproject/zephyr/drivers/wifi/nxp/Kconfig.nxp +/Users/wijnand/zephyrproject/zephyr/drivers/wifi/simplelink/Kconfig.simplelink +/Users/wijnand/zephyrproject/zephyr/drivers/wifi/siwx91x/Kconfig.siwx91x +/Users/wijnand/zephyrproject/zephyr/drivers/wifi/winc1500/Kconfig.winc1500 +/Users/wijnand/zephyrproject/zephyr/drivers/wuc/Kconfig +/Users/wijnand/zephyrproject/zephyr/drivers/wuc/Kconfig.mcux_wuc +/Users/wijnand/zephyrproject/zephyr/drivers/xen/Kconfig +/Users/wijnand/zephyrproject/zephyr/dts/Kconfig +/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig +/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.device +/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.init +/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.mem_domain +/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.obj_core +/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.smp +/Users/wijnand/zephyrproject/zephyr/kernel/Kconfig.vm +/Users/wijnand/zephyrproject/zephyr/lib/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/acpi/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/cpp/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/hash/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/hash/Kconfig.hash_func +/Users/wijnand/zephyrproject/zephyr/lib/hash/Kconfig.hash_map +/Users/wijnand/zephyrproject/zephyr/lib/heap/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/libc/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/libc/common/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/libc/minimal/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/libc/newlib/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/mem_blocks/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/midi2/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/min_heap/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/net_buf/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/os/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/os/Kconfig.cbprintf +/Users/wijnand/zephyrproject/zephyr/lib/os/cpu_load/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/os/zvfs/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/posix/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/posix/Kconfig.profile +/Users/wijnand/zephyrproject/zephyr/lib/posix/Kconfig.toolchain +/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lang_support_r/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/posix/eventfd/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.aio +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.barrier +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.device_io +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.fd_mgmt +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.file_system_r +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.fs +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.mem +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.mqueue +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.net +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.proc1 +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.procN +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.pthread +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.rwlock +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.sched +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.semaphore +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.signal +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.spinlock +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.sync_io +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.timer +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_realtime +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_single_process +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_streams +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_system_logging +/Users/wijnand/zephyrproject/zephyr/lib/posix/options/Kconfig.xsi_threads_ext +/Users/wijnand/zephyrproject/zephyr/lib/posix/shell/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/posix/shell/Kconfig.env +/Users/wijnand/zephyrproject/zephyr/lib/posix/shell/Kconfig.uname +/Users/wijnand/zephyrproject/zephyr/lib/runtime/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/smf/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/utils/Kconfig +/Users/wijnand/zephyrproject/zephyr/lib/uuid/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.atmel +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.chre +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.cypress +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.eos_s3 +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.esp32 +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.infineon +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.intel +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.libmetal +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.mcuboot +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.microchip +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.mspm0 +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.nuvoton +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.open-amp +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.picolibc +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.renesas +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.rust +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.simplelink +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.stm32 +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.syst +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.telink +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.vega +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.wurthelektronik +/Users/wijnand/zephyrproject/zephyr/modules/Kconfig.xtensa +/Users/wijnand/zephyrproject/zephyr/modules/acpica/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/canopennode/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/cmsis-dsp/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/cmsis-nn/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/cmsis/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/cmsis_6/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/dhara/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/fatfs/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_afbr/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_ambiq/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_ambiq/Kconfig.components +/Users/wijnand/zephyrproject/zephyr/modules/hal_ambiq/Kconfig.hal +/Users/wijnand/zephyrproject/zephyr/modules/hal_bouffalolab/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_espressif/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_ethos_u/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_gigadevice/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_infineon/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/Kconfig.nrf_regtool +/Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/ironside/se/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/nrfs/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/nrfs/backends/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/nrfs/dvfs/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/nrfx/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_nordic/nrfx/Kconfig.logging +/Users/wijnand/zephyrproject/zephyr/modules/hal_nxp/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_nxp/imx/Kconfig.imx +/Users/wijnand/zephyrproject/zephyr/modules/hal_nxp/mcux/Kconfig.mcux +/Users/wijnand/zephyrproject/zephyr/modules/hal_nxp/s32/Kconfig.nxp_s32 +/Users/wijnand/zephyrproject/zephyr/modules/hal_realtek/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_realtek/bee/Kconfig.bee +/Users/wijnand/zephyrproject/zephyr/modules/hal_rpi_pico/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_sifli/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_silabs/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_silabs/gecko/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_silabs/simplicity_sdk/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_silabs/wiseconnect/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_st/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_tdk/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hal_wch/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/hostap/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/liblc3/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/libsbc/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/littlefs/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/lora-basics-modem/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/loramac-node/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/lvgl/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/lvgl/Kconfig.input +/Users/wijnand/zephyrproject/zephyr/modules/lvgl/Kconfig.memory +/Users/wijnand/zephyrproject/zephyr/modules/lvgl/Kconfig.shell +/Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig.ciphersuites +/Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig.deprecated +/Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig.mbedtls +/Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig.psa.auto +/Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig.psa.logic +/Users/wijnand/zephyrproject/zephyr/modules/mbedtls/Kconfig.tf-psa-crypto +/Users/wijnand/zephyrproject/zephyr/modules/nanopb/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/nrf_wifi/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/nrf_wifi/bus/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/openthread/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/openthread/Kconfig.features +/Users/wijnand/zephyrproject/zephyr/modules/openthread/Kconfig.thread +/Users/wijnand/zephyrproject/zephyr/modules/percepio/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/segger/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/tflite-micro/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/thrift/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-a/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig.tfm +/Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig.tfm.crypto_modules +/Users/wijnand/zephyrproject/zephyr/modules/trusted-firmware-m/Kconfig.tfm.partitions +/Users/wijnand/zephyrproject/zephyr/modules/uoscore-uedhoc/Kconfig +/Users/wijnand/zephyrproject/zephyr/modules/zcbor/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/Kconfig.v2 +/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32650 +/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32655 +/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32657 +/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32660 +/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32662 +/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32666 +/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32670 +/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32672 +/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32675 +/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32680 +/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max32690 +/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max78000 +/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig.max78002 +/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/aesc/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/aesc/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/aesc/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/aesc/nitrogen/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/aesc/nitrogen/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/aesc/nitrogen/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e1c/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e1c/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e1c/Kconfig.defconfig.ae1c1f4051920ph0_rtss_he +/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e1c/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e4/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e4/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e4/Kconfig.defconfig.ae402fa0e5597le0_rtss_he +/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e4/Kconfig.defconfig.ae402fa0e5597le0_rtss_hp +/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e4/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e6/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e6/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e6/Kconfig.defconfig.ae612fa0e5597ls0_rtss_he +/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e6/Kconfig.defconfig.ae612fa0e5597ls0_rtss_hp +/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e6/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e8/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e8/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e8/Kconfig.defconfig.ae822fa0e5597ls0_rtss_he +/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e8/Kconfig.defconfig.ae822fa0e5597ls0_rtss_hp +/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/e8/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/allwinner/sun8i_h3/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/allwinner/sun8i_h3/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/allwinner/sun8i_h3/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ambiq/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ambiq/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/ambiq/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo2x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo2x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo2x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig.apollo3_blue +/Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig.defconfig.apollo3p_blue +/Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo3x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig.apollo4p +/Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig.defconfig.apollo4p_blue +/Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo4x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo5x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo5x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo5x/Kconfig.defconfig.apollo510 +/Users/wijnand/zephyrproject/zephyr/soc/ambiq/apollo5x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/andestech/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/andestech/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/andestech/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/andestech/ae350/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/andestech/ae350/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/andestech/ae350/Kconfig.defconfig.ae350 +/Users/wijnand/zephyrproject/zephyr/soc/andestech/ae350/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/antmicro/myra/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/antmicro/myra/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/arm/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/arm/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/arm/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/arm/beetle/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/arm/beetle/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/arm/beetle/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/arm/designstart/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/arm/designstart/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/arm/fvp_aem/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/arm/fvp_aem/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/arm/fvp_aem/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/arm/fvp_aemv8r/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/arm/fvp_aemv8r/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/arm/fvp_aemv8r/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an383 +/Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an385 +/Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an386 +/Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an500 +/Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig.defconfig.an521 +/Users/wijnand/zephyrproject/zephyr/soc/arm/mps2/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/arm/mps3/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/arm/mps3/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/arm/mps3/Kconfig.defconfig.mps3_corstone300 +/Users/wijnand/zephyrproject/zephyr/soc/arm/mps3/Kconfig.defconfig.mps3_corstone310 +/Users/wijnand/zephyrproject/zephyr/soc/arm/mps3/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/arm/mps4/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/arm/mps4/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/arm/mps4/Kconfig.defconfig.mps4_corstone315 +/Users/wijnand/zephyrproject/zephyr/soc/arm/mps4/Kconfig.defconfig.mps4_corstone320 +/Users/wijnand/zephyrproject/zephyr/soc/arm/mps4/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/arm/musca/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/arm/musca/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/arm/musca/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/arm/qemu_cortex_a53/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/arm/qemu_cortex_a53/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/arm/qemu_cortex_a53/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/arm/qemu_virt_arm64/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/arm/qemu_virt_arm64/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/arm/qemu_virt_arm64/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/aspeed/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/aspeed/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/aspeed/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/aspeed/ast10x0/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/aspeed/ast10x0/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/aspeed/ast10x0/Kconfig.defconfig.ast1030 +/Users/wijnand/zephyrproject/zephyr/soc/aspeed/ast10x0/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/common/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam3x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam3x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam3x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4e/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4e/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4e/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4l/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4l/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4l/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4s/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4s/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/sam4s/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig.soc.same70 +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/samx7x/Kconfig.soc.samv71 +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/common/Kconfig.samd2x +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/common/Kconfig.samd5x +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/common/Kconfig.saml2x +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samc20/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samc20/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samc20/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samc21/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samc21/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samc21/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd20/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd20/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd20/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd21/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd21/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd21/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd51/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd51/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samd51/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same51/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same51/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same51/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same53/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same53/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same53/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same54/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same54/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/same54/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/saml21/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/saml21/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/saml21/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr21/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr21/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr21/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr34/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr34/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr34/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr35/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr35/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/samr35/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/bflb/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/bflb/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/bflb/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/bflb/bl60x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/bflb/bl60x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/bflb/bl60x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/bflb/bl61x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/bflb/bl61x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/bflb/bl61x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/bflb/bl70x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/bflb/bl70x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/bflb/bl70x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/bflb/bl70xl/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/bflb/bl70xl/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/bflb/bl70xl/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/blackberry/qnxhv_vm/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/blackberry/qnxhv_vm/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/blackberry/qnxhv_vm/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/valkyrie/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig.viper_bcm58402_a72 +/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig.defconfig.viper_bcm58402_m7 +/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/viper/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/s400/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/s400/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/s420/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/s420/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/s420/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/common/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/common/riscv-privileged/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/egis/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/egis/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/egis/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/egis/et171/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/egis/et171/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/egis/et171/Kconfig.defconfig.et171 +/Users/wijnand/zephyrproject/zephyr/soc/egis/et171/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/elan/em32f967/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/elan/em32f967/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/elan/em32f967/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/kb106x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/kb106x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/kb106x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ene/kb1200/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ene/kb1200/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/ene/kb1200/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig.ulp +/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.amp +/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.console +/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.efuse +/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.esptool +/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.flash +/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.lcd_cam +/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/Kconfig.spiram +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32/Kconfig.mac +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c2/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c2/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c2/Kconfig.mac +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c2/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c3/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c3/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c3/Kconfig.mac +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c3/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c5/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c5/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c5/Kconfig.mac +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c5/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c6/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c6/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c6/Kconfig.mac +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32c6/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32h2/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32h2/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32h2/Kconfig.mac +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32h2/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s2/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s2/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s2/Kconfig.mac +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s2/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.mac +/Users/wijnand/zephyrproject/zephyr/soc/espressif/esp32s3/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/focaltech/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/focaltech/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/focaltech/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/focaltech/ft9001/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/focaltech/ft9001/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/focaltech/ft9001/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/gaisler/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/gaisler/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32a50x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32a50x/Kconfig.defconfig.gd32a503 +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32a50x/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32a50x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e10x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e10x/Kconfig.defconfig.gd32e103 +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e10x/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e10x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e50x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e50x/Kconfig.defconfig.gd32e507 +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e50x/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32e50x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f3x0/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.defconfig.gd32f350 +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f3x0/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f403/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f403/Kconfig.defconfig.gd32f403 +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f403/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f403/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f405 +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f407 +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f450 +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.gd32f470 +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32f4xx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32l23x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32l23x/Kconfig.defconfig.gd32l233 +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32l23x/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32l23x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32vf103/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32vf103/Kconfig.defconfig.gd32vf103 +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32vf103/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/gd32vf103/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_01/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_01/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_02/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_02/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_03/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_03/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_04/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_04/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_legacy/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/psoc6_legacy/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/cyw20829/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/cyw20829/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/cyw20829/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/psc3/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/psc3/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/psc3/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/xmc7200/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/xmc7200/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/xmc7200/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig.xmc4500 +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.defconfig.xmc4700 +/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/xmc4xxx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/pse84/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/pse84/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/pse84/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/psoc4100smax/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/psoc4100smax/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/psoc4100smax/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/psoc4100tp/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/psoc4100tp/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/psoc4100tp/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/intel/atom/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/atom/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/atom/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace15_mtpm +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace20_lnl +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace30 +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.ace40 +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/ace/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/cavs/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/cavs/Kconfig.defconfig.cavs_v25 +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/cavs/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/cavs/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/intel_ish5/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/intel_ish5/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/intel_ish5/pm/Kconfig.pm +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/niosv/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/niosv/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/niosv/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.defconfig.agilex +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.defconfig.agilex5 +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/agilex5/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.defconfig.cyclonev +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/cyclonev/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/intel/lakemont/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/lakemont/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/lakemont/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/intel/wildcat_lake/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/wildcat_lake/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/intel/wildcat_lake/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it51xxx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it51xxx/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it51xxx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202bx +/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202cx +/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81202dx +/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302bx +/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302cx +/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it81302dx +/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82000bw +/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82002aw +/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82002bw +/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82202ax +/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82202bw +/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82302ax +/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.it82302bw +/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/it8xxx2/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8186/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8188/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8195/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8196/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/mt8365/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec15xx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec15xx/Kconfig.defconfig.mec1501hsz +/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec15xx/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec15xx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec165xb/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec165xb/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec165xb/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.mec172xnlj +/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.mec172xnsz +/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec172x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec174x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec174x/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec174x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec175x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec175x/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/mec175x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/miv/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/miv/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/miv/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/polarfire/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/polarfire/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/polarfire/Kconfig.defconfig.polarfire_u54 +/Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/polarfire/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/pic32cm_jh00/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/pic32cm_jh01/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/pic32cm_pl10/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/pic32cx_sg41/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/pic32cx_sg60/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/pic32cx_sg61/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/pic32cz_ca80/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/pic32cz_ca90/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/pic32cz_ca91/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/pic64gx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/pic64gx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/pic64gx/Kconfig.defconfig.pic64gx1000_u54 +/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/pic64gx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/atsamd51/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/atsame51/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/atsame53/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/atsame54/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/sama7d6/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/sama7d6/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/sama7g5/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/sama7g5/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/native/inf_clock/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/native/inf_clock/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/neorv32/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/neorv32/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/neorv32/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nordic/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nordic/common/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/common/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/common/Kconfig.peripherals +/Users/wijnand/zephyrproject/zephyr/soc/nordic/common/Kconfig.tfm +/Users/wijnand/zephyrproject/zephyr/soc/nordic/common/uicr/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/common/uicr/Kconfig.gen_uicr +/Users/wijnand/zephyrproject/zephyr/soc/nordic/common/vpr/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/common/vpr/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf51/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf51/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf51/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52805_CAAA +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52810_QFAA +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52811_QFAA +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52820_QDAA +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_CIAA +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_QFAA +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52832_QFAB +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52833_QDAA +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52833_QIAA +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52840_QFAA +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.defconfig.nrf52840_QIAA +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf52/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.defconfig.nrf5340_CPUAPP_QKAA +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.defconfig.nrf5340_CPUNET_QKAA +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.sync_rtc +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf53/Kconfig.sync_rtc_ipm +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuapp +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuflpr +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpuppr +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpurad +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54h/bicr/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l_05_10_15_cpuapp +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54l_05_10_15_cpuflpr +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54lm20_a_b_cpuapp +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.defconfig.nrf54lm20_a_b_cpuflpr +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf54l/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf71/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf71/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf71/Kconfig.defconfig.nrf7120_enga_cpuapp +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf71/Kconfig.defconfig.nrf7120_enga_cpuflpr +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf71/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9131_LACA +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9151_LACA +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9160_SICA +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.defconfig.nrf9161_LACA +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf91/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpuapp +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpuppr +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.defconfig.nrf9280_cpurad +/Users/wijnand/zephyrproject/zephyr/soc/nordic/nrf92/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/npcm4/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/npcm4/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/npcm4/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npck3/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npck3/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npck3/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx4/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx4/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx4/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx7/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx7/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx7/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx9/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx9/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/npcx9/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.defconfig.m2l31xxx +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m2l31x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m333x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m333x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m333x/Kconfig.defconfig.m333xxx +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m333x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m335x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m335x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m335x/Kconfig.defconfig.m335xxx +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m335x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m46x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m46x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m46x/Kconfig.defconfig.m467 +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m46x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m55m1x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m55m1x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m55m1x/Kconfig.defconfig.m55m1xxx +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/m55m1x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/m48x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/m48x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/m48x/Kconfig.defconfig.m487 +/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/m48x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/common/Kconfig.flexspi_xip +/Users/wijnand/zephyrproject/zephyr/soc/nxp/common/Kconfig.nbu +/Users/wijnand/zephyrproject/zephyr/soc/nxp/common/Kconfig.rom_loader +/Users/wijnand/zephyrproject/zephyr/soc/nxp/common/Kconfig.xspi_xip +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx6sx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx6sx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx6sx/Kconfig.defconfig.mcimx6x_m4 +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx6sx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx7d/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx7d/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx7d/Kconfig.defconfig.mcimx7d_m4 +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx7d/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_a53 +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_adsp +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8ml8_m7 +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mm6_a53 +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mm6_m4 +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mn6_a53 +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.defconfig.mimx8mq6_m4 +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8m/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8ulp/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8ulp/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8ulp/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx8x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx91/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx91/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx91/Kconfig.defconfig.mimx91 +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx91/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig.mimx93.a55 +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.defconfig.mimx93.m33 +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx93/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig.mimx94398.a55 +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig.mimx94398.m33 +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig.mimx94398.m7_0 +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.defconfig.mimx94398.m7_1 +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx943/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig.mimx95.a55 +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.defconfig.mimx95.m7 +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/imx9/imx95/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt10xx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt118x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt11xx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt5xx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt6xx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/cm33/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/cm33/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/hifi1/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/hifi1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/hifi4/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/imxrt7xx/hifi4/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k2x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k2x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k2x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k32lx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k32lx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k32lx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k6x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k6x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k6x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k8x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k8x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/k8x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/ke1xf/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/ke1xf/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/ke1xf/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/ke1xz/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/ke1xz/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/ke1xz/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kl2x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kl2x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kl2x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kv5x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kv5x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kv5x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kwx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kwx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/kwx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/ls1046a/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/ls1046a/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/ls1046a/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc11u6x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc51u68/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc51u68/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc51u68/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc54xxx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/lpc55xxx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxa/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxa/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxa/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxc/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxc/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxc/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe24x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe24x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe24x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe31x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe31x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxe/mcxe31x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxl/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxl/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxl/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxn/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxn/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxn/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw2xx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw2xx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw2xx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw7xx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw7xx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/mcxw/mcxw7xx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/rw/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/rw/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/rw/Kconfig.defconfig.wifi +/Users/wijnand/zephyrproject/zephyr/soc/nxp/rw/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k1/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k1/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k3/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k3/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k3/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k5/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k5/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k5/Kconfig.defconfig.s32k566.m7 +/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k5/Kconfig.defconfig.s32k566.r52 +/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32k5/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32ze/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32ze/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/s32ze/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/cv32a6/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/cv32a6/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/cv64a6/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/cv64a6/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/qemu/malta/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/qemu/malta/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/qemu/malta/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/qemu/or1k/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/qemu/or1k/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/qemu/or1k/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32e/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv32e/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv64/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/qemu_virt_riscv64/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/common/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/common/Kconfig.binary_info +/Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.defconfig.rp2040 +/Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2040/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/rp2350/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebad/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebad/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebad/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebadplus/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebadplus/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebadplus/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebag2/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebag2/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/amebag2/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/rtl8752h/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/rtl8752h/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/rtl8752h/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/rtl87x2g/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/rtl87x2g/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/rtl87x2g/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/rts5912/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/rts5912/Kconfig.defconfig.rts5912 +/Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/rts5912/Kconfig.defconfig.series +/Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/rts5912/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/rts5817/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/rts5817/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/rts5817/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra0e1/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra0e1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra0e1/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra2a1/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra2a1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra2a1/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra2l1/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra2l1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra2l1/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4c1/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4c1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4c1/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4e1/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4e1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4e1/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4e2/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4e2/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4e2/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4l1/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4l1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4l1/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m1/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m1/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m2/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m2/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m2/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m3/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m3/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4m3/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4t1/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4t1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4t1/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4w1/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4w1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra4w1/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6e1/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6e1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6e1/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6e2/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6e2/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6e2/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m1/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m1/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m2/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m2/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m2/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m3/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m3/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m3/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m4/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m4/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m4/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m5/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m5/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra6m5/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8d1/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8d1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8d1/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8d2/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8d2/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8d2/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8e1/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8e1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8e1/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8m1/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8m1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8m1/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8m2/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8m2/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8m2/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8p1/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8p1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8p1/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8t1/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8t1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8t1/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8t2/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8t2/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/ra8t2/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen3/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.defconfig.r8a779f0 +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.defconfig.r8a779g0 +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/rcar_gen4/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx130/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx130/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx130/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx140/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx140/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx140/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx14t/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx14t/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx14t/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx261/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx261/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx261/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx26t/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx26t/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx26t/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx62n/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx62n/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/rx62n/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rza2m/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rza2m/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rza2m/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rza3ul/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rza3ul/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rza3ul/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg2l/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg2l/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg2l/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg2ul/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg2ul/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg2ul/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg3e/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg3e/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg3e/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg3s/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg3s/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzg3s/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzn2h/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzn2h/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzn2h/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzn2l/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzn2l/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzn2l/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2h/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2h/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2h/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2l/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2l/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2l/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2m/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2m/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzt2m/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig.defconfig.rzv2h_cm33 +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig.defconfig.rzv2h_cr8 +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2h/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2l/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2l/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2l/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2n/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2n/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/rzv2n/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/da1469x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/da1469x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/da1469x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/rockchip/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/rockchip/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/rockchip/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk3399/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk3399/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk3399/Kconfig.defconfig.rk3399 +/Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk3399/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3568/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3568/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3568/Kconfig.defconfig.rk3568 +/Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3568/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588/Kconfig.defconfig.rk3588 +/Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588s/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588s/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588s/Kconfig.defconfig.rk3588s +/Users/wijnand/zephyrproject/zephyr/soc/rockchip/rk35/rk3588s/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/sensry/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/sensry/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/sensry/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/sensry/ganymed/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/sensry/ganymed/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/sensry/ganymed/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/sensry/ganymed/sy1xx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/sensry/ganymed/sy1xx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/sensry/ganymed/sy1xx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fe300/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu500/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/fu700/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/sf32lb52x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/sf32lb52x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/sf32lb52x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32hg/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32tg/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32tg/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32tg/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s0/efm32wg/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg11b/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32gg12b/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32jg12b/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg12b/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efm32pg1b/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32bg13p/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg13p/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32fg1p/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s1/efr32mg12p/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg21/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg21/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg21/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg22/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg22/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg22/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg23/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg23/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg23/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg24/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg24/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg24/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg26/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg26/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg26/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg27/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg27/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg27/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg28/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg28/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg28/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg29/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg29/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_s2/xg29/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_sim3/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_sim3/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_sim3/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_sim3/sim3u/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/siwg917/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/siwg917/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/silabs/silabs_siwx91x/siwg917/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em11d +/Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em4 +/Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em5d +/Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em6 +/Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em7d +/Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em7d_esp +/Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig.em9d +/Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig.em11d +/Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig.em7d +/Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig.em9d +/Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em11d +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.defconfig.em7d_v22 +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/em/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs5x +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs5x_smp +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs6x +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs6x_smp +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs_mpuv6 +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.defconfig.hs_smp +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/hs/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/sem/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/vpx5/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/rhx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/rhx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/rhx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/rmx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/common/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32c0x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32c5x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32c5x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32c5x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f0x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f1x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f2x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f2x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f2x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f302xc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f303x(b-c) +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f303xe +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.defconfig.stm32f373xc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f3x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f4x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f765xx +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f767xx +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.defconfig.stm32f769xx +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32f7x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.defconfig.stm32g0b1xx +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32g0x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32g4x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h5x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7rsx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h745xx +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h747xx +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h755xx +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.defconfig.stm32h757xx +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32h7x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l0x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l1x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l4x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l5x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l5x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32l5x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp13x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp13x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp13x/Kconfig.defconfig.stm32mp13_a7 +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp13x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp1x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp1x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp1x/Kconfig.defconfig.stm32mp15_m4 +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp1x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig.defconfig.stm32mp215fxx +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig.defconfig.stm32mp257fxx +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32mp2x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32n6x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32n6x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32n6x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32n6x/npu/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u0x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u0x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u0x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u3x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u3x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u3x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32u5x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wb0x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wb0x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wb0x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig.defconfig.stm32wba65xx +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wbax/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wbx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wbx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wbx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/stm32wlx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/synaptics/sr100/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/synaptics/sr100/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/synaptics/sr100/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/tlsr951x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/tlsr951x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/tlsr951x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ti/k3/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/k3/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/k3/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ti/k3/am6x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/k3/am6x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/k3/am6x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/mspm0g/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/mspm0g/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/mspm0g/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/mspm0l/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/mspm0l/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/mspm0l/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc13x2_cc26x2/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc13x2x7_cc26x2x7/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc23x0/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc23x0/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc23x0/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig.cc3220sf +/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig.defconfig.cc3235sf +/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/cc32xx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.defconfig.msp432p401r +/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/msp432p4xx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig.defconfig.ch32v006 +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/ch32v00x/Kconfig.soc.ch32v006 +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig.defconfig.ch32v003 +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v2a/Kconfig.soc.ch32v003 +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig.defconfig.ch32v203 +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4b/Kconfig.soc.ch32v203 +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig.defconfig.ch32v208 +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4c/Kconfig.soc.ch32v208 +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.defconfig.ch32v303 +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.defconfig.ch32v307 +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.soc.ch32v303 +/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/qingke_v4f/Kconfig.soc.ch32v307 +/Users/wijnand/zephyrproject/zephyr/soc/xen/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/xen/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/xen/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxx/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/xc7zxxxs/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig +/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig.soc +/Users/wijnand/zephyrproject/zephyr/subsys/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/bindesc/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/bindesc/Kconfig.build_time +/Users/wijnand/zephyrproject/zephyr/subsys/bindesc/Kconfig.host_info +/Users/wijnand/zephyrproject/zephyr/subsys/bindesc/Kconfig.version +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/Kconfig.adv +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/Kconfig.logging +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.aics +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.ascs +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.bap +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.cap +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.ccp +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.csip +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.gmap +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.has +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.mcs +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.mctl +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.micp +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.mpl +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.pacs +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.pbp +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.tbs +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.tmap +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.vcp +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/audio/Kconfig.vocs +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/common/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/controller/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/controller/Kconfig.df +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/controller/Kconfig.dtm +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/controller/Kconfig.ll_sw_split +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/controller/coex/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/crypto/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/host/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/host/Kconfig.gatt +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/host/Kconfig.l2cap +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/host/classic/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/lib/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/mesh/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/mesh/shell/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.ans +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.cts +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.dis +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.ets +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.gap_svc +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.hrs +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/Kconfig.tps +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/bas/Kconfig.bas +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/ias/Kconfig.ias +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/nus/Kconfig.nus +/Users/wijnand/zephyrproject/zephyr/subsys/bluetooth/services/ots/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/canbus/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/canbus/Kconfig.canopen +/Users/wijnand/zephyrproject/zephyr/subsys/canbus/isotp/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/console/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/cpu_freq/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/crc/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/dap/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/debug/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/debug/coredump/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/debug/gdbstub/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/debug/symtab/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/debug/thread_analyzer/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/demand_paging/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/demand_paging/backing_store/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/demand_paging/eviction/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/dfu/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/disk/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/dsp/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/emul/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/emul/espi/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/fb/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/fs/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/fs/Kconfig.fatfs +/Users/wijnand/zephyrproject/zephyr/subsys/fs/Kconfig.littlefs +/Users/wijnand/zephyrproject/zephyr/subsys/fs/ext2/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/fs/fcb/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/fs/fuse_client/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/fs/virtiofs/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/gnss/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/gnss/rtk/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/gnss/rtk/protocol/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/gnss/rtk/serial/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/input/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/instrumentation/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/ipc/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig.icbmsg +/Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig.icmsg_me +/Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig.intel_adsp +/Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/backends/Kconfig.rpmsg +/Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/lib/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/ipc/ipc_service/lib/Kconfig.icmsg +/Users/wijnand/zephyrproject/zephyr/subsys/ipc/open-amp/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/ipc/rpmsg_service/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/jwt/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/kvss/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/kvss/nvs/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/kvss/zms/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/llext/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.filtering +/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.formatting +/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.links +/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.misc +/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.mode +/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.processing +/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config +/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_config_inherit +/Users/wijnand/zephyrproject/zephyr/subsys/logging/Kconfig.template.log_format_config +/Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.adsp +/Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.adsp_mtrace +/Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.ble +/Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.efi_console +/Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.fs +/Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.mqtt +/Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.multidomain +/Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.native_posix +/Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.net +/Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.rtt +/Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.semihost +/Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.spinel +/Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.swo +/Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.uart +/Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.ws +/Users/wijnand/zephyrproject/zephyr/subsys/logging/backends/Kconfig.xtensa_sim +/Users/wijnand/zephyrproject/zephyr/subsys/logging/frontends/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/lorawan/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/lorawan/emul/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/lorawan/loramac-node/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/lorawan/nvm/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/lorawan/services/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mem_mgmt/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/ec_host_cmd/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/ec_host_cmd/Kconfig.logging +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/ec_host_cmd/backends/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/hawkbit/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/enum_mgmt/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/fs_mgmt/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/img_mgmt/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/img_mgmt_client/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/os_mgmt/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/os_mgmt_client/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/settings_mgmt/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/shell_mgmt/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/stat_mgmt/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/grp/zephyr_basic/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/mgmt/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/smp/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/smp_client/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.bluetooth +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.common +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.dummy +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.lorawan +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.raw_dummy +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.raw_uart +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.shell +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.uart +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/mcumgr/transport/Kconfig.udp +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/osdp/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/osdp/Kconfig.cp +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/osdp/Kconfig.pd +/Users/wijnand/zephyrproject/zephyr/subsys/mgmt/updatehub/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/modbus/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/modem/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/modem/backends/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/Kconfig.hostname +/Users/wijnand/zephyrproject/zephyr/subsys/net/Kconfig.template.log_config.net +/Users/wijnand/zephyrproject/zephyr/subsys/net/conn_mgr/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig.debug +/Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig.ipv4 +/Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig.ipv6 +/Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig.mgmt +/Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig.stack +/Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig.stats +/Users/wijnand/zephyrproject/zephyr/subsys/net/ip/Kconfig.tcp +/Users/wijnand/zephyrproject/zephyr/subsys/net/l2/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/l2/canbus/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/l2/dummy/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/l2/dummy/any/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ethernet/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ethernet/bridge/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ethernet/dsa/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ethernet/gptp/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ethernet/lldp/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ieee802154/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ieee802154/Kconfig.radio +/Users/wijnand/zephyrproject/zephyr/subsys/net/l2/openthread/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/l2/ppp/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/l2/virtual/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/l2/virtual/ipip/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/l2/wifi/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/capture/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/coap/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/config/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/dhcpv4/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/dhcpv6/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/dns/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/ftp/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/http/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/latmon/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/lwm2m/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/lwm2m/Kconfig.ipso +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/lwm2m/Kconfig.ucifi +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/midi2/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/mqtt/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/mqtt_sn/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/ocpp/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/prometheus/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/ptp/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/shell/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/sntp/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/sockets/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/socks/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/tftp/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/tls_credentials/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/tls_credentials/Kconfig.shell +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/trickle/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/websocket/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/wifi_credentials/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/wireguard/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/lib/zperf/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/net/pkt_filter/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/nvmem/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/pm/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/pm/policy/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/pmci/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/pmci/mctp/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/pmci/mctp/Kconfig.usb +/Users/wijnand/zephyrproject/zephyr/subsys/portability/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/portability/cmsis_rtos_v1/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/portability/cmsis_rtos_v2/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/profiling/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/profiling/perf/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/profiling/perf/backends/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/random/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/retention/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/retention/Kconfig.blinfo +/Users/wijnand/zephyrproject/zephyr/subsys/rtio/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/rtio/Kconfig.workq +/Users/wijnand/zephyrproject/zephyr/subsys/sd/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/secure_storage/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/secure_storage/Kconfig.its_store +/Users/wijnand/zephyrproject/zephyr/subsys/secure_storage/Kconfig.its_transform +/Users/wijnand/zephyrproject/zephyr/subsys/sensing/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/sensing/sensor/hinge_angle/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/sensing/sensor/phy_3d_sensor/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/settings/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/shell/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/shell/Kconfig.template.shell_log_queue_size +/Users/wijnand/zephyrproject/zephyr/subsys/shell/Kconfig.template.shell_log_queue_timeout +/Users/wijnand/zephyrproject/zephyr/subsys/shell/backends/Kconfig.backends +/Users/wijnand/zephyrproject/zephyr/subsys/shell/modules/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/shell/modules/kernel_service/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/shell/modules/kernel_service/thread/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/sip_svc/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/stats/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/storage/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/storage/flash_map/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/storage/stream/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/task_wdt/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/testsuite/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/testsuite/Kconfig.coverage +/Users/wijnand/zephyrproject/zephyr/subsys/testsuite/Kconfig.defconfig +/Users/wijnand/zephyrproject/zephyr/subsys/testsuite/ztest/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/testsuite/ztest/benchmark/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/timing/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/tracing/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/tracing/sysview/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/usb/common/Kconfig.template.instances_count +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/Kconfig.bt +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/Kconfig.cdc +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/Kconfig.msc +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/Kconfig.template.composite_device_number +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/audio/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/dfu/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/hid/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device/class/netusb/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/app/Kconfig.cdc_acm_serial +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.bt +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.cdc_acm +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.cdc_ecm +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.cdc_ncm +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.dfu +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.hid +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.loopback +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.midi2 +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.msc +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.uac2 +/Users/wijnand/zephyrproject/zephyr/subsys/usb/device_next/class/Kconfig.uvc +/Users/wijnand/zephyrproject/zephyr/subsys/usb/host/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/usb/host/Kconfig.usbip +/Users/wijnand/zephyrproject/zephyr/subsys/usb/host/class/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/usb/host/class/Kconfig.uvc +/Users/wijnand/zephyrproject/zephyr/subsys/usb/usb_c/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/zbus/Kconfig +/Users/wijnand/zephyrproject/zephyr/subsys/zbus/proxy_agent/Kconfig +/Volumes/External/Work/radio/loramodem/app/Kconfig +/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.dts +/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.modules +/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.shield +/Volumes/External/Work/radio/loramodem/build/Kconfig/Kconfig.shield.defconfig +/Volumes/External/Work/radio/loramodem/build/Kconfig/arch/Kconfig +/Volumes/External/Work/radio/loramodem/build/Kconfig/boards/Kconfig +/Volumes/External/Work/radio/loramodem/build/Kconfig/boards/Kconfig.defconfig +/Volumes/External/Work/radio/loramodem/build/Kconfig/boards/Kconfig.xiao_esp32s3 +/Volumes/External/Work/radio/loramodem/build/Kconfig/soc/Kconfig +/Volumes/External/Work/radio/loramodem/build/Kconfig/soc/Kconfig.defconfig +/Volumes/External/Work/radio/loramodem/build/Kconfig/soc/Kconfig.soc diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj new file mode 100644 index 0000000..e98d5c8 Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj new file mode 100644 index 0000000..ec7c55b Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj new file mode 100644 index 0000000..b46291e Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj new file mode 100644 index 0000000..0495a4a Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj new file mode 100644 index 0000000..431d3d3 Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj new file mode 100644 index 0000000..24386a1 Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj new file mode 100644 index 0000000..dad7849 Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj new file mode 100644 index 0000000..90ad992 Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj new file mode 100644 index 0000000..60deec8 Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj new file mode 100644 index 0000000..0c1267a Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj new file mode 100644 index 0000000..4b002df Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj new file mode 100644 index 0000000..60f01e5 Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj new file mode 100644 index 0000000..bbb6a71 Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj new file mode 100644 index 0000000..072b578 Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj new file mode 100644 index 0000000..31bf691 Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj new file mode 100644 index 0000000..576e9c9 Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj new file mode 100644 index 0000000..08e332e Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/pipe.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/pipe.c.obj new file mode 100644 index 0000000..d5277de Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/pipe.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/poll.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/poll.c.obj new file mode 100644 index 0000000..98b670b Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/poll.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj new file mode 100644 index 0000000..8d372ee Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj new file mode 100644 index 0000000..c587ba9 Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj new file mode 100644 index 0000000..b71ae4f Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj new file mode 100644 index 0000000..4d44fab Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj new file mode 100644 index 0000000..f0ddc28 Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj new file mode 100644 index 0000000..ac7c695 Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj new file mode 100644 index 0000000..052952b Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj new file mode 100644 index 0000000..b292c4f Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj new file mode 100644 index 0000000..7ed41b5 Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj new file mode 100644 index 0000000..194e45f Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj differ diff --git a/build/zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj b/build/zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj new file mode 100644 index 0000000..51025b9 Binary files /dev/null and b/build/zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj differ diff --git a/build/zephyr/kernel/cmake_install.cmake b/build/zephyr/kernel/cmake_install.cmake new file mode 100644 index 0000000..8c45f7a --- /dev/null +++ b/build/zephyr/kernel/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/kernel + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/kernel/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/kernel/libkernel.a b/build/zephyr/kernel/libkernel.a new file mode 100644 index 0000000..8b62f15 Binary files /dev/null and b/build/zephyr/kernel/libkernel.a differ diff --git a/build/zephyr/lib/cmake_install.cmake b/build/zephyr/lib/cmake_install.cmake new file mode 100644 index 0000000..5dbfd04 --- /dev/null +++ b/build/zephyr/lib/cmake_install.cmake @@ -0,0 +1,90 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/lib + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/lib/libc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/lib/hash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/lib/heap/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/lib/mem_blocks/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/lib/midi2/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/lib/os/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/lib/utils/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/lib/uuid/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/zephyr/lib/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/lib/hash/cmake_install.cmake b/build/zephyr/lib/hash/cmake_install.cmake new file mode 100644 index 0000000..f7dd441 --- /dev/null +++ b/build/zephyr/lib/hash/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/lib/hash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/lib/hash/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/lib/heap/CMakeFiles/heap_constants.dir/heap_constants.c.obj b/build/zephyr/lib/heap/CMakeFiles/heap_constants.dir/heap_constants.c.obj new file mode 100644 index 0000000..f27bc10 Binary files /dev/null and b/build/zephyr/lib/heap/CMakeFiles/heap_constants.dir/heap_constants.c.obj differ diff --git a/build/zephyr/lib/heap/cmake_install.cmake b/build/zephyr/lib/heap/cmake_install.cmake new file mode 100644 index 0000000..52012b4 --- /dev/null +++ b/build/zephyr/lib/heap/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/lib/heap + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/lib/heap/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/lib/libc/cmake_install.cmake b/build/zephyr/lib/libc/cmake_install.cmake new file mode 100644 index 0000000..e229ccc --- /dev/null +++ b/build/zephyr/lib/libc/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/lib/libc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/lib/libc/picolibc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/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/zephyr/lib/libc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj b/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj new file mode 100644 index 0000000..e799434 Binary files /dev/null and b/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj differ diff --git a/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj b/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj new file mode 100644 index 0000000..a5d2947 Binary files /dev/null and b/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj differ diff --git a/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/time/time.c.obj b/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/time/time.c.obj new file mode 100644 index 0000000..c91aa43 Binary files /dev/null and b/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/time/time.c.obj differ diff --git a/build/zephyr/lib/libc/common/cmake_install.cmake b/build/zephyr/lib/libc/common/cmake_install.cmake new file mode 100644 index 0000000..fdc18fb --- /dev/null +++ b/build/zephyr/lib/libc/common/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/lib/libc/common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/lib/libc/common/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/lib/libc/common/liblib__libc__common.a b/build/zephyr/lib/libc/common/liblib__libc__common.a new file mode 100644 index 0000000..aba8822 Binary files /dev/null and b/build/zephyr/lib/libc/common/liblib__libc__common.a differ diff --git a/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj b/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj new file mode 100644 index 0000000..49ba264 Binary files /dev/null and b/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj differ diff --git a/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj b/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj new file mode 100644 index 0000000..15f973e Binary files /dev/null and b/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj differ diff --git a/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj b/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj new file mode 100644 index 0000000..76cc738 Binary files /dev/null and b/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj differ diff --git a/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj b/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj new file mode 100644 index 0000000..a76e646 Binary files /dev/null and b/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj differ diff --git a/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj b/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj new file mode 100644 index 0000000..db81b75 Binary files /dev/null and b/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj differ diff --git a/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj b/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj new file mode 100644 index 0000000..a828d7f Binary files /dev/null and b/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj differ diff --git a/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj b/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj new file mode 100644 index 0000000..8c09b9b Binary files /dev/null and b/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj differ diff --git a/build/zephyr/lib/libc/picolibc/cmake_install.cmake b/build/zephyr/lib/libc/picolibc/cmake_install.cmake new file mode 100644 index 0000000..b892494 --- /dev/null +++ b/build/zephyr/lib/libc/picolibc/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/lib/libc/picolibc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/lib/libc/picolibc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/lib/libc/picolibc/liblib__libc__picolibc.a b/build/zephyr/lib/libc/picolibc/liblib__libc__picolibc.a new file mode 100644 index 0000000..bbe5824 Binary files /dev/null and b/build/zephyr/lib/libc/picolibc/liblib__libc__picolibc.a differ diff --git a/build/zephyr/lib/mem_blocks/cmake_install.cmake b/build/zephyr/lib/mem_blocks/cmake_install.cmake new file mode 100644 index 0000000..4e5423b --- /dev/null +++ b/build/zephyr/lib/mem_blocks/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/lib/mem_blocks + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/lib/mem_blocks/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/lib/midi2/cmake_install.cmake b/build/zephyr/lib/midi2/cmake_install.cmake new file mode 100644 index 0000000..50ed3f9 --- /dev/null +++ b/build/zephyr/lib/midi2/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/lib/midi2 + +# 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/zephyr/lib/midi2/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/lib/os/cmake_install.cmake b/build/zephyr/lib/os/cmake_install.cmake new file mode 100644 index 0000000..ba58146 --- /dev/null +++ b/build/zephyr/lib/os/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/lib/os + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/lib/os/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/lib/posix/c_lang_support_r/cmake_install.cmake b/build/zephyr/lib/posix/c_lang_support_r/cmake_install.cmake new file mode 100644 index 0000000..80c70d0 --- /dev/null +++ b/build/zephyr/lib/posix/c_lang_support_r/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/lib/posix/c_lang_support_r + +# 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/zephyr/lib/posix/c_lang_support_r/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/fnmatch.c.obj b/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/fnmatch.c.obj new file mode 100644 index 0000000..f82164b Binary files /dev/null and b/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/fnmatch.c.obj differ diff --git a/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getentropy.c.obj b/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getentropy.c.obj new file mode 100644 index 0000000..a5166d2 Binary files /dev/null and b/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getentropy.c.obj differ diff --git a/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt_shim.c.obj b/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt_shim.c.obj new file mode 100644 index 0000000..bda1fbe Binary files /dev/null and b/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt_shim.c.obj differ diff --git a/build/zephyr/lib/posix/c_lib_ext/cmake_install.cmake b/build/zephyr/lib/posix/c_lib_ext/cmake_install.cmake new file mode 100644 index 0000000..6f86fda --- /dev/null +++ b/build/zephyr/lib/posix/c_lib_ext/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/lib/posix/c_lib_ext + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/lib/posix/c_lib_ext/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a b/build/zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a new file mode 100644 index 0000000..e3427a0 Binary files /dev/null and b/build/zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a differ diff --git a/build/zephyr/lib/posix/cmake_install.cmake b/build/zephyr/lib/posix/cmake_install.cmake new file mode 100644 index 0000000..e817f5a --- /dev/null +++ b/build/zephyr/lib/posix/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/lib/posix + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/lib/posix/c_lang_support_r/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix/c_lib_ext/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/zephyr/lib/posix/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/lib/utils/cmake_install.cmake b/build/zephyr/lib/utils/cmake_install.cmake new file mode 100644 index 0000000..1aac2a4 --- /dev/null +++ b/build/zephyr/lib/utils/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/lib/utils + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/lib/utils/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/lib/uuid/cmake_install.cmake b/build/zephyr/lib/uuid/cmake_install.cmake new file mode 100644 index 0000000..5db376e --- /dev/null +++ b/build/zephyr/lib/uuid/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/lib/uuid + +# 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/zephyr/lib/uuid/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/libzephyr.a b/build/zephyr/libzephyr.a new file mode 100644 index 0000000..0000541 Binary files /dev/null and b/build/zephyr/libzephyr.a differ diff --git a/build/zephyr/linker.cmd b/build/zephyr/linker.cmd new file mode 100644 index 0000000..658aab0 --- /dev/null +++ b/build/zephyr/linker.cmd @@ -0,0 +1,872 @@ + +procpu_iram_end = (0x3fce9704 + 0x6f0000) - (0 + 0); +procpu_dram_end = 0x3fce9704 - (0 + 0); +procpu_iram_org = ((1077346304) + 0x4000); +procpu_iram_len = procpu_iram_end - procpu_iram_org; +procpu_dram_org = (1070104576); +procpu_dram_len = procpu_dram_end - procpu_dram_org; +procpu_irom_end = (1107296256) + (33554432) - (0 + 0); +procpu_drom_end = (1006632960) + (33554432) - (0 + 0); +procpu_irom_org = (1107296256); +procpu_irom_len = (33554432) - (0 + 0); +procpu_drom_org = (1006632960); +procpu_drom_len = (33554432) - (0 + 0); +rtc_iram_org = (1611653120); +rtc_iram_len = (8192); +rtc_slow_org = (1342177280); +rtc_slow_len = (8192); +MEMORY +{ + FLASH (R): org = 0x0, len = 8388608 - 0x100 + iram0_0_seg(RX): org = procpu_iram_org, len = procpu_iram_len + dram0_0_seg(RW): org = procpu_dram_org, len = procpu_dram_len + irom0_0_seg(RX): org = procpu_irom_org, len = procpu_irom_len + drom0_0_seg(R): org = procpu_drom_org, len = procpu_drom_len + rtc_iram_seg(RWX): org = rtc_iram_org, len = rtc_iram_len - 0 + rtc_slow_seg(RW): org = rtc_slow_org, len = rtc_slow_len + IDT_LIST(RW): org = 0x3ebfe010, len = 0x2000 +} +ENTRY("__start") +_heap_sentry = 0x3fce9704; +_libc_heap_size = _heap_sentry - _end; +SECTIONS +{ + _iram_dram_offset = 0x6f0000; + .rel.plt : ALIGN_WITH_INPUT + { + *(.rel.plt) + PROVIDE_HIDDEN (__rel_iplt_start = .); + *(.rel.iplt) + PROVIDE_HIDDEN (__rel_iplt_end = .); + } + .rela.plt : ALIGN_WITH_INPUT + { + *(.rela.plt) + PROVIDE_HIDDEN (__rela_iplt_start = .); + *(.rela.iplt) + PROVIDE_HIDDEN (__rela_iplt_end = .); + } + .rel.dyn : ALIGN_WITH_INPUT + { + *(.rel.*) + } + .rela.dyn : ALIGN_WITH_INPUT + { + *(.rela.*) + } + .rtc.text : + { + . = ALIGN(4); + _rtc_text_start = ABSOLUTE(.); + _rtc_fast_start = ABSOLUTE(.); + *(.rtc.literal .rtc.literal.*) + *(.rtc.text .rtc.text.*) + *(.rtc.entry.literal) + *(.rtc.entry.text) + . = ALIGN(4); + } > rtc_iram_seg AT > FLASH + .rtc.force_fast : + { + . = ALIGN(4); + _rtc_force_fast_start = ABSOLUTE(.); + *(.rtc.force_fast .rtc.force_fast.*) + . = ALIGN(4); + _rtc_force_fast_end = ABSOLUTE(.); + } > rtc_iram_seg AT > FLASH + .rtc.data : + { + . = ALIGN(4); + _rtc_data_start = ABSOLUTE(.); + *(.rtc.data .rtc.data.*) + *(.rtc.rodata .rtc.rodata.*) + _rtc_data_end = ABSOLUTE(.); + } > rtc_slow_seg AT > FLASH + .rtc.bss (NOLOAD) : + { + _rtc_bss_start = ABSOLUTE(.); + *(.rtc.bss .rtc.bss.*) + _rtc_bss_end = ABSOLUTE(.); + } > rtc_slow_seg + .rtc_noinit (NOLOAD) : + { + . = ALIGN(4); + *(.rtc_noinit .rtc_noinit.*) + . = ALIGN(4) ; + } > rtc_slow_seg + .rtc.force_slow : + { + . = ALIGN(4); + _rtc_force_slow_start = ABSOLUTE(.); + *(.rtc.force_slow .rtc.force_slow.*) + . = ALIGN(4); + _rtc_force_slow_end = ABSOLUTE(.); + } > rtc_slow_seg AT > FLASH + _rtc_slow_length = (_rtc_force_slow_end - _rtc_data_start); + _rtc_fast_length = (_rtc_force_fast_end - _rtc_fast_start); + .iram0.vectors : ALIGN(4) + { + _init_start = ABSOLUTE(.); + . = 0x0; + KEEP(*(.WindowVectors.text)); + . = 0x180; + KEEP(*(.Level2InterruptVector.text)); + . = 0x1c0; + KEEP(*(.Level3InterruptVector.text)); + . = 0x200; + KEEP(*(.Level4InterruptVector.text)); + . = 0x240; + KEEP(*(.Level5InterruptVector.text)); + . = 0x280; + KEEP(*(.DebugExceptionVector.text)); + . = 0x2c0; + KEEP(*(.NMIExceptionVector.text)); + . = 0x300; + KEEP(*(.KernelExceptionVector.text)); + . = 0x340; + KEEP(*(.UserExceptionVector.text)); + . = 0x3C0; + KEEP(*(.DoubleExceptionVector.text)); + . = 0x400; + _invalid_pc_placeholder = ABSOLUTE(.); + *(.*Vector.literal) + *(.UserEnter.literal); + *(.UserEnter.text); + . = ALIGN (16); + *(.entry.text) + *(.init.literal) + *(.init) + _init_end = ABSOLUTE(.); + _iram_start = ABSOLUTE(.); + } > iram0_0_seg AT > FLASH + .iram0.text : ALIGN(4) + { + _iram_text_start = ABSOLUTE(.); + *(.iram1 .iram1.*) + *(.iram0.literal .iram.literal .iram.text.literal .iram0.text .iram.text) + *libarch__xtensa__core.a:(.literal .text .literal.* .text.*) + *libarch__common.a:(.literal .text .literal.* .text.*) + *libkernel.a:(.literal .text .literal.* .text.*) + *libgcc.a:lib2funcs.*(.literal .text .literal.* .text.*) + *libzephyr.a:cbprintf_packaged.*(.literal .text .literal.* .text.*) + *libdrivers__flash.a:flash_esp32.*(.literal .text .literal.* .text.*) + *libzephyr.a:windowspill_asm.*(.literal .text .literal.* .text.*) + *libzephyr.a:log_noos.*(.literal .text .literal.* .text.*) + *libdrivers__timer.a:xtensa_sys_timer.*(.literal .text .literal.* .text.*) + *libzephyr.a:log_core.*(.literal .text .literal.* .text.*) + *libzephyr.a:cbprintf_complete.*(.literal .text .literal.* .text.*) + *libzephyr.a:printk.*(.literal.printk .literal.vprintk .literal.char_out .text.printk .text.vprintk .text.char_out) + *libzephyr.a:log_msg.*(.literal .text .literal.* .text.*) + *libzephyr.a:log_list.*(.literal .text .literal.* .text.*) + *libdrivers__console.a:uart_console.*(.literal.console_out .text.console_out) + *libzephyr.a:log_output.*(.literal .text .literal.* .text.*) + *libzephyr.a:log_backend_uart.*(.literal .text .literal.* .text.*) + *libzephyr.a:log_minimal.*(.literal .literal.* .text .text.*) + *libzephyr.a:loader.*(.literal .text .literal.* .text.*) + *libzephyr.a:flash_init.*(.literal .text .literal.* .text.*) + *libzephyr.a:soc_flash_init.*(.literal .text .literal.* .text.*) + *libzephyr.a:console_init.*(.literal .text .literal.* .text.*) + *libzephyr.a:soc_init.*(.literal .text .literal.* .text.*) + *libzephyr.a:hw_init.*(.literal .text .literal.* .text.*) + *libzephyr.a:soc_random.*(.literal .text .literal.* .text.*) + *libzephyr.a:esp_mmu_map.*(.literal .literal.* .text .text.*) + *libphy.a:(.phyiram .phyiram.*) + *libgcov.a:(.literal .text .literal.* .text.*) + *librtc.a:(.literal .text .literal.* .text.*) + *libzephyr.a:esp32s3-mp.*(.literal .text .literal.* .text.*) + *libzephyr.a:bootloader_flash.*(.literal .text .literal.* .text.*) + *libzephyr.a:flash_mmap.*(.literal .text .literal.* .text.*) + *libzephyr.a:mmu_psram_flash.*(.literal .literal.* .text .text.*) + *libzephyr.a:esp_psram_impl_quad.*(.literal .literal.* .text .text.*) + *libzephyr.a:esp_psram_impl_octal.*(.literal .literal.* .text .text.*) + *libzephyr.a:efuse_hal.*(.literal .text .literal.* .text.*) + *libzephyr.a:mmu_hal.*(.literal .text .literal.* .text.*) + *libzephyr.a:spi_flash_hal_iram.*(.literal .text .literal.* .text.*) + *libzephyr.a:spi_flash_encrypt_hal_iram.*(.literal .text .literal.* .text.*) + *libzephyr.a:cache_hal.*(.literal .text .literal.* .text.*) + *libzephyr.a:ledc_hal_iram.*(.literal .text .literal.* .text.*) + *libzephyr.a:i2c_hal_iram.*(.literal .text .literal.* .text.*) + *libzephyr.a:wdt_hal_iram.*(.literal .text .literal.* .text.*) + *libzephyr.a:systimer_hal.*(.literal .text .literal.* .text.*) + *libzephyr.a:spi_flash_hal_gpspi.*(.literal .text .literal.* .text.*) + *libzephyr.a:lldesc.*(.literal .literal.* .text .text.*) + *(.literal.esp_log_write .text.esp_log_write) + *(.literal.esp_log_timestamp .text.esp_log_timestamp) + *(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) + *(.literal.esp_log_impl_lock .text.esp_log_impl_lock) + *(.literal.esp_log_impl_lock_timeout .text.esp_log_impl_lock_timeout) + *(.literal.esp_log_impl_unlock .text.esp_log_impl_unlock) + *libzephyr.a:spi_flash_chip_boya.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_chip_gd.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_chip_issi.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_chip_mxic.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_chip_mxic_opi.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_chip_th.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_chip_winbond.*(.literal .literal.* .text .text.*) + *libzephyr.a:memspi_host_driver.*(.literal .literal.* .text .text.*) + *libzephyr.a:flash_brownout_hook.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_wrap.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_hpm_enable.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_oct_flash_init.*(.literal .literal.* .text .text.*) + *libzephyr.a:flash_ops.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_os_func_app.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_os_func_noos.*(.literal .literal.* .text .text.*) + *libzephyr.a:esp_flash_api.*(.literal .text .literal.* .text.*) + *libzephyr.a:esp_err.*(.literal .literal.* .text .text.*) + *(.literal.esp_system_abort .text.esp_system_abort) + *(.literal.esp_restart_noos .text.esp_restart_noos) + *(.literal.esp_system_reset_modules_on_exit .text.esp_system_reset_modules_on_exit) + *(.literal.esp_cpu_stall .text.esp_cpu_stall) + *(.literal.esp_cpu_unstall .text.esp_cpu_unstall) + *(.literal.esp_cpu_reset .text.esp_cpu_reset) + *(.literal.esp_cpu_wait_for_intr .text.esp_cpu_wait_for_intr) + *(.literal.esp_cpu_compare_and_set .text.esp_cpu_compare_and_set) + *(.literal.esp_gpio_reserve_pins .text.esp_gpio_reserve_pins) + *(.literal.esp_gpio_is_pin_reserved .text.esp_gpio_is_pin_reserved) + *(.literal.rtc_vddsdio_get_config .text.rtc_vddsdio_get_config) + *(.literal.rtc_vddsdio_set_config .text.rtc_vddsdio_set_config) + *libzephyr.a:esp_memory_utils.*(.literal .literal.* .text .text.*) + *libzephyr.a:rtc_clk.*(.literal .literal.* .text .text.*) + *libzephyr.a:rtc_clk_init.*(.literal .text .literal.* .text.*) + *libzephyr.a:rtc_sleep.*(.literal .literal.* .text .text.*) + *libzephyr.a:rtc_time.*(.literal .literal.* .text .text.*) + *libzephyr.a:systimer.*(.literal .literal.* .text .text.*) + *libzephyr.a:mspi_timing_config.*(.literal .literal.* .text .text.*) + *libzephyr.a:mspi_timing_tuning.*(.literal .literal.* .text .text.*) + *libzephyr.a:regi2c_ctrl.*(.literal .text .literal.* .text.*) + *(.literal.sar_periph_ctrl_power_enable .text.sar_periph_ctrl_power_enable) + *(.literal.GPIO_HOLD_MASK .text.GPIO_HOLD_MASK) + *libzephyr.a:esp_rom_cache_esp32s2_esp32s3.*(.literal .literal.* .text .text.*) + *libzephyr.a:cache_utils.*(.literal .text .literal.* .text.*) + *libzephyr.a:esp_rom_spiflash.*(.literal .literal.* .text .text.*) + *libzephyr.a:esp_rom_sys.*(.literal .literal.* .text .text.*) + *libzephyr.a:esp_rom_systimer.*(.literal .literal.* .text .text.*) + *libzephyr.a:esp_rom_wdt.*(.literal .literal.* .text .text.*) + *libzephyr.a:esp_rom_efuse.*(.literal .literal.* .text .text.*) + *libzephyr.a:esp_cache_utils.*(.literal .literal.* .text .text.*) + *libzephyr.a:esp_cache_msync.*(.literal .literal.* .text .text.*) + . = ALIGN(4); + } > iram0_0_seg AT > FLASH + .loader.text : + { + . = ALIGN(4); + _loader_text_start = ABSOLUTE(.); + *libzephyr.a:bootloader_clock_init.*(.literal .text .literal.* .text.*) + *libzephyr.a:bootloader_wdt.*(.literal .text .literal.* .text.*) + *libzephyr.a:bootloader_flash.*(.literal .text .literal.* .text.*) + *libzephyr.a:bootloader_flash_config_esp32s3.*(.literal .text .literal.* .text.*) + *libzephyr.a:bootloader_clock_loader.*(.literal .text .literal.* .text.*) + *libzephyr.a:bootloader_efuse.*(.literal .text .literal.* .text.*) + *libzephyr.a:bootloader_utility.*(.literal .text .literal.* .text.*) + *libzephyr.a:bootloader_sha.*(.literal .text .literal.* .text.*) + *libzephyr.a:bootloader_panic.*(.literal .text .literal.* .text.*) + *libzephyr.a:esp_image_format.*(.literal .text .literal.* .text.*) + *libzephyr.a:flash_encrypt.*(.literal .text .literal.* .text.*) + *libzephyr.a:flash_encryption_secure_features.*(.literal .text .literal.* .text.*) + *libzephyr.a:flash_partitions.*(.literal .text .literal.* .text.*) + *libzephyr.a:flash_qio_mode.*(.literal .text .literal.* .text.*) + *libzephyr.a:spi_flash_hal.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_hal_common.*(.literal .literal.* .text .text.*) + *libzephyr.a:esp_flash_spi_init.*(.literal .text .literal.* .text.*) + *libzephyr.a:secure_boot.*(.literal .text .literal.* .text.*) + *libzephyr.a:secure_boot_secure_features.*(.literal .text .literal.* .text.*) + *libzephyr.a:secure_boot_signatures_bootloader.*(.literal .text .literal.* .text.*) + *libzephyr.a:esp_efuse_table.*(.literal .text .literal.* .text.*) + *libzephyr.a:esp_efuse_fields.*(.literal .text .literal.* .text.*) + *libzephyr.a:esp_efuse_api.*(.literal .text .literal.* .text.*) + *libzephyr.a:esp_efuse_utility.*(.literal .text .literal.* .text.*) + *libzephyr.a:esp_efuse_api_key_esp32xx.*(.literal .text .literal.* .text.*) + *libzephyr.a:mpu_hal.*(.literal .text .literal.* .text.*) + *libzephyr.a:cpu_region_protect.*(.literal .text .literal.* .text.*) + *(.fini.literal) + *(.fini) + . = ALIGN(4); + _loader_text_end = ABSOLUTE(.); + } > iram0_0_seg AT > FLASH + .iram0.text_end (NOLOAD) : + { + . = ALIGN(4) + 16; + _iram_text_end = ABSOLUTE(.); + } > iram0_0_seg + .iram0.data : + { + . = ALIGN(4); + _iram_data_start = ABSOLUTE(.); + *(.iram.data) + *(.iram.data*) + _iram_data_end = ABSOLUTE(.); + } > iram0_0_seg AT > FLASH + .iram0.bss (NOLOAD) : + { + . = ALIGN(4); + _iram_bss_start = ABSOLUTE(.); + *(.iram.bss) + *(.iram.bss*) + _iram_bss_end = ABSOLUTE(.); + . = ALIGN(4); + _iram_end = ABSOLUTE(.); + } > iram0_0_seg + .dram0.dummy (NOLOAD): + { + . = ORIGIN(dram0_0_seg) + (MAX(_iram_end, ((1077346304) + (32768))) - ((1077346304) + (32768))); + . = ALIGN(16); + } > dram0_0_seg + .dram0.data : + { + . = ALIGN (8); + _data_start = ABSOLUTE(.); + __data_start = ABSOLUTE(.); + _btdm_data_start = ABSOLUTE(.); + *libbtdm_app.a:(.data .data.*) + . = ALIGN (4); + _btdm_data_end = ABSOLUTE(.); + *(.data) + *(.data.*) + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.sdata2) + *(.sdata2.*) + *(.gnu.linkonce.s2.*) + *(.srodata) + *(.srodata.*) + *libarch__xtensa__core.a:(.rodata .rodata.*) + *libkernel.a:fatal.*(.rodata .rodata.*) + *libkernel.a:init.*(.rodata .rodata.*) + *libzephyr.a:cbprintf_complete.*(.rodata .rodata.*) + *libzephyr.a:log_core.*(.rodata .rodata.*) + *libzephyr.a:log_backend_uart.*(.rodata .rodata.*) + *libzephyr.a:log_output.*(.rodata .rodata.*) + *libzephyr.a:log_minimal.*(.rodata .rodata.*) + *libzephyr.a:loader.*(.rodata .rodata.*) + *libzephyr.a:flash_init.*(.rodata .rodata.*) + *libzephyr.a:soc_flash_init.*(.rodata .rodata.*) + *libzephyr.a:console_init.*(.rodata .rodata.*) + *libzephyr.a:soc_init.*(.rodata .rodata.*) + *libzephyr.a:hw_init.*(.rodata .rodata.*) + *libzephyr.a:soc_random.*(.rodata .rodata.*) + *libdrivers__serial.a:uart_esp32.*(.rodata .rodata.*) + *libdrivers__flash.a:flash_esp32.*(.rodata .rodata.*) + *libzephyr.a:esp_mmu_map.*(.rodata .rodata.*) + *libzephyr.a:esp32s3-mp.*(.rodata .rodata.*) + *libzephyr.a:bootloader_flash.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:flash_mmap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:mmu_psram_flash.*(.rodata .rodata.*) + *libzephyr.a:esp_psram_impl_octal.*(.rodata .rodata.*) + *libzephyr.a:esp_psram_impl_quad.*(.rodata .rodata.*) + *libzephyr.a:efuse_hal.*(.rodata .rodata.*) + *libzephyr.a:mmu_hal.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_hal_iram.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_encrypt_hal_iram.*(.rodata .rodata.*) + *libzephyr.a:cache_hal.*(.rodata .rodata.*) + *libzephyr.a:ledc_hal_iram.*(.rodata .rodata.*) + *libzephyr.a:i2c_hal_iram.*(.rodata .rodata.*) + *libzephyr.a:wdt_hal_iram.*(.rodata .rodata.*) + *libzephyr.a:systimer_hal.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_hal_gpspi.*(.rodata .rodata.*) + *libzephyr.a:lldesc.*(.rodata .rodata.*) + *(.rodata.esp_log_write) + *(.rodata.esp_log_timestamp) + *(.rodata.esp_log_early_timestamp) + *(.rodata.esp_log_impl_lock) + *(.rodata.esp_log_impl_lock_timeout) + *(.rodata.esp_log_impl_unlock) + *libzephyr.a:spi_flash_chip_boya.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_chip_gd.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_chip_generic.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_chip_issi.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_chip_mxic.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_chip_mxic_opi.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_chip_th.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_chip_winbond.*(.rodata .rodata.*) + *libzephyr.a:memspi_host_driver.*(.rodata .rodata.*) + *libzephyr.a:flash_brownout_hook.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_wrap.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_hpm_enable.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_oct_flash_init.*(.rodata .rodata.*) + *libzephyr.a:flash_qio_mode.*(.rodata .rodata.*) + *libzephyr.a:flash_ops.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_os_func_app.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_os_func_noos.*(.rodata .rodata.*) + *libzephyr.a:esp_flash_api.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:esp_cache_utils.*(.rodata .rodata.*) + *libzephyr.a:esp_cache_msync.*(.rodata .rodata.*) + *(.rodata.esp_cpu_stall) + *(.rodata.esp_cpu_unstall) + *(.rodata.esp_cpu_reset) + *(.rodata.esp_cpu_wait_for_intr) + *(.rodata.esp_cpu_compare_and_set) + *(.rodata.esp_gpio_reserve_pins) + *(.rodata.esp_gpio_is_pin_reserved) + *(.rodata.rtc_vddsdio_get_config) + *(.rodata.rtc_vddsdio_set_config) + *libzephyr.a:esp_memory_utils.*(.rodata .rodata.*) + *libzephyr.a:rtc_clk.*(.rodata .rodata.*) + *libzephyr.a:rtc_clk_init.*(.rodata .rodata.*) + *libzephyr.a:systimer.*(.rodata .rodata.*) + *libzephyr.a:mspi_timing_config.*(.rodata .rodata.*) + *libzephyr.a:mspi_timing_tuning.*(.rodata .rodata.*) + *(.rodata.sar_periph_ctrl_power_enable) + *(.rodata.GPIO_HOLD_MASK) + *libzephyr.a:esp_rom_cache_esp32s2_esp32s3.*(.rodata .rodata.*) + *libzephyr.a:cache_utils.*(.rodata .rodata.*) + *libzephyr.a:esp_rom_spiflash.*(.rodata .rodata.*) + *libzephyr.a:esp_rom_sys.*(.rodata .rodata.*) + *libzephyr.a:esp_rom_systimer.*(.rodata .rodata.*) + *libzephyr.a:esp_rom_wdt.*(.rodata .rodata.*) + *libzephyr.a:esp_rom_efuse.*(.rodata .rodata.*) + *libzephyr.a:esp_err.*(.rodata .rodata.*) + *(.rodata.esp_system_abort) + *(.rodata.esp_restart_noos) + *(.rodata.esp_system_reset_modules_on_exit) + *libphy.a:(.rodata .rodata.*) + . = ALIGN(4); + . = ALIGN(4); + KEEP(*(.jcr)) + *(.dram1 .dram1.*) + . = ALIGN(4); + } > dram0_0_seg AT > FLASH + .loader.data : + { + . = ALIGN(4); + _loader_data_start = ABSOLUTE(.); + *libzephyr.a:bootloader_clock_init.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:bootloader_wdt.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:bootloader_flash.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:bootloader_efuse.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:cpu_util.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:clk.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:esp_clk.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:cpu_region_protect.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:spi_flash_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:spi_flash_hal_common.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:esp_flash_spi_init.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + . = ALIGN(4); + _loader_data_end = ABSOLUTE(.); + } > dram0_0_seg AT > FLASH + sw_isr_table : ALIGN_WITH_INPUT + { + . = ALIGN(4); + *(.gnu.linkonce.sw_isr_table*) + } > dram0_0_seg AT > FLASH + device_states : ALIGN_WITH_INPUT + { + . = ALIGN(4); + __device_states_start = .; + KEEP(*(".z_devstate")); + KEEP(*(".z_devstate.*")); + __device_states_end = .; + . = ALIGN(4); + } > dram0_0_seg AT > FLASH + log_mpsc_pbuf_area : ALIGN_WITH_INPUT { _log_mpsc_pbuf_list_start = .; *(SORT_BY_NAME(._log_mpsc_pbuf.static.*)); _log_mpsc_pbuf_list_end = .;; } > dram0_0_seg AT > FLASH + log_msg_ptr_area : ALIGN_WITH_INPUT { _log_msg_ptr_list_start = .; KEEP(*(SORT_BY_NAME(._log_msg_ptr.static.*))); _log_msg_ptr_list_end = .;; } > dram0_0_seg AT > FLASH + log_dynamic_area : ALIGN_WITH_INPUT { _log_dynamic_list_start = .; KEEP(*(SORT_BY_NAME(._log_dynamic.static.*))); _log_dynamic_list_end = .;; } > dram0_0_seg AT > FLASH + k_timer_area : ALIGN_WITH_INPUT { _k_timer_list_start = .; *(SORT_BY_NAME(._k_timer.static.*)); _k_timer_list_end = .;; } > dram0_0_seg AT > FLASH + k_mem_slab_area : ALIGN_WITH_INPUT { _k_mem_slab_list_start = .; *(SORT_BY_NAME(._k_mem_slab.static.*)); _k_mem_slab_list_end = .;; } > dram0_0_seg AT > FLASH + k_heap_area : ALIGN_WITH_INPUT { _k_heap_list_start = .; *(SORT_BY_NAME(._k_heap.static.*)); _k_heap_list_end = .;; } > dram0_0_seg AT > FLASH + k_mutex_area : ALIGN_WITH_INPUT { _k_mutex_list_start = .; *(SORT_BY_NAME(._k_mutex.static.*)); _k_mutex_list_end = .;; } > dram0_0_seg AT > FLASH + k_stack_area : ALIGN_WITH_INPUT { _k_stack_list_start = .; *(SORT_BY_NAME(._k_stack.static.*)); _k_stack_list_end = .;; } > dram0_0_seg AT > FLASH + k_msgq_area : ALIGN_WITH_INPUT { _k_msgq_list_start = .; *(SORT_BY_NAME(._k_msgq.static.*)); _k_msgq_list_end = .;; } > dram0_0_seg AT > FLASH + k_mbox_area : ALIGN_WITH_INPUT { _k_mbox_list_start = .; *(SORT_BY_NAME(._k_mbox.static.*)); _k_mbox_list_end = .;; } > dram0_0_seg AT > FLASH + k_pipe_area : ALIGN_WITH_INPUT { _k_pipe_list_start = .; *(SORT_BY_NAME(._k_pipe.static.*)); _k_pipe_list_end = .;; } > dram0_0_seg AT > FLASH + k_sem_area : ALIGN_WITH_INPUT { _k_sem_list_start = .; *(SORT_BY_NAME(._k_sem.static.*)); _k_sem_list_end = .;; } > dram0_0_seg AT > FLASH + k_event_area : ALIGN_WITH_INPUT { _k_event_list_start = .; *(SORT_BY_NAME(._k_event.static.*)); _k_event_list_end = .;; } > dram0_0_seg AT > FLASH + k_queue_area : ALIGN_WITH_INPUT { _k_queue_list_start = .; *(SORT_BY_NAME(._k_queue.static.*)); _k_queue_list_end = .;; } > dram0_0_seg AT > FLASH + k_fifo_area : ALIGN_WITH_INPUT { _k_fifo_list_start = .; *(SORT_BY_NAME(._k_fifo.static.*)); _k_fifo_list_end = .;; } > dram0_0_seg AT > FLASH + k_lifo_area : ALIGN_WITH_INPUT { _k_lifo_list_start = .; *(SORT_BY_NAME(._k_lifo.static.*)); _k_lifo_list_end = .;; } > dram0_0_seg AT > FLASH + k_condvar_area : ALIGN_WITH_INPUT { _k_condvar_list_start = .; *(SORT_BY_NAME(._k_condvar.static.*)); _k_condvar_list_end = .;; } > dram0_0_seg AT > FLASH + sys_mem_blocks_ptr_area : ALIGN_WITH_INPUT { _sys_mem_blocks_ptr_list_start = .; *(SORT_BY_NAME(._sys_mem_blocks_ptr.static.*)); _sys_mem_blocks_ptr_list_end = .;; } > dram0_0_seg AT > FLASH + net_buf_pool_area : ALIGN_WITH_INPUT { _net_buf_pool_list_start = .; KEEP(*(SORT_BY_NAME(._net_buf_pool.static.*))); _net_buf_pool_list_end = .;; } > dram0_0_seg AT > FLASH + + log_strings_area : ALIGN_WITH_INPUT { _log_strings_list_start = .; KEEP(*(SORT_BY_NAME(._log_strings.static.*))); _log_strings_list_end = .;; } > dram0_0_seg AT > FLASH + log_stmesp_ptr_area : ALIGN_WITH_INPUT { _log_stmesp_ptr_list_start = .; KEEP(*(SORT_BY_NAME(._log_stmesp_ptr.static.*))); _log_stmesp_ptr_list_end = .;; } > dram0_0_seg AT > FLASH + log_stmesp_str_area : ALIGN_WITH_INPUT { _log_stmesp_str_list_start = .; KEEP(*(SORT_BY_NAME(._log_stmesp_str.static.*))); _log_stmesp_str_list_end = .;; } > dram0_0_seg AT > FLASH + log_const_area : ALIGN_WITH_INPUT { _log_const_list_start = .; KEEP(*(SORT_BY_NAME(._log_const.static.*))); _log_const_list_end = .;; } > dram0_0_seg AT > FLASH + log_backend_area : ALIGN_WITH_INPUT { _log_backend_list_start = .; KEEP(*(SORT_BY_NAME(._log_backend.static.*))); _log_backend_list_end = .;; } > dram0_0_seg AT > FLASH + log_link_area : ALIGN_WITH_INPUT { _log_link_list_start = .; KEEP(*(SORT_BY_NAME(._log_link.static.*))); _log_link_list_end = .;; } > dram0_0_seg AT > FLASH + + .dram0.data_end : + { + __data_end = ABSOLUTE(.); + _data_end = ABSOLUTE(.); + } > dram0_0_seg AT > FLASH + .dram0.noinit (NOLOAD): + { + . = ALIGN(4); + __dram_noinit_start = ABSOLUTE(.); + *(.noinit) + *(.noinit.*) + __dram_noinit_end = ABSOLUTE(.); + . = ALIGN(4) ; + } > dram0_0_seg + .dram0.bss (NOLOAD) : + { + . = ALIGN (8); + _bss_start = ABSOLUTE(.); + __bss_start = ABSOLUTE(.); + _btdm_bss_start = ABSOLUTE(.); + *libbtdm_app.a:(.bss .bss.* COMMON) + . = ALIGN (4); + _btdm_bss_end = ABSOLUTE(.); + *(.dynsbss) + *(.sbss) + *(.sbss.*) + *(.gnu.linkonce.sb.*) + *(.scommon) + *(.sbss2) + *(.sbss2.*) + *(.gnu.linkonce.sb2.*) + *(.dynbss) + *(.bss) + *(.bss.*) + *(.share.mem) + *(.gnu.linkonce.b.*) + *(COMMON) + . = ALIGN (8); + _bss_end = ABSOLUTE(.); + __bss_end = ABSOLUTE(.); + } > dram0_0_seg + _image_ram_start = _init_start - 0x6f0000; + .last_ram_section (NOLOAD) : ALIGN_WITH_INPUT + { + _image_ram_end = .; + _image_ram_size = _image_ram_end - _image_ram_start; + _end = .; + z_mapped_end = .; + } > dram0_0_seg + ASSERT(((_end - ORIGIN(dram0_0_seg)) <= LENGTH(dram0_0_seg)), "DRAM segment data does not fit.") + _image_irom_start = LOADADDR(.text); + _image_irom_size = LOADADDR(.text) + SIZEOF(.text) - _image_irom_start; + _image_irom_vaddr = ADDR(.text); + .text_dummy (NOLOAD) : + { + . = ALIGN(0x10000); + } > FLASH + .text : ALIGN(0x10) + { + _stext = .; + _instruction_reserved_start = ABSOLUTE(.); + _text_start = ABSOLUTE(.); + __text_region_start = ABSOLUTE(.); + __rom_region_start = ABSOLUTE(.); + *libnet80211.a:( .wifi0iram .wifi0iram.* .wifislpiram .wifislpiram.* .wifiextrairam .wifiextrairam.*) + *libpp.a:( .wifi0iram .wifi0iram.* .wifislpiram .wifislpiram.* .wifiorslpiram .wifiorslpiram.* .wifiextrairam .wifiextrairam.*) + *libcoexist.a:(.wifi_slp_iram .wifi_slp_iram.* .coexiram .coexiram.* .coexsleepiram .coexsleepiram.*) + *libnet80211.a:( .wifirxiram .wifirxiram.* .wifislprxiram .wifislprxiram.*) + *libpp.a:( .wifirxiram .wifirxiram.* .wifislprxiram .wifislprxiram.*) + *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.irom0.text) + *(.fini.literal) + *(.fini) + *(.gnu.version) + *(.literal .text .literal.* .text.*) + . += 16; + _text_end = ABSOLUTE(.); + _instruction_reserved_end = ABSOLUTE(.); + __text_region_end = ABSOLUTE(.); + __rom_region_end = ABSOLUTE(.); + _etext = .; + } > irom0_0_seg AT > FLASH + .flash.rodata_dummy (NOLOAD): + { + _flash_rodata_dummy_start = ABSOLUTE(.); + . += SIZEOF(.text); + . = ALIGN(0x10000); + } > drom0_0_seg + _image_drom_start = LOADADDR(.flash.rodata); + _image_drom_size = LOADADDR(.flash.rodata_end) + SIZEOF(.flash.rodata_end) - _image_drom_start; + _image_drom_vaddr = ADDR(.flash.rodata); + .flash.rodata : ALIGN(0x10000) + { + _image_rodata_start = ABSOLUTE(.); + _rodata_reserved_start = ABSOLUTE(.); + _rodata_start = ABSOLUTE(.); + __rodata_region_start = ABSOLUTE(.); + . = ALIGN(4); + *(.irom1.text) + *(.gnu.linkonce.r.*) + *(.rodata) + *(.rodata.*) + *(.rodata1) + __XT_EXCEPTION_TABLE_ = ABSOLUTE(.); + *(.xt_except_table) + *(.gcc_except_table .gcc_except_table.*) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + . = (. + 3) & ~ 3; + __eh_frame = ABSOLUTE(.); + KEEP(*(.eh_frame)) + . = (. + 7) & ~ 3; + __XT_EXCEPTION_DESCS_ = ABSOLUTE(.); + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + __XT_EXCEPTION_DESCS_END__ = ABSOLUTE(.); + *(.xt_except_desc_end) + *(.dynamic) + *(.gnu.version_d) + . = ALIGN(4); + __rodata_region_end = ABSOLUTE(.); + _lit4_start = ABSOLUTE(.); + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + _lit4_end = ABSOLUTE(.); + . = ALIGN(4); + *(.rodata_wlog) + *(.rodata_wlog*) + . = ALIGN(4); + } > drom0_0_seg AT > FLASH + PROVIDE(__eh_frame_start = 0); + PROVIDE(__eh_frame_end = 0); + PROVIDE(__eh_frame_hdr_start = 0); + PROVIDE(__eh_frame_hdr_end = 0); + /DISCARD/ : { *(.eh_frame) } + init_array : ALIGN_WITH_INPUT + { + __zephyr_init_array_start = .; + KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) + SORT_BY_INIT_PRIORITY(.ctors.*))) + KEEP (*(.init_array .ctors)) + __zephyr_init_array_end = .; + } > drom0_0_seg AT > FLASH + ASSERT(__zephyr_init_array_start == __zephyr_init_array_end, + "GNU-style constructors required but STATIC_INIT_GNU not enabled") + initlevel : ALIGN_WITH_INPUT + { + __init_start = .; + __init_EARLY_start = .; KEEP(*(SORT(.z_init_EARLY_P_?_*))); KEEP(*(SORT(.z_init_EARLY_P_??_*))); KEEP(*(SORT(.z_init_EARLY_P_???_*))); + __init_PRE_KERNEL_1_start = .; KEEP(*(SORT(.z_init_PRE_KERNEL_1_P_?_*))); KEEP(*(SORT(.z_init_PRE_KERNEL_1_P_??_*))); KEEP(*(SORT(.z_init_PRE_KERNEL_1_P_???_*))); + __init_PRE_KERNEL_2_start = .; KEEP(*(SORT(.z_init_PRE_KERNEL_2_P_?_*))); KEEP(*(SORT(.z_init_PRE_KERNEL_2_P_??_*))); KEEP(*(SORT(.z_init_PRE_KERNEL_2_P_???_*))); + __init_POST_KERNEL_start = .; KEEP(*(SORT(.z_init_POST_KERNEL_P_?_*))); KEEP(*(SORT(.z_init_POST_KERNEL_P_??_*))); KEEP(*(SORT(.z_init_POST_KERNEL_P_???_*))); + __init_APPLICATION_start = .; KEEP(*(SORT(.z_init_APPLICATION_P_?_*))); KEEP(*(SORT(.z_init_APPLICATION_P_??_*))); KEEP(*(SORT(.z_init_APPLICATION_P_???_*))); + __init_SMP_start = .; KEEP(*(SORT(.z_init_SMP_P_?_*))); KEEP(*(SORT(.z_init_SMP_P_??_*))); KEEP(*(SORT(.z_init_SMP_P_???_*))); + __init_end = .; + } > drom0_0_seg AT > FLASH + device_area : ALIGN_WITH_INPUT { _device_list_start = .; KEEP(*(SORT(._device.static.*_?_*))); KEEP(*(SORT(._device.static.*_??_*))); KEEP(*(SORT(._device.static.*_???_*))); KEEP(*(SORT(._device.static.*_????_*))); KEEP(*(SORT(._device.static.*_?????_*))); _device_list_end = .;; } > drom0_0_seg AT > FLASH + initlevel_error : ALIGN_WITH_INPUT + { + KEEP(*(SORT(.z_init_*))) + } + ASSERT(SIZEOF(initlevel_error) == 0, "Undefined initialization levels used.") + app_shmem_regions : ALIGN_WITH_INPUT + { + __app_shmem_regions_start = .; + KEEP(*(SORT(.app_regions.*))); + __app_shmem_regions_end = .; + } > drom0_0_seg AT > FLASH + k_p4wq_initparam_area : ALIGN_WITH_INPUT { _k_p4wq_initparam_list_start = .; KEEP(*(SORT_BY_NAME(._k_p4wq_initparam.static.*))); _k_p4wq_initparam_list_end = .;; } > drom0_0_seg AT > FLASH + _static_thread_data_area : ALIGN_WITH_INPUT { __static_thread_data_list_start = .; KEEP(*(SORT_BY_NAME(.__static_thread_data.static.*))); __static_thread_data_list_end = .;; } > drom0_0_seg AT > FLASH + device_deps : ALIGN_WITH_INPUT + { +__device_deps_start = .; +KEEP(*(SORT(.__device_deps_pass2*))); +__device_deps_end = .; + } > drom0_0_seg AT > FLASH +gpio_driver_api_area : ALIGN_WITH_INPUT { _gpio_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._gpio_driver_api.static.*))); _gpio_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +spi_driver_api_area : ALIGN_WITH_INPUT { _spi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._spi_driver_api.static.*))); _spi_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +shared_irq_driver_api_area : ALIGN_WITH_INPUT { _shared_irq_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._shared_irq_driver_api.static.*))); _shared_irq_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +crypto_driver_api_area : ALIGN_WITH_INPUT { _crypto_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._crypto_driver_api.static.*))); _crypto_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +adc_driver_api_area : ALIGN_WITH_INPUT { _adc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._adc_driver_api.static.*))); _adc_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +auxdisplay_driver_api_area : ALIGN_WITH_INPUT { _auxdisplay_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._auxdisplay_driver_api.static.*))); _auxdisplay_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +bbram_driver_api_area : ALIGN_WITH_INPUT { _bbram_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bbram_driver_api.static.*))); _bbram_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +biometric_driver_api_area : ALIGN_WITH_INPUT { _biometric_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._biometric_driver_api.static.*))); _biometric_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +bt_hci_driver_api_area : ALIGN_WITH_INPUT { _bt_hci_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bt_hci_driver_api.static.*))); _bt_hci_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +can_driver_api_area : ALIGN_WITH_INPUT { _can_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._can_driver_api.static.*))); _can_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +cellular_driver_api_area : ALIGN_WITH_INPUT { _cellular_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._cellular_driver_api.static.*))); _cellular_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +charger_driver_api_area : ALIGN_WITH_INPUT { _charger_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._charger_driver_api.static.*))); _charger_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +clock_control_driver_api_area : ALIGN_WITH_INPUT { _clock_control_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._clock_control_driver_api.static.*))); _clock_control_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +comparator_driver_api_area : ALIGN_WITH_INPUT { _comparator_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._comparator_driver_api.static.*))); _comparator_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +coredump_driver_api_area : ALIGN_WITH_INPUT { _coredump_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._coredump_driver_api.static.*))); _coredump_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +counter_driver_api_area : ALIGN_WITH_INPUT { _counter_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._counter_driver_api.static.*))); _counter_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +crc_driver_api_area : ALIGN_WITH_INPUT { _crc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._crc_driver_api.static.*))); _crc_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +dac_driver_api_area : ALIGN_WITH_INPUT { _dac_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._dac_driver_api.static.*))); _dac_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +dai_driver_api_area : ALIGN_WITH_INPUT { _dai_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._dai_driver_api.static.*))); _dai_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +display_driver_api_area : ALIGN_WITH_INPUT { _display_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._display_driver_api.static.*))); _display_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +dma_driver_api_area : ALIGN_WITH_INPUT { _dma_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._dma_driver_api.static.*))); _dma_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +edac_driver_api_area : ALIGN_WITH_INPUT { _edac_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._edac_driver_api.static.*))); _edac_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +eeprom_driver_api_area : ALIGN_WITH_INPUT { _eeprom_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._eeprom_driver_api.static.*))); _eeprom_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +emul_bbram_driver_api_area : ALIGN_WITH_INPUT { _emul_bbram_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._emul_bbram_driver_api.static.*))); _emul_bbram_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +fuel_gauge_emul_driver_api_area : ALIGN_WITH_INPUT { _fuel_gauge_emul_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._fuel_gauge_emul_driver_api.static.*))); _fuel_gauge_emul_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +emul_sensor_driver_api_area : ALIGN_WITH_INPUT { _emul_sensor_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._emul_sensor_driver_api.static.*))); _emul_sensor_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +entropy_driver_api_area : ALIGN_WITH_INPUT { _entropy_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._entropy_driver_api.static.*))); _entropy_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +espi_driver_api_area : ALIGN_WITH_INPUT { _espi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._espi_driver_api.static.*))); _espi_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +espi_saf_driver_api_area : ALIGN_WITH_INPUT { _espi_saf_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._espi_saf_driver_api.static.*))); _espi_saf_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +flash_driver_api_area : ALIGN_WITH_INPUT { _flash_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._flash_driver_api.static.*))); _flash_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +fpga_driver_api_area : ALIGN_WITH_INPUT { _fpga_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._fpga_driver_api.static.*))); _fpga_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +fuel_gauge_driver_api_area : ALIGN_WITH_INPUT { _fuel_gauge_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._fuel_gauge_driver_api.static.*))); _fuel_gauge_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +gnss_driver_api_area : ALIGN_WITH_INPUT { _gnss_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._gnss_driver_api.static.*))); _gnss_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +haptics_driver_api_area : ALIGN_WITH_INPUT { _haptics_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._haptics_driver_api.static.*))); _haptics_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +hwspinlock_driver_api_area : ALIGN_WITH_INPUT { _hwspinlock_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._hwspinlock_driver_api.static.*))); _hwspinlock_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +i2c_driver_api_area : ALIGN_WITH_INPUT { _i2c_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i2c_driver_api.static.*))); _i2c_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +i2c_target_driver_api_area : ALIGN_WITH_INPUT { _i2c_target_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i2c_target_driver_api.static.*))); _i2c_target_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +i2s_driver_api_area : ALIGN_WITH_INPUT { _i2s_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i2s_driver_api.static.*))); _i2s_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +i3c_driver_api_area : ALIGN_WITH_INPUT { _i3c_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i3c_driver_api.static.*))); _i3c_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +ipm_driver_api_area : ALIGN_WITH_INPUT { _ipm_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ipm_driver_api.static.*))); _ipm_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +led_driver_api_area : ALIGN_WITH_INPUT { _led_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._led_driver_api.static.*))); _led_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +led_strip_driver_api_area : ALIGN_WITH_INPUT { _led_strip_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._led_strip_driver_api.static.*))); _led_strip_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +lora_driver_api_area : ALIGN_WITH_INPUT { _lora_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._lora_driver_api.static.*))); _lora_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +mbox_driver_api_area : ALIGN_WITH_INPUT { _mbox_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mbox_driver_api.static.*))); _mbox_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +mdio_driver_api_area : ALIGN_WITH_INPUT { _mdio_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mdio_driver_api.static.*))); _mdio_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +mipi_dbi_driver_api_area : ALIGN_WITH_INPUT { _mipi_dbi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mipi_dbi_driver_api.static.*))); _mipi_dbi_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +mipi_dsi_driver_api_area : ALIGN_WITH_INPUT { _mipi_dsi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mipi_dsi_driver_api.static.*))); _mipi_dsi_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +mspi_driver_api_area : ALIGN_WITH_INPUT { _mspi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mspi_driver_api.static.*))); _mspi_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +opamp_driver_api_area : ALIGN_WITH_INPUT { _opamp_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._opamp_driver_api.static.*))); _opamp_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +otp_driver_api_area : ALIGN_WITH_INPUT { _otp_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._otp_driver_api.static.*))); _otp_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +peci_driver_api_area : ALIGN_WITH_INPUT { _peci_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._peci_driver_api.static.*))); _peci_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +ps2_driver_api_area : ALIGN_WITH_INPUT { _ps2_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ps2_driver_api.static.*))); _ps2_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +ptp_clock_driver_api_area : ALIGN_WITH_INPUT { _ptp_clock_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ptp_clock_driver_api.static.*))); _ptp_clock_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +pwm_driver_api_area : ALIGN_WITH_INPUT { _pwm_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._pwm_driver_api.static.*))); _pwm_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +regulator_parent_driver_api_area : ALIGN_WITH_INPUT { _regulator_parent_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._regulator_parent_driver_api.static.*))); _regulator_parent_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +regulator_driver_api_area : ALIGN_WITH_INPUT { _regulator_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._regulator_driver_api.static.*))); _regulator_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +reset_driver_api_area : ALIGN_WITH_INPUT { _reset_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._reset_driver_api.static.*))); _reset_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +retained_mem_driver_api_area : ALIGN_WITH_INPUT { _retained_mem_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._retained_mem_driver_api.static.*))); _retained_mem_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +rtc_driver_api_area : ALIGN_WITH_INPUT { _rtc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._rtc_driver_api.static.*))); _rtc_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +sdhc_driver_api_area : ALIGN_WITH_INPUT { _sdhc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._sdhc_driver_api.static.*))); _sdhc_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +sensor_driver_api_area : ALIGN_WITH_INPUT { _sensor_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._sensor_driver_api.static.*))); _sensor_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +smbus_driver_api_area : ALIGN_WITH_INPUT { _smbus_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._smbus_driver_api.static.*))); _smbus_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +syscon_driver_api_area : ALIGN_WITH_INPUT { _syscon_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._syscon_driver_api.static.*))); _syscon_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +tee_driver_api_area : ALIGN_WITH_INPUT { _tee_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._tee_driver_api.static.*))); _tee_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +uaol_driver_api_area : ALIGN_WITH_INPUT { _uaol_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._uaol_driver_api.static.*))); _uaol_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +video_driver_api_area : ALIGN_WITH_INPUT { _video_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._video_driver_api.static.*))); _video_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +virtio_driver_api_area : ALIGN_WITH_INPUT { _virtio_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._virtio_driver_api.static.*))); _virtio_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +w1_driver_api_area : ALIGN_WITH_INPUT { _w1_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._w1_driver_api.static.*))); _w1_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +wdt_driver_api_area : ALIGN_WITH_INPUT { _wdt_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._wdt_driver_api.static.*))); _wdt_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +wuc_driver_api_area : ALIGN_WITH_INPUT { _wuc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._wuc_driver_api.static.*))); _wuc_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +can_transceiver_driver_api_area : ALIGN_WITH_INPUT { _can_transceiver_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._can_transceiver_driver_api.static.*))); _can_transceiver_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +nrf_clock_control_driver_api_area : ALIGN_WITH_INPUT { _nrf_clock_control_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._nrf_clock_control_driver_api.static.*))); _nrf_clock_control_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +i3c_target_driver_api_area : ALIGN_WITH_INPUT { _i3c_target_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i3c_target_driver_api.static.*))); _i3c_target_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +its_driver_api_area : ALIGN_WITH_INPUT { _its_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._its_driver_api.static.*))); _its_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +vtd_driver_api_area : ALIGN_WITH_INPUT { _vtd_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._vtd_driver_api.static.*))); _vtd_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +renesas_elc_driver_api_area : ALIGN_WITH_INPUT { _renesas_elc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._renesas_elc_driver_api.static.*))); _renesas_elc_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +tgpio_driver_api_area : ALIGN_WITH_INPUT { _tgpio_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._tgpio_driver_api.static.*))); _tgpio_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +pcie_ctrl_driver_api_area : ALIGN_WITH_INPUT { _pcie_ctrl_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._pcie_ctrl_driver_api.static.*))); _pcie_ctrl_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +pcie_ep_driver_api_area : ALIGN_WITH_INPUT { _pcie_ep_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._pcie_ep_driver_api.static.*))); _pcie_ep_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +psi5_driver_api_area : ALIGN_WITH_INPUT { _psi5_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._psi5_driver_api.static.*))); _psi5_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +sent_driver_api_area : ALIGN_WITH_INPUT { _sent_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._sent_driver_api.static.*))); _sent_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +svc_driver_api_area : ALIGN_WITH_INPUT { _svc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._svc_driver_api.static.*))); _svc_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +stepper_driver_api_area : ALIGN_WITH_INPUT { _stepper_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._stepper_driver_api.static.*))); _stepper_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +stepper_ctrl_driver_api_area : ALIGN_WITH_INPUT { _stepper_ctrl_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._stepper_ctrl_driver_api.static.*))); _stepper_ctrl_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +uart_driver_api_area : ALIGN_WITH_INPUT { _uart_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._uart_driver_api.static.*))); _uart_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +bc12_emul_driver_api_area : ALIGN_WITH_INPUT { _bc12_emul_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bc12_emul_driver_api.static.*))); _bc12_emul_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +bc12_driver_api_area : ALIGN_WITH_INPUT { _bc12_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bc12_driver_api.static.*))); _bc12_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +usbc_ppc_driver_api_area : ALIGN_WITH_INPUT { _usbc_ppc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._usbc_ppc_driver_api.static.*))); _usbc_ppc_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +tcpc_driver_api_area : ALIGN_WITH_INPUT { _tcpc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._tcpc_driver_api.static.*))); _tcpc_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +usbc_vbus_driver_api_area : ALIGN_WITH_INPUT { _usbc_vbus_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._usbc_vbus_driver_api.static.*))); _usbc_vbus_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +ivshmem_driver_api_area : ALIGN_WITH_INPUT { _ivshmem_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ivshmem_driver_api.static.*))); _ivshmem_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +ethphy_driver_api_area : ALIGN_WITH_INPUT { _ethphy_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ethphy_driver_api.static.*))); _ethphy_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +ztest : ALIGN_WITH_INPUT +{ + _ztest_expected_result_entry_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_expected_result_entry.static.*))); _ztest_expected_result_entry_list_end = .;; + _ztest_suite_node_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_suite_node.static.*))); _ztest_suite_node_list_end = .;; + _ztest_unit_test_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_unit_test.static.*))); _ztest_unit_test_list_end = .;; + _ztest_test_rule_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_test_rule.static.*))); _ztest_test_rule_list_end = .;; +} > drom0_0_seg AT > FLASH + bt_l2cap_fixed_chan_area : ALIGN_WITH_INPUT { _bt_l2cap_fixed_chan_list_start = .; KEEP(*(SORT_BY_NAME(._bt_l2cap_fixed_chan.static.*))); _bt_l2cap_fixed_chan_list_end = .;; } > drom0_0_seg AT > FLASH + bt_gatt_service_static_area : ALIGN_WITH_INPUT { _bt_gatt_service_static_list_start = .; KEEP(*(SORT_BY_NAME(._bt_gatt_service_static.static.*))); _bt_gatt_service_static_list_end = .;; } > drom0_0_seg AT > FLASH + tracing_backend_area : ALIGN_WITH_INPUT { _tracing_backend_list_start = .; KEEP(*(SORT_BY_NAME(._tracing_backend.static.*))); _tracing_backend_list_end = .;; } > drom0_0_seg AT > FLASH + zephyr_dbg_info : ALIGN_WITH_INPUT + { + KEEP(*(".dbg_thread_info")); + } > drom0_0_seg AT > FLASH + symbol_to_keep : ALIGN_WITH_INPUT + { + __symbol_to_keep_start = .; + KEEP(*(SORT(.symbol_to_keep*))); + __symbol_to_keep_end = .; + } > drom0_0_seg AT > FLASH + shell_area : ALIGN_WITH_INPUT { _shell_list_start = .; KEEP(*(SORT_BY_NAME(._shell.static.*))); _shell_list_end = .;; } > drom0_0_seg AT > FLASH + shell_root_cmds_area : ALIGN_WITH_INPUT { _shell_root_cmds_list_start = .; KEEP(*(SORT_BY_NAME(._shell_root_cmds.static.*))); _shell_root_cmds_list_end = .;; } > drom0_0_seg AT > FLASH + shell_subcmds_area : ALIGN_WITH_INPUT { _shell_subcmds_list_start = .; KEEP(*(SORT_BY_NAME(._shell_subcmds.static.*))); _shell_subcmds_list_end = .;; } > drom0_0_seg AT > FLASH + shell_dynamic_subcmds_area : ALIGN_WITH_INPUT { _shell_dynamic_subcmds_list_start = .; KEEP(*(SORT_BY_NAME(._shell_dynamic_subcmds.static.*))); _shell_dynamic_subcmds_list_end = .;; } > drom0_0_seg AT > FLASH + cfb_font_area : ALIGN_WITH_INPUT { _cfb_font_list_start = .; KEEP(*(SORT_BY_NAME(._cfb_font.static.*))); _cfb_font_list_end = .;; } > drom0_0_seg AT > FLASH +/DISCARD/ : +{ + KEEP(*(.irq_info*)) + KEEP(*(.intList*)) +} + .flash.rodata_end : ALIGN(0x10) + { + . = ALIGN(4); + _rodata_reserved_end = ABSOLUTE(.); + _image_rodata_end = ABSOLUTE(.); + } > drom0_0_seg AT > FLASH +/DISCARD/ : +{ + KEEP(*(.irq_info*)) + KEEP(*(.intList*)) +} + .stab 0 : ALIGN_WITH_INPUT { *(.stab) } + .stabstr 0 : ALIGN_WITH_INPUT { *(.stabstr) } + .stab.excl 0 : ALIGN_WITH_INPUT { *(.stab.excl) } + .stab.exclstr 0 : ALIGN_WITH_INPUT { *(.stab.exclstr) } + .stab.index 0 : ALIGN_WITH_INPUT { *(.stab.index) } + .stab.indexstr 0 : ALIGN_WITH_INPUT { *(.stab.indexstr) } + .gnu.build.attributes 0 : ALIGN_WITH_INPUT { *(.gnu.build.attributes .gnu.build.attributes.*) } + .comment 0 : ALIGN_WITH_INPUT { *(.comment) } + .debug 0 : ALIGN_WITH_INPUT { *(.debug) } + .line 0 : ALIGN_WITH_INPUT { *(.line) } + .debug_srcinfo 0 : ALIGN_WITH_INPUT { *(.debug_srcinfo) } + .debug_sfnames 0 : ALIGN_WITH_INPUT { *(.debug_sfnames) } + .debug_aranges 0 : ALIGN_WITH_INPUT { *(.debug_aranges) } + .debug_pubnames 0 : ALIGN_WITH_INPUT { *(.debug_pubnames) } + .debug_info 0 : ALIGN_WITH_INPUT { *(.debug_info .gnu.linkonce.wi.*) } + .debug_abbrev 0 : ALIGN_WITH_INPUT { *(.debug_abbrev) } + .debug_line 0 : ALIGN_WITH_INPUT { *(.debug_line .debug_line.* .debug_line_end ) } + .debug_frame 0 : ALIGN_WITH_INPUT { *(.debug_frame) } + .debug_str 0 : ALIGN_WITH_INPUT { *(.debug_str) } + .debug_loc 0 : ALIGN_WITH_INPUT { *(.debug_loc) } + .debug_macinfo 0 : ALIGN_WITH_INPUT { *(.debug_macinfo) } + .debug_weaknames 0 : ALIGN_WITH_INPUT { *(.debug_weaknames) } + .debug_funcnames 0 : ALIGN_WITH_INPUT { *(.debug_funcnames) } + .debug_typenames 0 : ALIGN_WITH_INPUT { *(.debug_typenames) } + .debug_varnames 0 : ALIGN_WITH_INPUT { *(.debug_varnames) } + .debug_pubtypes 0 : ALIGN_WITH_INPUT { *(.debug_pubtypes) } + .debug_ranges 0 : ALIGN_WITH_INPUT { *(.debug_ranges) } + .debug_addr 0 : ALIGN_WITH_INPUT { *(.debug_addr) } + .debug_line_str 0 : ALIGN_WITH_INPUT { *(.debug_line_str) } + .debug_loclists 0 : ALIGN_WITH_INPUT { *(.debug_loclists) } + .debug_macro 0 : ALIGN_WITH_INPUT { *(.debug_macro) } + .debug_names 0 : ALIGN_WITH_INPUT { *(.debug_names) } + .debug_rnglists 0 : ALIGN_WITH_INPUT { *(.debug_rnglists) } + .debug_str_offsets 0 : ALIGN_WITH_INPUT { *(.debug_str_offsets) } + .debug_sup 0 : ALIGN_WITH_INPUT { *(.debug_sup) } + .xtensa.info 0 : { *(.xtensa.info) } + .xt.insn 0 : + { + KEEP (*(.xt.insn)) + KEEP (*(.gnu.linkonce.x.*)) + } + .xt.prop 0 : + { + KEEP (*(.xt.prop)) + KEEP (*(.xt.prop.*)) + KEEP (*(.gnu.linkonce.prop.*)) + } + .xt.lit 0 : + { + KEEP (*(.xt.lit)) + KEEP (*(.xt.lit.*)) + KEEP (*(.gnu.linkonce.p.*)) + } + .xt.profile_range 0 : + { + KEEP (*(.xt.profile_range)) + KEEP (*(.gnu.linkonce.profile_range.*)) + } + .xt.profile_ranges 0 : + { + KEEP (*(.xt.profile_ranges)) + KEEP (*(.gnu.linkonce.xt.profile_ranges.*)) + } + .xt.profile_files 0 : + { + KEEP (*(.xt.profile_files)) + KEEP (*(.gnu.linkonce.xt.profile_files.*)) + } +} +ASSERT(((_iram_end - ORIGIN(iram0_0_seg)) <= LENGTH(iram0_0_seg)), + "IRAM0 segment data does not fit.") +ASSERT(((_end - ORIGIN(dram0_0_seg)) <= LENGTH(dram0_0_seg)), + "DRAM segment data does not fit.") diff --git a/build/zephyr/linker.cmd.dep b/build/zephyr/linker.cmd.dep new file mode 100644 index 0000000..b32c5a7 --- /dev/null +++ b/build/zephyr/linker.cmd.dep @@ -0,0 +1,73 @@ +linker.cmd: \ + /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/../esp32s3/default.ld \ + /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree.h \ + /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/devicetree_generated.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/irq_multilevel.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_macro.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_loops.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_listify.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_is_eq.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_inc.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_dec.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_x2.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/gcc.h \ + /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/include/stdbool.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/io-channels.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/clocks.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/gpio.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/spi.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/dma.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/pwms.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/fixed-partitions.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/ordinals.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/pinctrl.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/can.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/reset.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/mbox.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/port-endpoint.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/display.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/hwspinlock.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/map.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/wuc.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/mapped-partition.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/partitions.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/sections.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/section_tags.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/linker-defs.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/common.h \ + /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/offsets.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/linker-tool.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/linker-tool-gcc.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/kernel/mm.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/kernel/internal/mm.h \ + /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/../esp32s3/memory.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/rel-sections.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/llext-sections.ld \ + /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/snippets-rwdata.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/common-ram.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/iterable_sections.h \ + /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/snippets-data-sections.ld \ + /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/snippets-ram-sections.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/cplusplus-ram.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/kobject-data.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-logging.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/ram-end.ld \ + /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/snippets-rodata.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/cplusplus-rom.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-init.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-kernel-devices.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/device-deps.ld \ + /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/device-api-sections.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-ztest.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-net.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-bt.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-debug.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-misc.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/thread-local-storage.ld \ + /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/snippets-sections.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/intlist.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/debug-sections.ld diff --git a/build/zephyr/linker_zephyr_pre0.cmd b/build/zephyr/linker_zephyr_pre0.cmd new file mode 100644 index 0000000..acc7577 --- /dev/null +++ b/build/zephyr/linker_zephyr_pre0.cmd @@ -0,0 +1,872 @@ + +procpu_iram_end = (0x3fce9704 + 0x6f0000) - (0 + 0); +procpu_dram_end = 0x3fce9704 - (0 + 0); +procpu_iram_org = ((1077346304) + 0x4000); +procpu_iram_len = procpu_iram_end - procpu_iram_org; +procpu_dram_org = (1070104576); +procpu_dram_len = procpu_dram_end - procpu_dram_org; +procpu_irom_end = (1107296256) + (33554432) - (0 + 0); +procpu_drom_end = (1006632960) + (33554432) - (0 + 0); +procpu_irom_org = (1107296256); +procpu_irom_len = (33554432) - (0 + 0); +procpu_drom_org = (1006632960); +procpu_drom_len = (33554432) - (0 + 0); +rtc_iram_org = (1611653120); +rtc_iram_len = (8192); +rtc_slow_org = (1342177280); +rtc_slow_len = (8192); +MEMORY +{ + FLASH (R): org = 0x0, len = 8388608 - 0x100 + iram0_0_seg(RX): org = procpu_iram_org, len = procpu_iram_len + dram0_0_seg(RW): org = procpu_dram_org, len = procpu_dram_len + irom0_0_seg(RX): org = procpu_irom_org, len = procpu_irom_len + drom0_0_seg(R): org = procpu_drom_org, len = procpu_drom_len + rtc_iram_seg(RWX): org = rtc_iram_org, len = rtc_iram_len - 0 + rtc_slow_seg(RW): org = rtc_slow_org, len = rtc_slow_len + IDT_LIST(RW): org = 0x3ebfe010, len = 0x2000 +} +ENTRY("__start") +_heap_sentry = 0x3fce9704; +_libc_heap_size = _heap_sentry - _end; +SECTIONS +{ + _iram_dram_offset = 0x6f0000; + .rel.plt : ALIGN_WITH_INPUT + { + *(.rel.plt) + PROVIDE_HIDDEN (__rel_iplt_start = .); + *(.rel.iplt) + PROVIDE_HIDDEN (__rel_iplt_end = .); + } + .rela.plt : ALIGN_WITH_INPUT + { + *(.rela.plt) + PROVIDE_HIDDEN (__rela_iplt_start = .); + *(.rela.iplt) + PROVIDE_HIDDEN (__rela_iplt_end = .); + } + .rel.dyn : ALIGN_WITH_INPUT + { + *(.rel.*) + } + .rela.dyn : ALIGN_WITH_INPUT + { + *(.rela.*) + } + .rtc.text : + { + . = ALIGN(4); + _rtc_text_start = ABSOLUTE(.); + _rtc_fast_start = ABSOLUTE(.); + *(.rtc.literal .rtc.literal.*) + *(.rtc.text .rtc.text.*) + *(.rtc.entry.literal) + *(.rtc.entry.text) + . = ALIGN(4); + } > rtc_iram_seg AT > FLASH + .rtc.force_fast : + { + . = ALIGN(4); + _rtc_force_fast_start = ABSOLUTE(.); + *(.rtc.force_fast .rtc.force_fast.*) + . = ALIGN(4); + _rtc_force_fast_end = ABSOLUTE(.); + } > rtc_iram_seg AT > FLASH + .rtc.data : + { + . = ALIGN(4); + _rtc_data_start = ABSOLUTE(.); + *(.rtc.data .rtc.data.*) + *(.rtc.rodata .rtc.rodata.*) + _rtc_data_end = ABSOLUTE(.); + } > rtc_slow_seg AT > FLASH + .rtc.bss (NOLOAD) : + { + _rtc_bss_start = ABSOLUTE(.); + *(.rtc.bss .rtc.bss.*) + _rtc_bss_end = ABSOLUTE(.); + } > rtc_slow_seg + .rtc_noinit (NOLOAD) : + { + . = ALIGN(4); + *(.rtc_noinit .rtc_noinit.*) + . = ALIGN(4) ; + } > rtc_slow_seg + .rtc.force_slow : + { + . = ALIGN(4); + _rtc_force_slow_start = ABSOLUTE(.); + *(.rtc.force_slow .rtc.force_slow.*) + . = ALIGN(4); + _rtc_force_slow_end = ABSOLUTE(.); + } > rtc_slow_seg AT > FLASH + _rtc_slow_length = (_rtc_force_slow_end - _rtc_data_start); + _rtc_fast_length = (_rtc_force_fast_end - _rtc_fast_start); + .iram0.vectors : ALIGN(4) + { + _init_start = ABSOLUTE(.); + . = 0x0; + KEEP(*(.WindowVectors.text)); + . = 0x180; + KEEP(*(.Level2InterruptVector.text)); + . = 0x1c0; + KEEP(*(.Level3InterruptVector.text)); + . = 0x200; + KEEP(*(.Level4InterruptVector.text)); + . = 0x240; + KEEP(*(.Level5InterruptVector.text)); + . = 0x280; + KEEP(*(.DebugExceptionVector.text)); + . = 0x2c0; + KEEP(*(.NMIExceptionVector.text)); + . = 0x300; + KEEP(*(.KernelExceptionVector.text)); + . = 0x340; + KEEP(*(.UserExceptionVector.text)); + . = 0x3C0; + KEEP(*(.DoubleExceptionVector.text)); + . = 0x400; + _invalid_pc_placeholder = ABSOLUTE(.); + *(.*Vector.literal) + *(.UserEnter.literal); + *(.UserEnter.text); + . = ALIGN (16); + *(.entry.text) + *(.init.literal) + *(.init) + _init_end = ABSOLUTE(.); + _iram_start = ABSOLUTE(.); + } > iram0_0_seg AT > FLASH + .iram0.text : ALIGN(4) + { + _iram_text_start = ABSOLUTE(.); + *(.iram1 .iram1.*) + *(.iram0.literal .iram.literal .iram.text.literal .iram0.text .iram.text) + *libarch__xtensa__core.a:(.literal .text .literal.* .text.*) + *libarch__common.a:(.literal .text .literal.* .text.*) + *libkernel.a:(.literal .text .literal.* .text.*) + *libgcc.a:lib2funcs.*(.literal .text .literal.* .text.*) + *libzephyr.a:cbprintf_packaged.*(.literal .text .literal.* .text.*) + *libdrivers__flash.a:flash_esp32.*(.literal .text .literal.* .text.*) + *libzephyr.a:windowspill_asm.*(.literal .text .literal.* .text.*) + *libzephyr.a:log_noos.*(.literal .text .literal.* .text.*) + *libdrivers__timer.a:xtensa_sys_timer.*(.literal .text .literal.* .text.*) + *libzephyr.a:log_core.*(.literal .text .literal.* .text.*) + *libzephyr.a:cbprintf_complete.*(.literal .text .literal.* .text.*) + *libzephyr.a:printk.*(.literal.printk .literal.vprintk .literal.char_out .text.printk .text.vprintk .text.char_out) + *libzephyr.a:log_msg.*(.literal .text .literal.* .text.*) + *libzephyr.a:log_list.*(.literal .text .literal.* .text.*) + *libdrivers__console.a:uart_console.*(.literal.console_out .text.console_out) + *libzephyr.a:log_output.*(.literal .text .literal.* .text.*) + *libzephyr.a:log_backend_uart.*(.literal .text .literal.* .text.*) + *libzephyr.a:log_minimal.*(.literal .literal.* .text .text.*) + *libzephyr.a:loader.*(.literal .text .literal.* .text.*) + *libzephyr.a:flash_init.*(.literal .text .literal.* .text.*) + *libzephyr.a:soc_flash_init.*(.literal .text .literal.* .text.*) + *libzephyr.a:console_init.*(.literal .text .literal.* .text.*) + *libzephyr.a:soc_init.*(.literal .text .literal.* .text.*) + *libzephyr.a:hw_init.*(.literal .text .literal.* .text.*) + *libzephyr.a:soc_random.*(.literal .text .literal.* .text.*) + *libzephyr.a:esp_mmu_map.*(.literal .literal.* .text .text.*) + *libphy.a:(.phyiram .phyiram.*) + *libgcov.a:(.literal .text .literal.* .text.*) + *librtc.a:(.literal .text .literal.* .text.*) + *libzephyr.a:esp32s3-mp.*(.literal .text .literal.* .text.*) + *libzephyr.a:bootloader_flash.*(.literal .text .literal.* .text.*) + *libzephyr.a:flash_mmap.*(.literal .text .literal.* .text.*) + *libzephyr.a:mmu_psram_flash.*(.literal .literal.* .text .text.*) + *libzephyr.a:esp_psram_impl_quad.*(.literal .literal.* .text .text.*) + *libzephyr.a:esp_psram_impl_octal.*(.literal .literal.* .text .text.*) + *libzephyr.a:efuse_hal.*(.literal .text .literal.* .text.*) + *libzephyr.a:mmu_hal.*(.literal .text .literal.* .text.*) + *libzephyr.a:spi_flash_hal_iram.*(.literal .text .literal.* .text.*) + *libzephyr.a:spi_flash_encrypt_hal_iram.*(.literal .text .literal.* .text.*) + *libzephyr.a:cache_hal.*(.literal .text .literal.* .text.*) + *libzephyr.a:ledc_hal_iram.*(.literal .text .literal.* .text.*) + *libzephyr.a:i2c_hal_iram.*(.literal .text .literal.* .text.*) + *libzephyr.a:wdt_hal_iram.*(.literal .text .literal.* .text.*) + *libzephyr.a:systimer_hal.*(.literal .text .literal.* .text.*) + *libzephyr.a:spi_flash_hal_gpspi.*(.literal .text .literal.* .text.*) + *libzephyr.a:lldesc.*(.literal .literal.* .text .text.*) + *(.literal.esp_log_write .text.esp_log_write) + *(.literal.esp_log_timestamp .text.esp_log_timestamp) + *(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) + *(.literal.esp_log_impl_lock .text.esp_log_impl_lock) + *(.literal.esp_log_impl_lock_timeout .text.esp_log_impl_lock_timeout) + *(.literal.esp_log_impl_unlock .text.esp_log_impl_unlock) + *libzephyr.a:spi_flash_chip_boya.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_chip_gd.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_chip_issi.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_chip_mxic.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_chip_mxic_opi.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_chip_th.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_chip_winbond.*(.literal .literal.* .text .text.*) + *libzephyr.a:memspi_host_driver.*(.literal .literal.* .text .text.*) + *libzephyr.a:flash_brownout_hook.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_wrap.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_hpm_enable.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_oct_flash_init.*(.literal .literal.* .text .text.*) + *libzephyr.a:flash_ops.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_os_func_app.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_os_func_noos.*(.literal .literal.* .text .text.*) + *libzephyr.a:esp_flash_api.*(.literal .text .literal.* .text.*) + *libzephyr.a:esp_err.*(.literal .literal.* .text .text.*) + *(.literal.esp_system_abort .text.esp_system_abort) + *(.literal.esp_restart_noos .text.esp_restart_noos) + *(.literal.esp_system_reset_modules_on_exit .text.esp_system_reset_modules_on_exit) + *(.literal.esp_cpu_stall .text.esp_cpu_stall) + *(.literal.esp_cpu_unstall .text.esp_cpu_unstall) + *(.literal.esp_cpu_reset .text.esp_cpu_reset) + *(.literal.esp_cpu_wait_for_intr .text.esp_cpu_wait_for_intr) + *(.literal.esp_cpu_compare_and_set .text.esp_cpu_compare_and_set) + *(.literal.esp_gpio_reserve_pins .text.esp_gpio_reserve_pins) + *(.literal.esp_gpio_is_pin_reserved .text.esp_gpio_is_pin_reserved) + *(.literal.rtc_vddsdio_get_config .text.rtc_vddsdio_get_config) + *(.literal.rtc_vddsdio_set_config .text.rtc_vddsdio_set_config) + *libzephyr.a:esp_memory_utils.*(.literal .literal.* .text .text.*) + *libzephyr.a:rtc_clk.*(.literal .literal.* .text .text.*) + *libzephyr.a:rtc_clk_init.*(.literal .text .literal.* .text.*) + *libzephyr.a:rtc_sleep.*(.literal .literal.* .text .text.*) + *libzephyr.a:rtc_time.*(.literal .literal.* .text .text.*) + *libzephyr.a:systimer.*(.literal .literal.* .text .text.*) + *libzephyr.a:mspi_timing_config.*(.literal .literal.* .text .text.*) + *libzephyr.a:mspi_timing_tuning.*(.literal .literal.* .text .text.*) + *libzephyr.a:regi2c_ctrl.*(.literal .text .literal.* .text.*) + *(.literal.sar_periph_ctrl_power_enable .text.sar_periph_ctrl_power_enable) + *(.literal.GPIO_HOLD_MASK .text.GPIO_HOLD_MASK) + *libzephyr.a:esp_rom_cache_esp32s2_esp32s3.*(.literal .literal.* .text .text.*) + *libzephyr.a:cache_utils.*(.literal .text .literal.* .text.*) + *libzephyr.a:esp_rom_spiflash.*(.literal .literal.* .text .text.*) + *libzephyr.a:esp_rom_sys.*(.literal .literal.* .text .text.*) + *libzephyr.a:esp_rom_systimer.*(.literal .literal.* .text .text.*) + *libzephyr.a:esp_rom_wdt.*(.literal .literal.* .text .text.*) + *libzephyr.a:esp_rom_efuse.*(.literal .literal.* .text .text.*) + *libzephyr.a:esp_cache_utils.*(.literal .literal.* .text .text.*) + *libzephyr.a:esp_cache_msync.*(.literal .literal.* .text .text.*) + . = ALIGN(4); + } > iram0_0_seg AT > FLASH + .loader.text : + { + . = ALIGN(4); + _loader_text_start = ABSOLUTE(.); + *libzephyr.a:bootloader_clock_init.*(.literal .text .literal.* .text.*) + *libzephyr.a:bootloader_wdt.*(.literal .text .literal.* .text.*) + *libzephyr.a:bootloader_flash.*(.literal .text .literal.* .text.*) + *libzephyr.a:bootloader_flash_config_esp32s3.*(.literal .text .literal.* .text.*) + *libzephyr.a:bootloader_clock_loader.*(.literal .text .literal.* .text.*) + *libzephyr.a:bootloader_efuse.*(.literal .text .literal.* .text.*) + *libzephyr.a:bootloader_utility.*(.literal .text .literal.* .text.*) + *libzephyr.a:bootloader_sha.*(.literal .text .literal.* .text.*) + *libzephyr.a:bootloader_panic.*(.literal .text .literal.* .text.*) + *libzephyr.a:esp_image_format.*(.literal .text .literal.* .text.*) + *libzephyr.a:flash_encrypt.*(.literal .text .literal.* .text.*) + *libzephyr.a:flash_encryption_secure_features.*(.literal .text .literal.* .text.*) + *libzephyr.a:flash_partitions.*(.literal .text .literal.* .text.*) + *libzephyr.a:flash_qio_mode.*(.literal .text .literal.* .text.*) + *libzephyr.a:spi_flash_hal.*(.literal .literal.* .text .text.*) + *libzephyr.a:spi_flash_hal_common.*(.literal .literal.* .text .text.*) + *libzephyr.a:esp_flash_spi_init.*(.literal .text .literal.* .text.*) + *libzephyr.a:secure_boot.*(.literal .text .literal.* .text.*) + *libzephyr.a:secure_boot_secure_features.*(.literal .text .literal.* .text.*) + *libzephyr.a:secure_boot_signatures_bootloader.*(.literal .text .literal.* .text.*) + *libzephyr.a:esp_efuse_table.*(.literal .text .literal.* .text.*) + *libzephyr.a:esp_efuse_fields.*(.literal .text .literal.* .text.*) + *libzephyr.a:esp_efuse_api.*(.literal .text .literal.* .text.*) + *libzephyr.a:esp_efuse_utility.*(.literal .text .literal.* .text.*) + *libzephyr.a:esp_efuse_api_key_esp32xx.*(.literal .text .literal.* .text.*) + *libzephyr.a:mpu_hal.*(.literal .text .literal.* .text.*) + *libzephyr.a:cpu_region_protect.*(.literal .text .literal.* .text.*) + *(.fini.literal) + *(.fini) + . = ALIGN(4); + _loader_text_end = ABSOLUTE(.); + } > iram0_0_seg AT > FLASH + .iram0.text_end (NOLOAD) : + { + . = ALIGN(4) + 16; + _iram_text_end = ABSOLUTE(.); + } > iram0_0_seg + .iram0.data : + { + . = ALIGN(4); + _iram_data_start = ABSOLUTE(.); + *(.iram.data) + *(.iram.data*) + _iram_data_end = ABSOLUTE(.); + } > iram0_0_seg AT > FLASH + .iram0.bss (NOLOAD) : + { + . = ALIGN(4); + _iram_bss_start = ABSOLUTE(.); + *(.iram.bss) + *(.iram.bss*) + _iram_bss_end = ABSOLUTE(.); + . = ALIGN(4); + _iram_end = ABSOLUTE(.); + } > iram0_0_seg + .dram0.dummy (NOLOAD): + { + . = ORIGIN(dram0_0_seg) + (MAX(_iram_end, ((1077346304) + (32768))) - ((1077346304) + (32768))); + . = ALIGN(16); + } > dram0_0_seg + .dram0.data : + { + . = ALIGN (8); + _data_start = ABSOLUTE(.); + __data_start = ABSOLUTE(.); + _btdm_data_start = ABSOLUTE(.); + *libbtdm_app.a:(.data .data.*) + . = ALIGN (4); + _btdm_data_end = ABSOLUTE(.); + *(.data) + *(.data.*) + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.sdata2) + *(.sdata2.*) + *(.gnu.linkonce.s2.*) + *(.srodata) + *(.srodata.*) + *libarch__xtensa__core.a:(.rodata .rodata.*) + *libkernel.a:fatal.*(.rodata .rodata.*) + *libkernel.a:init.*(.rodata .rodata.*) + *libzephyr.a:cbprintf_complete.*(.rodata .rodata.*) + *libzephyr.a:log_core.*(.rodata .rodata.*) + *libzephyr.a:log_backend_uart.*(.rodata .rodata.*) + *libzephyr.a:log_output.*(.rodata .rodata.*) + *libzephyr.a:log_minimal.*(.rodata .rodata.*) + *libzephyr.a:loader.*(.rodata .rodata.*) + *libzephyr.a:flash_init.*(.rodata .rodata.*) + *libzephyr.a:soc_flash_init.*(.rodata .rodata.*) + *libzephyr.a:console_init.*(.rodata .rodata.*) + *libzephyr.a:soc_init.*(.rodata .rodata.*) + *libzephyr.a:hw_init.*(.rodata .rodata.*) + *libzephyr.a:soc_random.*(.rodata .rodata.*) + *libdrivers__serial.a:uart_esp32.*(.rodata .rodata.*) + *libdrivers__flash.a:flash_esp32.*(.rodata .rodata.*) + *libzephyr.a:esp_mmu_map.*(.rodata .rodata.*) + *libzephyr.a:esp32s3-mp.*(.rodata .rodata.*) + *libzephyr.a:bootloader_flash.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:flash_mmap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:mmu_psram_flash.*(.rodata .rodata.*) + *libzephyr.a:esp_psram_impl_octal.*(.rodata .rodata.*) + *libzephyr.a:esp_psram_impl_quad.*(.rodata .rodata.*) + *libzephyr.a:efuse_hal.*(.rodata .rodata.*) + *libzephyr.a:mmu_hal.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_hal_iram.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_encrypt_hal_iram.*(.rodata .rodata.*) + *libzephyr.a:cache_hal.*(.rodata .rodata.*) + *libzephyr.a:ledc_hal_iram.*(.rodata .rodata.*) + *libzephyr.a:i2c_hal_iram.*(.rodata .rodata.*) + *libzephyr.a:wdt_hal_iram.*(.rodata .rodata.*) + *libzephyr.a:systimer_hal.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_hal_gpspi.*(.rodata .rodata.*) + *libzephyr.a:lldesc.*(.rodata .rodata.*) + *(.rodata.esp_log_write) + *(.rodata.esp_log_timestamp) + *(.rodata.esp_log_early_timestamp) + *(.rodata.esp_log_impl_lock) + *(.rodata.esp_log_impl_lock_timeout) + *(.rodata.esp_log_impl_unlock) + *libzephyr.a:spi_flash_chip_boya.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_chip_gd.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_chip_generic.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_chip_issi.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_chip_mxic.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_chip_mxic_opi.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_chip_th.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_chip_winbond.*(.rodata .rodata.*) + *libzephyr.a:memspi_host_driver.*(.rodata .rodata.*) + *libzephyr.a:flash_brownout_hook.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_wrap.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_hpm_enable.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_oct_flash_init.*(.rodata .rodata.*) + *libzephyr.a:flash_qio_mode.*(.rodata .rodata.*) + *libzephyr.a:flash_ops.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_os_func_app.*(.rodata .rodata.*) + *libzephyr.a:spi_flash_os_func_noos.*(.rodata .rodata.*) + *libzephyr.a:esp_flash_api.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:esp_cache_utils.*(.rodata .rodata.*) + *libzephyr.a:esp_cache_msync.*(.rodata .rodata.*) + *(.rodata.esp_cpu_stall) + *(.rodata.esp_cpu_unstall) + *(.rodata.esp_cpu_reset) + *(.rodata.esp_cpu_wait_for_intr) + *(.rodata.esp_cpu_compare_and_set) + *(.rodata.esp_gpio_reserve_pins) + *(.rodata.esp_gpio_is_pin_reserved) + *(.rodata.rtc_vddsdio_get_config) + *(.rodata.rtc_vddsdio_set_config) + *libzephyr.a:esp_memory_utils.*(.rodata .rodata.*) + *libzephyr.a:rtc_clk.*(.rodata .rodata.*) + *libzephyr.a:rtc_clk_init.*(.rodata .rodata.*) + *libzephyr.a:systimer.*(.rodata .rodata.*) + *libzephyr.a:mspi_timing_config.*(.rodata .rodata.*) + *libzephyr.a:mspi_timing_tuning.*(.rodata .rodata.*) + *(.rodata.sar_periph_ctrl_power_enable) + *(.rodata.GPIO_HOLD_MASK) + *libzephyr.a:esp_rom_cache_esp32s2_esp32s3.*(.rodata .rodata.*) + *libzephyr.a:cache_utils.*(.rodata .rodata.*) + *libzephyr.a:esp_rom_spiflash.*(.rodata .rodata.*) + *libzephyr.a:esp_rom_sys.*(.rodata .rodata.*) + *libzephyr.a:esp_rom_systimer.*(.rodata .rodata.*) + *libzephyr.a:esp_rom_wdt.*(.rodata .rodata.*) + *libzephyr.a:esp_rom_efuse.*(.rodata .rodata.*) + *libzephyr.a:esp_err.*(.rodata .rodata.*) + *(.rodata.esp_system_abort) + *(.rodata.esp_restart_noos) + *(.rodata.esp_system_reset_modules_on_exit) + *libphy.a:(.rodata .rodata.*) + . = ALIGN(4); + . = ALIGN(4); + KEEP(*(.jcr)) + *(.dram1 .dram1.*) + . = ALIGN(4); + } > dram0_0_seg AT > FLASH + .loader.data : + { + . = ALIGN(4); + _loader_data_start = ABSOLUTE(.); + *libzephyr.a:bootloader_clock_init.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:bootloader_wdt.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:bootloader_flash.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:bootloader_efuse.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:cpu_util.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:clk.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:esp_clk.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:cpu_region_protect.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:spi_flash_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:spi_flash_hal_common.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libzephyr.a:esp_flash_spi_init.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + . = ALIGN(4); + _loader_data_end = ABSOLUTE(.); + } > dram0_0_seg AT > FLASH + sw_isr_table : ALIGN_WITH_INPUT + { + . = ALIGN(4); + *(.gnu.linkonce.sw_isr_table*) + } > dram0_0_seg AT > FLASH + device_states : ALIGN_WITH_INPUT + { + . = ALIGN(4); + __device_states_start = .; + KEEP(*(".z_devstate")); + KEEP(*(".z_devstate.*")); + __device_states_end = .; + . = ALIGN(4); + } > dram0_0_seg AT > FLASH + log_mpsc_pbuf_area : ALIGN_WITH_INPUT { _log_mpsc_pbuf_list_start = .; *(SORT_BY_NAME(._log_mpsc_pbuf.static.*)); _log_mpsc_pbuf_list_end = .;; } > dram0_0_seg AT > FLASH + log_msg_ptr_area : ALIGN_WITH_INPUT { _log_msg_ptr_list_start = .; KEEP(*(SORT_BY_NAME(._log_msg_ptr.static.*))); _log_msg_ptr_list_end = .;; } > dram0_0_seg AT > FLASH + log_dynamic_area : ALIGN_WITH_INPUT { _log_dynamic_list_start = .; KEEP(*(SORT_BY_NAME(._log_dynamic.static.*))); _log_dynamic_list_end = .;; } > dram0_0_seg AT > FLASH + k_timer_area : ALIGN_WITH_INPUT { _k_timer_list_start = .; *(SORT_BY_NAME(._k_timer.static.*)); _k_timer_list_end = .;; } > dram0_0_seg AT > FLASH + k_mem_slab_area : ALIGN_WITH_INPUT { _k_mem_slab_list_start = .; *(SORT_BY_NAME(._k_mem_slab.static.*)); _k_mem_slab_list_end = .;; } > dram0_0_seg AT > FLASH + k_heap_area : ALIGN_WITH_INPUT { _k_heap_list_start = .; *(SORT_BY_NAME(._k_heap.static.*)); _k_heap_list_end = .;; } > dram0_0_seg AT > FLASH + k_mutex_area : ALIGN_WITH_INPUT { _k_mutex_list_start = .; *(SORT_BY_NAME(._k_mutex.static.*)); _k_mutex_list_end = .;; } > dram0_0_seg AT > FLASH + k_stack_area : ALIGN_WITH_INPUT { _k_stack_list_start = .; *(SORT_BY_NAME(._k_stack.static.*)); _k_stack_list_end = .;; } > dram0_0_seg AT > FLASH + k_msgq_area : ALIGN_WITH_INPUT { _k_msgq_list_start = .; *(SORT_BY_NAME(._k_msgq.static.*)); _k_msgq_list_end = .;; } > dram0_0_seg AT > FLASH + k_mbox_area : ALIGN_WITH_INPUT { _k_mbox_list_start = .; *(SORT_BY_NAME(._k_mbox.static.*)); _k_mbox_list_end = .;; } > dram0_0_seg AT > FLASH + k_pipe_area : ALIGN_WITH_INPUT { _k_pipe_list_start = .; *(SORT_BY_NAME(._k_pipe.static.*)); _k_pipe_list_end = .;; } > dram0_0_seg AT > FLASH + k_sem_area : ALIGN_WITH_INPUT { _k_sem_list_start = .; *(SORT_BY_NAME(._k_sem.static.*)); _k_sem_list_end = .;; } > dram0_0_seg AT > FLASH + k_event_area : ALIGN_WITH_INPUT { _k_event_list_start = .; *(SORT_BY_NAME(._k_event.static.*)); _k_event_list_end = .;; } > dram0_0_seg AT > FLASH + k_queue_area : ALIGN_WITH_INPUT { _k_queue_list_start = .; *(SORT_BY_NAME(._k_queue.static.*)); _k_queue_list_end = .;; } > dram0_0_seg AT > FLASH + k_fifo_area : ALIGN_WITH_INPUT { _k_fifo_list_start = .; *(SORT_BY_NAME(._k_fifo.static.*)); _k_fifo_list_end = .;; } > dram0_0_seg AT > FLASH + k_lifo_area : ALIGN_WITH_INPUT { _k_lifo_list_start = .; *(SORT_BY_NAME(._k_lifo.static.*)); _k_lifo_list_end = .;; } > dram0_0_seg AT > FLASH + k_condvar_area : ALIGN_WITH_INPUT { _k_condvar_list_start = .; *(SORT_BY_NAME(._k_condvar.static.*)); _k_condvar_list_end = .;; } > dram0_0_seg AT > FLASH + sys_mem_blocks_ptr_area : ALIGN_WITH_INPUT { _sys_mem_blocks_ptr_list_start = .; *(SORT_BY_NAME(._sys_mem_blocks_ptr.static.*)); _sys_mem_blocks_ptr_list_end = .;; } > dram0_0_seg AT > FLASH + net_buf_pool_area : ALIGN_WITH_INPUT { _net_buf_pool_list_start = .; KEEP(*(SORT_BY_NAME(._net_buf_pool.static.*))); _net_buf_pool_list_end = .;; } > dram0_0_seg AT > FLASH + + log_strings_area : ALIGN_WITH_INPUT { _log_strings_list_start = .; KEEP(*(SORT_BY_NAME(._log_strings.static.*))); _log_strings_list_end = .;; } > dram0_0_seg AT > FLASH + log_stmesp_ptr_area : ALIGN_WITH_INPUT { _log_stmesp_ptr_list_start = .; KEEP(*(SORT_BY_NAME(._log_stmesp_ptr.static.*))); _log_stmesp_ptr_list_end = .;; } > dram0_0_seg AT > FLASH + log_stmesp_str_area : ALIGN_WITH_INPUT { _log_stmesp_str_list_start = .; KEEP(*(SORT_BY_NAME(._log_stmesp_str.static.*))); _log_stmesp_str_list_end = .;; } > dram0_0_seg AT > FLASH + log_const_area : ALIGN_WITH_INPUT { _log_const_list_start = .; KEEP(*(SORT_BY_NAME(._log_const.static.*))); _log_const_list_end = .;; } > dram0_0_seg AT > FLASH + log_backend_area : ALIGN_WITH_INPUT { _log_backend_list_start = .; KEEP(*(SORT_BY_NAME(._log_backend.static.*))); _log_backend_list_end = .;; } > dram0_0_seg AT > FLASH + log_link_area : ALIGN_WITH_INPUT { _log_link_list_start = .; KEEP(*(SORT_BY_NAME(._log_link.static.*))); _log_link_list_end = .;; } > dram0_0_seg AT > FLASH + + .dram0.data_end : + { + __data_end = ABSOLUTE(.); + _data_end = ABSOLUTE(.); + } > dram0_0_seg AT > FLASH + .dram0.noinit (NOLOAD): + { + . = ALIGN(4); + __dram_noinit_start = ABSOLUTE(.); + *(.noinit) + *(.noinit.*) + __dram_noinit_end = ABSOLUTE(.); + . = ALIGN(4) ; + } > dram0_0_seg + .dram0.bss (NOLOAD) : + { + . = ALIGN (8); + _bss_start = ABSOLUTE(.); + __bss_start = ABSOLUTE(.); + _btdm_bss_start = ABSOLUTE(.); + *libbtdm_app.a:(.bss .bss.* COMMON) + . = ALIGN (4); + _btdm_bss_end = ABSOLUTE(.); + *(.dynsbss) + *(.sbss) + *(.sbss.*) + *(.gnu.linkonce.sb.*) + *(.scommon) + *(.sbss2) + *(.sbss2.*) + *(.gnu.linkonce.sb2.*) + *(.dynbss) + *(.bss) + *(.bss.*) + *(.share.mem) + *(.gnu.linkonce.b.*) + *(COMMON) + . = ALIGN (8); + _bss_end = ABSOLUTE(.); + __bss_end = ABSOLUTE(.); + } > dram0_0_seg + _image_ram_start = _init_start - 0x6f0000; + .last_ram_section (NOLOAD) : ALIGN_WITH_INPUT + { + _image_ram_end = .; + _image_ram_size = _image_ram_end - _image_ram_start; + _end = .; + z_mapped_end = .; + } > dram0_0_seg + ASSERT(((_end - ORIGIN(dram0_0_seg)) <= LENGTH(dram0_0_seg)), "DRAM segment data does not fit.") + _image_irom_start = LOADADDR(.text); + _image_irom_size = LOADADDR(.text) + SIZEOF(.text) - _image_irom_start; + _image_irom_vaddr = ADDR(.text); + .text_dummy (NOLOAD) : + { + . = ALIGN(0x10000); + } > FLASH + .text : ALIGN(0x10) + { + _stext = .; + _instruction_reserved_start = ABSOLUTE(.); + _text_start = ABSOLUTE(.); + __text_region_start = ABSOLUTE(.); + __rom_region_start = ABSOLUTE(.); + *libnet80211.a:( .wifi0iram .wifi0iram.* .wifislpiram .wifislpiram.* .wifiextrairam .wifiextrairam.*) + *libpp.a:( .wifi0iram .wifi0iram.* .wifislpiram .wifislpiram.* .wifiorslpiram .wifiorslpiram.* .wifiextrairam .wifiextrairam.*) + *libcoexist.a:(.wifi_slp_iram .wifi_slp_iram.* .coexiram .coexiram.* .coexsleepiram .coexsleepiram.*) + *libnet80211.a:( .wifirxiram .wifirxiram.* .wifislprxiram .wifislprxiram.*) + *libpp.a:( .wifirxiram .wifirxiram.* .wifislprxiram .wifislprxiram.*) + *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.irom0.text) + *(.fini.literal) + *(.fini) + *(.gnu.version) + *(.literal .text .literal.* .text.*) + . += 16; + _text_end = ABSOLUTE(.); + _instruction_reserved_end = ABSOLUTE(.); + __text_region_end = ABSOLUTE(.); + __rom_region_end = ABSOLUTE(.); + _etext = .; + } > irom0_0_seg AT > FLASH + .flash.rodata_dummy (NOLOAD): + { + _flash_rodata_dummy_start = ABSOLUTE(.); + . += SIZEOF(.text); + . = ALIGN(0x10000); + } > drom0_0_seg + _image_drom_start = LOADADDR(.flash.rodata); + _image_drom_size = LOADADDR(.flash.rodata_end) + SIZEOF(.flash.rodata_end) - _image_drom_start; + _image_drom_vaddr = ADDR(.flash.rodata); + .flash.rodata : ALIGN(0x10000) + { + _image_rodata_start = ABSOLUTE(.); + _rodata_reserved_start = ABSOLUTE(.); + _rodata_start = ABSOLUTE(.); + __rodata_region_start = ABSOLUTE(.); + . = ALIGN(4); + *(.irom1.text) + *(.gnu.linkonce.r.*) + *(.rodata) + *(.rodata.*) + *(.rodata1) + __XT_EXCEPTION_TABLE_ = ABSOLUTE(.); + *(.xt_except_table) + *(.gcc_except_table .gcc_except_table.*) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + . = (. + 3) & ~ 3; + __eh_frame = ABSOLUTE(.); + KEEP(*(.eh_frame)) + . = (. + 7) & ~ 3; + __XT_EXCEPTION_DESCS_ = ABSOLUTE(.); + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + __XT_EXCEPTION_DESCS_END__ = ABSOLUTE(.); + *(.xt_except_desc_end) + *(.dynamic) + *(.gnu.version_d) + . = ALIGN(4); + __rodata_region_end = ABSOLUTE(.); + _lit4_start = ABSOLUTE(.); + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + _lit4_end = ABSOLUTE(.); + . = ALIGN(4); + *(.rodata_wlog) + *(.rodata_wlog*) + . = ALIGN(4); + } > drom0_0_seg AT > FLASH + PROVIDE(__eh_frame_start = 0); + PROVIDE(__eh_frame_end = 0); + PROVIDE(__eh_frame_hdr_start = 0); + PROVIDE(__eh_frame_hdr_end = 0); + /DISCARD/ : { *(.eh_frame) } + init_array : ALIGN_WITH_INPUT + { + __zephyr_init_array_start = .; + KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) + SORT_BY_INIT_PRIORITY(.ctors.*))) + KEEP (*(.init_array .ctors)) + __zephyr_init_array_end = .; + } > drom0_0_seg AT > FLASH + ASSERT(__zephyr_init_array_start == __zephyr_init_array_end, + "GNU-style constructors required but STATIC_INIT_GNU not enabled") + initlevel : ALIGN_WITH_INPUT + { + __init_start = .; + __init_EARLY_start = .; KEEP(*(SORT(.z_init_EARLY_P_?_*))); KEEP(*(SORT(.z_init_EARLY_P_??_*))); KEEP(*(SORT(.z_init_EARLY_P_???_*))); + __init_PRE_KERNEL_1_start = .; KEEP(*(SORT(.z_init_PRE_KERNEL_1_P_?_*))); KEEP(*(SORT(.z_init_PRE_KERNEL_1_P_??_*))); KEEP(*(SORT(.z_init_PRE_KERNEL_1_P_???_*))); + __init_PRE_KERNEL_2_start = .; KEEP(*(SORT(.z_init_PRE_KERNEL_2_P_?_*))); KEEP(*(SORT(.z_init_PRE_KERNEL_2_P_??_*))); KEEP(*(SORT(.z_init_PRE_KERNEL_2_P_???_*))); + __init_POST_KERNEL_start = .; KEEP(*(SORT(.z_init_POST_KERNEL_P_?_*))); KEEP(*(SORT(.z_init_POST_KERNEL_P_??_*))); KEEP(*(SORT(.z_init_POST_KERNEL_P_???_*))); + __init_APPLICATION_start = .; KEEP(*(SORT(.z_init_APPLICATION_P_?_*))); KEEP(*(SORT(.z_init_APPLICATION_P_??_*))); KEEP(*(SORT(.z_init_APPLICATION_P_???_*))); + __init_SMP_start = .; KEEP(*(SORT(.z_init_SMP_P_?_*))); KEEP(*(SORT(.z_init_SMP_P_??_*))); KEEP(*(SORT(.z_init_SMP_P_???_*))); + __init_end = .; + } > drom0_0_seg AT > FLASH + device_area : ALIGN_WITH_INPUT { _device_list_start = .; KEEP(*(SORT(._device.static.*_?_*))); KEEP(*(SORT(._device.static.*_??_*))); KEEP(*(SORT(._device.static.*_???_*))); KEEP(*(SORT(._device.static.*_????_*))); KEEP(*(SORT(._device.static.*_?????_*))); _device_list_end = .;; } > drom0_0_seg AT > FLASH + initlevel_error : ALIGN_WITH_INPUT + { + KEEP(*(SORT(.z_init_*))) + } + ASSERT(SIZEOF(initlevel_error) == 0, "Undefined initialization levels used.") + app_shmem_regions : ALIGN_WITH_INPUT + { + __app_shmem_regions_start = .; + KEEP(*(SORT(.app_regions.*))); + __app_shmem_regions_end = .; + } > drom0_0_seg AT > FLASH + k_p4wq_initparam_area : ALIGN_WITH_INPUT { _k_p4wq_initparam_list_start = .; KEEP(*(SORT_BY_NAME(._k_p4wq_initparam.static.*))); _k_p4wq_initparam_list_end = .;; } > drom0_0_seg AT > FLASH + _static_thread_data_area : ALIGN_WITH_INPUT { __static_thread_data_list_start = .; KEEP(*(SORT_BY_NAME(.__static_thread_data.static.*))); __static_thread_data_list_end = .;; } > drom0_0_seg AT > FLASH + device_deps : ALIGN_WITH_INPUT + { +__device_deps_start = .; +KEEP(*(SORT(.__device_deps_pass2*))); +__device_deps_end = .; + } > drom0_0_seg AT > FLASH +gpio_driver_api_area : ALIGN_WITH_INPUT { _gpio_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._gpio_driver_api.static.*))); _gpio_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +spi_driver_api_area : ALIGN_WITH_INPUT { _spi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._spi_driver_api.static.*))); _spi_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +shared_irq_driver_api_area : ALIGN_WITH_INPUT { _shared_irq_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._shared_irq_driver_api.static.*))); _shared_irq_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +crypto_driver_api_area : ALIGN_WITH_INPUT { _crypto_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._crypto_driver_api.static.*))); _crypto_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +adc_driver_api_area : ALIGN_WITH_INPUT { _adc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._adc_driver_api.static.*))); _adc_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +auxdisplay_driver_api_area : ALIGN_WITH_INPUT { _auxdisplay_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._auxdisplay_driver_api.static.*))); _auxdisplay_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +bbram_driver_api_area : ALIGN_WITH_INPUT { _bbram_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bbram_driver_api.static.*))); _bbram_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +biometric_driver_api_area : ALIGN_WITH_INPUT { _biometric_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._biometric_driver_api.static.*))); _biometric_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +bt_hci_driver_api_area : ALIGN_WITH_INPUT { _bt_hci_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bt_hci_driver_api.static.*))); _bt_hci_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +can_driver_api_area : ALIGN_WITH_INPUT { _can_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._can_driver_api.static.*))); _can_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +cellular_driver_api_area : ALIGN_WITH_INPUT { _cellular_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._cellular_driver_api.static.*))); _cellular_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +charger_driver_api_area : ALIGN_WITH_INPUT { _charger_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._charger_driver_api.static.*))); _charger_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +clock_control_driver_api_area : ALIGN_WITH_INPUT { _clock_control_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._clock_control_driver_api.static.*))); _clock_control_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +comparator_driver_api_area : ALIGN_WITH_INPUT { _comparator_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._comparator_driver_api.static.*))); _comparator_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +coredump_driver_api_area : ALIGN_WITH_INPUT { _coredump_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._coredump_driver_api.static.*))); _coredump_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +counter_driver_api_area : ALIGN_WITH_INPUT { _counter_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._counter_driver_api.static.*))); _counter_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +crc_driver_api_area : ALIGN_WITH_INPUT { _crc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._crc_driver_api.static.*))); _crc_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +dac_driver_api_area : ALIGN_WITH_INPUT { _dac_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._dac_driver_api.static.*))); _dac_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +dai_driver_api_area : ALIGN_WITH_INPUT { _dai_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._dai_driver_api.static.*))); _dai_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +display_driver_api_area : ALIGN_WITH_INPUT { _display_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._display_driver_api.static.*))); _display_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +dma_driver_api_area : ALIGN_WITH_INPUT { _dma_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._dma_driver_api.static.*))); _dma_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +edac_driver_api_area : ALIGN_WITH_INPUT { _edac_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._edac_driver_api.static.*))); _edac_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +eeprom_driver_api_area : ALIGN_WITH_INPUT { _eeprom_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._eeprom_driver_api.static.*))); _eeprom_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +emul_bbram_driver_api_area : ALIGN_WITH_INPUT { _emul_bbram_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._emul_bbram_driver_api.static.*))); _emul_bbram_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +fuel_gauge_emul_driver_api_area : ALIGN_WITH_INPUT { _fuel_gauge_emul_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._fuel_gauge_emul_driver_api.static.*))); _fuel_gauge_emul_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +emul_sensor_driver_api_area : ALIGN_WITH_INPUT { _emul_sensor_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._emul_sensor_driver_api.static.*))); _emul_sensor_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +entropy_driver_api_area : ALIGN_WITH_INPUT { _entropy_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._entropy_driver_api.static.*))); _entropy_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +espi_driver_api_area : ALIGN_WITH_INPUT { _espi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._espi_driver_api.static.*))); _espi_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +espi_saf_driver_api_area : ALIGN_WITH_INPUT { _espi_saf_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._espi_saf_driver_api.static.*))); _espi_saf_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +flash_driver_api_area : ALIGN_WITH_INPUT { _flash_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._flash_driver_api.static.*))); _flash_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +fpga_driver_api_area : ALIGN_WITH_INPUT { _fpga_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._fpga_driver_api.static.*))); _fpga_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +fuel_gauge_driver_api_area : ALIGN_WITH_INPUT { _fuel_gauge_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._fuel_gauge_driver_api.static.*))); _fuel_gauge_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +gnss_driver_api_area : ALIGN_WITH_INPUT { _gnss_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._gnss_driver_api.static.*))); _gnss_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +haptics_driver_api_area : ALIGN_WITH_INPUT { _haptics_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._haptics_driver_api.static.*))); _haptics_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +hwspinlock_driver_api_area : ALIGN_WITH_INPUT { _hwspinlock_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._hwspinlock_driver_api.static.*))); _hwspinlock_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +i2c_driver_api_area : ALIGN_WITH_INPUT { _i2c_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i2c_driver_api.static.*))); _i2c_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +i2c_target_driver_api_area : ALIGN_WITH_INPUT { _i2c_target_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i2c_target_driver_api.static.*))); _i2c_target_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +i2s_driver_api_area : ALIGN_WITH_INPUT { _i2s_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i2s_driver_api.static.*))); _i2s_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +i3c_driver_api_area : ALIGN_WITH_INPUT { _i3c_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i3c_driver_api.static.*))); _i3c_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +ipm_driver_api_area : ALIGN_WITH_INPUT { _ipm_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ipm_driver_api.static.*))); _ipm_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +led_driver_api_area : ALIGN_WITH_INPUT { _led_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._led_driver_api.static.*))); _led_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +led_strip_driver_api_area : ALIGN_WITH_INPUT { _led_strip_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._led_strip_driver_api.static.*))); _led_strip_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +lora_driver_api_area : ALIGN_WITH_INPUT { _lora_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._lora_driver_api.static.*))); _lora_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +mbox_driver_api_area : ALIGN_WITH_INPUT { _mbox_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mbox_driver_api.static.*))); _mbox_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +mdio_driver_api_area : ALIGN_WITH_INPUT { _mdio_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mdio_driver_api.static.*))); _mdio_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +mipi_dbi_driver_api_area : ALIGN_WITH_INPUT { _mipi_dbi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mipi_dbi_driver_api.static.*))); _mipi_dbi_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +mipi_dsi_driver_api_area : ALIGN_WITH_INPUT { _mipi_dsi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mipi_dsi_driver_api.static.*))); _mipi_dsi_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +mspi_driver_api_area : ALIGN_WITH_INPUT { _mspi_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._mspi_driver_api.static.*))); _mspi_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +opamp_driver_api_area : ALIGN_WITH_INPUT { _opamp_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._opamp_driver_api.static.*))); _opamp_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +otp_driver_api_area : ALIGN_WITH_INPUT { _otp_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._otp_driver_api.static.*))); _otp_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +peci_driver_api_area : ALIGN_WITH_INPUT { _peci_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._peci_driver_api.static.*))); _peci_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +ps2_driver_api_area : ALIGN_WITH_INPUT { _ps2_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ps2_driver_api.static.*))); _ps2_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +ptp_clock_driver_api_area : ALIGN_WITH_INPUT { _ptp_clock_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ptp_clock_driver_api.static.*))); _ptp_clock_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +pwm_driver_api_area : ALIGN_WITH_INPUT { _pwm_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._pwm_driver_api.static.*))); _pwm_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +regulator_parent_driver_api_area : ALIGN_WITH_INPUT { _regulator_parent_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._regulator_parent_driver_api.static.*))); _regulator_parent_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +regulator_driver_api_area : ALIGN_WITH_INPUT { _regulator_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._regulator_driver_api.static.*))); _regulator_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +reset_driver_api_area : ALIGN_WITH_INPUT { _reset_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._reset_driver_api.static.*))); _reset_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +retained_mem_driver_api_area : ALIGN_WITH_INPUT { _retained_mem_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._retained_mem_driver_api.static.*))); _retained_mem_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +rtc_driver_api_area : ALIGN_WITH_INPUT { _rtc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._rtc_driver_api.static.*))); _rtc_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +sdhc_driver_api_area : ALIGN_WITH_INPUT { _sdhc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._sdhc_driver_api.static.*))); _sdhc_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +sensor_driver_api_area : ALIGN_WITH_INPUT { _sensor_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._sensor_driver_api.static.*))); _sensor_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +smbus_driver_api_area : ALIGN_WITH_INPUT { _smbus_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._smbus_driver_api.static.*))); _smbus_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +syscon_driver_api_area : ALIGN_WITH_INPUT { _syscon_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._syscon_driver_api.static.*))); _syscon_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +tee_driver_api_area : ALIGN_WITH_INPUT { _tee_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._tee_driver_api.static.*))); _tee_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +uaol_driver_api_area : ALIGN_WITH_INPUT { _uaol_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._uaol_driver_api.static.*))); _uaol_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +video_driver_api_area : ALIGN_WITH_INPUT { _video_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._video_driver_api.static.*))); _video_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +virtio_driver_api_area : ALIGN_WITH_INPUT { _virtio_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._virtio_driver_api.static.*))); _virtio_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +w1_driver_api_area : ALIGN_WITH_INPUT { _w1_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._w1_driver_api.static.*))); _w1_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +wdt_driver_api_area : ALIGN_WITH_INPUT { _wdt_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._wdt_driver_api.static.*))); _wdt_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +wuc_driver_api_area : ALIGN_WITH_INPUT { _wuc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._wuc_driver_api.static.*))); _wuc_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +can_transceiver_driver_api_area : ALIGN_WITH_INPUT { _can_transceiver_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._can_transceiver_driver_api.static.*))); _can_transceiver_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +nrf_clock_control_driver_api_area : ALIGN_WITH_INPUT { _nrf_clock_control_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._nrf_clock_control_driver_api.static.*))); _nrf_clock_control_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +i3c_target_driver_api_area : ALIGN_WITH_INPUT { _i3c_target_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._i3c_target_driver_api.static.*))); _i3c_target_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +its_driver_api_area : ALIGN_WITH_INPUT { _its_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._its_driver_api.static.*))); _its_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +vtd_driver_api_area : ALIGN_WITH_INPUT { _vtd_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._vtd_driver_api.static.*))); _vtd_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +renesas_elc_driver_api_area : ALIGN_WITH_INPUT { _renesas_elc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._renesas_elc_driver_api.static.*))); _renesas_elc_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +tgpio_driver_api_area : ALIGN_WITH_INPUT { _tgpio_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._tgpio_driver_api.static.*))); _tgpio_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +pcie_ctrl_driver_api_area : ALIGN_WITH_INPUT { _pcie_ctrl_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._pcie_ctrl_driver_api.static.*))); _pcie_ctrl_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +pcie_ep_driver_api_area : ALIGN_WITH_INPUT { _pcie_ep_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._pcie_ep_driver_api.static.*))); _pcie_ep_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +psi5_driver_api_area : ALIGN_WITH_INPUT { _psi5_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._psi5_driver_api.static.*))); _psi5_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +sent_driver_api_area : ALIGN_WITH_INPUT { _sent_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._sent_driver_api.static.*))); _sent_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +svc_driver_api_area : ALIGN_WITH_INPUT { _svc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._svc_driver_api.static.*))); _svc_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +stepper_driver_api_area : ALIGN_WITH_INPUT { _stepper_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._stepper_driver_api.static.*))); _stepper_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +stepper_ctrl_driver_api_area : ALIGN_WITH_INPUT { _stepper_ctrl_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._stepper_ctrl_driver_api.static.*))); _stepper_ctrl_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +uart_driver_api_area : ALIGN_WITH_INPUT { _uart_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._uart_driver_api.static.*))); _uart_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +bc12_emul_driver_api_area : ALIGN_WITH_INPUT { _bc12_emul_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bc12_emul_driver_api.static.*))); _bc12_emul_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +bc12_driver_api_area : ALIGN_WITH_INPUT { _bc12_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._bc12_driver_api.static.*))); _bc12_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +usbc_ppc_driver_api_area : ALIGN_WITH_INPUT { _usbc_ppc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._usbc_ppc_driver_api.static.*))); _usbc_ppc_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +tcpc_driver_api_area : ALIGN_WITH_INPUT { _tcpc_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._tcpc_driver_api.static.*))); _tcpc_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +usbc_vbus_driver_api_area : ALIGN_WITH_INPUT { _usbc_vbus_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._usbc_vbus_driver_api.static.*))); _usbc_vbus_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +ivshmem_driver_api_area : ALIGN_WITH_INPUT { _ivshmem_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ivshmem_driver_api.static.*))); _ivshmem_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +ethphy_driver_api_area : ALIGN_WITH_INPUT { _ethphy_driver_api_list_start = .; KEEP(*(SORT_BY_NAME(._ethphy_driver_api.static.*))); _ethphy_driver_api_list_end = .;; } > drom0_0_seg AT > FLASH +ztest : ALIGN_WITH_INPUT +{ + _ztest_expected_result_entry_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_expected_result_entry.static.*))); _ztest_expected_result_entry_list_end = .;; + _ztest_suite_node_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_suite_node.static.*))); _ztest_suite_node_list_end = .;; + _ztest_unit_test_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_unit_test.static.*))); _ztest_unit_test_list_end = .;; + _ztest_test_rule_list_start = .; KEEP(*(SORT_BY_NAME(._ztest_test_rule.static.*))); _ztest_test_rule_list_end = .;; +} > drom0_0_seg AT > FLASH + bt_l2cap_fixed_chan_area : ALIGN_WITH_INPUT { _bt_l2cap_fixed_chan_list_start = .; KEEP(*(SORT_BY_NAME(._bt_l2cap_fixed_chan.static.*))); _bt_l2cap_fixed_chan_list_end = .;; } > drom0_0_seg AT > FLASH + bt_gatt_service_static_area : ALIGN_WITH_INPUT { _bt_gatt_service_static_list_start = .; KEEP(*(SORT_BY_NAME(._bt_gatt_service_static.static.*))); _bt_gatt_service_static_list_end = .;; } > drom0_0_seg AT > FLASH + tracing_backend_area : ALIGN_WITH_INPUT { _tracing_backend_list_start = .; KEEP(*(SORT_BY_NAME(._tracing_backend.static.*))); _tracing_backend_list_end = .;; } > drom0_0_seg AT > FLASH + zephyr_dbg_info : ALIGN_WITH_INPUT + { + KEEP(*(".dbg_thread_info")); + } > drom0_0_seg AT > FLASH + symbol_to_keep : ALIGN_WITH_INPUT + { + __symbol_to_keep_start = .; + KEEP(*(SORT(.symbol_to_keep*))); + __symbol_to_keep_end = .; + } > drom0_0_seg AT > FLASH + shell_area : ALIGN_WITH_INPUT { _shell_list_start = .; KEEP(*(SORT_BY_NAME(._shell.static.*))); _shell_list_end = .;; } > drom0_0_seg AT > FLASH + shell_root_cmds_area : ALIGN_WITH_INPUT { _shell_root_cmds_list_start = .; KEEP(*(SORT_BY_NAME(._shell_root_cmds.static.*))); _shell_root_cmds_list_end = .;; } > drom0_0_seg AT > FLASH + shell_subcmds_area : ALIGN_WITH_INPUT { _shell_subcmds_list_start = .; KEEP(*(SORT_BY_NAME(._shell_subcmds.static.*))); _shell_subcmds_list_end = .;; } > drom0_0_seg AT > FLASH + shell_dynamic_subcmds_area : ALIGN_WITH_INPUT { _shell_dynamic_subcmds_list_start = .; KEEP(*(SORT_BY_NAME(._shell_dynamic_subcmds.static.*))); _shell_dynamic_subcmds_list_end = .;; } > drom0_0_seg AT > FLASH + cfb_font_area : ALIGN_WITH_INPUT { _cfb_font_list_start = .; KEEP(*(SORT_BY_NAME(._cfb_font.static.*))); _cfb_font_list_end = .;; } > drom0_0_seg AT > FLASH +.intList : ALIGN_WITH_INPUT +{ + KEEP(*(.irq_info*)) + KEEP(*(.intList*)) +} > drom0_0_seg AT > IDT_LIST + .flash.rodata_end : ALIGN(0x10) + { + . = ALIGN(4); + _rodata_reserved_end = ABSOLUTE(.); + _image_rodata_end = ABSOLUTE(.); + } > drom0_0_seg AT > FLASH +.intList : ALIGN_WITH_INPUT +{ + KEEP(*(.irq_info*)) + KEEP(*(.intList*)) +} > drom0_0_seg AT > IDT_LIST + .stab 0 : ALIGN_WITH_INPUT { *(.stab) } + .stabstr 0 : ALIGN_WITH_INPUT { *(.stabstr) } + .stab.excl 0 : ALIGN_WITH_INPUT { *(.stab.excl) } + .stab.exclstr 0 : ALIGN_WITH_INPUT { *(.stab.exclstr) } + .stab.index 0 : ALIGN_WITH_INPUT { *(.stab.index) } + .stab.indexstr 0 : ALIGN_WITH_INPUT { *(.stab.indexstr) } + .gnu.build.attributes 0 : ALIGN_WITH_INPUT { *(.gnu.build.attributes .gnu.build.attributes.*) } + .comment 0 : ALIGN_WITH_INPUT { *(.comment) } + .debug 0 : ALIGN_WITH_INPUT { *(.debug) } + .line 0 : ALIGN_WITH_INPUT { *(.line) } + .debug_srcinfo 0 : ALIGN_WITH_INPUT { *(.debug_srcinfo) } + .debug_sfnames 0 : ALIGN_WITH_INPUT { *(.debug_sfnames) } + .debug_aranges 0 : ALIGN_WITH_INPUT { *(.debug_aranges) } + .debug_pubnames 0 : ALIGN_WITH_INPUT { *(.debug_pubnames) } + .debug_info 0 : ALIGN_WITH_INPUT { *(.debug_info .gnu.linkonce.wi.*) } + .debug_abbrev 0 : ALIGN_WITH_INPUT { *(.debug_abbrev) } + .debug_line 0 : ALIGN_WITH_INPUT { *(.debug_line .debug_line.* .debug_line_end ) } + .debug_frame 0 : ALIGN_WITH_INPUT { *(.debug_frame) } + .debug_str 0 : ALIGN_WITH_INPUT { *(.debug_str) } + .debug_loc 0 : ALIGN_WITH_INPUT { *(.debug_loc) } + .debug_macinfo 0 : ALIGN_WITH_INPUT { *(.debug_macinfo) } + .debug_weaknames 0 : ALIGN_WITH_INPUT { *(.debug_weaknames) } + .debug_funcnames 0 : ALIGN_WITH_INPUT { *(.debug_funcnames) } + .debug_typenames 0 : ALIGN_WITH_INPUT { *(.debug_typenames) } + .debug_varnames 0 : ALIGN_WITH_INPUT { *(.debug_varnames) } + .debug_pubtypes 0 : ALIGN_WITH_INPUT { *(.debug_pubtypes) } + .debug_ranges 0 : ALIGN_WITH_INPUT { *(.debug_ranges) } + .debug_addr 0 : ALIGN_WITH_INPUT { *(.debug_addr) } + .debug_line_str 0 : ALIGN_WITH_INPUT { *(.debug_line_str) } + .debug_loclists 0 : ALIGN_WITH_INPUT { *(.debug_loclists) } + .debug_macro 0 : ALIGN_WITH_INPUT { *(.debug_macro) } + .debug_names 0 : ALIGN_WITH_INPUT { *(.debug_names) } + .debug_rnglists 0 : ALIGN_WITH_INPUT { *(.debug_rnglists) } + .debug_str_offsets 0 : ALIGN_WITH_INPUT { *(.debug_str_offsets) } + .debug_sup 0 : ALIGN_WITH_INPUT { *(.debug_sup) } + .xtensa.info 0 : { *(.xtensa.info) } + .xt.insn 0 : + { + KEEP (*(.xt.insn)) + KEEP (*(.gnu.linkonce.x.*)) + } + .xt.prop 0 : + { + KEEP (*(.xt.prop)) + KEEP (*(.xt.prop.*)) + KEEP (*(.gnu.linkonce.prop.*)) + } + .xt.lit 0 : + { + KEEP (*(.xt.lit)) + KEEP (*(.xt.lit.*)) + KEEP (*(.gnu.linkonce.p.*)) + } + .xt.profile_range 0 : + { + KEEP (*(.xt.profile_range)) + KEEP (*(.gnu.linkonce.profile_range.*)) + } + .xt.profile_ranges 0 : + { + KEEP (*(.xt.profile_ranges)) + KEEP (*(.gnu.linkonce.xt.profile_ranges.*)) + } + .xt.profile_files 0 : + { + KEEP (*(.xt.profile_files)) + KEEP (*(.gnu.linkonce.xt.profile_files.*)) + } +} +ASSERT(((_iram_end - ORIGIN(iram0_0_seg)) <= LENGTH(iram0_0_seg)), + "IRAM0 segment data does not fit.") +ASSERT(((_end - ORIGIN(dram0_0_seg)) <= LENGTH(dram0_0_seg)), + "DRAM segment data does not fit.") diff --git a/build/zephyr/linker_zephyr_pre0.cmd.dep b/build/zephyr/linker_zephyr_pre0.cmd.dep new file mode 100644 index 0000000..acc7535 --- /dev/null +++ b/build/zephyr/linker_zephyr_pre0.cmd.dep @@ -0,0 +1,73 @@ +linker_zephyr_pre0.cmd: \ + /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/../esp32s3/default.ld \ + /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/autoconf.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree.h \ + /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/devicetree_generated.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/irq_multilevel.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_macro.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_loops.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_listify.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_is_eq.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_inc.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_dec.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_x2.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/gcc.h \ + /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/include/stdbool.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/io-channels.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/clocks.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/gpio.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/spi.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/dma.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/pwms.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/fixed-partitions.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/ordinals.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/pinctrl.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/can.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/reset.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/mbox.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/port-endpoint.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/display.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/hwspinlock.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/map.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/wuc.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/mapped-partition.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree/partitions.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/sections.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/section_tags.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/linker-defs.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/common.h \ + /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/offsets.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/linker-tool.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/linker-tool-gcc.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/kernel/mm.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/kernel/internal/mm.h \ + /Users/wijnand/zephyrproject/zephyr/soc/espressif/common/../esp32s3/memory.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/rel-sections.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/llext-sections.ld \ + /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/snippets-rwdata.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/common-ram.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/iterable_sections.h \ + /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/snippets-data-sections.ld \ + /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/snippets-ram-sections.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/cplusplus-ram.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/kobject-data.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-logging.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/ram-end.ld \ + /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/snippets-rodata.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/cplusplus-rom.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-init.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-kernel-devices.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/device-deps.ld \ + /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/device-api-sections.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-ztest.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-net.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-bt.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-debug.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/common-rom/common-rom-misc.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/thread-local-storage.ld \ + /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/snippets-sections.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/intlist.ld \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/debug-sections.ld diff --git a/build/zephyr/misc/generated/configs.c b/build/zephyr/misc/generated/configs.c new file mode 100644 index 0000000..fa98e27 --- /dev/null +++ b/build/zephyr/misc/generated/configs.c @@ -0,0 +1,763 @@ +/* file is auto-generated, do not modify ! */ + +#include + +GEN_ABS_SYM_BEGIN (_ConfigAbsSyms) + +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ESPRESSIF_ESP32_AES_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ESPRESSIF_ESP32_BT_HCI_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ESPRESSIF_ESP32_CLOCK_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ESPRESSIF_ESP32_FLASH_CONTROLLER_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ESPRESSIF_ESP32_GPIO_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ESPRESSIF_ESP32_I2C_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ESPRESSIF_ESP32_INTC_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ESPRESSIF_ESP32_LCD_CAM_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ESPRESSIF_ESP32_PINCTRL_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ESPRESSIF_ESP32_PSRAM_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ESPRESSIF_ESP32_SDHC_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ESPRESSIF_ESP32_SHA_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ESPRESSIF_ESP32_SPI_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ESPRESSIF_ESP32_TIMER_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ESPRESSIF_ESP32_TRNG_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ESPRESSIF_ESP32_UART_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ESPRESSIF_ESP32_USB_SERIAL_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ESPRESSIF_ESP32_WATCHDOG_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ESPRESSIF_ESP32_WIFI_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ESPRESSIF_XTENSA_LX7_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_FIXED_PARTITIONS_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_GPIO_LEDS_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_MMIO_SRAM_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_SEEED_XIAO_GPIO_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_SEMTECH_SX1262_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_SOC_NV_FLASH_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ZEPHYR_MEMORY_REGION_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DT_HAS_ZEPHYR_POWER_STATE_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MAIN_STACK_SIZE, 2048); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE, 1024); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SERIAL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SPI, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_UART_INTERRUPT_DRIVEN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC, 240000000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FLASH_SIZE, 8388608); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FLASH_BASE_ADDRESS, 0x0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MP_MAX_NUM_CPUS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CLOCK_CONTROL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_IDLE_STACK_SIZE, 1024); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ISR_STACK_SIZE, 2048); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_CLOCK_TICKS_PER_SEC, 10000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BUILD_OUTPUT_BIN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ROM_START_OFFSET, 0x0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_ENTRY, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_FLASH_LOAD_OFFSET, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TICKLESS_KERNEL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CLOCK_CONTROL_INIT_PRIORITY, 30); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NUM_METAIRQ_PRIORITIES, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NUM_PREEMPT_PRIORITIES, 15); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_DYNAMIC_INTERRUPTS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GEN_ISR_TABLES, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TIMESLICE_SIZE, 20); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FLASH_LOAD_OFFSET, 0x0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_CLOCK_EXISTS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GPIO, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_XTENSA_TIMER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_XTENSA_CCOUNT_HZ, 240000000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_SW_ISR_TABLE_ALIGN, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_DOMAIN_NAME, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_PROCESS_THREAD_STACK_SIZE, 1024); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_UART_USE_RUNTIME_CONFIGURE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CONSOLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMMON_LIBC_MALLOC_ARENA_SIZE, -1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_TOOLCHAIN_NAME, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GEN_SW_ISR_TABLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GEN_IRQ_START_VECTOR, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SRAM_OFFSET, 0x0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_XTENSA_TIMER_ID, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_XTAL_FREQ_HZ, 40000000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_FLASH_ESP32, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_MEM_POOL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MULTITHREADING, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LINKER_USE_RELAX, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_ACPICA_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_CMSIS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_CMSIS_DSP_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_CMSIS_NN_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_CMSIS_6_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_DHARA_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_FATFS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_ADI_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_AFBR_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_AMBIQ_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_ATMEL_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_BOUFFALOLAB_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_HAL_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_HAL_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_HAL_EARLY_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_PLATFORM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_UART_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_MCPWM_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_GPTIMER_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SDMMC_HOST_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_BT_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PCNT_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PHY_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_WIFI_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_TWAI_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_EFUSE_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ULP_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_CCOMP_TIMER_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_RTC_FAST_MEM_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_RTC_MEM_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_RTC_TIMER_V1_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_I2S_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_LCD_I80_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_RMT_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SDM_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_GPSPI_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_LEDC_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_I2C_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SUPPORT_COEXISTENCE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_AES_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_MPI_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SHA_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_FLASH_ENC_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SECURE_BOOT_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_TOUCH_SENSOR_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_BOD_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ULP_FSM_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_CLK_TREE_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_MPU_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_WDT_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SPI_FLASH_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_RNG_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_LIGHT_SLEEP_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_DEEP_SLEEP_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PM_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SPI_EXTERNAL_NOR_FLASH_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_XTAL_SUPPORT_40M, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_DMA_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_PERIPH_NUM, 2); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_MAX_CHANNEL_NUM, 10); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_ATTEN_NUM, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM, 2); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_PATT_LEN_MAX, 24); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH, 12); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH, 12); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_DIGI_RESULT_BYTES, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_DIGI_MONITOR_NUM, 2); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH, 83333); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW, 611); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_RTC_MIN_BITWIDTH, 12); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_RTC_MAX_BITWIDTH, 12); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_SHARED_POWER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_BROWNOUT_RESET_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_CPU_CORES_NUM, 2); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_CPU_INTR_NUM, 32); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_CPU_HAS_FPU, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_HP_CPU_HAS_MULTIPLE_CORES, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_CPU_BREAKPOINTS_NUM, 2); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_CPU_WATCHPOINTS_NUM, 2); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE, 0x40); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_GPIO_PORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_GPIO_PIN_COUNT, 49); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_GPIO_VALID_GPIO_MASK, 0x1FFFFFFFFFFFF); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_GPIO_IN_RANGE_MAX, 48); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_GPIO_OUT_RANGE_MAX, 48); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK, 0x0001FFFFFC000000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_I2C_NUM, 2); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_HP_I2C_NUM, 2); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_I2C_SUPPORT_SLAVE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_I2S_SUPPORTS_PDM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_I2S_SUPPORTS_PDM_TX, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_I2S_SUPPORTS_PCM2PDM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_I2S_SUPPORTS_PDM_RX, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_I2S_SUPPORTS_PDM2PCM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_I2S_PDM_MAX_TX_LINES, 2); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_I2S_PDM_MAX_RX_LINES, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_LEDC_TIMER_NUM, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_LEDC_CHANNEL_NUM, 8); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_LEDC_TIMER_BIT_WIDTH, 14); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_MMU_PERIPH_NUM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_MPU_MIN_REGION_SIZE, 0x20000000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_MPU_REGIONS_MAX_NUM, 8); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL, 48); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_RTCIO_PIN_COUNT, 22); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_RTCIO_HOLD_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_RTCIO_WAKE_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SPI_PERIPH_NUM, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE, 64); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO, 32); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI, 16); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_TOUCH_SENSOR_VERSION, 2); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_TOUCH_MIN_CHAN_ID, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_TOUCH_MAX_CHAN_ID, 14); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_TWAI_CONTROLLER_NUM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_TWAI_MASK_FILTER_NUM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_UART_NUM, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_UART_HP_NUM, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_UART_SUPPORT_APB_CLK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_UART_FIFO_LEN, 128); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_UART_BITRATE_MAX, 5000000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SPIRAM_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SHA_SUPPORT_SHA1, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SHA_SUPPORT_SHA256, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SHA_SUPPORT_SHA384, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SHA_SUPPORT_SHA512, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_MPI_MEM_BLOCKS_NUM, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_MPI_OPERATIONS_NUM, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_RSA_MAX_BIT_LEN, 4096); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_AES_SUPPORT_AES_128, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_AES_SUPPORT_AES_256, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX, 64); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE, 21); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PM_SUPPORT_RC_FAST_PD, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PM_SUPPORT_MODEM_PD, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PM_MODEM_PD_BY_SW, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_CLK_XTAL32K_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SDMMC_NUM_SLOTS, 2); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SDMMC_DATA_WIDTH_MAX, 8); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_WIFI_WAPI_SUPPORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_WIFI_CSI_SUPPORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_WIFI_MESH_SUPPORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_BLE_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_BLE_MESH_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_BLUFI_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ULP_HAS_ADC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PHY_COMBO_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_DEDICATED_GPIO_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SUPPORTS_SECURE_DL_MODE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_RISCV_COPROC_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_USB_OTG_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_TEMP_SENSOR_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_CACHE_SUPPORT_WRAP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PSRAM_DMA_CAPABLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_XT_WDT_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SYSTIMER_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_HMAC_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_DIG_SIGN_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_MEMPROT_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_ARBITER_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_MONITOR_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM, 2); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN, 4096); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH, 16); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US, 1100); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_LEDC_SUPPORT_FADE_STOP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SPI_SUPPORT_OCT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_MEMSPI_SUPPORT_CONTROL_DUMMY_OUT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_MEMSPI_IS_INDEPENDENT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_TOUCH_SUPPORT_BENCHMARK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_TOUCH_SUPPORT_WATERPROOF, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_TOUCH_SUPPORT_PROX_SENSING, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_TOUCH_SUPPORT_DENOISE_CHAN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_UART_SUPPORT_WAKEUP_INT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SPIRAM_XIP_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_USB_OTG_PERIPH_NUM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE, 3968); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SHA_SUPPORT_DMA, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SHA_SUPPORT_RESUME, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SHA_SUPPORT_SHA224, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SHA_SUPPORT_SHA512_224, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SHA_SUPPORT_SHA512_256, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SHA_SUPPORT_SHA512_T, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_AES_SUPPORT_DMA, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_EFUSE_HARD_DIS_JTAG, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_EFUSE_SOFT_DIS_JTAG, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_EFUSE_DIS_ICACHE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_EFUSE_XTS_AES_KEY_128, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_EFUSE_XTS_AES_KEY_256, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SECURE_BOOT_V2_RSA, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE, 16); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE, 256); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH, 12); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SPI_MEM_SUPPORT_WRAP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_COEX_HW_PTI, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_WIFI_HW_TSF, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_WIFI_FTM_SUPPORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_GDMA_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_UHCI_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_AHB_GDMA_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_LCDCAM_CAM_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_LCDCAM_I80_LCD_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_LCDCAM_RGB_LCD_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_LCD_RGB_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SIMD_INSTRUCTION_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_APB_BACKUP_DMA, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_CACHE_FREEZE_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_CACHE_ACS_INVALID_STATE_ON_PANIC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SIMD_PREFERRED_DATA_ALIGNMENT, 16); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_AHB_GDMA_VERSION, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_I2C_SUPPORT_XTAL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_I2C_SUPPORT_RTC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_I2S_HW_VERSION_2, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_I2S_SUPPORTS_PCM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_I2S_SUPPORTS_TDM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_RMT_SUPPORT_DMA, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH, 128); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM, 549); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH, 128); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_UART_SUPPORT_RTC_CLK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_UART_SUPPORT_XTAL_CLK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_UHCI_NUM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SHA_GDMA, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_AES_GDMA, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PM_SUPPORT_BT_WAKEUP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PM_SUPPORT_CPU_PD, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PM_SUPPORT_TAGMEM_PD, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PM_SUPPORT_MAC_BB_PD, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D2, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_EFUSE_DIS_USB_JTAG, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_MAC_BB_PD_MEM_SIZE, 192); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SPI_MEM_SUPPORT_TIMING_TUNING, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SPI_MEM_FLASH_SUPPORT_HPM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SDMMC_USE_GPIO_MATRIX, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SDMMC_DELAY_PHASE_NUM, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_WIFI_GCMP_SUPPORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_WIFI_TXOP_SUPPORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_WIFI_PHY_NEEDS_USB_WORKAROUND, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_BLE_50_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_XTAL_FREQ, 40); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_XTAL_FREQ_40, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOOTLOADER_OFFSET_IN_FLASH, 0x0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOOTLOADER_CPU_CLK_FREQ_MHZ, 80); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ, 240); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_CLK_FREQ_HZ, 240000000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_TIMER_INTERRUPT_LEVEL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOOTLOADER_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_TIMESTAMP_SOURCE_RTOS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP32_DPORT_DIS_INTERRUPT_LVL, 5); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_IDF_TARGET_ARCH_XTENSA, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_PHY_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_portNUM_PROCESSORS, 2); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_IDF_FIRMWARE_CHIP_ID, 0x0009); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SPIRAM_ALLOW_NOINIT_SEG_EXTERNAL_MEMORY, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_IDF_TARGET_ESP32S3, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_TIMER_IMPL_SYSTIMER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY, 2000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_ESPRESSIF_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_ETHOS_U_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_GIGADEVICE_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_INFINEON_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_INTEL_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_MICROCHIP_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_NORDIC_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_NUVOTON_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_NXP_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_OPENISA_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_QUICKLOGIC_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_REALTEK_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_RENESAS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_RPI_PICO_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_SIFLI_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_SILABS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_ST_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_STM32_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_TDK_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_TELINK_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_TI_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_WCH_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HAL_WURTHELEKTRONIK_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_XTENSA_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_HOSTAP_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_LIBLC3_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_LIBMCTP_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_LIBMETAL_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_LIBSBC_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_LITTLEFS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_LORA_BASICS_MODEM_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_LORAMAC_NODE_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_SEMTECH_RADIO_DRIVERS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_SEMTECH_SX126X, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_LVGL_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_MBEDTLS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MBEDTLS_VERSION_4_x, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_MBEDTLS_3_6_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_MCUBOOT_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_MIPI_SYS_T_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_NANOPB_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_NRF_WIFI_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_OPEN_AMP_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_OPENTHREAD_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_PERCEPIO_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_PICOLIBC_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_PSA_ARCH_TESTS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_SEGGER_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_TF_M_TESTS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_TF_PSA_CRYPTO_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_TRUSTED_FIRMWARE_A_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_TRUSTED_FIRMWARE_M_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_UOSCORE_UEDHOC_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_ZCBOR_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ZEPHYR_NRF_HW_MODELS_MODULE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_ESPRESSIF_HAL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOARD, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOARD_REVISION, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOARD_TARGET, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOARD_XIAO_ESP32S3, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOARD_XIAO_ESP32S3_ESP32S3_PROCPU, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOARD_QUALIFIERS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HEAP_MEM_POOL_ADD_SIZE_BOARD, 4096); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SERIES, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_FAMILY, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_PART_NUMBER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_FAMILY_ESPRESSIF_ESP32, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_SERIES_ESP32S3, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ESP32S3_WROOM_N8R8, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ESP32S3, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_ESP32S3_PROCPU, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GPIO_INIT_PRIORITY, 40); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_SIMPLE_BOOT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP32_TIMER_TASK_STACK_SIZE, 4096); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP32_TIMER_TASK_PRIO, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_CONSOLE_UART_NUM, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_CONSOLE_UART_BAUDRATE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_CONSOLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_USB_SERIAL_JTAG_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP32_EFUSE_MAX_BLK_LEN, 256); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESPTOOLPY_FLASHMODE_DIO, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESPTOOLPY_FLASHMODE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESPTOOLPY_FLASHFREQ_80M, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESPTOOLPY_FLASHFREQ_80M_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESPTOOLPY_FLASHFREQ, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESPTOOLPY_FLASHSIZE_2MB, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESPTOOLPY_FLASHSIZE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESPTOOLPY_BEFORE_RESET, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESPTOOLPY_BEFORE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESPTOOLPY_AFTER_RESET, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESPTOOLPY_AFTER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MMU_PAGE_SIZE, 0x10000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SPI_FLASH_SUPPORT_GD_CHIP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SPI_FLASH_SUPPORT_TH_CHIP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_CHIP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SPI_FLASH_ROM_DRIVER_PATCH, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP32S3_INSTRUCTION_CACHE_16KB, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE, 0x4000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS, 8); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE, 32); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP32S3_DATA_CACHE_32KB, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP32S3_DATA_CACHE_SIZE, 0x8000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP32S3_DATA_CACHE_8WAYS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS, 8); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP32S3_DATA_CACHE_LINE_32B, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE, 32); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_MAC_ADDR_UNIVERSE_BT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_RESERVE_RTC_MEM, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SOC_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_XTENSA, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_IS_SET, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LITTLE_ENDIAN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SRAM_SIZE, 416); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SRAM_BASE_ADDRESS, 0x3fc88000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_DEVICE_STATE_ALIGN, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SRAM_SW_ISR_TABLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_EXCEPTION_DEBUG, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_TIMING_FUNCTIONS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_SUPPORTS_COREDUMP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_SUPPORTS_COREDUMP_STACK_PTR, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_CODE_DATA_RELOCATION, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_HAS_FPU, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ARCH_HAS_DIRECTED_IPIS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_HAS_BUILTIN_FFS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NUM_COOP_PRIORITIES, 16); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MAIN_THREAD_PRIORITY, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COOP_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PREEMPT_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PRIORITY_CEILING, -128); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_THREAD_STACK_INFO, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SCHED_SIMPLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_WAITQ_SIMPLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ERRNO, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOOT_BANNER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOOT_BANNER_STRING, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BOOT_DELAY, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYSTEM_WORKQUEUE_PRIORITY, -1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYSTEM_WORKQUEUE_WORK_TIMEOUT_MS, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ATOMIC_OPERATIONS_BUILTIN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TIMESLICING, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TIMESLICE_PRIORITY, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_POLL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NUM_MBOX_ASYNC_MSGS, 10); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HEAP_MEM_POOL_SIZE, 4096); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TIMEOUT_64BIT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_CLOCK_MAX_TIMEOUT_DAYS, 365); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USE_SWITCH, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_USE_SWITCH_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_SUPPORTS_STATIC_INIT_GNU, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_INIT_PRIORITY_OBJECTS, 30); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_INIT_PRIORITY_LIBC, 35); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_INIT_PRIORITY_DEFAULT, 40); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_INIT_PRIORITY_DEVICE, 50); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_APPLICATION_INIT_PRIORITY, 90); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CLOCK_CONTROL_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CLOCK_CONTROL_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CLOCK_CONTROL_ESP32, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CLOCK_CONTROL_ESP32_RTC_CLK_SRC_INT_RC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CLOCK_CONTROL_ESP32_RTC_CLK_CAL_CYCLES, 1024); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CLOCK_CONTROL_TISCI_PRIORITY, 40); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CONSOLE_INPUT_MAX_LINE_LEN, 128); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CONSOLE_HAS_DRIVER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CONSOLE_INIT_PRIORITY, 60); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_UART_CONSOLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_UART_CONSOLE_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_UART_CONSOLE_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GPIO_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GPIO_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GPIO_ESP32, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_INTC_INIT_PRIORITY, 40); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_INTC_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_INTC_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_INTC_ESP32, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LORA, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LORA_MODULE_BACKEND_LORAMAC_NODE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LORA_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LORA_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LORA_INIT_PRIORITY, 90); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LORA_SX126X, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PINCTRL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PINCTRL_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PINCTRL_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PINCTRL_ESP32, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SERIAL_HAS_DRIVER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SERIAL_SUPPORT_ASYNC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SERIAL_SUPPORT_INTERRUPT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SERIAL_INIT_PRIORITY, 50); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_UART_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_UART_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_UART_ESP32, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SERIAL_ESP32_USB, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_UART_ESP32_TX_FIFO_THRESH, 0x1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_UART_ESP32_RX_FIFO_THRESH, 0x16); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SPI_INIT_PRIORITY, 50); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SPI_COMPLETION_TIMEOUT_TOLERANCE, 200); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SPI_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SPI_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ESP32_SPIM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYSTEM_CLOCK_INIT_PRIORITY, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TICKLESS_CAPABLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_XTENSA_TIMER_LPM_TIMER_NONE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FULL_LIBC_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MINIMAL_LIBC_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PICOLIBC_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PICOLIBC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMMON_LIBC_ABORT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMMON_LIBC_TIME, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMMON_LIBC_MALLOC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMMON_LIBC_CALLOC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMMON_LIBC_REALLOCARRAY, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PICOLIBC_USE_TOOLCHAIN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PICOLIBC_IO_LONG_LONG, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_STDOUT_CONSOLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_NEED_LIBC_MEM_PARTITION, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_HEAP_ALLOC_LOOPS, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_HEAP_ARRAY_SIZE, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_HEAP_HARDENING_BASIC, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_HEAP_HARDENING_LEVEL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_HEAP_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_HEAP_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SYS_HEAP_AUTO, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_MPSC_PBUF, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_POWEROFF, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CBPRINTF_COMPLETE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CBPRINTF_FULL_INTEGRAL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CBPRINTF_CONVERT_CHECK_PTR, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_LOAD_LOG_LEVEL_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_LOAD_LOG_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_POSIX_AEP_CHOICE_ZEPHYR, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TC_PROVIDES_POSIX_C_LANG_SUPPORT_R, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_POSIX_C_LANG_SUPPORT_R, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_POSIX_C_LIB_EXT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LIBGCC_RTLIB, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_RING_BUFFER, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_GETOPT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TIMEUTIL_APPLY_SKEW, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PRINTK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_EARLY_CONSOLE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ASSERT_VERBOSE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CPU_LOAD_LOG_PERIODICALLY, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_CORE_INIT_PRIORITY, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_MODE_DEFERRED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_FLUSH_SLEEP_US, 10000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_DEFAULT_LEVEL, 3); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_OVERRIDE_LEVEL, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_MAX_LEVEL, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_PRINTK, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_MODE_OVERFLOW, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_PROCESS_TRIGGER_THRESHOLD, 10); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_PROCESS_THREAD, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_PROCESS_THREAD_STARTUP_DELAY_MS, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_PROCESS_THREAD_SLEEP_MS, 1000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_BUFFER_SIZE, 1024); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_TRACE_SHORT_TIMESTAMP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_FUNC_NAME_PREFIX_DBG, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_BACKEND_SHOW_TIMESTAMP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_BACKEND_SHOW_LEVEL, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_BACKEND_SHOW_COLOR, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_TAG_MAX_LEN, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_BACKEND_SUPPORTS_FORMAT_TIMESTAMP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_BACKEND_FORMAT_TIMESTAMP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_OUTPUT_FORMAT_TIME_TIMESTAMP, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_BACKEND_UART, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_BACKEND_UART_BUFFER_SIZE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_BACKEND_UART_AUTOSTART, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_BACKEND_UART_OUTPUT_TEXT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_BACKEND_UART_OUTPUT_DEFAULT, 0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_USE_VLA, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_SIMPLE_MSG_OPTIMIZE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_FAILURE_REPORT_PERIOD, 1000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_RATELIMIT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_RATELIMIT_INTERVAL_MS, 5000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LOG_OUTPUT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_HAS_PM, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TIMER_RANDOM_INITIAL_STATE, 123456789); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ENTROPY_NODE_ENABLED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COVERAGE_DUMP_PATH_EXCLUDE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_ZEPHYR_1_0, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_THREAD_LOCAL_STORAGE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_GNU_EXTENSIONS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_PICOLIBC_DEFAULT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LINKER_ORPHAN_SECTION_WARN, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FLASH_LOAD_SIZE, 0x0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ROM_END_OFFSET, 0x0); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LD_LINKER_SCRIPT_SUPPORTED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LD_LINKER_TEMPLATE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LINKER_SORT_BY_ALIGNMENT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LINKER_GENERIC_SECTIONS_PRESENT_AT_BOOT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LINKER_ITERABLE_SUBALIGN, 4); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_STD_C17, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_SUPPORTS_GNU_EXTENSIONS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_SIZE_OPTIMIZATIONS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMPILER_TRACK_MACRO_EXPANSION, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMPILER_COLOR_DIAGNOSTICS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_FORTIFY_SOURCE_COMPILE_TIME, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMPILER_OPT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_SUPPORTS_VLA_IN_STATEMENTS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_TOOLCHAIN_SUPPORTS_VARIABLE_CLEANUP_ATTRIBUTE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_COMPILER_CODEGEN_VLIW_AUTO, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_RUNTIME_ERROR_CHECKS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_KERNEL_BIN_NAME, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_OUTPUT_STAT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_OUTPUT_PRINT_MEMORY_USAGE, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BUILD_GAP_FILL_PATTERN, 0xFF); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_BUILD_OUTPUT_STRIP_PATHS, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_CHECK_INIT_PRIORITIES, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_WARN_DEPRECATED, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_ENFORCE_ZEPHYR_STDINT, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LEGACY_GENERATED_INCLUDE_PATH, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LORAMODEM_KISS_IFACE_UART, 1); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LORAMODEM_LORA_FREQ_HZ, 869618000); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LORAMODEM_LORA_SF, 8); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LORAMODEM_LORA_BW, 62); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LORAMODEM_LORA_CR, 5); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LORAMODEM_LORA_TX_POWER_DBM, 21); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LORAMODEM_LORA_PREAMBLE_LEN, 8); +GEN_ABSOLUTE_SYM_KCONFIG(CONFIG_LORAMODEM_MAX_PACKET_SIZE, 255); + +GEN_ABS_SYM_END diff --git a/build/zephyr/misc/generated/struct_tags.json b/build/zephyr/misc/generated/struct_tags.json new file mode 100644 index 0000000..a986d4f --- /dev/null +++ b/build/zephyr/misc/generated/struct_tags.json @@ -0,0 +1,105 @@ +{ + "__net_socket": [ + "modem_socket", + "net_context", + "dispatcher_context", + "spair", + "net_mgmt_socket", + "tls_context", + "websocket_context" + ], + "__subsystem": [ + "gpio_driver_api", + "spi_driver_api", + "shared_irq_driver_api", + "crypto_driver_api", + "adc_driver_api", + "auxdisplay_driver_api", + "bbram_driver_api", + "biometric_driver_api", + "bt_hci_driver_api", + "can_driver_api", + "cellular_driver_api", + "charger_driver_api", + "clock_control_driver_api", + "comparator_driver_api", + "coredump_driver_api", + "counter_driver_api", + "crc_driver_api", + "dac_driver_api", + "dai_driver_api", + "display_driver_api", + "dma_driver_api", + "edac_driver_api", + "eeprom_driver_api", + "emul_bbram_driver_api", + "fuel_gauge_emul_driver_api", + "emul_sensor_driver_api", + "entropy_driver_api", + "espi_driver_api", + "espi_saf_driver_api", + "flash_driver_api", + "fpga_driver_api", + "fuel_gauge_driver_api", + "gnss_driver_api", + "haptics_driver_api", + "hwspinlock_driver_api", + "i2c_driver_api", + "i2c_target_driver_api", + "i2s_driver_api", + "i3c_driver_api", + "ipm_driver_api", + "led_driver_api", + "led_strip_driver_api", + "lora_driver_api", + "mbox_driver_api", + "mdio_driver_api", + "mipi_dbi_driver_api", + "mipi_dsi_driver_api", + "mspi_driver_api", + "opamp_driver_api", + "otp_driver_api", + "peci_driver_api", + "ps2_driver_api", + "ptp_clock_driver_api", + "pwm_driver_api", + "regulator_parent_driver_api", + "regulator_driver_api", + "reset_driver_api", + "retained_mem_driver_api", + "rtc_driver_api", + "sdhc_driver_api", + "sensor_driver_api", + "smbus_driver_api", + "syscon_driver_api", + "tee_driver_api", + "uaol_driver_api", + "video_driver_api", + "virtio_driver_api", + "w1_driver_api", + "wdt_driver_api", + "wuc_driver_api", + "can_transceiver_driver_api", + "nrf_clock_control_driver_api", + "i3c_target_driver_api", + "its_driver_api", + "vtd_driver_api", + "renesas_elc_driver_api", + "tgpio_driver_api", + "pcie_ctrl_driver_api", + "pcie_ep_driver_api", + "psi5_driver_api", + "sent_driver_api", + "svc_driver_api", + "stepper_driver_api", + "stepper_ctrl_driver_api", + "uart_driver_api", + "bc12_emul_driver_api", + "bc12_driver_api", + "usbc_ppc_driver_api", + "tcpc_driver_api", + "usbc_vbus_driver_api", + "ivshmem_driver_api", + "ethphy_driver_api" + ] +} \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls.json b/build/zephyr/misc/generated/syscalls.json new file mode 100644 index 0000000..80a69e1 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls.json @@ -0,0 +1,5138 @@ +[ + [ + [ + "void xtensa_user_fault", + "unsigned int reason" + ], + "arch.h", + true + ], + [ + [ + "int zephyr_read_stdin", + "char *buf, int nbytes" + ], + "libc-hooks.h", + true + ], + [ + [ + "int zephyr_write_stdout", + "const void *buf, int nbytes" + ], + "libc-hooks.h", + true + ], + [ + [ + "int zephyr_fputc", + "int c, FILE * stream" + ], + "libc-hooks.h", + true + ], + [ + [ + "size_t zephyr_fwrite", + "const void *ZRESTRICT ptr, size_t size, size_t nitems, FILE *ZRESTRICT stream" + ], + "libc-hooks.h", + true + ], + [ + [ + "void sys_clock_getrtoffset", + "struct timespec *tp" + ], + "clock.h", + true + ], + [ + [ + "int sys_clock_settime", + "int clock_id, const struct timespec *tp" + ], + "clock.h", + true + ], + [ + [ + "int sys_clock_nanosleep", + "int clock_id, int flags, const struct timespec *rqtp, struct timespec *rmtp" + ], + "clock.h", + true + ], + [ + [ + "int z_sys_mutex_kernel_lock", + "struct sys_mutex *mutex, k_timeout_t timeout" + ], + "mutex.h", + true + ], + [ + [ + "int z_sys_mutex_kernel_unlock", + "struct sys_mutex *mutex" + ], + "mutex.h", + true + ], + [ + [ + "void z_log_msg_simple_create_0", + "const void *source, uint32_t level, const char *fmt" + ], + "log_msg.h", + true + ], + [ + [ + "void z_log_msg_simple_create_1", + "const void *source, uint32_t level, const char *fmt, uint32_t arg" + ], + "log_msg.h", + true + ], + [ + [ + "void z_log_msg_simple_create_2", + "const void *source, uint32_t level, const char *fmt, uint32_t arg0, uint32_t arg1" + ], + "log_msg.h", + true + ], + [ + [ + "void z_log_msg_static_create", + "const void *source, const struct log_msg_desc desc, uint8_t *package, const void *data" + ], + "log_msg.h", + true + ], + [ + [ + "void log_panic", + "void" + ], + "log_ctrl.h", + true + ], + [ + [ + "bool log_process", + "void" + ], + "log_ctrl.h", + true + ], + [ + [ + "uint32_t log_buffered_cnt", + "void" + ], + "log_ctrl.h", + true + ], + [ + [ + "uint32_t log_filter_set", + "struct log_backend const *const backend, uint32_t domain_id, int16_t source_id, uint32_t level" + ], + "log_ctrl.h", + true + ], + [ + [ + "uint32_t log_frontend_filter_set", + "int16_t source_id, uint32_t level" + ], + "log_ctrl.h", + true + ], + [ + [ + "int gpio_pin_interrupt_configure", + "const struct device *port, gpio_pin_t pin, gpio_flags_t flags" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_pin_configure", + "const struct device *port, gpio_pin_t pin, gpio_flags_t flags" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_port_get_direction", + "const struct device *port, gpio_port_pins_t map, gpio_port_pins_t *inputs, gpio_port_pins_t *outputs" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_pin_get_config", + "const struct device *port, gpio_pin_t pin, gpio_flags_t *flags" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_port_get_raw", + "const struct device *port, gpio_port_value_t *value" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_port_set_masked_raw", + "const struct device *port, gpio_port_pins_t mask, gpio_port_value_t value" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_port_set_bits_raw", + "const struct device *port, gpio_port_pins_t pins" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_port_clear_bits_raw", + "const struct device *port, gpio_port_pins_t pins" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_port_toggle_bits", + "const struct device *port, gpio_port_pins_t pins" + ], + "gpio.h", + true + ], + [ + [ + "int gpio_get_pending_int", + "const struct device *dev" + ], + "gpio.h", + true + ], + [ + [ + "int uart_err_check", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "int uart_poll_in", + "const struct device *dev, unsigned char *p_char" + ], + "uart.h", + true + ], + [ + [ + "int uart_poll_in_u16", + "const struct device *dev, uint16_t *p_u16" + ], + "uart.h", + true + ], + [ + [ + "void uart_poll_out", + "const struct device *dev, unsigned char out_char" + ], + "uart.h", + true + ], + [ + [ + "void uart_poll_out_u16", + "const struct device *dev, uint16_t out_u16" + ], + "uart.h", + true + ], + [ + [ + "int uart_configure", + "const struct device *dev, const struct uart_config *cfg" + ], + "uart.h", + true + ], + [ + [ + "int uart_config_get", + "const struct device *dev, struct uart_config *cfg" + ], + "uart.h", + true + ], + [ + [ + "void uart_irq_tx_enable", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "void uart_irq_tx_disable", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "void uart_irq_rx_enable", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "void uart_irq_rx_disable", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "void uart_irq_err_enable", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "void uart_irq_err_disable", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "int uart_irq_is_pending", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "int uart_irq_update", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "int uart_tx", + "const struct device *dev, const uint8_t *buf, size_t len, int32_t timeout" + ], + "uart.h", + true + ], + [ + [ + "int uart_tx_u16", + "const struct device *dev, const uint16_t *buf, size_t len, int32_t timeout" + ], + "uart.h", + true + ], + [ + [ + "int uart_tx_abort", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "int uart_rx_enable", + "const struct device *dev, uint8_t *buf, size_t len, int32_t timeout" + ], + "uart.h", + true + ], + [ + [ + "int uart_rx_enable_u16", + "const struct device *dev, uint16_t *buf, size_t len, int32_t timeout" + ], + "uart.h", + true + ], + [ + [ + "int uart_rx_disable", + "const struct device *dev" + ], + "uart.h", + true + ], + [ + [ + "int uart_line_ctrl_set", + "const struct device *dev, uint32_t ctrl, uint32_t val" + ], + "uart.h", + true + ], + [ + [ + "int uart_line_ctrl_get", + "const struct device *dev, uint32_t ctrl, uint32_t *val" + ], + "uart.h", + true + ], + [ + [ + "int uart_drv_cmd", + "const struct device *dev, uint32_t cmd, uint32_t p" + ], + "uart.h", + true + ], + [ + [ + "int spi_transceive", + "const struct device *dev, const struct spi_config *config, const struct spi_buf_set *tx_bufs, const struct spi_buf_set *rx_bufs" + ], + "spi.h", + true + ], + [ + [ + "int spi_release", + "const struct device *dev, const struct spi_config *config" + ], + "spi.h", + true + ], + [ + [ + "const struct device *device_get_binding", + "const char *name" + ], + "device.h", + true + ], + [ + [ + "bool device_is_ready", + "const struct device *dev" + ], + "device.h", + true + ], + [ + [ + "int device_init", + "const struct device *dev" + ], + "device.h", + true + ], + [ + [ + "int device_deinit", + "const struct device *dev" + ], + "device.h", + true + ], + [ + [ + "const struct device *device_get_by_dt_nodelabel", + "const char *nodelabel" + ], + "device.h", + true + ], + [ + [ + "k_thread_stack_t *k_thread_stack_alloc", + "size_t size, int flags" + ], + "kernel.h", + true + ], + [ + [ + "int k_thread_stack_free", + "k_thread_stack_t *stack" + ], + "kernel.h", + true + ], + [ + [ + "k_tid_t k_thread_create", + "struct k_thread *new_thread, k_thread_stack_t *stack, size_t stack_size, k_thread_entry_t entry, void *p1, void *p2, void *p3, int prio, uint32_t options, k_timeout_t delay" + ], + "kernel.h", + true + ], + [ + [ + "int k_thread_stack_space_get", + "const struct k_thread *thread, size_t *unused_ptr" + ], + "kernel.h", + true + ], + [ + [ + "int k_thread_runtime_stack_unused_threshold_pct_set", + "struct k_thread *thread, uint32_t pct" + ], + "kernel.h", + true + ], + [ + [ + "int k_thread_runtime_stack_unused_threshold_set", + "struct k_thread *thread, size_t threshold" + ], + "kernel.h", + true + ], + [ + [ + "size_t k_thread_runtime_stack_unused_threshold_get", + "struct k_thread *thread" + ], + "kernel.h", + true + ], + [ + [ + "int k_thread_join", + "struct k_thread *thread, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int32_t k_sleep", + "k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int32_t k_usleep", + "int32_t us" + ], + "kernel.h", + true + ], + [ + [ + "void k_busy_wait", + "uint32_t usec_to_wait" + ], + "kernel.h", + true + ], + [ + [ + "void k_yield", + "void" + ], + "kernel.h", + true + ], + [ + [ + "void k_wakeup", + "k_tid_t thread" + ], + "kernel.h", + true + ], + [ + [ + "k_tid_t k_sched_current_thread_query", + "void" + ], + "kernel.h", + true + ], + [ + [ + "void k_thread_abort", + "k_tid_t thread" + ], + "kernel.h", + true + ], + [ + [ + "k_ticks_t k_thread_timeout_expires_ticks", + "const struct k_thread *thread" + ], + "kernel.h", + true + ], + [ + [ + "k_ticks_t k_thread_timeout_remaining_ticks", + "const struct k_thread *thread" + ], + "kernel.h", + true + ], + [ + [ + "int k_thread_priority_get", + "k_tid_t thread" + ], + "kernel.h", + true + ], + [ + [ + "void k_thread_priority_set", + "k_tid_t thread, int prio" + ], + "kernel.h", + true + ], + [ + [ + "void k_thread_deadline_set", + "k_tid_t thread, int deadline" + ], + "kernel.h", + true + ], + [ + [ + "void k_thread_absolute_deadline_set", + "k_tid_t thread, int deadline" + ], + "kernel.h", + true + ], + [ + [ + "void k_reschedule", + "void" + ], + "kernel.h", + true + ], + [ + [ + "void k_thread_suspend", + "k_tid_t thread" + ], + "kernel.h", + true + ], + [ + [ + "void k_thread_resume", + "k_tid_t thread" + ], + "kernel.h", + true + ], + [ + [ + "int k_is_preempt_thread", + "void" + ], + "kernel.h", + true + ], + [ + [ + "void k_thread_custom_data_set", + "void *value" + ], + "kernel.h", + true + ], + [ + [ + "void *k_thread_custom_data_get", + "void" + ], + "kernel.h", + true + ], + [ + [ + "int k_thread_name_set", + "k_tid_t thread, const char *str" + ], + "kernel.h", + true + ], + [ + [ + "int k_thread_name_copy", + "k_tid_t thread, char *buf, size_t size" + ], + "kernel.h", + true + ], + [ + [ + "void k_timer_start", + "struct k_timer *timer, k_timeout_t duration, k_timeout_t period" + ], + "kernel.h", + true + ], + [ + [ + "void k_timer_stop", + "struct k_timer *timer" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_timer_status_get", + "struct k_timer *timer" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_timer_status_sync", + "struct k_timer *timer" + ], + "kernel.h", + true + ], + [ + [ + "k_ticks_t k_timer_expires_ticks", + "const struct k_timer *timer" + ], + "kernel.h", + true + ], + [ + [ + "k_ticks_t k_timer_remaining_ticks", + "const struct k_timer *timer" + ], + "kernel.h", + true + ], + [ + [ + "void k_timer_user_data_set", + "struct k_timer *timer, void *user_data" + ], + "kernel.h", + true + ], + [ + [ + "void *k_timer_user_data_get", + "const struct k_timer *timer" + ], + "kernel.h", + true + ], + [ + [ + "int64_t k_uptime_ticks", + "void" + ], + "kernel.h", + true + ], + [ + [ + "void k_queue_init", + "struct k_queue *queue" + ], + "kernel.h", + true + ], + [ + [ + "void k_queue_cancel_wait", + "struct k_queue *queue" + ], + "kernel.h", + true + ], + [ + [ + "int32_t k_queue_alloc_append", + "struct k_queue *queue, void *data" + ], + "kernel.h", + true + ], + [ + [ + "int32_t k_queue_alloc_prepend", + "struct k_queue *queue, void *data" + ], + "kernel.h", + true + ], + [ + [ + "void *k_queue_get", + "struct k_queue *queue, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_queue_is_empty", + "struct k_queue *queue" + ], + "kernel.h", + true + ], + [ + [ + "void *k_queue_peek_head", + "struct k_queue *queue" + ], + "kernel.h", + true + ], + [ + [ + "void *k_queue_peek_tail", + "struct k_queue *queue" + ], + "kernel.h", + true + ], + [ + [ + "int k_futex_wait", + "struct k_futex *futex, int expected, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_futex_wake", + "struct k_futex *futex, bool wake_all" + ], + "kernel.h", + true + ], + [ + [ + "void k_event_init", + "struct k_event *event" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_event_post", + "struct k_event *event, uint32_t events" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_event_set", + "struct k_event *event, uint32_t events" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_event_set_masked", + "struct k_event *event, uint32_t events, uint32_t events_mask" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_event_clear", + "struct k_event *event, uint32_t events" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_event_wait", + "struct k_event *event, uint32_t events, bool reset, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_event_wait_all", + "struct k_event *event, uint32_t events, bool reset, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_event_wait_safe", + "struct k_event *event, uint32_t events, bool reset, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_event_wait_all_safe", + "struct k_event *event, uint32_t events, bool reset, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int32_t k_stack_alloc_init", + "struct k_stack *stack, uint32_t num_entries" + ], + "kernel.h", + true + ], + [ + [ + "int k_stack_push", + "struct k_stack *stack, stack_data_t data" + ], + "kernel.h", + true + ], + [ + [ + "int k_stack_pop", + "struct k_stack *stack, stack_data_t *data, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_mutex_init", + "struct k_mutex *mutex" + ], + "kernel.h", + true + ], + [ + [ + "int k_mutex_lock", + "struct k_mutex *mutex, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_mutex_unlock", + "struct k_mutex *mutex" + ], + "kernel.h", + true + ], + [ + [ + "int k_condvar_init", + "struct k_condvar *condvar" + ], + "kernel.h", + true + ], + [ + [ + "int k_condvar_signal", + "struct k_condvar *condvar" + ], + "kernel.h", + true + ], + [ + [ + "int k_condvar_broadcast", + "struct k_condvar *condvar" + ], + "kernel.h", + true + ], + [ + [ + "int k_condvar_wait", + "struct k_condvar *condvar, struct k_mutex *mutex, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_sem_init", + "struct k_sem *sem, unsigned int initial_count, unsigned int limit" + ], + "kernel.h", + true + ], + [ + [ + "int k_sem_take", + "struct k_sem *sem, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "void k_sem_give", + "struct k_sem *sem" + ], + "kernel.h", + true + ], + [ + [ + "void k_sem_reset", + "struct k_sem *sem" + ], + "kernel.h", + true + ], + [ + [ + "unsigned int k_sem_count_get", + "struct k_sem *sem" + ], + "kernel.h", + true + ], + [ + [ + "int k_msgq_alloc_init", + "struct k_msgq *msgq, size_t msg_size, uint32_t max_msgs" + ], + "kernel.h", + true + ], + [ + [ + "int k_msgq_put", + "struct k_msgq *msgq, const void *data, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_msgq_put_front", + "struct k_msgq *msgq, const void *data" + ], + "kernel.h", + true + ], + [ + [ + "int k_msgq_get", + "struct k_msgq *msgq, void *data, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_msgq_peek", + "struct k_msgq *msgq, void *data" + ], + "kernel.h", + true + ], + [ + [ + "int k_msgq_peek_at", + "struct k_msgq *msgq, void *data, uint32_t idx" + ], + "kernel.h", + true + ], + [ + [ + "void k_msgq_purge", + "struct k_msgq *msgq" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_msgq_num_free_get", + "struct k_msgq *msgq" + ], + "kernel.h", + true + ], + [ + [ + "void k_msgq_get_attrs", + "struct k_msgq *msgq, struct k_msgq_attrs *attrs" + ], + "kernel.h", + true + ], + [ + [ + "uint32_t k_msgq_num_used_get", + "struct k_msgq *msgq" + ], + "kernel.h", + true + ], + [ + [ + "void k_pipe_init", + "struct k_pipe *pipe, uint8_t *buffer, size_t buffer_size" + ], + "kernel.h", + true + ], + [ + [ + "int k_pipe_write", + "struct k_pipe *pipe, const uint8_t *data, size_t len, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "int k_pipe_read", + "struct k_pipe *pipe, uint8_t *data, size_t len, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "void k_pipe_reset", + "struct k_pipe *pipe" + ], + "kernel.h", + true + ], + [ + [ + "void k_pipe_close", + "struct k_pipe *pipe" + ], + "kernel.h", + true + ], + [ + [ + "int k_poll", + "struct k_poll_event *events, int num_events, k_timeout_t timeout" + ], + "kernel.h", + true + ], + [ + [ + "void k_poll_signal_init", + "struct k_poll_signal *sig" + ], + "kernel.h", + true + ], + [ + [ + "void k_poll_signal_reset", + "struct k_poll_signal *sig" + ], + "kernel.h", + true + ], + [ + [ + "void k_poll_signal_check", + "struct k_poll_signal *sig, unsigned int *signaled, int *result" + ], + "kernel.h", + true + ], + [ + [ + "int k_poll_signal_raise", + "struct k_poll_signal *sig, int result" + ], + "kernel.h", + true + ], + [ + [ + "void k_str_out", + "char *c, size_t n" + ], + "kernel.h", + true + ], + [ + [ + "int k_float_disable", + "struct k_thread *thread" + ], + "kernel.h", + true + ], + [ + [ + "int k_float_enable", + "struct k_thread *thread, unsigned int options" + ], + "kernel.h", + true + ], + [ + [ + "void k_object_access_grant", + "const void *object, struct k_thread *thread" + ], + "kobject.h", + true + ], + [ + [ + "void k_object_release", + "const void *object" + ], + "kobject.h", + true + ], + [ + [ + "int k_object_access_check", + "const void *object" + ], + "kobject.h", + true + ], + [ + [ + "void *k_object_alloc", + "enum k_objects otype" + ], + "kobject.h", + true + ], + [ + [ + "void *k_object_alloc_size", + "enum k_objects otype, size_t size" + ], + "kobject.h", + true + ], + [ + [ + "unsigned int sys_clock_hw_cycles_per_sec_runtime_get", + "void" + ], + "time_units.h", + true + ], + [ + [ + "int *z_errno", + "void" + ], + "errno_private.h", + true + ], + [ + [ + "int sys_cache_data_flush_range", + "void *addr, size_t size" + ], + "cache.h", + false + ], + [ + [ + "int sys_cache_data_invd_range", + "void *addr, size_t size" + ], + "cache.h", + false + ], + [ + [ + "int sys_cache_data_flush_and_invd_range", + "void *addr, size_t size" + ], + "cache.h", + false + ], + [ + [ + "void user_fault", + "unsigned int reason" + ], + "error.h", + false + ], + [ + [ + "int adc_channel_setup", + "const struct device *dev, const struct adc_channel_cfg *channel_cfg" + ], + "adc.h", + false + ], + [ + [ + "int adc_read", + "const struct device *dev, const struct adc_sequence *sequence" + ], + "adc.h", + false + ], + [ + [ + "int adc_read_async", + "const struct device *dev, const struct adc_sequence *sequence, struct k_poll_signal *async" + ], + "adc.h", + false + ], + [ + [ + "int adc_get_decoder", + "const struct device *dev, const struct adc_decoder_api **api" + ], + "adc.h", + false + ], + [ + [ + "int auxdisplay_display_on", + "const struct device *dev" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_display_off", + "const struct device *dev" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_cursor_set_enabled", + "const struct device *dev, bool enabled" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_position_blinking_set_enabled", + "const struct device *dev, bool enabled" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_cursor_shift_set", + "const struct device *dev, uint8_t direction, bool display_shift" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_cursor_position_set", + "const struct device *dev, enum auxdisplay_position type, int16_t x, int16_t y" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_cursor_position_get", + "const struct device *dev, int16_t *x, int16_t *y" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_display_position_set", + "const struct device *dev, enum auxdisplay_position type, int16_t x, int16_t y" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_display_position_get", + "const struct device *dev, int16_t *x, int16_t *y" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_capabilities_get", + "const struct device *dev, struct auxdisplay_capabilities *capabilities" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_clear", + "const struct device *dev" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_brightness_get", + "const struct device *dev, uint8_t *brightness" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_brightness_set", + "const struct device *dev, uint8_t brightness" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_backlight_get", + "const struct device *dev, uint8_t *backlight" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_backlight_set", + "const struct device *dev, uint8_t backlight" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_is_busy", + "const struct device *dev" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_custom_character_set", + "const struct device *dev, struct auxdisplay_character *character" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_write", + "const struct device *dev, const uint8_t *data, uint16_t len" + ], + "auxdisplay.h", + false + ], + [ + [ + "int auxdisplay_custom_command", + "const struct device *dev, struct auxdisplay_custom_data *data" + ], + "auxdisplay.h", + false + ], + [ + [ + "int bbram_check_invalid", + "const struct device *dev" + ], + "bbram.h", + false + ], + [ + [ + "int bbram_check_standby_power", + "const struct device *dev" + ], + "bbram.h", + false + ], + [ + [ + "int bbram_check_power", + "const struct device *dev" + ], + "bbram.h", + false + ], + [ + [ + "int bbram_get_size", + "const struct device *dev, size_t *size" + ], + "bbram.h", + false + ], + [ + [ + "int bbram_read", + "const struct device *dev, size_t offset, size_t size, uint8_t *data" + ], + "bbram.h", + false + ], + [ + [ + "int bbram_write", + "const struct device *dev, size_t offset, size_t size, const uint8_t *data" + ], + "bbram.h", + false + ], + [ + [ + "int biometric_get_capabilities", + "const struct device *dev, struct biometric_capabilities *caps" + ], + "biometrics.h", + false + ], + [ + [ + "int biometric_attr_set", + "const struct device *dev, enum biometric_attribute attr, int32_t val" + ], + "biometrics.h", + false + ], + [ + [ + "int biometric_attr_get", + "const struct device *dev, enum biometric_attribute attr, int32_t *val" + ], + "biometrics.h", + false + ], + [ + [ + "int biometric_enroll_start", + "const struct device *dev, uint16_t template_id" + ], + "biometrics.h", + false + ], + [ + [ + "int biometric_enroll_capture", + "const struct device *dev, k_timeout_t timeout, struct biometric_capture_result *result" + ], + "biometrics.h", + false + ], + [ + [ + "int biometric_enroll_finalize", + "const struct device *dev" + ], + "biometrics.h", + false + ], + [ + [ + "int biometric_enroll_abort", + "const struct device *dev" + ], + "biometrics.h", + false + ], + [ + [ + "int biometric_template_store", + "const struct device *dev, uint16_t id, const uint8_t *data, size_t size" + ], + "biometrics.h", + false + ], + [ + [ + "int biometric_template_read", + "const struct device *dev, uint16_t id, uint8_t *data, size_t size" + ], + "biometrics.h", + false + ], + [ + [ + "int biometric_template_delete", + "const struct device *dev, uint16_t id" + ], + "biometrics.h", + false + ], + [ + [ + "int biometric_template_delete_all", + "const struct device *dev" + ], + "biometrics.h", + false + ], + [ + [ + "int biometric_template_list", + "const struct device *dev, uint16_t *ids, size_t max_count, size_t *actual_count" + ], + "biometrics.h", + false + ], + [ + [ + "int biometric_match", + "const struct device *dev, enum biometric_match_mode mode, uint16_t template_id, k_timeout_t timeout, struct biometric_match_result *result" + ], + "biometrics.h", + false + ], + [ + [ + "int biometric_led_control", + "const struct device *dev, enum biometric_led_state state" + ], + "biometrics.h", + false + ], + [ + [ + "int can_get_core_clock", + "const struct device *dev, uint32_t *rate" + ], + "can.h", + false + ], + [ + [ + "uint32_t can_get_bitrate_min", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "uint32_t can_get_bitrate_max", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "const struct can_timing *can_get_timing_min", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "const struct can_timing *can_get_timing_max", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "int can_calc_timing", + "const struct device *dev, struct can_timing *res, uint32_t bitrate, uint16_t sample_pnt" + ], + "can.h", + false + ], + [ + [ + "const struct can_timing *can_get_timing_data_min", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "const struct can_timing *can_get_timing_data_max", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "int can_calc_timing_data", + "const struct device *dev, struct can_timing *res, uint32_t bitrate, uint16_t sample_pnt" + ], + "can.h", + false + ], + [ + [ + "int can_set_timing_data", + "const struct device *dev, const struct can_timing *timing_data" + ], + "can.h", + false + ], + [ + [ + "int can_set_bitrate_data", + "const struct device *dev, uint32_t bitrate_data" + ], + "can.h", + false + ], + [ + [ + "int can_set_timing", + "const struct device *dev, const struct can_timing *timing" + ], + "can.h", + false + ], + [ + [ + "int can_get_capabilities", + "const struct device *dev, can_mode_t *cap" + ], + "can.h", + false + ], + [ + [ + "const struct device *can_get_transceiver", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "int can_start", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "int can_stop", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "int can_set_mode", + "const struct device *dev, can_mode_t mode" + ], + "can.h", + false + ], + [ + [ + "can_mode_t can_get_mode", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "int can_set_bitrate", + "const struct device *dev, uint32_t bitrate" + ], + "can.h", + false + ], + [ + [ + "int can_send", + "const struct device *dev, const struct can_frame *frame, k_timeout_t timeout, can_tx_callback_t callback, void *user_data" + ], + "can.h", + false + ], + [ + [ + "int can_add_rx_filter_msgq", + "const struct device *dev, struct k_msgq *msgq, const struct can_filter *filter" + ], + "can.h", + false + ], + [ + [ + "void can_remove_rx_filter", + "const struct device *dev, int filter_id" + ], + "can.h", + false + ], + [ + [ + "int can_get_max_filters", + "const struct device *dev, bool ide" + ], + "can.h", + false + ], + [ + [ + "int can_get_state", + "const struct device *dev, enum can_state *state, struct can_bus_err_cnt *err_cnt" + ], + "can.h", + false + ], + [ + [ + "int can_recover", + "const struct device *dev, k_timeout_t timeout" + ], + "can.h", + false + ], + [ + [ + "uint32_t can_stats_get_bit_errors", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "uint32_t can_stats_get_bit0_errors", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "uint32_t can_stats_get_bit1_errors", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "uint32_t can_stats_get_stuff_errors", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "uint32_t can_stats_get_crc_errors", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "uint32_t can_stats_get_form_errors", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "uint32_t can_stats_get_ack_errors", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "uint32_t can_stats_get_rx_overruns", + "const struct device *dev" + ], + "can.h", + false + ], + [ + [ + "int charger_get_prop", + "const struct device *dev, const charger_prop_t prop, union charger_propval *val" + ], + "charger.h", + false + ], + [ + [ + "int charger_set_prop", + "const struct device *dev, const charger_prop_t prop, const union charger_propval *val" + ], + "charger.h", + false + ], + [ + [ + "int charger_charge_enable", + "const struct device *dev, const bool enable" + ], + "charger.h", + false + ], + [ + [ + "int comparator_get_output", + "const struct device *dev" + ], + "comparator.h", + false + ], + [ + [ + "int comparator_set_trigger", + "const struct device *dev, enum comparator_trigger trigger" + ], + "comparator.h", + false + ], + [ + [ + "int comparator_trigger_is_pending", + "const struct device *dev" + ], + "comparator.h", + false + ], + [ + [ + "bool counter_is_counting_up", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "uint8_t counter_get_num_of_channels", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "uint32_t counter_get_frequency", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "uint64_t counter_get_frequency_64", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "uint32_t counter_us_to_ticks", + "const struct device *dev, uint64_t us" + ], + "counter.h", + false + ], + [ + [ + "uint64_t counter_us_to_ticks_64", + "const struct device *dev, uint64_t us" + ], + "counter.h", + false + ], + [ + [ + "uint64_t counter_ticks_to_us", + "const struct device *dev, uint32_t ticks" + ], + "counter.h", + false + ], + [ + [ + "uint64_t counter_ticks_to_us_64", + "const struct device *dev, uint64_t ticks" + ], + "counter.h", + false + ], + [ + [ + "uint32_t counter_ns_to_ticks", + "const struct device *dev, uint64_t ns" + ], + "counter.h", + false + ], + [ + [ + "uint64_t counter_ns_to_ticks_64", + "const struct device *dev, uint64_t ns" + ], + "counter.h", + false + ], + [ + [ + "uint64_t counter_ticks_to_ns", + "const struct device *dev, uint32_t ticks" + ], + "counter.h", + false + ], + [ + [ + "uint64_t counter_ticks_to_ns_64", + "const struct device *dev, uint64_t ticks" + ], + "counter.h", + false + ], + [ + [ + "uint32_t counter_get_max_top_value", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "int counter_start", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "int counter_stop", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "int counter_get_value", + "const struct device *dev, uint32_t *ticks" + ], + "counter.h", + false + ], + [ + [ + "int counter_reset", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "int counter_set_value", + "const struct device *dev, uint32_t ticks" + ], + "counter.h", + false + ], + [ + [ + "int counter_set_channel_alarm", + "const struct device *dev, uint8_t chan_id, const struct counter_alarm_cfg *alarm_cfg" + ], + "counter.h", + false + ], + [ + [ + "int counter_cancel_channel_alarm", + "const struct device *dev, uint8_t chan_id" + ], + "counter.h", + false + ], + [ + [ + "int counter_set_top_value", + "const struct device *dev, const struct counter_top_cfg *cfg" + ], + "counter.h", + false + ], + [ + [ + "int counter_get_pending_int", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "uint32_t counter_get_top_value", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "int counter_set_guard_period", + "const struct device *dev, uint32_t ticks, uint32_t flags" + ], + "counter.h", + false + ], + [ + [ + "uint32_t counter_get_guard_period", + "const struct device *dev, uint32_t flags" + ], + "counter.h", + false + ], + [ + [ + "uint64_t counter_get_max_top_value_64", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "int counter_set_top_value_64", + "const struct device *dev, const struct counter_top_cfg_64 *cfg" + ], + "counter.h", + false + ], + [ + [ + "int counter_set_channel_alarm_64", + "const struct device *dev, uint8_t chan_id, const struct counter_alarm_cfg_64 *alarm_cfg" + ], + "counter.h", + false + ], + [ + [ + "uint64_t counter_get_top_value_64", + "const struct device *dev" + ], + "counter.h", + false + ], + [ + [ + "int counter_set_guard_period_64", + "const struct device *dev, uint64_t ticks, uint32_t flags" + ], + "counter.h", + false + ], + [ + [ + "uint64_t counter_get_guard_period_64", + "const struct device *dev, uint32_t flags" + ], + "counter.h", + false + ], + [ + [ + "int counter_get_value_64", + "const struct device *dev, uint64_t *ticks" + ], + "counter.h", + false + ], + [ + [ + "int counter_set_value_64", + "const struct device *dev, uint64_t ticks" + ], + "counter.h", + false + ], + [ + [ + "int crc_begin", + "const struct device *dev, struct crc_ctx *ctx" + ], + "crc.h", + false + ], + [ + [ + "int crc_update", + "const struct device *dev, struct crc_ctx *ctx, const void *buffer, size_t bufsize" + ], + "crc.h", + false + ], + [ + [ + "int crc_finish", + "const struct device *dev, struct crc_ctx *ctx" + ], + "crc.h", + false + ], + [ + [ + "int dac_channel_setup", + "const struct device *dev, const struct dac_channel_cfg *channel_cfg" + ], + "dac.h", + false + ], + [ + [ + "int dac_write_value", + "const struct device *dev, uint8_t channel, uint32_t value" + ], + "dac.h", + false + ], + [ + [ + "int dai_probe", + "const struct device *dev" + ], + "dai.h", + false + ], + [ + [ + "int dai_remove", + "const struct device *dev" + ], + "dai.h", + false + ], + [ + [ + "int dai_config_set", + "const struct device *dev, const struct dai_config *cfg, const void *bespoke_cfg, size_t size" + ], + "dai.h", + false + ], + [ + [ + "int dai_config_get", + "const struct device *dev, struct dai_config *cfg, enum dai_dir dir" + ], + "dai.h", + false + ], + [ + [ + "int dai_get_properties_copy", + "const struct device *dev, enum dai_dir dir, int stream_id, struct dai_properties *dst" + ], + "dai.h", + false + ], + [ + [ + "int dai_trigger", + "const struct device *dev, enum dai_dir dir, enum dai_trigger_cmd cmd" + ], + "dai.h", + false + ], + [ + [ + "int dai_ts_config", + "const struct device *dev, struct dai_ts_cfg *cfg" + ], + "dai.h", + false + ], + [ + [ + "int dai_ts_start", + "const struct device *dev, struct dai_ts_cfg *cfg" + ], + "dai.h", + false + ], + [ + [ + "int dai_ts_stop", + "const struct device *dev, struct dai_ts_cfg *cfg" + ], + "dai.h", + false + ], + [ + [ + "int dai_ts_get", + "const struct device *dev, struct dai_ts_cfg *cfg, struct dai_ts_data *tsd" + ], + "dai.h", + false + ], + [ + [ + "int dai_config_update", + "const struct device *dev, const void *bespoke_cfg, size_t size" + ], + "dai.h", + false + ], + [ + [ + "int eeprom_read", + "const struct device *dev, off_t offset, void *data, size_t len" + ], + "eeprom.h", + false + ], + [ + [ + "int eeprom_write", + "const struct device *dev, off_t offset, const void *data, size_t len" + ], + "eeprom.h", + false + ], + [ + [ + "size_t eeprom_get_size", + "const struct device *dev" + ], + "eeprom.h", + false + ], + [ + [ + "int emul_fuel_gauge_set_battery_charging", + "const struct emul *target, uint32_t uV, int uA" + ], + "emul_fuel_gauge.h", + false + ], + [ + [ + "int emul_fuel_gauge_is_battery_cutoff", + "const struct emul *target, bool *cutoff" + ], + "emul_fuel_gauge.h", + false + ], + [ + [ + "int entropy_get_entropy", + "const struct device *dev, uint8_t *buffer, uint16_t length" + ], + "entropy.h", + false + ], + [ + [ + "int espi_config", + "const struct device *dev, struct espi_cfg *cfg" + ], + "espi.h", + false + ], + [ + [ + "bool espi_get_channel_status", + "const struct device *dev, enum espi_channel ch" + ], + "espi.h", + false + ], + [ + [ + "int espi_read_request", + "const struct device *dev, struct espi_request_packet *req" + ], + "espi.h", + false + ], + [ + [ + "int espi_write_request", + "const struct device *dev, struct espi_request_packet *req" + ], + "espi.h", + false + ], + [ + [ + "int espi_read_lpc_request", + "const struct device *dev, enum lpc_peripheral_opcode op, uint32_t *data" + ], + "espi.h", + false + ], + [ + [ + "int espi_write_lpc_request", + "const struct device *dev, enum lpc_peripheral_opcode op, uint32_t *data" + ], + "espi.h", + false + ], + [ + [ + "int espi_send_vwire", + "const struct device *dev, enum espi_vwire_signal signal, uint8_t level" + ], + "espi.h", + false + ], + [ + [ + "int espi_receive_vwire", + "const struct device *dev, enum espi_vwire_signal signal, uint8_t *level" + ], + "espi.h", + false + ], + [ + [ + "int espi_send_oob", + "const struct device *dev, struct espi_oob_packet *pckt" + ], + "espi.h", + false + ], + [ + [ + "int espi_receive_oob", + "const struct device *dev, struct espi_oob_packet *pckt" + ], + "espi.h", + false + ], + [ + [ + "int espi_read_flash", + "const struct device *dev, struct espi_flash_packet *pckt" + ], + "espi.h", + false + ], + [ + [ + "int espi_write_flash", + "const struct device *dev, struct espi_flash_packet *pckt" + ], + "espi.h", + false + ], + [ + [ + "int espi_flash_erase", + "const struct device *dev, struct espi_flash_packet *pckt" + ], + "espi.h", + false + ], + [ + [ + "int espi_saf_config", + "const struct device *dev, const struct espi_saf_cfg *cfg" + ], + "espi_saf.h", + false + ], + [ + [ + "int espi_saf_set_protection_regions", + " const struct device *dev, const struct espi_saf_protection *pr" + ], + "espi_saf.h", + false + ], + [ + [ + "int espi_saf_activate", + "const struct device *dev" + ], + "espi_saf.h", + false + ], + [ + [ + "bool espi_saf_get_channel_status", + "const struct device *dev" + ], + "espi_saf.h", + false + ], + [ + [ + "int espi_saf_flash_read", + "const struct device *dev, struct espi_saf_packet *pckt" + ], + "espi_saf.h", + false + ], + [ + [ + "int espi_saf_flash_write", + "const struct device *dev, struct espi_saf_packet *pckt" + ], + "espi_saf.h", + false + ], + [ + [ + "int espi_saf_flash_erase", + "const struct device *dev, struct espi_saf_packet *pckt" + ], + "espi_saf.h", + false + ], + [ + [ + "int espi_saf_flash_unsuccess", + "const struct device *dev, struct espi_saf_packet *pckt" + ], + "espi_saf.h", + false + ], + [ + [ + "int flash_read", + "const struct device *dev, off_t offset, void *data, size_t len" + ], + "flash.h", + false + ], + [ + [ + "int flash_write", + "const struct device *dev, off_t offset, const void *data, size_t len" + ], + "flash.h", + false + ], + [ + [ + "int flash_erase", + "const struct device *dev, off_t offset, size_t size" + ], + "flash.h", + false + ], + [ + [ + "int flash_get_size", + "const struct device *dev, uint64_t *size" + ], + "flash.h", + false + ], + [ + [ + "int flash_fill", + "const struct device *dev, uint8_t val, off_t offset, size_t size" + ], + "flash.h", + false + ], + [ + [ + "int flash_flatten", + "const struct device *dev, off_t offset, size_t size" + ], + "flash.h", + false + ], + [ + [ + "int flash_get_page_info_by_offs", + "const struct device *dev, off_t offset, struct flash_pages_info *info" + ], + "flash.h", + false + ], + [ + [ + "int flash_get_page_info_by_idx", + "const struct device *dev, uint32_t page_index, struct flash_pages_info *info" + ], + "flash.h", + false + ], + [ + [ + "size_t flash_get_page_count", + "const struct device *dev" + ], + "flash.h", + false + ], + [ + [ + "int flash_sfdp_read", + "const struct device *dev, off_t offset, void *data, size_t len" + ], + "flash.h", + false + ], + [ + [ + "int flash_read_jedec_id", + "const struct device *dev, uint8_t *id" + ], + "flash.h", + false + ], + [ + [ + "size_t flash_get_write_block_size", + "const struct device *dev" + ], + "flash.h", + false + ], + [ + [ + "const struct flash_parameters *flash_get_parameters", + "const struct device *dev" + ], + "flash.h", + false + ], + [ + [ + "int flash_ex_op", + "const struct device *dev, uint16_t code, const uintptr_t in, void *out" + ], + "flash.h", + false + ], + [ + [ + "int flash_copy", + "const struct device *src_dev, off_t src_offset, const struct device *dst_dev, off_t dst_offset, off_t size, uint8_t *buf, size_t buf_size" + ], + "flash.h", + false + ], + [ + [ + "int fuel_gauge_get_prop", + "const struct device *dev, fuel_gauge_prop_t prop, union fuel_gauge_prop_val *val" + ], + "fuel_gauge.h", + false + ], + [ + [ + "int fuel_gauge_get_props", + "const struct device *dev, const fuel_gauge_prop_t *props, union fuel_gauge_prop_val *vals, size_t len" + ], + "fuel_gauge.h", + false + ], + [ + [ + "int fuel_gauge_set_prop", + "const struct device *dev, fuel_gauge_prop_t prop, union fuel_gauge_prop_val val" + ], + "fuel_gauge.h", + false + ], + [ + [ + "int fuel_gauge_set_props", + "const struct device *dev, const fuel_gauge_prop_t *props, const union fuel_gauge_prop_val *vals, size_t len" + ], + "fuel_gauge.h", + false + ], + [ + [ + "int fuel_gauge_get_buffer_prop", + "const struct device *dev, fuel_gauge_prop_t prop_type, void *dst, size_t dst_len" + ], + "fuel_gauge.h", + false + ], + [ + [ + "int fuel_gauge_battery_cutoff", + "const struct device *dev" + ], + "fuel_gauge.h", + false + ], + [ + [ + "int gnss_set_fix_rate", + "const struct device *dev, uint32_t fix_interval_ms" + ], + "gnss.h", + false + ], + [ + [ + "int gnss_get_fix_rate", + "const struct device *dev, uint32_t *fix_interval_ms" + ], + "gnss.h", + false + ], + [ + [ + "int gnss_set_navigation_mode", + "const struct device *dev, enum gnss_navigation_mode mode" + ], + "gnss.h", + false + ], + [ + [ + "int gnss_get_navigation_mode", + "const struct device *dev, enum gnss_navigation_mode *mode" + ], + "gnss.h", + false + ], + [ + [ + "int gnss_set_enabled_systems", + "const struct device *dev, gnss_systems_t systems" + ], + "gnss.h", + false + ], + [ + [ + "int gnss_get_enabled_systems", + "const struct device *dev, gnss_systems_t *systems" + ], + "gnss.h", + false + ], + [ + [ + "int gnss_get_supported_systems", + "const struct device *dev, gnss_systems_t *systems" + ], + "gnss.h", + false + ], + [ + [ + "int gnss_get_latest_timepulse", + "const struct device *dev, k_ticks_t *timestamp" + ], + "gnss.h", + false + ], + [ + [ + "int haptics_start_output", + "const struct device *dev" + ], + "haptics.h", + false + ], + [ + [ + "int haptics_stop_output", + "const struct device *dev" + ], + "haptics.h", + false + ], + [ + [ + "ssize_t hwinfo_get_device_id", + "uint8_t *buffer, size_t length" + ], + "hwinfo.h", + false + ], + [ + [ + "int hwinfo_get_device_eui64", + "uint8_t *buffer" + ], + "hwinfo.h", + false + ], + [ + [ + "int hwinfo_get_reset_cause", + "uint32_t *cause" + ], + "hwinfo.h", + false + ], + [ + [ + "int hwinfo_clear_reset_cause", + "void" + ], + "hwinfo.h", + false + ], + [ + [ + "int hwinfo_get_supported_reset_cause", + "uint32_t *supported" + ], + "hwinfo.h", + false + ], + [ + [ + "int i2c_configure", + "const struct device *dev, uint32_t dev_config" + ], + "i2c.h", + false + ], + [ + [ + "int i2c_get_config", + "const struct device *dev, uint32_t *dev_config" + ], + "i2c.h", + false + ], + [ + [ + "int i2c_transfer", + "const struct device *dev, struct i2c_msg *msgs, uint8_t num_msgs, uint16_t addr" + ], + "i2c.h", + false + ], + [ + [ + "int i2c_recover_bus", + "const struct device *dev" + ], + "i2c.h", + false + ], + [ + [ + "int i2c_target_driver_register", + "const struct device *dev" + ], + "i2c.h", + false + ], + [ + [ + "int i2c_target_driver_unregister", + "const struct device *dev" + ], + "i2c.h", + false + ], + [ + [ + "int i2s_configure", + "const struct device *dev, enum i2s_dir dir, const struct i2s_config *cfg" + ], + "i2s.h", + false + ], + [ + [ + "int i2s_buf_read", + "const struct device *dev, void *buf, size_t *size" + ], + "i2s.h", + false + ], + [ + [ + "int i2s_buf_write", + "const struct device *dev, void *buf, size_t size" + ], + "i2s.h", + false + ], + [ + [ + "int i2s_trigger", + "const struct device *dev, enum i2s_dir dir, enum i2s_trigger_cmd cmd" + ], + "i2s.h", + false + ], + [ + [ + "int i3c_do_ccc", + "const struct device *dev, struct i3c_ccc_payload *payload" + ], + "i3c.h", + false + ], + [ + [ + "int i3c_transfer", + "struct i3c_device_desc *target, struct i3c_msg *msgs, uint8_t num_msgs" + ], + "i3c.h", + false + ], + [ + [ + "int ipm_send", + "const struct device *ipmdev, int wait, uint32_t id, const void *data, int size" + ], + "ipm.h", + false + ], + [ + [ + "int ipm_max_data_size_get", + "const struct device *ipmdev" + ], + "ipm.h", + false + ], + [ + [ + "uint32_t ipm_max_id_val_get", + "const struct device *ipmdev" + ], + "ipm.h", + false + ], + [ + [ + "int ipm_set_enabled", + "const struct device *ipmdev, int enable" + ], + "ipm.h", + false + ], + [ + [ + "void ipm_complete", + "const struct device *ipmdev" + ], + "ipm.h", + false + ], + [ + [ + "int led_blink", + "const struct device *dev, uint32_t led, uint32_t delay_on, uint32_t delay_off" + ], + "led.h", + false + ], + [ + [ + "int led_get_info", + "const struct device *dev, uint32_t led, const struct led_info **info" + ], + "led.h", + false + ], + [ + [ + "int led_set_brightness", + "const struct device *dev, uint32_t led, uint8_t value" + ], + "led.h", + false + ], + [ + [ + "int led_write_channels", + "const struct device *dev, uint32_t start_channel, uint32_t num_channels, const uint8_t *buf" + ], + "led.h", + false + ], + [ + [ + "int led_set_channel", + "const struct device *dev, uint32_t channel, uint8_t value" + ], + "led.h", + false + ], + [ + [ + "int led_set_color", + "const struct device *dev, uint32_t led, uint8_t num_colors, const uint8_t *color" + ], + "led.h", + false + ], + [ + [ + "int led_on", + "const struct device *dev, uint32_t led" + ], + "led.h", + false + ], + [ + [ + "int led_off", + "const struct device *dev, uint32_t led" + ], + "led.h", + false + ], + [ + [ + "int mbox_send", + "const struct device *dev, mbox_channel_id_t channel_id, const struct mbox_msg *msg" + ], + "mbox.h", + false + ], + [ + [ + "int mbox_mtu_get", + "const struct device *dev" + ], + "mbox.h", + false + ], + [ + [ + "int mbox_set_enabled", + "const struct device *dev, mbox_channel_id_t channel_id, bool enabled" + ], + "mbox.h", + false + ], + [ + [ + "uint32_t mbox_max_channels_get", + "const struct device *dev" + ], + "mbox.h", + false + ], + [ + [ + "int mdio_read", + "const struct device *dev, uint8_t prtad, uint8_t regad, uint16_t *data" + ], + "mdio.h", + false + ], + [ + [ + "int mdio_write", + "const struct device *dev, uint8_t prtad, uint8_t regad, uint16_t data" + ], + "mdio.h", + false + ], + [ + [ + "int mdio_read_c45", + "const struct device *dev, uint8_t prtad, uint8_t devad, uint16_t regad, uint16_t *data" + ], + "mdio.h", + false + ], + [ + [ + "int mdio_write_c45", + "const struct device *dev, uint8_t prtad, uint8_t devad, uint16_t regad, uint16_t data" + ], + "mdio.h", + false + ], + [ + [ + "int mspi_config", + "const struct mspi_dt_spec *spec" + ], + "mspi.h", + false + ], + [ + [ + "int mspi_dev_config", + "const struct device *controller, const struct mspi_dev_id *dev_id, const enum mspi_dev_cfg_mask param_mask, const struct mspi_dev_cfg *cfg" + ], + "mspi.h", + false + ], + [ + [ + "int mspi_get_channel_status", + "const struct device *controller, uint8_t ch" + ], + "mspi.h", + false + ], + [ + [ + "int mspi_transceive", + "const struct device *controller, const struct mspi_dev_id *dev_id, const struct mspi_xfer *req" + ], + "mspi.h", + false + ], + [ + [ + "int mspi_xip_config", + "const struct device *controller, const struct mspi_dev_id *dev_id, const struct mspi_xip_cfg *cfg" + ], + "mspi.h", + false + ], + [ + [ + "int mspi_scramble_config", + "const struct device *controller, const struct mspi_dev_id *dev_id, const struct mspi_scramble_cfg *cfg" + ], + "mspi.h", + false + ], + [ + [ + "int mspi_timing_config", + "const struct device *controller, const struct mspi_dev_id *dev_id, const uint32_t param_mask, void *cfg" + ], + "mspi.h", + false + ], + [ + [ + "int opamp_set_gain", + "const struct device *dev, enum opamp_gain gain" + ], + "opamp.h", + false + ], + [ + [ + "int otp_read", + "const struct device *dev, off_t offset, void *data, size_t len" + ], + "otp.h", + false + ], + [ + [ + "int otp_program", + "const struct device *dev, off_t offset, const void *data, size_t len" + ], + "otp.h", + false + ], + [ + [ + "int peci_config", + "const struct device *dev, uint32_t bitrate" + ], + "peci.h", + false + ], + [ + [ + "int peci_enable", + "const struct device *dev" + ], + "peci.h", + false + ], + [ + [ + "int peci_disable", + "const struct device *dev" + ], + "peci.h", + false + ], + [ + [ + "int peci_transfer", + "const struct device *dev, struct peci_msg *msg" + ], + "peci.h", + false + ], + [ + [ + "int ps2_config", + "const struct device *dev, ps2_callback_t callback_isr" + ], + "ps2.h", + false + ], + [ + [ + "int ps2_write", + "const struct device *dev, uint8_t value" + ], + "ps2.h", + false + ], + [ + [ + "int ps2_read", + "const struct device *dev, uint8_t *value" + ], + "ps2.h", + false + ], + [ + [ + "int ps2_enable_callback", + "const struct device *dev" + ], + "ps2.h", + false + ], + [ + [ + "int ps2_disable_callback", + "const struct device *dev" + ], + "ps2.h", + false + ], + [ + [ + "int ptp_clock_get", + "const struct device *dev, struct net_ptp_time *tm" + ], + "ptp_clock.h", + false + ], + [ + [ + "int pwm_set_cycles", + "const struct device *dev, uint32_t channel, uint32_t period, uint32_t pulse, pwm_flags_t flags" + ], + "pwm.h", + false + ], + [ + [ + "int pwm_get_cycles_per_sec", + "const struct device *dev, uint32_t channel, uint64_t *cycles" + ], + "pwm.h", + false + ], + [ + [ + "int pwm_enable_capture", + "const struct device *dev, uint32_t channel" + ], + "pwm.h", + false + ], + [ + [ + "int pwm_disable_capture", + "const struct device *dev, uint32_t channel" + ], + "pwm.h", + false + ], + [ + [ + "int pwm_enable_dma", + "const struct device *dev, uint32_t channel" + ], + "pwm.h", + false + ], + [ + [ + "int pwm_disable_dma", + "const struct device *dev, uint32_t channel" + ], + "pwm.h", + false + ], + [ + [ + "int pwm_capture_cycles", + "const struct device *dev, uint32_t channel, pwm_flags_t flags, uint32_t *period, uint32_t *pulse, k_timeout_t timeout" + ], + "pwm.h", + false + ], + [ + [ + "int reset_status", + "const struct device *dev, uint32_t id, uint8_t *status" + ], + "reset.h", + false + ], + [ + [ + "int reset_line_assert", + "const struct device *dev, uint32_t id" + ], + "reset.h", + false + ], + [ + [ + "int reset_line_deassert", + "const struct device *dev, uint32_t id" + ], + "reset.h", + false + ], + [ + [ + "int reset_line_toggle", + "const struct device *dev, uint32_t id" + ], + "reset.h", + false + ], + [ + [ + "ssize_t retained_mem_size", + "const struct device *dev" + ], + "retained_mem.h", + false + ], + [ + [ + "int retained_mem_read", + "const struct device *dev, off_t offset, uint8_t *buffer, size_t size" + ], + "retained_mem.h", + false + ], + [ + [ + "int retained_mem_write", + "const struct device *dev, off_t offset, const uint8_t *buffer, size_t size" + ], + "retained_mem.h", + false + ], + [ + [ + "int retained_mem_clear", + "const struct device *dev" + ], + "retained_mem.h", + false + ], + [ + [ + "int rtc_set_time", + "const struct device *dev, const struct rtc_time *timeptr" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_get_time", + "const struct device *dev, struct rtc_time *timeptr" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_alarm_get_supported_fields", + "const struct device *dev, uint16_t id, uint16_t *mask" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_alarm_set_time", + "const struct device *dev, uint16_t id, uint16_t mask, const struct rtc_time *timeptr" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_alarm_get_time", + "const struct device *dev, uint16_t id, uint16_t *mask, struct rtc_time *timeptr" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_alarm_is_pending", + "const struct device *dev, uint16_t id" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_set_calibration", + "const struct device *dev, int32_t calibration" + ], + "rtc.h", + false + ], + [ + [ + "int rtc_get_calibration", + "const struct device *dev, int32_t *calibration" + ], + "rtc.h", + false + ], + [ + [ + "int sdhc_hw_reset", + "const struct device *dev" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_request", + "const struct device *dev, struct sdhc_command *cmd, struct sdhc_data *data" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_set_io", + "const struct device *dev, struct sdhc_io *io" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_card_present", + "const struct device *dev" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_execute_tuning", + "const struct device *dev" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_card_busy", + "const struct device *dev" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_get_host_props", + "const struct device *dev, struct sdhc_host_props *props" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_enable_interrupt", + "const struct device *dev, sdhc_interrupt_cb_t callback, int sources, void *user_data" + ], + "sdhc.h", + false + ], + [ + [ + "int sdhc_disable_interrupt", + "const struct device *dev, int sources" + ], + "sdhc.h", + false + ], + [ + [ + "int sensor_attr_set", + "const struct device *dev, enum sensor_channel chan, enum sensor_attribute attr, const struct sensor_value *val" + ], + "sensor.h", + false + ], + [ + [ + "int sensor_attr_get", + "const struct device *dev, enum sensor_channel chan, enum sensor_attribute attr, struct sensor_value *val" + ], + "sensor.h", + false + ], + [ + [ + "int sensor_sample_fetch", + "const struct device *dev" + ], + "sensor.h", + false + ], + [ + [ + "int sensor_sample_fetch_chan", + "const struct device *dev, enum sensor_channel type" + ], + "sensor.h", + false + ], + [ + [ + "int sensor_channel_get", + "const struct device *dev, enum sensor_channel chan, struct sensor_value *val" + ], + "sensor.h", + false + ], + [ + [ + "int sensor_get_decoder", + "const struct device *dev, const struct sensor_decoder_api **decoder" + ], + "sensor.h", + false + ], + [ + [ + "int sensor_reconfigure_read_iodev", + "const struct rtio_iodev *iodev, const struct device *sensor, const struct sensor_chan_spec *channels, size_t num_channels" + ], + "sensor.h", + false + ], + [ + [ + "int smbus_configure", + "const struct device *dev, uint32_t dev_config" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_get_config", + "const struct device *dev, uint32_t *dev_config" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_smbalert_remove_cb", + "const struct device *dev, struct smbus_callback *cb" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_host_notify_remove_cb", + "const struct device *dev, struct smbus_callback *cb" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_quick", + "const struct device *dev, uint16_t addr, enum smbus_direction direction" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_byte_write", + "const struct device *dev, uint16_t addr, uint8_t byte" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_byte_read", + "const struct device *dev, uint16_t addr, uint8_t *byte" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_byte_data_write", + "const struct device *dev, uint16_t addr, uint8_t cmd, uint8_t byte" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_byte_data_read", + "const struct device *dev, uint16_t addr, uint8_t cmd, uint8_t *byte" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_word_data_write", + "const struct device *dev, uint16_t addr, uint8_t cmd, uint16_t word" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_word_data_read", + "const struct device *dev, uint16_t addr, uint8_t cmd, uint16_t *word" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_pcall", + "const struct device *dev, uint16_t addr, uint8_t cmd, uint16_t send_word, uint16_t *recv_word" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_block_write", + "const struct device *dev, uint16_t addr, uint8_t cmd, uint8_t count, uint8_t *buf" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_block_read", + "const struct device *dev, uint16_t addr, uint8_t cmd, uint8_t *count, uint8_t *buf" + ], + "smbus.h", + false + ], + [ + [ + "int smbus_block_pcall", + "const struct device *dev, uint16_t addr, uint8_t cmd, uint8_t snd_count, uint8_t *snd_buf, uint8_t *rcv_count, uint8_t *rcv_buf" + ], + "smbus.h", + false + ], + [ + [ + "int swdp_output_sequence", + "const struct device *dev, const uint32_t count, const uint8_t *const data" + ], + "swdp.h", + false + ], + [ + [ + "int swdp_input_sequence", + "const struct device *dev, const uint32_t count, uint8_t *const buf" + ], + "swdp.h", + false + ], + [ + [ + "int swdp_transfer", + "const struct device *dev, const uint8_t request, uint32_t *const data, const uint8_t idle_cycles, uint8_t *const response" + ], + "swdp.h", + false + ], + [ + [ + "int swdp_set_pins", + "const struct device *dev, const uint8_t pins, const uint8_t value" + ], + "swdp.h", + false + ], + [ + [ + "int swdp_get_pins", + "const struct device *dev, uint8_t *const state" + ], + "swdp.h", + false + ], + [ + [ + "int swdp_set_clock", + "const struct device *dev, const uint32_t clock" + ], + "swdp.h", + false + ], + [ + [ + "int swdp_port_on", + "const struct device *dev" + ], + "swdp.h", + false + ], + [ + [ + "int swdp_port_off", + "const struct device *dev" + ], + "swdp.h", + false + ], + [ + [ + "int swdp_configure", + "const struct device *dev, const uint8_t turnaround, const bool data_phase" + ], + "swdp.h", + false + ], + [ + [ + "int syscon_get_base", + "const struct device *dev, uintptr_t *addr" + ], + "syscon.h", + false + ], + [ + [ + "int syscon_read_reg", + "const struct device *dev, uint16_t reg, uint32_t *val" + ], + "syscon.h", + false + ], + [ + [ + "int syscon_write_reg", + "const struct device *dev, uint16_t reg, uint32_t val" + ], + "syscon.h", + false + ], + [ + [ + "int syscon_get_size", + "const struct device *dev, size_t *size" + ], + "syscon.h", + false + ], + [ + [ + "int tee_get_version", + "const struct device *dev, struct tee_version_info *info" + ], + "tee.h", + false + ], + [ + [ + "int tee_open_session", + "const struct device *dev, struct tee_open_session_arg *arg, unsigned int num_param, struct tee_param *param, uint32_t *session_id" + ], + "tee.h", + false + ], + [ + [ + "int tee_close_session", + "const struct device *dev, uint32_t session_id" + ], + "tee.h", + false + ], + [ + [ + "int tee_cancel", + "const struct device *dev, uint32_t session_id, uint32_t cancel_id" + ], + "tee.h", + false + ], + [ + [ + "int tee_invoke_func", + "const struct device *dev, struct tee_invoke_func_arg *arg, unsigned int num_param, struct tee_param *param" + ], + "tee.h", + false + ], + [ + [ + "int tee_shm_register", + "const struct device *dev, void *addr, size_t size, uint32_t flags, struct tee_shm **shm" + ], + "tee.h", + false + ], + [ + [ + "int tee_shm_unregister", + "const struct device *dev, struct tee_shm *shm" + ], + "tee.h", + false + ], + [ + [ + "int tee_shm_alloc", + "const struct device *dev, size_t size, uint32_t flags, struct tee_shm **shm" + ], + "tee.h", + false + ], + [ + [ + "int tee_shm_free", + "const struct device *dev, struct tee_shm *shm" + ], + "tee.h", + false + ], + [ + [ + "int tee_suppl_recv", + "const struct device *dev, uint32_t *func, unsigned int *num_params, struct tee_param *param" + ], + "tee.h", + false + ], + [ + [ + "int tee_suppl_send", + "const struct device *dev, unsigned int ret, unsigned int num_params, struct tee_param *param" + ], + "tee.h", + false + ], + [ + [ + "int w1_change_bus_lock", + "const struct device *dev, bool lock" + ], + "w1.h", + false + ], + [ + [ + "int w1_reset_bus", + "const struct device *dev" + ], + "w1.h", + false + ], + [ + [ + "int w1_read_bit", + "const struct device *dev" + ], + "w1.h", + false + ], + [ + [ + "int w1_write_bit", + "const struct device *dev, const bool bit" + ], + "w1.h", + false + ], + [ + [ + "int w1_read_byte", + "const struct device *dev" + ], + "w1.h", + false + ], + [ + [ + "int w1_write_byte", + "const struct device *dev, uint8_t byte" + ], + "w1.h", + false + ], + [ + [ + "int w1_read_block", + "const struct device *dev, uint8_t *buffer, size_t len" + ], + "w1.h", + false + ], + [ + [ + "int w1_write_block", + "const struct device *dev, const uint8_t *buffer, size_t len" + ], + "w1.h", + false + ], + [ + [ + "size_t w1_get_slave_count", + "const struct device *dev" + ], + "w1.h", + false + ], + [ + [ + "int w1_configure", + "const struct device *dev, enum w1_settings_type type, uint32_t value" + ], + "w1.h", + false + ], + [ + [ + "int w1_search_bus", + "const struct device *dev, uint8_t command, uint8_t family, w1_search_callback_t callback, void *user_data" + ], + "w1.h", + false + ], + [ + [ + "int wdt_setup", + "const struct device *dev, uint8_t options" + ], + "watchdog.h", + false + ], + [ + [ + "int wdt_disable", + "const struct device *dev" + ], + "watchdog.h", + false + ], + [ + [ + "int wdt_feed", + "const struct device *dev, int channel_id" + ], + "watchdog.h", + false + ], + [ + [ + "const struct flash_simulator_params *flash_simulator_get_params", + "const struct device *dev" + ], + "flash_simulator.h", + false + ], + [ + [ + "void flash_simulator_set_callbacks", + "const struct device *dev, const struct flash_simulator_cb *cb" + ], + "flash_simulator.h", + false + ], + [ + [ + "void *flash_simulator_get_memory", + "const struct device *dev, size_t *mock_size" + ], + "flash_simulator.h", + false + ], + [ + [ + "void nrf_qspi_nor_xip_enable", + "const struct device *dev, bool enable" + ], + "nrf_qspi_nor.h", + false + ], + [ + [ + "int devmux_select_get", + "const struct device *dev" + ], + "devmux.h", + false + ], + [ + [ + "int devmux_select_set", + "struct device *dev, size_t index" + ], + "devmux.h", + false + ], + [ + [ + "int renesas_elc_software_event_generate", + "const struct device *dev, uint32_t event" + ], + "renesas_elc.h", + false + ], + [ + [ + "int renesas_elc_link_set", + "const struct device *dev, uint32_t peripheral, uint32_t event" + ], + "renesas_elc.h", + false + ], + [ + [ + "int renesas_elc_link_break", + "const struct device *dev, uint32_t peripheral" + ], + "renesas_elc.h", + false + ], + [ + [ + "int renesas_elc_enable", + "const struct device *dev" + ], + "renesas_elc.h", + false + ], + [ + [ + "int renesas_elc_disable", + "const struct device *dev" + ], + "renesas_elc.h", + false + ], + [ + [ + "int tgpio_port_get_time", + "const struct device *dev, uint64_t *current_time" + ], + "timeaware_gpio.h", + false + ], + [ + [ + "int tgpio_port_get_cycles_per_second", + "const struct device *dev, uint32_t *cycles" + ], + "timeaware_gpio.h", + false + ], + [ + [ + "int tgpio_pin_disable", + "const struct device *dev, uint32_t pin" + ], + "timeaware_gpio.h", + false + ], + [ + [ + "int tgpio_pin_config_ext_timestamp", + "const struct device *dev, uint32_t pin, uint32_t event_polarity" + ], + "timeaware_gpio.h", + false + ], + [ + [ + "int tgpio_pin_periodic_output", + "const struct device *dev, uint32_t pin, uint64_t start_time, uint64_t repeat_interval, bool periodic_enable" + ], + "timeaware_gpio.h", + false + ], + [ + [ + "int tgpio_pin_read_ts_ec", + "const struct device *dev, uint32_t pin, uint64_t *timestamp, uint64_t *event_count" + ], + "timeaware_gpio.h", + false + ], + [ + [ + "int psi5_start_sync", + "const struct device *dev, uint8_t channel" + ], + "psi5.h", + false + ], + [ + [ + "int psi5_stop_sync", + "const struct device *dev, uint8_t channel" + ], + "psi5.h", + false + ], + [ + [ + "int psi5_send", + "const struct device *dev, uint8_t channel, const uint64_t data, k_timeout_t timeout, psi5_tx_callback_t callback, void *user_data" + ], + "psi5.h", + false + ], + [ + [ + "int psi5_register_callback", + "const struct device *dev, uint8_t channel, struct psi5_rx_callback_configs callback_configs" + ], + "psi5.h", + false + ], + [ + [ + "int maxim_ds3231_req_syncpoint", + "const struct device *dev, struct k_poll_signal *signal" + ], + "maxim_ds3231.h", + false + ], + [ + [ + "int maxim_ds3231_get_syncpoint", + "const struct device *dev, struct maxim_ds3231_syncpoint *syncpoint" + ], + "maxim_ds3231.h", + false + ], + [ + [ + "int sent_start_listening", + "const struct device *dev, uint8_t channel" + ], + "sent.h", + false + ], + [ + [ + "int sent_stop_listening", + "const struct device *dev, uint8_t channel" + ], + "sent.h", + false + ], + [ + [ + "int sent_register_callback", + "const struct device *dev, uint8_t channel, struct sent_rx_callback_configs callback_configs" + ], + "sent.h", + false + ], + [ + [ + "void sip_supervisory_call", + "const struct device *dev, unsigned long function_id, unsigned long arg0, unsigned long arg1, unsigned long arg2, unsigned long arg3, unsigned long arg4, unsigned long arg5, unsigned long arg6, struct arm_smccc_res *res" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "bool sip_svc_plat_func_id_valid", + "const struct device *dev, uint32_t command, uint32_t func_id" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "uint32_t sip_svc_plat_format_trans_id", + "const struct device *dev, uint32_t client_idx, uint32_t trans_idx" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "uint32_t sip_svc_plat_get_trans_idx", + "const struct device *dev, uint32_t trans_id" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "void sip_svc_plat_update_trans_id", + "const struct device *dev, struct sip_svc_request *request, uint32_t trans_id" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "uint32_t sip_svc_plat_get_error_code", + "const struct device *dev, struct arm_smccc_res *res" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "int sip_svc_plat_async_res_req", + "const struct device *dev, unsigned long *a0, unsigned long *a1, unsigned long *a2, unsigned long *a3, unsigned long *a4, unsigned long *a5, unsigned long *a6, unsigned long *a7, char *buf, size_t size" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "int sip_svc_plat_async_res_res", + "const struct device *dev, struct arm_smccc_res *res, char *buf, size_t *size, uint32_t *trans_id" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "void sip_svc_plat_free_async_memory", + "const struct device *dev, struct sip_svc_request *request" + ], + "sip_svc_driver.h", + false + ], + [ + [ + "int stepper_enable", + "const struct device *dev" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_disable", + "const struct device *dev" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_set_micro_step_res", + "const struct device *dev, enum stepper_micro_step_resolution res" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_get_micro_step_res", + "const struct device *dev, enum stepper_micro_step_resolution *res" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_set_event_cb", + "const struct device *dev, stepper_event_cb_t callback, void *user_data" + ], + "stepper.h", + false + ], + [ + [ + "int stepper_ctrl_set_reference_position", + "const struct device *dev, const int32_t value" + ], + "stepper_ctrl.h", + false + ], + [ + [ + "int stepper_ctrl_get_actual_position", + "const struct device *dev, int32_t *value" + ], + "stepper_ctrl.h", + false + ], + [ + [ + "int stepper_ctrl_set_event_cb", + "const struct device *dev, stepper_ctrl_event_callback_t callback, void *user_data" + ], + "stepper_ctrl.h", + false + ], + [ + [ + "int stepper_ctrl_set_microstep_interval", + "const struct device *dev, const uint64_t microstep_interval_ns" + ], + "stepper_ctrl.h", + false + ], + [ + [ + "int stepper_ctrl_configure_ramp", + "const struct device *dev, const struct stepper_ctrl_ramp *ramp" + ], + "stepper_ctrl.h", + false + ], + [ + [ + "int stepper_ctrl_move_by", + "const struct device *dev, const int32_t micro_steps" + ], + "stepper_ctrl.h", + false + ], + [ + [ + "int stepper_ctrl_move_to", + "const struct device *dev, const int32_t micro_steps" + ], + "stepper_ctrl.h", + false + ], + [ + [ + "int stepper_ctrl_run", + "const struct device *dev, const enum stepper_ctrl_direction direction" + ], + "stepper_ctrl.h", + false + ], + [ + [ + "int stepper_ctrl_stop", + "const struct device *dev" + ], + "stepper_ctrl.h", + false + ], + [ + [ + "int stepper_ctrl_is_moving", + "const struct device *dev, bool *is_moving" + ], + "stepper_ctrl.h", + false + ], + [ + [ + "int bc12_set_role", + "const struct device *dev, enum bc12_role role" + ], + "usb_bc12.h", + false + ], + [ + [ + "int bc12_set_result_cb", + "const struct device *dev, bc12_callback_t cb, void *user_data" + ], + "usb_bc12.h", + false + ], + [ + [ + "size_t ivshmem_get_mem", + "const struct device *dev, uintptr_t *memmap" + ], + "ivshmem.h", + false + ], + [ + [ + "uint32_t ivshmem_get_id", + "const struct device *dev" + ], + "ivshmem.h", + false + ], + [ + [ + "uint16_t ivshmem_get_vectors", + "const struct device *dev" + ], + "ivshmem.h", + false + ], + [ + [ + "int ivshmem_int_peer", + "const struct device *dev, uint32_t peer_id, uint16_t vector" + ], + "ivshmem.h", + false + ], + [ + [ + "int ivshmem_register_handler", + "const struct device *dev, struct k_poll_signal *signal, uint16_t vector" + ], + "ivshmem.h", + false + ], + [ + [ + "size_t ivshmem_get_rw_mem_section", + "const struct device *dev, uintptr_t *memmap" + ], + "ivshmem.h", + false + ], + [ + [ + "size_t ivshmem_get_output_mem_section", + "const struct device *dev, uint32_t peer_id, uintptr_t *memmap" + ], + "ivshmem.h", + false + ], + [ + [ + "uint32_t ivshmem_get_state", + "const struct device *dev, uint32_t peer_id" + ], + "ivshmem.h", + false + ], + [ + [ + "int ivshmem_set_state", + "const struct device *dev, uint32_t state" + ], + "ivshmem.h", + false + ], + [ + [ + "uint32_t ivshmem_get_max_peers", + "const struct device *dev" + ], + "ivshmem.h", + false + ], + [ + [ + "uint16_t ivshmem_get_protocol", + "const struct device *dev" + ], + "ivshmem.h", + false + ], + [ + [ + "int ivshmem_enable_interrupts", + "const struct device *dev, bool enable" + ], + "ivshmem.h", + false + ], + [ + [ + "int renesas_ra_ctsu_group_configure", + "const struct device *dev, const struct renesas_ra_ctsu_touch_cfg *cfg" + ], + "input_renesas_ra_ctsu.h", + false + ], + [ + [ + "int renesas_rx_ctsu_group_configure", + "const struct device *dev, const struct renesas_rx_ctsu_touch_cfg *cfg" + ], + "input_renesas_rx_ctsu.h", + false + ], + [ + [ + "void k_mem_paging_stats_get", + "struct k_mem_paging_stats_t *stats" + ], + "demand_paging.h", + false + ], + [ + [ + "void k_mem_paging_thread_stats_get", + "struct k_thread *thread, struct k_mem_paging_stats_t *stats" + ], + "demand_paging.h", + false + ], + [ + [ + "void k_mem_paging_histogram_eviction_get", + " struct k_mem_paging_histogram_t *hist" + ], + "demand_paging.h", + false + ], + [ + [ + "void k_mem_paging_histogram_backing_store_page_in_get", + " struct k_mem_paging_histogram_t *hist" + ], + "demand_paging.h", + false + ], + [ + [ + "void k_mem_paging_histogram_backing_store_page_out_get", + " struct k_mem_paging_histogram_t *hist" + ], + "demand_paging.h", + false + ], + [ + [ + "ssize_t llext_get_fn_table", + "struct llext *ext, bool is_init, void *buf, size_t size" + ], + "llext.h", + false + ], + [ + [ + "void updatehub_autohandler", + "void" + ], + "updatehub.h", + false + ], + [ + [ + "enum updatehub_response updatehub_probe", + "void" + ], + "updatehub.h", + false + ], + [ + [ + "enum updatehub_response updatehub_update", + "void" + ], + "updatehub.h", + false + ], + [ + [ + "int updatehub_confirm", + "void" + ], + "updatehub.h", + false + ], + [ + [ + "int updatehub_reboot", + "void" + ], + "updatehub.h", + false + ], + [ + [ + "int updatehub_report_error", + "void" + ], + "updatehub.h", + false + ], + [ + [ + "const struct device *net_eth_get_ptp_clock_by_index", + "int index" + ], + "ethernet.h", + false + ], + [ + [ + "int net_if_ipv6_addr_lookup_by_index", + "const struct net_in6_addr *addr" + ], + "net_if.h", + false + ], + [ + [ + "bool net_if_ipv6_addr_add_by_index", + "int index, const struct net_in6_addr *addr, enum net_addr_type addr_type, uint32_t vlifetime" + ], + "net_if.h", + false + ], + [ + [ + "bool net_if_ipv6_addr_rm_by_index", + "int index, const struct net_in6_addr *addr" + ], + "net_if.h", + false + ], + [ + [ + "int net_if_ipv4_addr_lookup_by_index", + "const struct net_in_addr *addr" + ], + "net_if.h", + false + ], + [ + [ + "bool net_if_ipv4_addr_add_by_index", + "int index, const struct net_in_addr *addr, enum net_addr_type addr_type, uint32_t vlifetime" + ], + "net_if.h", + false + ], + [ + [ + "bool net_if_ipv4_addr_rm_by_index", + "int index, const struct net_in_addr *addr" + ], + "net_if.h", + false + ], + [ + [ + "bool net_if_ipv4_set_netmask_by_index", + "int index, const struct net_in_addr *netmask" + ], + "net_if.h", + false + ], + [ + [ + "bool net_if_ipv4_set_netmask_by_addr_by_index", + "int index, const struct net_in_addr *addr, const struct net_in_addr *netmask" + ], + "net_if.h", + false + ], + [ + [ + "bool net_if_ipv4_set_gw_by_index", + "int index, const struct net_in_addr *gw" + ], + "net_if.h", + false + ], + [ + [ + "struct net_if *net_if_get_by_index", + "int index" + ], + "net_if.h", + false + ], + [ + [ + "int net_addr_pton", + "net_sa_family_t family, const char *src, void *dst" + ], + "net_ip.h", + false + ], + [ + [ + "char *net_addr_ntop", + "net_sa_family_t family, const void *src, char *dst, size_t size" + ], + "net_ip.h", + false + ], + [ + [ + "void *zsock_get_context_object", + "int sock" + ], + "socket.h", + false + ], + [ + [ + "int zsock_socket", + "int family, int type, int proto" + ], + "socket.h", + false + ], + [ + [ + "int zsock_socketpair", + "int family, int type, int proto, int *sv" + ], + "socket.h", + false + ], + [ + [ + "int zsock_close", + "int sock" + ], + "socket.h", + false + ], + [ + [ + "int zsock_shutdown", + "int sock, int how" + ], + "socket.h", + false + ], + [ + [ + "int zsock_bind", + "int sock, const struct net_sockaddr *addr, net_socklen_t addrlen" + ], + "socket.h", + false + ], + [ + [ + "int zsock_connect", + "int sock, const struct net_sockaddr *addr, net_socklen_t addrlen" + ], + "socket.h", + false + ], + [ + [ + "int zsock_listen", + "int sock, int backlog" + ], + "socket.h", + false + ], + [ + [ + "int zsock_accept", + "int sock, struct net_sockaddr *addr, net_socklen_t *addrlen" + ], + "socket.h", + false + ], + [ + [ + "ssize_t zsock_sendto", + "int sock, const void *buf, size_t len, int flags, const struct net_sockaddr *dest_addr, net_socklen_t addrlen" + ], + "socket.h", + false + ], + [ + [ + "ssize_t zsock_sendmsg", + "int sock, const struct net_msghdr *msg, int flags" + ], + "socket.h", + false + ], + [ + [ + "ssize_t zsock_recvfrom", + "int sock, void *buf, size_t max_len, int flags, struct net_sockaddr *src_addr, net_socklen_t *addrlen" + ], + "socket.h", + false + ], + [ + [ + "ssize_t zsock_recvmsg", + "int sock, struct net_msghdr *msg, int flags" + ], + "socket.h", + false + ], + [ + [ + "int zsock_fcntl_impl", + "int sock, int cmd, int flags" + ], + "socket.h", + false + ], + [ + [ + "int zsock_ioctl_impl", + "int sock, unsigned long request, va_list ap" + ], + "socket.h", + false + ], + [ + [ + "int zsock_getsockopt", + "int sock, int level, int optname, void *optval, net_socklen_t *optlen" + ], + "socket.h", + false + ], + [ + [ + "int zsock_setsockopt", + "int sock, int level, int optname, const void *optval, net_socklen_t optlen" + ], + "socket.h", + false + ], + [ + [ + "int zsock_getpeername", + "int sock, struct net_sockaddr *addr, net_socklen_t *addrlen" + ], + "socket.h", + false + ], + [ + [ + "int zsock_getsockname", + "int sock, struct net_sockaddr *addr, net_socklen_t *addrlen" + ], + "socket.h", + false + ], + [ + [ + "int zsock_gethostname", + "char *buf, size_t len" + ], + "socket.h", + false + ], + [ + [ + "int zsock_inet_pton", + "net_sa_family_t family, const char *src, void *dst" + ], + "socket.h", + false + ], + [ + [ + "int z_zsock_getaddrinfo_internal", + "const char *host, const char *service, const struct zsock_addrinfo *hints, struct zsock_addrinfo *res" + ], + "socket.h", + false + ], + [ + [ + "int net_socket_service_register", + "const struct net_socket_service_desc *service, struct zsock_pollfd *fds, int len, void *user_data" + ], + "socket_service.h", + false + ], + [ + [ + "void sys_rand_get", + "void *dst, size_t len" + ], + "random.h", + false + ], + [ + [ + "int sys_csrand_get", + "void *dst, size_t len" + ], + "random.h", + false + ], + [ + [ + "void rtio_sqe_signal", + "struct rtio_sqe *sqe" + ], + "rtio.h", + false + ], + [ + [ + "int rtio_cqe_get_mempool_buffer", + "const struct rtio *r, struct rtio_cqe *cqe, uint8_t **buff, uint32_t *buff_len" + ], + "rtio.h", + false + ], + [ + [ + "void rtio_release_buffer", + "struct rtio *r, void *buff, uint32_t buff_len" + ], + "rtio.h", + false + ], + [ + [ + "int rtio_sqe_cancel", + "struct rtio_sqe *sqe" + ], + "rtio.h", + false + ], + [ + [ + "int rtio_sqe_copy_in_get_handles", + "struct rtio *r, const struct rtio_sqe *sqes, struct rtio_sqe **handle, size_t sqe_count" + ], + "rtio.h", + false + ], + [ + [ + "int rtio_cqe_copy_out", + "struct rtio *r, struct rtio_cqe *cqes, size_t cqe_count, k_timeout_t timeout" + ], + "rtio.h", + false + ], + [ + [ + "int rtio_submit", + "struct rtio *r, uint32_t wait_count" + ], + "rtio.h", + false + ], + [ + [ + "struct rtio *rtio_pool_acquire", + "struct rtio_pool *pool" + ], + "rtio.h", + false + ], + [ + [ + "void rtio_pool_release", + "struct rtio_pool *pool, struct rtio *r" + ], + "rtio.h", + false + ], + [ + [ + "bool atomic_cas", + "atomic_t *target, atomic_val_t old_value, atomic_val_t new_value" + ], + "atomic_c.h", + false + ], + [ + [ + "bool atomic_ptr_cas", + "atomic_ptr_t *target, atomic_ptr_val_t old_value, atomic_ptr_val_t new_value" + ], + "atomic_c.h", + false + ], + [ + [ + "atomic_val_t atomic_add", + "atomic_t *target, atomic_val_t value" + ], + "atomic_c.h", + false + ], + [ + [ + "atomic_val_t atomic_sub", + "atomic_t *target, atomic_val_t value" + ], + "atomic_c.h", + false + ], + [ + [ + "atomic_val_t atomic_set", + "atomic_t *target, atomic_val_t value" + ], + "atomic_c.h", + false + ], + [ + [ + "atomic_ptr_val_t atomic_ptr_set", + "atomic_ptr_t *target, atomic_ptr_val_t value" + ], + "atomic_c.h", + false + ], + [ + [ + "atomic_val_t atomic_or", + "atomic_t *target, atomic_val_t value" + ], + "atomic_c.h", + false + ], + [ + [ + "atomic_val_t atomic_xor", + "atomic_t *target, atomic_val_t value" + ], + "atomic_c.h", + false + ], + [ + [ + "atomic_val_t atomic_and", + "atomic_t *target, atomic_val_t value" + ], + "atomic_c.h", + false + ], + [ + [ + "atomic_val_t atomic_nand", + "atomic_t *target, atomic_val_t value" + ], + "atomic_c.h", + false + ], + [ + [ + "int zvfs_poll", + "struct zvfs_pollfd *fds, int nfds, int poll_timeout" + ], + "fdtable.h", + false + ], + [ + [ + "int zvfs_select", + "int nfds, struct zvfs_fd_set *ZRESTRICT readfds, struct zvfs_fd_set *ZRESTRICT writefds, struct zvfs_fd_set *ZRESTRICT errorfds, const struct timespec *ZRESTRICT timeout, const void *ZRESTRICT sigmask" + ], + "fdtable.h", + false + ] +] \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_file_list.txt b/build/zephyr/misc/generated/syscalls_file_list.txt new file mode 100644 index 0000000..7ba990c --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_file_list.txt @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/xtensa/arch.h;/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/libc-hooks.h;/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/clock.h;/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/mutex.h;/Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_msg.h;/Users/wijnand/zephyrproject/zephyr/include/zephyr/logging/log_ctrl.h;/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/gpio.h;/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/uart.h;/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/spi.h;/Users/wijnand/zephyrproject/zephyr/include/zephyr/device.h;/Users/wijnand/zephyrproject/zephyr/include/zephyr/kernel.h;/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/kobject.h;/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/time_units.h;/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/errno_private.h \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include b/build/zephyr/misc/generated/syscalls_links/include new file mode 120000 index 0000000..2043b28 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr b/build/zephyr/misc/generated/syscalls_links/include_zephyr new file mode 120000 index 0000000..b20c916 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_acpi b/build/zephyr/misc/generated/syscalls_links/include_zephyr_acpi new file mode 120000 index 0000000..db0fd48 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_acpi @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/acpi \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_app_memory b/build/zephyr/misc/generated/syscalls_links/include_zephyr_app_memory new file mode 120000 index 0000000..65ad908 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_app_memory @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/app_memory \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch new file mode 120000 index 0000000..efe66d6 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc new file mode 120000 index 0000000..32d3320 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat new file mode 120000 index 0000000..ac51099 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/asm-compat \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 new file mode 120000 index 0000000..3f1b2a3 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/v2 \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp new file mode 120000 index 0000000..869d9a3 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/v2/dsp \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu new file mode 120000 index 0000000..75ec561 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/v2/mpu \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield new file mode 120000 index 0000000..2cfe08d --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/v2/secureshield \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx new file mode 120000 index 0000000..3c07808 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arc/v2/vpx \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm new file mode 120000 index 0000000..b644e3c --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 new file mode 120000 index 0000000..39d253a --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64 \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r new file mode 120000 index 0000000..6817d0d --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/cortex_r \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts new file mode 120000 index 0000000..411aa98 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm64/scripts \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r new file mode 120000 index 0000000..c344d52 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_a_r \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts new file mode 120000 index 0000000..58067fe --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_a_r/scripts \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m new file mode 120000 index 0000000..24b648f --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts new file mode 120000 index 0000000..8f9ac79 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/scripts \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r new file mode 120000 index 0000000..0ea69b6 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_r \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts new file mode 120000 index 0000000..1419f0e --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_r/scripts \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu new file mode 120000 index 0000000..10968e0 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/mmu \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu new file mode 120000 index 0000000..c28bbbe --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/arm/mpu \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_common b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_common new file mode 120000 index 0000000..5f13cce --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_common @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/common \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips new file mode 120000 index 0000000..7455cec --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/mips \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_openrisc b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_openrisc new file mode 120000 index 0000000..07954b3 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_openrisc @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/openrisc \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix new file mode 120000 index 0000000..d61487c --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/posix \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv new file mode 120000 index 0000000..62e22f9 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/riscv \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common new file mode 120000 index 0000000..0ffe96e --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/riscv/common \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged new file mode 120000 index 0000000..579364b --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/riscv/riscv-privileged \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_rx b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_rx new file mode 120000 index 0000000..da1c188 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_rx @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/rx \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc new file mode 120000 index 0000000..881ed96 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/sparc \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 new file mode 120000 index 0000000..62c4b6e --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86 \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 new file mode 120000 index 0000000..ac0bf70 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/ia32 \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts new file mode 120000 index 0000000..f7ee2ab --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/ia32/scripts \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 new file mode 120000 index 0000000..0bcaa4f --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/x86/intel64 \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa new file mode 120000 index 0000000..7c2e5a9 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/arch/xtensa \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_audio b/build/zephyr/misc/generated/syscalls_links/include_zephyr_audio new file mode 120000 index 0000000..f4459da --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_audio @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/audio \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth b/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth new file mode 120000 index 0000000..38b6b3c --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio b/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio new file mode 120000 index 0000000..a6ade60 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/audio \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic b/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic new file mode 120000 index 0000000..d9421a8 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/classic \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh b/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh new file mode 120000 index 0000000..b7c4b52 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/mesh \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services b/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services new file mode 120000 index 0000000..1954613 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/services \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus b/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus new file mode 120000 index 0000000..82ae0b8 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/bluetooth/services/nus \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_canbus b/build/zephyr/misc/generated/syscalls_links/include_zephyr_canbus new file mode 120000 index 0000000..a79d3ea --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_canbus @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/canbus \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_cleanup b/build/zephyr/misc/generated/syscalls_links/include_zephyr_cleanup new file mode 120000 index 0000000..7a29942 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_cleanup @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/cleanup \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_console b/build/zephyr/misc/generated/syscalls_links/include_zephyr_console new file mode 120000 index 0000000..e52aeb2 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_console @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/console \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_cpu_freq b/build/zephyr/misc/generated/syscalls_links/include_zephyr_cpu_freq new file mode 120000 index 0000000..7d3053b --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_cpu_freq @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/cpu_freq \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_crypto b/build/zephyr/misc/generated/syscalls_links/include_zephyr_crypto new file mode 120000 index 0000000..fef6780 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_crypto @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/crypto \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dap b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dap new file mode 120000 index 0000000..e1efcd3 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dap @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dap \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_data b/build/zephyr/misc/generated/syscalls_links/include_zephyr_data new file mode 120000 index 0000000..268b3b9 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_data @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/data \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_debug b/build/zephyr/misc/generated/syscalls_links/include_zephyr_debug new file mode 120000 index 0000000..1bd14da --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_debug @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/debug \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight b/build/zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight new file mode 120000 index 0000000..41bc3c1 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/debug/coresight \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_devicetree b/build/zephyr/misc/generated/syscalls_links/include_zephyr_devicetree new file mode 120000 index 0000000..b68ecc9 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_devicetree @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/devicetree \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dfu b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dfu new file mode 120000 index 0000000..8214c6e --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dfu @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dfu \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_display b/build/zephyr/misc/generated/syscalls_links/include_zephyr_display new file mode 120000 index 0000000..25fa978 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_display @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/display \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers new file mode 120000 index 0000000..d8e3e8a --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc new file mode 120000 index 0000000..e520232 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/adc \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_biometrics b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_biometrics new file mode 120000 index 0000000..417b39b --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_biometrics @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/biometrics \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth new file mode 120000 index 0000000..1108c1a --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/bluetooth \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can new file mode 120000 index 0000000..7e21b79 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/can \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_charger b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_charger new file mode 120000 index 0000000..b7d1449 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_charger @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/charger \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control new file mode 120000 index 0000000..1b193ee --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/clock_control \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator new file mode 120000 index 0000000..06ec22b --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/comparator \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console new file mode 120000 index 0000000..7ea2998 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/console \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dac b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dac new file mode 120000 index 0000000..e723287 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dac @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/dac \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_debug b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_debug new file mode 120000 index 0000000..2d51087 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_debug @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/debug \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_disk b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_disk new file mode 120000 index 0000000..0040fac --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_disk @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/disk \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_display b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_display new file mode 120000 index 0000000..7f701f0 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_display @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/display \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma new file mode 120000 index 0000000..233c815 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/dma \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_edac b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_edac new file mode 120000 index 0000000..82fe90a --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_edac @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/edac \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom new file mode 120000 index 0000000..fca4c77 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/eeprom \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet new file mode 120000 index 0000000..251c8d3 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/ethernet \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware new file mode 120000 index 0000000..60e4c83 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/firmware \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_qemu_fwcfg b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_qemu_fwcfg new file mode 120000 index 0000000..69adde8 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_qemu_fwcfg @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/firmware/qemu_fwcfg \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi new file mode 120000 index 0000000..5fc63ef --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi_nxp b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi_nxp new file mode 120000 index 0000000..d721da0 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi_nxp @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/firmware/scmi/nxp \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_tisci b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_tisci new file mode 120000 index 0000000..9686ca4 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_tisci @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/firmware/tisci \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash new file mode 120000 index 0000000..849b758 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/flash \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss new file mode 120000 index 0000000..941bcbc --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/gnss \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio new file mode 120000 index 0000000..d7bd525 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/gpio \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics new file mode 120000 index 0000000..c7e218f --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/haptics \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c new file mode 120000 index 0000000..1c5ddd5 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/i2c \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target new file mode 120000 index 0000000..51aea52 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/i2c/target \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c new file mode 120000 index 0000000..bfb7a59 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/i3c \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 new file mode 120000 index 0000000..fa1c1e2 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/ieee802154 \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller new file mode 120000 index 0000000..d06eb2d --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/interrupt_controller \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led new file mode 120000 index 0000000..b1f9b2a --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/led \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip new file mode 120000 index 0000000..ae696ea --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/led_strip \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_memc b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_memc new file mode 120000 index 0000000..597a653 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_memc @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/memc \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd new file mode 120000 index 0000000..661a142 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mfd \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy new file mode 120000 index 0000000..360c290 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mic_privacy \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy_intel b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy_intel new file mode 120000 index 0000000..3a5d250 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy_intel @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mic_privacy/intel \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi new file mode 120000 index 0000000..05818c3 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mipi_dsi \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc new file mode 120000 index 0000000..05a0f2b --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux new file mode 120000 index 0000000..b52a157 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/devmux \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_flexram b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_flexram new file mode 120000 index 0000000..bda01d8 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_flexram @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/flexram \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx new file mode 120000 index 0000000..0a05300 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/ft8xx \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd new file mode 120000 index 0000000..709e70a --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/grove_lcd \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn new file mode 120000 index 0000000..e0ace07 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/interconn \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn_renesas_elc b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn_renesas_elc new file mode 120000 index 0000000..642fe98 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn_renesas_elc @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/interconn/renesas_elc \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_max2221x b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_max2221x new file mode 120000 index 0000000..4a89787 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_max2221x @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/max2221x \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio new file mode 120000 index 0000000..80deb50 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/nxp_flexio \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_rtxxx_dsp_ctrl b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_rtxxx_dsp_ctrl new file mode 120000 index 0000000..23421cd --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_rtxxx_dsp_ctrl @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/nxp_rtxxx_dsp_ctrl \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico new file mode 120000 index 0000000..1022c1e --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/pio_rpi_pico \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt new file mode 120000 index 0000000..d765ad5 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/renesas_ra_external_interrupt \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_dtc b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_dtc new file mode 120000 index 0000000..6dd969d --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_dtc @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/renesas_rx_dtc \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_external_interrupt b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_external_interrupt new file mode 120000 index 0000000..10c7b45 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_external_interrupt @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/renesas_rx_external_interrupt \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins new file mode 120000 index 0000000..4419b7d --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/stm32_wkup_pins \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio new file mode 120000 index 0000000..1175631 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/misc/timeaware_gpio \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm new file mode 120000 index 0000000..55f6d6d --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mm \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem new file mode 120000 index 0000000..7fa6e39 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/modem \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi new file mode 120000 index 0000000..6ec6b92 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/mspi \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie new file mode 120000 index 0000000..e9e13ab --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pcie \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint new file mode 120000 index 0000000..243a444 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pcie/endpoint \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl new file mode 120000 index 0000000..78debbb --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pinctrl \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops new file mode 120000 index 0000000..94852c6 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pm_cpu_ops \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power new file mode 120000 index 0000000..f1d36b0 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/power \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_psi5 b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_psi5 new file mode 120000 index 0000000..e035efb --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_psi5 @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/psi5 \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm new file mode 120000 index 0000000..46fbeae --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/pwm \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator new file mode 120000 index 0000000..faefdd0 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/regulator \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_reset b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_reset new file mode 120000 index 0000000..4862b4d --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_reset @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/reset \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem new file mode 120000 index 0000000..813bbc8 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/retained_mem \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc new file mode 120000 index 0000000..cd9adaf --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/rtc \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor new file mode 120000 index 0000000..7d69389 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sensor \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sent b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sent new file mode 120000 index 0000000..7b70e95 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sent @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sent \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial new file mode 120000 index 0000000..aeed214 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/serial \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc new file mode 120000 index 0000000..0805af0 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/sip_svc \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi new file mode 120000 index 0000000..c47d997 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/spi \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper new file mode 120000 index 0000000..e246b09 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/stepper \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer new file mode 120000 index 0000000..ae6fda8 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/timer \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart new file mode 120000 index 0000000..dcb36e0 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/uart \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb new file mode 120000 index 0000000..a056263 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/usb \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c new file mode 120000 index 0000000..4a30fa2 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/usb_c \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_video b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_video new file mode 120000 index 0000000..b54c2eb --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_video @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/video \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtio b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtio new file mode 120000 index 0000000..58c8fa5 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtio @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/virtio \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization new file mode 120000 index 0000000..1e4b0d8 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/virtualization \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi new file mode 120000 index 0000000..933ad4f --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/wifi \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi new file mode 120000 index 0000000..2cbf9bd --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/wifi/nrf_wifi \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus new file mode 120000 index 0000000..6dc72c7 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/wifi/nrf_wifi/bus \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx new file mode 120000 index 0000000..0c48b0f --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/drivers/wifi/nrf_wifi/off_raw_tx \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dsp b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dsp new file mode 120000 index 0000000..0a99a09 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dsp @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dsp \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings new file mode 120000 index 0000000..f1b1b04 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi new file mode 120000 index 0000000..ad14108 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/acpi \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc new file mode 120000 index 0000000..f72d588 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery new file mode 120000 index 0000000..946a513 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/battery \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock new file mode 120000 index 0000000..3f7fd4f --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs new file mode 120000 index 0000000..7167381 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/silabs \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_comparator b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_comparator new file mode 120000 index 0000000..22c9ab3 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_comparator @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/comparator \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac new file mode 120000 index 0000000..02330a9 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dac \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai new file mode 120000 index 0000000..bbc9a87 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dai \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display new file mode 120000 index 0000000..b5b9f73 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/display \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma new file mode 120000 index 0000000..baa50d0 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma_silabs b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma_silabs new file mode 120000 index 0000000..d213bb0 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma_silabs @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/silabs \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi new file mode 120000 index 0000000..9471432 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/espi \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet new file mode 120000 index 0000000..3ed8426 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/ethernet \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller new file mode 120000 index 0000000..333fa55 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/flash_controller \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio new file mode 120000 index 0000000..3bdeec9 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c new file mode 120000 index 0000000..0c25cb6 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/i2c \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input new file mode 120000 index 0000000..d3b5315 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/input \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux new file mode 120000 index 0000000..aaceea5 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/inputmux \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller new file mode 120000 index 0000000..3aa65b5 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service new file mode 120000 index 0000000..6c2f2e3 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/ipc_service \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led new file mode 120000 index 0000000..502f5e2 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/led \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora new file mode 120000 index 0000000..7519e10 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/lora \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl new file mode 120000 index 0000000..042253b --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/lvgl \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr new file mode 120000 index 0000000..e7ad478 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-attr \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller new file mode 120000 index 0000000..473cfd2 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/memory-controller \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd new file mode 120000 index 0000000..786a9c9 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/mfd \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi new file mode 120000 index 0000000..321f404 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/mipi_dbi \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi new file mode 120000 index 0000000..153cb6b --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/mipi_dsi \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc new file mode 120000 index 0000000..1eff516 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas new file mode 120000 index 0000000..6daea86 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas_ra-elc b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas_ra-elc new file mode 120000 index 0000000..e5b88ec --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas_ra-elc @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/misc/renesas/ra-elc \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie new file mode 120000 index 0000000..47a1c96 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pcie \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl new file mode 120000 index 0000000..1b29fd8 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas new file mode 120000 index 0000000..3516278 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/renesas \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs new file mode 120000 index 0000000..d9332ce --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/silabs \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power new file mode 120000 index 0000000..dd6d4ff --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/power \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm new file mode 120000 index 0000000..9cefb96 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_qspi b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_qspi new file mode 120000 index 0000000..11bd241 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_qspi @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/qspi \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc new file mode 120000 index 0000000..e4a12ea --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/rdc \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator new file mode 120000 index 0000000..7c6c91c --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/regulator \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory new file mode 120000 index 0000000..b930634 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reserved-memory \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset new file mode 120000 index 0000000..67dbb89 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/reset \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor new file mode 120000 index 0000000..9fba40d --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sent b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sent new file mode 120000 index 0000000..92e9849 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sent @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/sent \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi new file mode 120000 index 0000000..b7e8ded --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/spi \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer new file mode 120000 index 0000000..ec635f7 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/timer \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb new file mode 120000 index 0000000..d8ebb5a --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/usb \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c new file mode 120000 index 0000000..7da3077 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/usb-c \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video new file mode 120000 index 0000000..87c6bd1 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/video \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_wuc b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_wuc new file mode 120000 index 0000000..c5b011c --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_wuc @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/wuc \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_xspi b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_xspi new file mode 120000 index 0000000..f748dd1 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_xspi @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/xspi \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_fs b/build/zephyr/misc/generated/syscalls_links/include_zephyr_fs new file mode 120000 index 0000000..9674d34 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_fs @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/fs \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_gnss b/build/zephyr/misc/generated/syscalls_links/include_zephyr_gnss new file mode 120000 index 0000000..37e7c5e --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_gnss @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/gnss \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_gnss_rtk b/build/zephyr/misc/generated/syscalls_links/include_zephyr_gnss_rtk new file mode 120000 index 0000000..8ebdc40 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_gnss_rtk @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/gnss/rtk \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_input b/build/zephyr/misc/generated/syscalls_links/include_zephyr_input new file mode 120000 index 0000000..cf57228 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_input @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/input \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_instrumentation b/build/zephyr/misc/generated/syscalls_links/include_zephyr_instrumentation new file mode 120000 index 0000000..1e2efa7 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_instrumentation @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/instrumentation \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_internal b/build/zephyr/misc/generated/syscalls_links/include_zephyr_internal new file mode 120000 index 0000000..0355fd2 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_internal @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/internal \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_ipc b/build/zephyr/misc/generated/syscalls_links/include_zephyr_ipc new file mode 120000 index 0000000..d35d03a --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_ipc @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/ipc \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_ipc_backends b/build/zephyr/misc/generated/syscalls_links/include_zephyr_ipc_backends new file mode 120000 index 0000000..c74b7fc --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_ipc_backends @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/ipc/backends \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_kernel b/build/zephyr/misc/generated/syscalls_links/include_zephyr_kernel new file mode 120000 index 0000000..52f60e5 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_kernel @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/kernel \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal b/build/zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal new file mode 120000 index 0000000..d9b39df --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/kernel/internal \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm b/build/zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm new file mode 120000 index 0000000..86d80ff --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/kernel/mm \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_kvss b/build/zephyr/misc/generated/syscalls_links/include_zephyr_kvss new file mode 120000 index 0000000..9cba650 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_kvss @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/kvss \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_linker b/build/zephyr/misc/generated/syscalls_links/include_zephyr_linker new file mode 120000 index 0000000..158c0bb --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_linker @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/linker \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom b/build/zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom new file mode 120000 index 0000000..d3764d1 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/linker/common-rom \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_llext b/build/zephyr/misc/generated/syscalls_links/include_zephyr_llext new file mode 120000 index 0000000..1d3a510 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_llext @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/llext \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_logging b/build/zephyr/misc/generated/syscalls_links/include_zephyr_logging new file mode 120000 index 0000000..934c80e --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_logging @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/logging \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_lorawan b/build/zephyr/misc/generated/syscalls_links/include_zephyr_lorawan new file mode 120000 index 0000000..19f5a86 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_lorawan @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/lorawan \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_math b/build/zephyr/misc/generated/syscalls_links/include_zephyr_math new file mode 120000 index 0000000..0934439 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_math @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/math \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt new file mode 120000 index 0000000..74a80c8 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/mem_mgmt \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt new file mode 120000 index 0000000..2529ced --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd new file mode 120000 index 0000000..850a496 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/ec_host_cmd \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit new file mode 120000 index 0000000..cc8d638 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/hawkbit \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr new file mode 120000 index 0000000..25e7e3e --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp new file mode 120000 index 0000000..38af8ca --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt new file mode 120000 index 0000000..ca7b770 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/enum_mgmt \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt new file mode 120000 index 0000000..ebdfd50 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/fs_mgmt \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt new file mode 120000 index 0000000..ae812cc --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/img_mgmt \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt new file mode 120000 index 0000000..3010cce --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/os_mgmt \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt new file mode 120000 index 0000000..15e6067 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/settings_mgmt \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt new file mode 120000 index 0000000..b74a5fa --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/shell_mgmt \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt new file mode 120000 index 0000000..93dce77 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/stat_mgmt \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr new file mode 120000 index 0000000..705d6ef --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/grp/zephyr \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt new file mode 120000 index 0000000..edb64b9 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/mgmt \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp new file mode 120000 index 0000000..b9f8d5a --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/smp \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport new file mode 120000 index 0000000..ef9f42a --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/mgmt/mcumgr/transport \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_misc b/build/zephyr/misc/generated/syscalls_links/include_zephyr_misc new file mode 120000 index 0000000..44ad2e1 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_misc @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/misc \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_modbus b/build/zephyr/misc/generated/syscalls_links/include_zephyr_modbus new file mode 120000 index 0000000..66f1614 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_modbus @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/modbus \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_modem b/build/zephyr/misc/generated/syscalls_links/include_zephyr_modem new file mode 120000 index 0000000..a99a4c6 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_modem @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/modem \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_modem_at b/build/zephyr/misc/generated/syscalls_links/include_zephyr_modem_at new file mode 120000 index 0000000..2804e8a --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_modem_at @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/modem/at \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend b/build/zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend new file mode 120000 index 0000000..144e9ea --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/modem/backend \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_modem_ubx b/build/zephyr/misc/generated/syscalls_links/include_zephyr_modem_ubx new file mode 120000 index 0000000..ab1d831 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_modem_ubx @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/modem/ubx \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap b/build/zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap new file mode 120000 index 0000000..a95c7db --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/multi_heap \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_net b/build/zephyr/misc/generated/syscalls_links/include_zephyr_net new file mode 120000 index 0000000..3be8bfd --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_net @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/net \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr b/build/zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr new file mode 120000 index 0000000..8adb22a --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/net/conn_mgr \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if b/build/zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if new file mode 120000 index 0000000..f74f8f7 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/net/hdlc_rcp_if \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_net_http b/build/zephyr/misc/generated/syscalls_links/include_zephyr_net_http new file mode 120000 index 0000000..2d332ba --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_net_http @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/net/http \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus b/build/zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus new file mode 120000 index 0000000..04c69f5 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/net/prometheus \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_platform b/build/zephyr/misc/generated/syscalls_links/include_zephyr_platform new file mode 120000 index 0000000..f970e0f --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_platform @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/platform \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_pm b/build/zephyr/misc/generated/syscalls_links/include_zephyr_pm new file mode 120000 index 0000000..4ef3392 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_pm @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/pm \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_pmci b/build/zephyr/misc/generated/syscalls_links/include_zephyr_pmci new file mode 120000 index 0000000..51b4598 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_pmci @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/pmci \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_pmci_mctp b/build/zephyr/misc/generated/syscalls_links/include_zephyr_pmci_mctp new file mode 120000 index 0000000..ee8a366 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_pmci_mctp @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/pmci/mctp \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_portability b/build/zephyr/misc/generated/syscalls_links/include_zephyr_portability new file mode 120000 index 0000000..7eb5896 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_portability @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/portability \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix b/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix new file mode 120000 index 0000000..2b14496 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/posix \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa b/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa new file mode 120000 index 0000000..59acbd1 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/arpa \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix_net b/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix_net new file mode 120000 index 0000000..72b3657 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix_net @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/net \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet b/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet new file mode 120000 index 0000000..c6f1a2d --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/netinet \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys b/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys new file mode 120000 index 0000000..b6527ea --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/posix/sys \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_psa b/build/zephyr/misc/generated/syscalls_links/include_zephyr_psa new file mode 120000 index 0000000..fbdd443 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_psa @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/psa \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_random b/build/zephyr/misc/generated/syscalls_links/include_zephyr_random new file mode 120000 index 0000000..b45fe82 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_random @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/random \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_retention b/build/zephyr/misc/generated/syscalls_links/include_zephyr_retention new file mode 120000 index 0000000..8fa4f0e --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_retention @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/retention \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_rtio b/build/zephyr/misc/generated/syscalls_links/include_zephyr_rtio new file mode 120000 index 0000000..184780d --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_rtio @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/rtio \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_sd b/build/zephyr/misc/generated/syscalls_links/include_zephyr_sd new file mode 120000 index 0000000..dfecc82 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_sd @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/sd \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_sensing b/build/zephyr/misc/generated/syscalls_links/include_zephyr_sensing new file mode 120000 index 0000000..74dc748 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_sensing @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/sensing \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_settings b/build/zephyr/misc/generated/syscalls_links/include_zephyr_settings new file mode 120000 index 0000000..96cc69a --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_settings @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/settings \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_shell b/build/zephyr/misc/generated/syscalls_links/include_zephyr_shell new file mode 120000 index 0000000..1197860 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_shell @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/shell \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc b/build/zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc new file mode 120000 index 0000000..7326a98 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/sip_svc \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_stats b/build/zephyr/misc/generated/syscalls_links/include_zephyr_stats new file mode 120000 index 0000000..ab53d6d --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_stats @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/stats \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_storage b/build/zephyr/misc/generated/syscalls_links/include_zephyr_storage new file mode 120000 index 0000000..aa0cfc6 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_storage @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/storage \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_sys b/build/zephyr/misc/generated/syscalls_links/include_zephyr_sys new file mode 120000 index 0000000..96d078f --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_sys @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal b/build/zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal new file mode 120000 index 0000000..ce8797d --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/internal \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt b/build/zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt new file mode 120000 index 0000000..1264434 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/task_wdt \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_timing b/build/zephyr/misc/generated/syscalls_links/include_zephyr_timing new file mode 120000 index 0000000..9ecb095 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_timing @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/timing \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_toolchain b/build/zephyr/misc/generated/syscalls_links/include_zephyr_toolchain new file mode 120000 index 0000000..c0e70d8 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_toolchain @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_toolchain_iar b/build/zephyr/misc/generated/syscalls_links/include_zephyr_toolchain_iar new file mode 120000 index 0000000..5cad6c2 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_toolchain_iar @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/toolchain/iar \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_tracing b/build/zephyr/misc/generated/syscalls_links/include_zephyr_tracing new file mode 120000 index 0000000..8983114 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_tracing @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/tracing \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_usb b/build/zephyr/misc/generated/syscalls_links/include_zephyr_usb new file mode 120000 index 0000000..ff2a21d --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_usb @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/usb \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_usb_c b/build/zephyr/misc/generated/syscalls_links/include_zephyr_usb_c new file mode 120000 index 0000000..2be6d38 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_usb_c @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/usb_c \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_usb_class b/build/zephyr/misc/generated/syscalls_links/include_zephyr_usb_class new file mode 120000 index 0000000..ae8dff4 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_usb_class @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/usb/class \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_video b/build/zephyr/misc/generated/syscalls_links/include_zephyr_video new file mode 120000 index 0000000..252872f --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_video @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/video \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen b/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen new file mode 120000 index 0000000..124ba4b --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/xen \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 b/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 new file mode 120000 index 0000000..d9b8438 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/dom0 \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public b/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public new file mode 120000 index 0000000..6023544 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/public \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm b/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm new file mode 120000 index 0000000..66c2ffd --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/public/hvm \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io b/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io new file mode 120000 index 0000000..baef2f6 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/xen/public/io \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_zbus b/build/zephyr/misc/generated/syscalls_links/include_zephyr_zbus new file mode 120000 index 0000000..85d12be --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_zbus @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/zbus \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_zbus_proxy_agent b/build/zephyr/misc/generated/syscalls_links/include_zephyr_zbus_proxy_agent new file mode 120000 index 0000000..f58468a --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_zbus_proxy_agent @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/zbus/proxy_agent \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_links/include_zephyr_zvfs b/build/zephyr/misc/generated/syscalls_links/include_zephyr_zvfs new file mode 120000 index 0000000..1d18451 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_links/include_zephyr_zvfs @@ -0,0 +1 @@ +/Users/wijnand/zephyrproject/zephyr/include/zephyr/zvfs \ No newline at end of file diff --git a/build/zephyr/misc/generated/syscalls_subdirs.trigger b/build/zephyr/misc/generated/syscalls_subdirs.trigger new file mode 100644 index 0000000..e69de29 diff --git a/build/zephyr/misc/generated/syscalls_subdirs.txt b/build/zephyr/misc/generated/syscalls_subdirs.txt new file mode 100644 index 0000000..23ae628 --- /dev/null +++ b/build/zephyr/misc/generated/syscalls_subdirs.txt @@ -0,0 +1,282 @@ +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_acpi +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_app_memory +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_audio +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_canbus +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_cleanup +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_console +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_cpu_freq +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_crypto +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dap +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_data +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_debug +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_devicetree +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dfu +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_display +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dsp +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_fs +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_gnss +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_input +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_instrumentation +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_internal +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_ipc +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_kernel +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_kvss +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_linker +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_llext +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_logging +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_lorawan +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_math +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_misc +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_modbus +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_modem +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_net +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_platform +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_pm +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_pmci +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_portability +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_psa +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_random +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_retention +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_rtio +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_sd +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_sensing +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_settings +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_shell +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_stats +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_storage +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_sys +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_timing +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_toolchain +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_tracing +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_usb +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_usb_c +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_video +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_zbus +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_zvfs +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_common +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_openrisc +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_rx +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_biometrics +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_charger +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dac +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_debug +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_disk +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_display +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_edac +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_memc +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_psi5 +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_reset +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sent +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_video +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtio +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_qemu_fwcfg +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_tisci +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi_nxp +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy_intel +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_flexram +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_max2221x +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_rtxxx_dsp_ctrl +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_dtc +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_external_interrupt +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn_renesas_elc +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_comparator +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_qspi +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sent +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_wuc +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_xspi +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma_silabs +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas_ra-elc +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_gnss_rtk +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_ipc_backends +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_modem_at +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_modem_ubx +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_net_http +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_pmci_mctp +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix_net +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_toolchain_iar +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_usb_class +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io +/Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_zbus_proxy_agent diff --git a/build/zephyr/runners.yaml b/build/zephyr/runners.yaml new file mode 100644 index 0000000..16c6474 --- /dev/null +++ b/build/zephyr/runners.yaml @@ -0,0 +1,59 @@ +# Available runners configured by board.cmake. +runners: +- openocd +- esp32 + +# Default flash runner if --runner is not given. +flash-runner: esp32 + +# Default debug runner if --runner is not given. +debug-runner: openocd + +# Common runner configuration values. +config: + board_dir: /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3 + # Build outputs: + elf_file: zephyr.elf + bin_file: zephyr.bin + # Host tools: + gdb: /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gdb-py + openocd: /Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/openocd + openocd_search: + - /Users/wijnand/zephyr-sdk-1.0.0/hosttools/opt/openocd/share/openocd/scripts + +# Runner specific arguments +args: + openocd: + - --cmd-load + - flash write_image erase + - --cmd-verify + - verify_image + - --no-halt + - --no-targets + - --no-load + - --target-handle + - _TARGETNAME_0 + - --gdb-init + - set remote hardware-watchpoint-limit 2 + - --gdb-init + - maintenance flush register-cache + - --gdb-init + - mon esp appimage_offset 0x0 + - --gdb-init + - mon reset halt + - --gdb-init + - thb main + - --file-type=bin + - --flash-address=0x0 + - --cmd-load + - program_esp + - --cmd-verify + - esp verify_bank_hash 0 + esp32: + - --esp-monitor-baud= + - --esp-idf-path=/Users/wijnand/zephyrproject/modules/hal/espressif + - --esp-app-address=0x0 + - --esp-flash-size=8MB + - --esp-flash-freq=80m + - --esp-flash-mode=dio + - --esp-idf-path=/Users/wijnand/zephyrproject/modules/hal/espressif diff --git a/build/zephyr/snippets_generated.cmake b/build/zephyr/snippets_generated.cmake new file mode 100644 index 0000000..ad881bf --- /dev/null +++ b/build/zephyr/snippets_generated.cmake @@ -0,0 +1,18 @@ +# WARNING. THIS FILE IS AUTO-GENERATED. DO NOT MODIFY! +# +# This file contains build system settings derived from your snippets. +# Its contents are an implementation detail that should not be used outside +# of Zephyr's snippets CMake module. +# +# See the Snippets guide in the Zephyr documentation for more information. +############################################################################### +# Global information about all snippets. + +# The name of every snippet that was discovered. +set(SNIPPET_NAMES "bt-ll-sw-split" "cdc-acm-console" "espressif-flash-128M" "espressif-flash-16M" "espressif-flash-2M" "espressif-flash-32M" "espressif-flash-4M" "espressif-flash-64M" "espressif-flash-8M" "espressif-psram-2M" "espressif-psram-4M" "espressif-psram-8M" "espressif-psram-reloc" "espressif-psram-wifi" "hci-uart-native-sim" "nordic-flpr" "nordic-flpr-xip" "nordic-log-stm" "nordic-log-stm-dict" "nordic-log-stm-tpiu-dict" "nordic-ppr" "nordic-ppr-xip" "nus-console" "ram-console" "ram-tracing" "rp2-boot-mode-retention" "rtt-console" "rtt-tracing" "semihost-tracing" "serial-console" "silabs-pti" "slot1-partition" "socketcan-native-sim" "usbip-native-sim" "video-sw-generator" "wifi-credentials" "wifi-enterprise" "wifi-ip" "wifi-ipv4" "wifi-ipv6" "xen_dom0" "xiao-serial-console") +# The paths to all the snippet.yml files. One snippet +# can have multiple snippet.yml files. +set(SNIPPET_PATHS "/Users/wijnand/zephyrproject/zephyr/snippets/bt-ll-sw-split/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/cdc-acm-console/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/espressif/flash-128M/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/espressif/flash-16M/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/espressif/flash-2M/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/espressif/flash-32M/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/espressif/flash-4M/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/espressif/flash-64M/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/espressif/flash-8M/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/espressif/psram-2M/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/espressif/psram-4M/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/espressif/psram-8M/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/espressif/psram-reloc/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/espressif/psram-wifi/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/hci-uart-native-sim/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/nordic/nordic-flpr-xip/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/nordic/nordic-flpr/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/nordic/nordic-log-stm-dict/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/nordic/nordic-log-stm-tpiu-dict/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/nordic/nordic-log-stm/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/nordic/nordic-ppr-xip/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/nordic/nordic-ppr/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/nus-console/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/ram-console/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/ram-tracing/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/rp2-boot-mode-retention/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/rtt-console/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/rtt-tracing/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/semihost-tracing/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/serial-console/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/silabs-pti/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/slot1-partition/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/socketcan-native-sim/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/usbip-native-sim/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/video-sw-generator/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/wifi/wifi-credentials/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/wifi/wifi-enterprise/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/wifi/wifi-ip/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/wifi/wifi-ipv4/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/wifi/wifi-ipv6/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/xen_dom0/snippet.yml" "/Users/wijnand/zephyrproject/zephyr/snippets/xiao-serial-console/snippet.yml") + +# Create variable scope for snippets build variables +zephyr_create_scope(snippets) diff --git a/build/zephyr/soc/cmake_install.cmake b/build/zephyr/soc/cmake_install.cmake new file mode 100644 index 0000000..e4f3120 --- /dev/null +++ b/build/zephyr/soc/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/soc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/soc/common/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/soc/soc/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/zephyr/soc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/soc/common/cmake_install.cmake b/build/zephyr/soc/common/cmake_install.cmake new file mode 100644 index 0000000..7985294 --- /dev/null +++ b/build/zephyr/soc/common/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/soc/common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/soc/common/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/soc/soc/esp32s3/cmake_install.cmake b/build/zephyr/soc/soc/esp32s3/cmake_install.cmake new file mode 100644 index 0000000..491b6c1 --- /dev/null +++ b/build/zephyr/soc/soc/esp32s3/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/soc/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/zephyr/soc/soc/esp32s3/common/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/soc/soc/esp32s3/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/zephyr/soc/soc/esp32s3/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/soc/soc/esp32s3/common/cmake_install.cmake b/build/zephyr/soc/soc/esp32s3/common/cmake_install.cmake new file mode 100644 index 0000000..ad99489 --- /dev/null +++ b/build/zephyr/soc/soc/esp32s3/common/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/soc/espressif/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() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/Volumes/External/Work/radio/loramodem/build/zephyr/soc/soc/esp32s3/common/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/soc/soc/esp32s3/esp32s3/cmake_install.cmake b/build/zephyr/soc/soc/esp32s3/esp32s3/cmake_install.cmake new file mode 100644 index 0000000..b3ac363 --- /dev/null +++ b/build/zephyr/soc/soc/esp32s3/esp32s3/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/soc/espressif/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/zephyr/soc/soc/esp32s3/esp32s3/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/canbus/cmake_install.cmake b/build/zephyr/subsys/canbus/cmake_install.cmake new file mode 100644 index 0000000..05a01e1 --- /dev/null +++ b/build/zephyr/subsys/canbus/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/canbus + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/subsys/canbus/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/cmake_install.cmake b/build/zephyr/subsys/cmake_install.cmake new file mode 100644 index 0000000..e022835 --- /dev/null +++ b/build/zephyr/subsys/cmake_install.cmake @@ -0,0 +1,165 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/subsys/canbus/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/debug/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/fb/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/fs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/gnss/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/instrumentation/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/ipc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/kvss/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/logging/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/mem_mgmt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/mgmt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/modbus/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/pm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/pmci/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/portability/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/random/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/rtio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/sd/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/stats/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/storage/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/task_wdt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/testsuite/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/tracing/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/usb/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/zephyr/subsys/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/debug/cmake_install.cmake b/build/zephyr/subsys/debug/cmake_install.cmake new file mode 100644 index 0000000..fd6240f --- /dev/null +++ b/build/zephyr/subsys/debug/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/debug + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/subsys/debug/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/fb/cmake_install.cmake b/build/zephyr/subsys/fb/cmake_install.cmake new file mode 100644 index 0000000..aa492a1 --- /dev/null +++ b/build/zephyr/subsys/fb/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/fb + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/subsys/fb/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/fs/cmake_install.cmake b/build/zephyr/subsys/fs/cmake_install.cmake new file mode 100644 index 0000000..203bbcc --- /dev/null +++ b/build/zephyr/subsys/fs/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/fs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/subsys/fs/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/gnss/cmake_install.cmake b/build/zephyr/subsys/gnss/cmake_install.cmake new file mode 100644 index 0000000..9ee5b88 --- /dev/null +++ b/build/zephyr/subsys/gnss/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/gnss + +# 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/zephyr/subsys/gnss/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/instrumentation/cmake_install.cmake b/build/zephyr/subsys/instrumentation/cmake_install.cmake new file mode 100644 index 0000000..286f3ad --- /dev/null +++ b/build/zephyr/subsys/instrumentation/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/instrumentation + +# 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/zephyr/subsys/instrumentation/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/ipc/cmake_install.cmake b/build/zephyr/subsys/ipc/cmake_install.cmake new file mode 100644 index 0000000..d3fe6fd --- /dev/null +++ b/build/zephyr/subsys/ipc/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/ipc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/subsys/ipc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/kvss/cmake_install.cmake b/build/zephyr/subsys/kvss/cmake_install.cmake new file mode 100644 index 0000000..f1a7daa --- /dev/null +++ b/build/zephyr/subsys/kvss/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/kvss + +# 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/zephyr/subsys/kvss/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/logging/backends/cmake_install.cmake b/build/zephyr/subsys/logging/backends/cmake_install.cmake new file mode 100644 index 0000000..0aa0a2a --- /dev/null +++ b/build/zephyr/subsys/logging/backends/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/logging/backends + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/subsys/logging/backends/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/logging/cmake_install.cmake b/build/zephyr/subsys/logging/cmake_install.cmake new file mode 100644 index 0000000..687b820 --- /dev/null +++ b/build/zephyr/subsys/logging/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/logging + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/subsys/logging/backends/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/logging/frontends/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/zephyr/subsys/logging/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/logging/frontends/cmake_install.cmake b/build/zephyr/subsys/logging/frontends/cmake_install.cmake new file mode 100644 index 0000000..0bd4598 --- /dev/null +++ b/build/zephyr/subsys/logging/frontends/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/logging/frontends + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/subsys/logging/frontends/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/mem_mgmt/cmake_install.cmake b/build/zephyr/subsys/mem_mgmt/cmake_install.cmake new file mode 100644 index 0000000..624d773 --- /dev/null +++ b/build/zephyr/subsys/mem_mgmt/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/mem_mgmt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/subsys/mem_mgmt/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/mgmt/cmake_install.cmake b/build/zephyr/subsys/mgmt/cmake_install.cmake new file mode 100644 index 0000000..872b2a8 --- /dev/null +++ b/build/zephyr/subsys/mgmt/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/mgmt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/subsys/mgmt/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/modbus/cmake_install.cmake b/build/zephyr/subsys/modbus/cmake_install.cmake new file mode 100644 index 0000000..23a4c5b --- /dev/null +++ b/build/zephyr/subsys/modbus/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/modbus + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/subsys/modbus/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/pm/cmake_install.cmake b/build/zephyr/subsys/pm/cmake_install.cmake new file mode 100644 index 0000000..4777a65 --- /dev/null +++ b/build/zephyr/subsys/pm/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/pm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/subsys/pm/policy/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/zephyr/subsys/pm/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/pm/policy/cmake_install.cmake b/build/zephyr/subsys/pm/policy/cmake_install.cmake new file mode 100644 index 0000000..55bee45 --- /dev/null +++ b/build/zephyr/subsys/pm/policy/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/pm/policy + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/subsys/pm/policy/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/pmci/cmake_install.cmake b/build/zephyr/subsys/pmci/cmake_install.cmake new file mode 100644 index 0000000..e11386c --- /dev/null +++ b/build/zephyr/subsys/pmci/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/pmci + +# 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/zephyr/subsys/pmci/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/portability/cmake_install.cmake b/build/zephyr/subsys/portability/cmake_install.cmake new file mode 100644 index 0000000..9cb318e --- /dev/null +++ b/build/zephyr/subsys/portability/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/portability + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/subsys/portability/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/random/cmake_install.cmake b/build/zephyr/subsys/random/cmake_install.cmake new file mode 100644 index 0000000..355db49 --- /dev/null +++ b/build/zephyr/subsys/random/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/random + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/subsys/random/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/rtio/cmake_install.cmake b/build/zephyr/subsys/rtio/cmake_install.cmake new file mode 100644 index 0000000..946ad07 --- /dev/null +++ b/build/zephyr/subsys/rtio/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/rtio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/subsys/rtio/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/sd/cmake_install.cmake b/build/zephyr/subsys/sd/cmake_install.cmake new file mode 100644 index 0000000..9a822d8 --- /dev/null +++ b/build/zephyr/subsys/sd/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/sd + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/subsys/sd/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/stats/cmake_install.cmake b/build/zephyr/subsys/stats/cmake_install.cmake new file mode 100644 index 0000000..ee6e4a1 --- /dev/null +++ b/build/zephyr/subsys/stats/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/stats + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/subsys/stats/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/storage/cmake_install.cmake b/build/zephyr/subsys/storage/cmake_install.cmake new file mode 100644 index 0000000..2302381 --- /dev/null +++ b/build/zephyr/subsys/storage/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/storage + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/subsys/storage/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/task_wdt/cmake_install.cmake b/build/zephyr/subsys/task_wdt/cmake_install.cmake new file mode 100644 index 0000000..e5bd076 --- /dev/null +++ b/build/zephyr/subsys/task_wdt/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/task_wdt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/subsys/task_wdt/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/testsuite/cmake_install.cmake b/build/zephyr/subsys/testsuite/cmake_install.cmake new file mode 100644 index 0000000..223aa69 --- /dev/null +++ b/build/zephyr/subsys/testsuite/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/testsuite + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/subsys/testsuite/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/tracing/cmake_install.cmake b/build/zephyr/subsys/tracing/cmake_install.cmake new file mode 100644 index 0000000..5104288 --- /dev/null +++ b/build/zephyr/subsys/tracing/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/tracing + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/subsys/tracing/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/usb/cmake_install.cmake b/build/zephyr/subsys/usb/cmake_install.cmake new file mode 100644 index 0000000..582369a --- /dev/null +++ b/build/zephyr/subsys/usb/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/usb + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/subsys/usb/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/zephyr/subsys/usb/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/subsys/usb/common/cmake_install.cmake b/build/zephyr/subsys/usb/common/cmake_install.cmake new file mode 100644 index 0000000..58e6dd1 --- /dev/null +++ b/build/zephyr/subsys/usb/common/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/wijnand/zephyrproject/zephyr/subsys/usb/common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set 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/zephyr/subsys/usb/common/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/zephyr/syscall_weakdefs_llext.c b/build/zephyr/syscall_weakdefs_llext.c new file mode 100644 index 0000000..cdbe652 --- /dev/null +++ b/build/zephyr/syscall_weakdefs_llext.c @@ -0,0 +1,178 @@ +/* auto-generated by gen_syscalls.py, don't edit */ + +#include +#include + +/* + * This symbol is placed at address 0 by llext-sections.ld. Its value and + * type is not important, we are only interested in its location. + */ +static void * const no_syscall_impl Z_GENERIC_SECTION(llext_no_syscall_impl); + +/* + * Weak references to all syscall implementations. Those not found by the + * linker outside this file will be exported as NULL and simply fail when + * an extension requiring them is loaded. + */ +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_device_deinit; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_device_get_binding; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_device_get_by_dt_nodelabel; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_device_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_device_is_ready; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_get_pending_int; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_pin_configure; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_pin_get_config; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_pin_interrupt_configure; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_port_clear_bits_raw; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_port_get_direction; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_port_get_raw; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_port_set_bits_raw; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_port_set_masked_raw; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_gpio_port_toggle_bits; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_busy_wait; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_condvar_broadcast; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_condvar_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_condvar_signal; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_condvar_wait; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_clear; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_post; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_set_masked; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_wait; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_wait_all; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_wait_all_safe; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_event_wait_safe; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_float_disable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_float_enable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_futex_wait; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_futex_wake; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_is_preempt_thread; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_alloc_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_get_attrs; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_num_free_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_num_used_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_peek; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_peek_at; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_purge; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_put; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_msgq_put_front; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_mutex_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_mutex_lock; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_mutex_unlock; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_object_access_check; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_object_access_grant; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_object_alloc; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_object_alloc_size; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_object_release; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_pipe_close; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_pipe_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_pipe_read; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_pipe_reset; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_pipe_write; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_poll; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_poll_signal_check; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_poll_signal_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_poll_signal_raise; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_poll_signal_reset; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_alloc_append; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_alloc_prepend; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_cancel_wait; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_is_empty; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_peek_head; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_queue_peek_tail; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_reschedule; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_sched_current_thread_query; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_sem_count_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_sem_give; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_sem_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_sem_reset; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_sem_take; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_sleep; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_stack_alloc_init; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_stack_pop; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_stack_push; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_str_out; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_abort; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_absolute_deadline_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_create; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_custom_data_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_custom_data_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_deadline_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_join; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_name_copy; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_name_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_priority_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_priority_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_resume; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_runtime_stack_unused_threshold_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_runtime_stack_unused_threshold_pct_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_runtime_stack_unused_threshold_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_stack_alloc; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_stack_free; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_stack_space_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_suspend; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_timeout_expires_ticks; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_thread_timeout_remaining_ticks; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_expires_ticks; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_remaining_ticks; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_start; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_status_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_status_sync; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_stop; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_user_data_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_timer_user_data_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_uptime_ticks; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_usleep; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_wakeup; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_k_yield; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_log_buffered_cnt; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_log_filter_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_log_frontend_filter_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_log_panic; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_log_process; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_spi_release; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_spi_transceive; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_sys_clock_getrtoffset; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_sys_clock_hw_cycles_per_sec_runtime_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_sys_clock_nanosleep; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_sys_clock_settime; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_config_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_configure; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_drv_cmd; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_err_check; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_err_disable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_err_enable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_is_pending; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_rx_disable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_rx_enable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_tx_disable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_tx_enable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_irq_update; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_line_ctrl_get; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_line_ctrl_set; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_poll_in; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_poll_in_u16; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_poll_out; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_poll_out_u16; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_rx_disable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_rx_enable; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_rx_enable_u16; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_tx; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_tx_abort; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_uart_tx_u16; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_xtensa_user_fault; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_z_errno; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_z_log_msg_simple_create_0; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_z_log_msg_simple_create_1; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_z_log_msg_simple_create_2; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_z_log_msg_static_create; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_z_sys_mutex_kernel_lock; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_z_sys_mutex_kernel_unlock; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_zephyr_fputc; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_zephyr_fwrite; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_zephyr_read_stdin; +extern __weak ALIAS_OF(no_syscall_impl) void * const z_impl_zephyr_write_stdout; diff --git a/build/zephyr/zephyr.bin b/build/zephyr/zephyr.bin new file mode 100755 index 0000000..e4b07d7 Binary files /dev/null and b/build/zephyr/zephyr.bin differ diff --git a/build/zephyr/zephyr.dts b/build/zephyr/zephyr.dts new file mode 100644 index 0000000..79567e8 --- /dev/null +++ b/build/zephyr/zephyr.dts @@ -0,0 +1,943 @@ +/dts-v1/; + +/* node '/' defined in zephyr/dts/common/skeleton.dtsi:9 */ +/ { + #address-cells = < 0x1 >; /* in zephyr/dts/common/skeleton.dtsi:10 */ + #size-cells = < 0x1 >; /* in zephyr/dts/common/skeleton.dtsi:11 */ + model = "Seeed Xiao ESP32S3 PROCPU"; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu.dts:15 */ + compatible = "seeed,xiao-esp32s3"; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu.dts:16 */ + + /* node '/chosen' defined in zephyr/dts/common/skeleton.dtsi:13 */ + chosen { + zephyr,canbus = &twai; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:22 */ + zephyr,entropy = &trng0; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:23 */ + zephyr,flash-controller = &flash; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:24 */ + zephyr,sram = &sram1; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:15 */ + zephyr,console = &usb_serial; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:16 */ + zephyr,shell-uart = &usb_serial; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:17 */ + zephyr,flash = &flash0; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:18 */ + zephyr,code-partition = &slot0_partition; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:19 */ + zephyr,bt-hci = &esp32_bt_hci; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:20 */ + loramodem,kiss-uart = &usb_serial; /* in ../../../Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay:19 */ + }; + + /* node '/aliases' defined in zephyr/dts/common/skeleton.dtsi:15 */ + aliases { + die-temp0 = &coretemp; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:18 */ + i2c-0 = &i2c0; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:24 */ + watchdog0 = &wdt0; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:25 */ + led0 = &led0; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:26 */ + lora0 = &lora; /* in ../../../Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay:22 */ + }; + + /* node '/soc' defined in zephyr/dts/xtensa/xtensa.dtsi:10 */ + soc { + #address-cells = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:95 */ + #size-cells = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:96 */ + compatible = "simple-bus"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:97 */ + ranges; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:98 */ + + /* node '/soc/memory@42000000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:100 */ + icache0: memory@42000000 { + compatible = "zephyr,memory-region"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:101 */ + reg = < 0x42000000 0x2000000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:102 */ + zephyr,memory-region = "ICACHE0"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:103 */ + }; + + /* node '/soc/memory@3c000000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:106 */ + dcache0: memory@3c000000 { + compatible = "zephyr,memory-region"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:107 */ + reg = < 0x3c000000 0x2000000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:108 */ + zephyr,memory-region = "DCACHE0"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:109 */ + + /* node '/soc/memory@3c000000/psram0' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:111 */ + psram0: psram0 { + compatible = "espressif,esp32-psram"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:112 */ + size = < 0x800000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_wroom_n8r8.dtsi:16 */ + }; + }; + + /* node '/soc/memory@40370000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:117 */ + sram0: memory@40370000 { + compatible = "zephyr,memory-region", + "mmio-sram"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:118 */ + reg = < 0x40370000 0x8000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:119 */ + zephyr,memory-region = "SRAM0"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:120 */ + }; + + /* node '/soc/memory@3fc88000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:123 */ + sram1: memory@3fc88000 { + compatible = "zephyr,memory-region", + "mmio-sram"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:124 */ + reg = < 0x3fc88000 0x68000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:125 */ + zephyr,memory-region = "SRAM1"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:126 */ + }; + + /* node '/soc/memory@3fcf0000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:129 */ + sram2: memory@3fcf0000 { + compatible = "zephyr,memory-region", + "mmio-sram"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:130 */ + reg = < 0x3fcf0000 0x10000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:131 */ + zephyr,memory-region = "SRAM2"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:132 */ + }; + + /* node '/soc/memory@3fce5000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:135 */ + ipmmem0: memory@3fce5000 { + compatible = "mmio-sram"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:136 */ + reg = < 0x3fce5000 0x400 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:137 */ + phandle = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:149 */ + }; + + /* node '/soc/memory@3fce5400' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:140 */ + shm0: memory@3fce5400 { + compatible = "mmio-sram"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:141 */ + reg = < 0x3fce5400 0x4000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:142 */ + }; + + /* node '/soc/ipm@3fce9400' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:145 */ + ipm0: ipm@3fce9400 { + compatible = "espressif,esp32-ipm"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:146 */ + reg = < 0x3fce9400 0x8 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:147 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:148 */ + shared-memory = < &ipmmem0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:149 */ + shared-memory-size = < 0x400 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:150 */ + interrupts = < 0x4f 0x0 0x0 >, + < 0x50 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:151 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:153 */ + }; + + /* node '/soc/mbox@3fce9408' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:156 */ + mbox0: mbox@3fce9408 { + compatible = "espressif,mbox-esp32"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:157 */ + reg = < 0x3fce9408 0x8 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:158 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:159 */ + shared-memory = < &ipmmem0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:160 */ + shared-memory-size = < 0x400 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:161 */ + interrupts = < 0x4f 0x0 0x0 >, + < 0x50 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:162 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:164 */ + #mbox-cells = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:165 */ + }; + + /* node '/soc/memory@50000000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:168 */ + rtc_slow_ram: memory@50000000 { + compatible = "zephyr,memory-region", + "mmio-sram"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:169 */ + reg = < 0x50000000 0x2000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:170 */ + zephyr,memory-region = "RTC_SLOW_RAM"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:171 */ + }; + + /* node '/soc/memory@600fe000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:174 */ + rtc_fast_ram: memory@600fe000 { + compatible = "zephyr,memory-region", + "mmio-sram"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:175 */ + reg = < 0x600fe000 0x2000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:176 */ + zephyr,memory-region = "RTC_FAST_RAM"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:177 */ + }; + + /* node '/soc/interrupt-controller@600c2000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:180 */ + intc: interrupt-controller@600c2000 { + #interrupt-cells = < 0x3 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:181 */ + #address-cells = < 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:182 */ + compatible = "espressif,esp32-intc"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:183 */ + interrupt-controller; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:184 */ + reg = < 0x600c2000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:185 */ + status = "okay"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:186 */ + phandle = < 0x2 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:153 */ + }; + + /* node '/soc/xt_wdt@60021004' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:189 */ + xt_wdt: xt_wdt@60021004 { + compatible = "espressif,esp32-xt-wdt"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:190 */ + reg = < 0x60021004 0x4 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:191 */ + clocks = < &clock 0xc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:192 */ + interrupts = < 0x27 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:193 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:194 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:195 */ + }; + + /* node '/soc/rtc_timer@60008004' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:198 */ + rtc_timer: rtc_timer@60008004 { + reg = < 0x60008004 0xc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:199 */ + compatible = "espressif,esp32-rtc-timer"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:200 */ + clocks = < &clock 0xc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:201 */ + interrupts = < 0x27 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:202 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:203 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:204 */ + }; + + /* node '/soc/flash-controller@60002000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:207 */ + flash: flash-controller@60002000 { + compatible = "espressif,esp32-flash-controller"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:208 */ + reg = < 0x60002000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:209 */ + #address-cells = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:210 */ + #size-cells = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:211 */ + + /* node '/soc/flash-controller@60002000/flash@0' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:213 */ + flash0: flash@0 { + compatible = "soc-nv-flash"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:214 */ + erase-block-size = < 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:215 */ + write-block-size = < 0x4 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:216 */ + reg = < 0x0 0x800000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_wroom_n8r8.dtsi:11 */ + + /* node '/soc/flash-controller@60002000/flash@0/partitions' defined in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:8 */ + partitions { + compatible = "fixed-partitions"; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:9 */ + #address-cells = < 0x1 >; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:10 */ + #size-cells = < 0x1 >; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:11 */ + + /* node '/soc/flash-controller@60002000/flash@0/partitions/partition@0' defined in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:13 */ + boot_partition: partition@0 { + label = "mcuboot"; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:14 */ + reg = < 0x0 0x10000 >; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:15 */ + }; + + /* node '/soc/flash-controller@60002000/flash@0/partitions/partition@10000' defined in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:18 */ + sys_partition: partition@10000 { + label = "sys"; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:19 */ + reg = < 0x10000 0x10000 >; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:20 */ + }; + + /* node '/soc/flash-controller@60002000/flash@0/partitions/partition@20000' defined in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:23 */ + slot0_partition: partition@20000 { + label = "image-0"; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:24 */ + reg = < 0x20000 0x150000 >; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:25 */ + }; + + /* node '/soc/flash-controller@60002000/flash@0/partitions/partition@170000' defined in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:28 */ + slot1_partition: partition@170000 { + label = "image-1"; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:29 */ + reg = < 0x170000 0x150000 >; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:30 */ + }; + + /* node '/soc/flash-controller@60002000/flash@0/partitions/partition@2c0000' defined in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:33 */ + slot0_appcpu_partition: partition@2c0000 { + label = "image-0-appcpu"; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:34 */ + reg = < 0x2c0000 0x70000 >; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:35 */ + }; + + /* node '/soc/flash-controller@60002000/flash@0/partitions/partition@330000' defined in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:38 */ + slot1_appcpu_partition: partition@330000 { + label = "image-1-appcpu"; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:39 */ + reg = < 0x330000 0x70000 >; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:40 */ + }; + + /* node '/soc/flash-controller@60002000/flash@0/partitions/partition@3a0000' defined in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:43 */ + slot0_lpcore_partition: partition@3a0000 { + label = "image-0-lpcore"; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:44 */ + reg = < 0x3a0000 0x8000 >; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:45 */ + }; + + /* node '/soc/flash-controller@60002000/flash@0/partitions/partition@3a8000' defined in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:48 */ + slot1_lpcore_partition: partition@3a8000 { + label = "image-1-lpcore"; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:49 */ + reg = < 0x3a8000 0x8000 >; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:50 */ + }; + + /* node '/soc/flash-controller@60002000/flash@0/partitions/partition@3b0000' defined in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:53 */ + storage_partition: partition@3b0000 { + label = "storage"; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:54 */ + reg = < 0x3b0000 0x30000 >; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:55 */ + }; + + /* node '/soc/flash-controller@60002000/flash@0/partitions/partition@3e0000' defined in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:58 */ + scratch_partition: partition@3e0000 { + label = "image-scratch"; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:59 */ + reg = < 0x3e0000 0x1f000 >; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:60 */ + }; + + /* node '/soc/flash-controller@60002000/flash@0/partitions/partition@3ff000' defined in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:63 */ + coredump_partition: partition@3ff000 { + label = "coredump"; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:64 */ + reg = < 0x3ff000 0x1000 >; /* in zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi:65 */ + }; + }; + }; + }; + + /* node '/soc/uart@60000000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:221 */ + uart0: xiao_serial: uart@60000000 { + compatible = "espressif,esp32-uart"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:222 */ + reg = < 0x60000000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:223 */ + interrupts = < 0x1b 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:224 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:225 */ + clocks = < &clock 0x65 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:226 */ + status = "okay"; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:44 */ + current-speed = < 0x1c200 >; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:45 */ + pinctrl-0 = < &uart0_default >; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:46 */ + pinctrl-names = "default"; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:47 */ + }; + + /* node '/soc/uart@60010000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:230 */ + uart1: uart@60010000 { + compatible = "espressif,esp32-uart"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:231 */ + reg = < 0x60010000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:232 */ + interrupts = < 0x1c 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:233 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:234 */ + clocks = < &clock 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:235 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:236 */ + }; + + /* node '/soc/uart@6002e000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:239 */ + uart2: uart@6002e000 { + compatible = "espressif,esp32-uart"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:240 */ + reg = < 0x6002e000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:241 */ + interrupts = < 0x1d 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:242 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:243 */ + clocks = < &clock 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:244 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:245 */ + }; + + /* node '/soc/gpio' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:248 */ + gpio: gpio { + compatible = "simple-bus"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:249 */ + gpio-map-mask = < 0xffffffe0 0xffffffc0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:250 */ + gpio-map-pass-thru = < 0x1f 0x3f >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:251 */ + gpio-map = < 0x0 0x0 &gpio0 0x0 0x0 0x20 0x0 &gpio1 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:252 */ + #gpio-cells = < 0x2 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:254 */ + #address-cells = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:255 */ + #size-cells = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:256 */ + ranges; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:257 */ + + /* node '/soc/gpio/gpio@60004000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:259 */ + gpio0: gpio@60004000 { + compatible = "espressif,esp32-gpio"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:260 */ + gpio-controller; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:261 */ + #gpio-cells = < 0x2 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:262 */ + reg = < 0x60004000 0x800 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:263 */ + interrupts = < 0x10 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:264 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:265 */ + ngpios = < 0x20 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:271 */ + status = "okay"; /* in ../../../Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay:50 */ + phandle = < 0x5 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:252 */ + }; + + /* node '/soc/gpio/gpio@60004800' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:274 */ + gpio1: gpio@60004800 { + compatible = "espressif,esp32-gpio"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:275 */ + gpio-controller; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:276 */ + #gpio-cells = < 0x2 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:277 */ + reg = < 0x60004800 0x800 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:278 */ + interrupts = < 0x10 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:279 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:280 */ + ngpios = < 0x16 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:281 */ + status = "okay"; /* in ../../../Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay:54 */ + phandle = < 0x6 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:252 */ + }; + }; + + /* node '/soc/touch@6000885c' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:285 */ + touch: touch@6000885c { + compatible = "espressif,esp32-touch"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:286 */ + reg = < 0x6000885c 0x88 0x60008908 0x18 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:287 */ + interrupts = < 0x27 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:288 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:289 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:290 */ + }; + + /* node '/soc/i2c@60013000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:293 */ + i2c0: xiao_i2c: i2c@60013000 { + compatible = "espressif,esp32-i2c"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:294 */ + #address-cells = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:295 */ + #size-cells = < 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:296 */ + reg = < 0x60013000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:297 */ + interrupts = < 0x2a 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:298 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:299 */ + clocks = < &clock 0x67 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:300 */ + status = "okay"; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:51 */ + clock-frequency = < 0x186a0 >; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:52 */ + pinctrl-0 = < &i2c0_default >; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:53 */ + pinctrl-names = "default"; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:54 */ + }; + + /* node '/soc/i2c@60027000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:304 */ + i2c1: i2c@60027000 { + compatible = "espressif,esp32-i2c"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:305 */ + #address-cells = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:306 */ + #size-cells = < 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:307 */ + reg = < 0x60027000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:308 */ + interrupts = < 0x2b 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:309 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:310 */ + clocks = < &clock 0x68 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:311 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:312 */ + }; + + /* node '/soc/i2s@6000f000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:315 */ + i2s0: i2s@6000f000 { + compatible = "espressif,esp32-i2s"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:316 */ + #address-cells = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:317 */ + #size-cells = < 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:318 */ + reg = < 0x6000f000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:319 */ + interrupts = < 0x19 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:320 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:321 */ + clocks = < &clock 0x69 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:322 */ + dmas = < &dma 0x2 >, + < &dma 0x3 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:323 */ + dma-names = "rx", + "tx"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:324 */ + unit = < 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:325 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:326 */ + }; + + /* node '/soc/i2s@6002d000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:329 */ + i2s1: i2s@6002d000 { + compatible = "espressif,esp32-i2s"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:330 */ + #address-cells = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:331 */ + #size-cells = < 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:332 */ + reg = < 0x6002d000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:333 */ + interrupts = < 0x1a 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:334 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:335 */ + clocks = < &clock 0x6a >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:336 */ + dmas = < &dma 0x4 >, + < &dma 0x5 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:337 */ + dma-names = "rx", + "tx"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:338 */ + unit = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:339 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:340 */ + }; + + /* node '/soc/spi@60024000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:343 */ + spi2: xiao_spi: spi@60024000 { + compatible = "espressif,esp32-spi"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:344 */ + reg = < 0x60024000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:345 */ + interrupts = < 0x15 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:346 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:347 */ + clocks = < &clock 0x73 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:348 */ + dma-host = < 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:349 */ + status = "okay"; /* in ../../../Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay:28 */ + #address-cells = < 0x1 >; /* in ../../../Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay:29 */ + #size-cells = < 0x0 >; /* in ../../../Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay:30 */ + pinctrl-0 = < &spim2_default >; /* in ../../../Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay:31 */ + pinctrl-names = "default"; /* in ../../../Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay:32 */ + cs-gpios = < &gpio0 0x3 0x1 >; /* in ../../../Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay:33 */ + + /* node '/soc/spi@60024000/lora@0' defined in ../../../Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay:35 */ + lora: lora@0 { + compatible = "semtech,sx1262"; /* in ../../../Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay:36 */ + reg = < 0x0 >; /* in ../../../Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay:37 */ + spi-max-frequency = < 0x3d0900 >; /* in ../../../Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay:38 */ + reset-gpios = < &gpio0 0x2 0x1 >; /* in ../../../Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay:39 */ + busy-gpios = < &gpio0 0x1 0x0 >; /* in ../../../Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay:40 */ + dio1-gpios = < &gpio0 0x0 0x0 >; /* in ../../../Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay:41 */ + dio2-tx-enable; /* in ../../../Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay:42 */ + tx-enable-gpios = < &gpio0 0x4 0x0 >; /* in ../../../Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay:44 */ + }; + }; + + /* node '/soc/spi@60025000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:353 */ + spi3: spi@60025000 { + compatible = "espressif,esp32-spi"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:354 */ + reg = < 0x60025000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:355 */ + interrupts = < 0x16 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:356 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:357 */ + clocks = < &clock 0x74 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:358 */ + dma-host = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:359 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:360 */ + }; + + /* node '/soc/coretemp@60008800' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:363 */ + coretemp: coretemp@60008800 { + compatible = "espressif,esp32-temp"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:364 */ + friendly-name = "coretemp"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:365 */ + reg = < 0x60008800 0x4 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:366 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:367 */ + }; + + /* node '/soc/adc@60040000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:370 */ + adc0: xiao_adc: adc@60040000 { + compatible = "espressif,esp32-adc"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:371 */ + reg = < 0x60040000 0x4 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:372 */ + clocks = < &clock 0x80 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:373 */ + unit = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:374 */ + channel-count = < 0xa >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:375 */ + #io-channel-cells = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:376 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:377 */ + }; + + /* node '/soc/adc@60040004' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:380 */ + adc1: adc@60040004 { + compatible = "espressif,esp32-adc"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:381 */ + reg = < 0x60040004 0x4 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:382 */ + clocks = < &clock 0x80 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:383 */ + unit = < 0x2 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:384 */ + channel-count = < 0xa >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:385 */ + #io-channel-cells = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:386 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:387 */ + }; + + /* node '/soc/can@6002b000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:390 */ + twai: can@6002b000 { + compatible = "espressif,esp32-twai"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:391 */ + reg = < 0x6002b000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:392 */ + interrupts = < 0x25 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:393 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:394 */ + clocks = < &clock 0x76 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:395 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:396 */ + pinctrl-0 = < &twai_default >; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:82 */ + pinctrl-names = "default"; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:83 */ + }; + + /* node '/soc/lcd_cam@60041000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:399 */ + lcd_cam: lcd_cam@60041000 { + compatible = "espressif,esp32-lcd-cam"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:400 */ + reg = < 0x60041000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:401 */ + clocks = < &clock 0x2 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:402 */ + interrupts = < 0x18 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:403 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:404 */ + dmas = < &dma 0x6 >, + < &dma 0x7 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:405 */ + dma-names = "rx", + "tx"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:406 */ + + /* node '/soc/lcd_cam@60041000/lcd_cam_dvp' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:408 */ + lcd_cam_dvp: lcd_cam_dvp { + compatible = "espressif,esp32-lcd-cam-dvp"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:409 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:410 */ + }; + + /* node '/soc/lcd_cam@60041000/lcd_cam_disp' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:413 */ + lcd_cam_disp: lcd_cam_disp { + compatible = "espressif,esp32-lcd-cam-mipi-dbi"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:414 */ + #address-cells = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:415 */ + #size-cells = < 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:416 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:417 */ + }; + }; + + /* node '/soc/uart@60038000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:421 */ + usb_serial: uart@60038000 { + compatible = "espressif,esp32-usb-serial"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:422 */ + reg = < 0x60038000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:423 */ + interrupts = < 0x60 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:425 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:426 */ + clocks = < &clock 0x66 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:427 */ + status = "okay"; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:40 */ + }; + + /* node '/soc/usb_otg@60080000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:430 */ + usb_otg: usb_otg@60080000 { + compatible = "espressif,esp32-usb-otg", + "snps,dwc2"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:431 */ + reg = < 0x60080000 0x40000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:432 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:433 */ + interrupts = < 0x26 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:434 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:435 */ + clocks = < &clock 0x66 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:436 */ + num-out-eps = < 0x6 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:437 */ + num-in-eps = < 0x6 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:438 */ + ghwcfg1 = < 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:439 */ + ghwcfg2 = < 0x224dd930 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:440 */ + ghwcfg4 = < 0xd3f0a030 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:441 */ + }; + + /* node '/soc/counter@6001f000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:444 */ + timer0: counter@6001f000 { + compatible = "espressif,esp32-timer"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:445 */ + reg = < 0x6001f000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:446 */ + clocks = < &clock 0x3 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:447 */ + group = < 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:448 */ + index = < 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:449 */ + interrupts = < 0x32 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:450 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:451 */ + status = "okay"; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:87 */ + + /* node '/soc/counter@6001f000/counter' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:454 */ + counter { + compatible = "espressif,esp32-counter"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:455 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:456 */ + }; + }; + + /* node '/soc/counter@6001f024' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:460 */ + timer1: counter@6001f024 { + compatible = "espressif,esp32-timer"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:461 */ + reg = < 0x6001f024 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:462 */ + clocks = < &clock 0x3 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:463 */ + group = < 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:464 */ + index = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:465 */ + interrupts = < 0x33 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:466 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:467 */ + status = "okay"; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:91 */ + + /* node '/soc/counter@6001f024/counter' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:470 */ + counter { + compatible = "espressif,esp32-counter"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:471 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:472 */ + }; + }; + + /* node '/soc/counter@60020000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:476 */ + timer2: counter@60020000 { + compatible = "espressif,esp32-timer"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:477 */ + reg = < 0x60020000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:478 */ + clocks = < &clock 0x4 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:479 */ + group = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:480 */ + index = < 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:481 */ + interrupts = < 0x35 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:482 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:483 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:484 */ + + /* node '/soc/counter@60020000/counter' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:486 */ + counter { + compatible = "espressif,esp32-counter"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:487 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:488 */ + }; + }; + + /* node '/soc/counter@60020024' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:492 */ + timer3: counter@60020024 { + compatible = "espressif,esp32-timer"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:493 */ + reg = < 0x60020024 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:494 */ + clocks = < &clock 0x4 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:495 */ + group = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:496 */ + index = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:497 */ + interrupts = < 0x36 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:498 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:499 */ + + /* node '/soc/counter@60020024/counter' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:501 */ + counter { + compatible = "espressif,esp32-counter"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:502 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:503 */ + }; + }; + + /* node '/soc/watchdog@6001f048' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:507 */ + wdt0: watchdog@6001f048 { + compatible = "espressif,esp32-watchdog"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:508 */ + reg = < 0x6001f048 0x20 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:509 */ + interrupts = < 0x34 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:510 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:511 */ + clocks = < &clock 0x3 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:512 */ + status = "okay"; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:78 */ + }; + + /* node '/soc/watchdog@60020048' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:516 */ + wdt1: watchdog@60020048 { + compatible = "espressif,esp32-watchdog"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:517 */ + reg = < 0x60020048 0x20 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:518 */ + interrupts = < 0x37 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:519 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:520 */ + clocks = < &clock 0x4 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:521 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:522 */ + }; + + /* node '/soc/trng@6003507c' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:525 */ + trng0: trng@6003507c { + compatible = "espressif,esp32-trng"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:526 */ + reg = < 0x6003507c 0x4 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:527 */ + clocks = < &clock 0x6 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:528 */ + status = "okay"; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:58 */ + }; + + /* node '/soc/ledc@60019000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:532 */ + ledc0: ledc@60019000 { + compatible = "espressif,esp32-ledc"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:533 */ + #pwm-cells = < 0x3 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:534 */ + reg = < 0x60019000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:535 */ + clocks = < &clock 0x64 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:536 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:537 */ + }; + + /* node '/soc/mcpwm@6001e000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:540 */ + mcpwm0: mcpwm@6001e000 { + compatible = "espressif,esp32-mcpwm"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:541 */ + reg = < 0x6001e000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:542 */ + interrupts = < 0x1f 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:543 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:544 */ + clocks = < &clock 0x6b >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:545 */ + #pwm-cells = < 0x3 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:546 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:547 */ + }; + + /* node '/soc/mcpwm@6002c000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:550 */ + mcpwm1: mcpwm@6002c000 { + compatible = "espressif,esp32-mcpwm"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:551 */ + reg = < 0x6002c000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:552 */ + interrupts = < 0x20 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:553 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:554 */ + clocks = < &clock 0x6c >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:555 */ + #pwm-cells = < 0x3 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:556 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:557 */ + }; + + /* node '/soc/pcnt@60017000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:560 */ + pcnt: pcnt@60017000 { + compatible = "espressif,esp32-pcnt"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:561 */ + reg = < 0x60017000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:562 */ + interrupts = < 0x29 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:563 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:564 */ + clocks = < &clock 0x71 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:565 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:566 */ + }; + + /* node '/soc/dma@6003f000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:569 */ + dma: dma@6003f000 { + compatible = "espressif,esp32-gdma"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:570 */ + reg = < 0x6003f000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:571 */ + #dma-cells = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:572 */ + interrupts = < 0x42 0x0 0x100 >, + < 0x47 0x0 0x100 >, + < 0x43 0x0 0x100 >, + < 0x48 0x0 0x100 >, + < 0x44 0x0 0x100 >, + < 0x49 0x0 0x100 >, + < 0x45 0x0 0x100 >, + < 0x4a 0x0 0x100 >, + < 0x46 0x0 0x100 >, + < 0x4b 0x0 0x100 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:573 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:593 */ + clocks = < &clock 0x7e >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:594 */ + dma-channels = < 0xa >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:595 */ + dma-buf-addr-alignment = < 0x4 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:596 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:597 */ + phandle = < 0x8 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:323 */ + }; + + /* node '/soc/sdhc@60028000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:600 */ + sdhc: sdhc@60028000 { + compatible = "espressif,esp32-sdhc"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:601 */ + reg = < 0x60028000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:602 */ + interrupts = < 0x1e 0x0 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:603 */ + interrupt-parent = < &intc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:604 */ + clocks = < &clock 0x75 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:605 */ + #address-cells = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:606 */ + #size-cells = < 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:607 */ + + /* node '/soc/sdhc@60028000/sdhc@0' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:609 */ + sdhc0: sdhc@0 { + compatible = "espressif,esp32-sdhc-slot"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:610 */ + reg = < 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:611 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:612 */ + }; + + /* node '/soc/sdhc@60028000/sdhc@1' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:615 */ + sdhc1: sdhc@1 { + compatible = "espressif,esp32-sdhc-slot"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:616 */ + reg = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:617 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:618 */ + }; + }; + + /* node '/soc/sha@6003b000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:622 */ + sha: sha@6003b000 { + compatible = "espressif,esp32-sha"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:623 */ + reg = < 0x6003b000 0x100 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:624 */ + clocks = < &clock 0x7a >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:625 */ + status = "okay"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:626 */ + }; + + /* node '/soc/aes@6003a000' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:629 */ + aes: aes@6003a000 { + compatible = "espressif,esp32-aes"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:630 */ + reg = < 0x6003a000 0x1000 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:631 */ + clocks = < &clock 0x79 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:632 */ + status = "okay"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:633 */ + }; + }; + + /* node '/cpus' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:28 */ + cpus { + #address-cells = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:29 */ + #size-cells = < 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:30 */ + + /* node '/cpus/cpu@0' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:32 */ + cpu0: cpu@0 { + device_type = "cpu"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:33 */ + compatible = "espressif,xtensa-lx7"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:34 */ + reg = < 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:35 */ + cpu-power-states = < &light_sleep &deep_sleep >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:36 */ + clock-source = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:37 */ + clock-frequency = < 0xe4e1c00 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:38 */ + xtal-freq = < 0x2625a00 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:39 */ + }; + + /* node '/cpus/cpu@1' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:42 */ + cpu1: cpu@1 { + device_type = "cpu"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:43 */ + compatible = "espressif,xtensa-lx7"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:44 */ + reg = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:45 */ + clock-source = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:46 */ + clock-frequency = < 0xe4e1c00 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:47 */ + xtal-freq = < 0x2625a00 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:48 */ + }; + + /* node '/cpus/power-states' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:51 */ + power-states { + + /* node '/cpus/power-states/light_sleep' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:52 */ + light_sleep: light_sleep { + compatible = "zephyr,power-state"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:53 */ + power-state-name = "standby"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:54 */ + min-residency-us = < 0x3e8 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:55 */ + exit-latency-us = < 0x32 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:56 */ + phandle = < 0xb >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:36 */ + }; + + /* node '/cpus/power-states/deep_sleep' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:59 */ + deep_sleep: deep_sleep { + compatible = "zephyr,power-state"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:63 */ + power-state-name = "soft-off"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:64 */ + status = "disabled"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:65 */ + phandle = < 0xc >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:36 */ + }; + }; + }; + + /* node '/wifi' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:70 */ + wifi: wifi { + compatible = "espressif,esp32-wifi"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:71 */ + status = "okay"; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:99 */ + }; + + /* node '/esp32_bt_hci' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:75 */ + esp32_bt_hci: esp32_bt_hci { + compatible = "espressif,esp32-bt-hci"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:76 */ + bt-hci-vs-ext; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:77 */ + status = "okay"; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:95 */ + }; + + /* node '/pin-controller' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:81 */ + pinctrl: pin-controller { + compatible = "espressif,esp32-pinctrl"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:82 */ + status = "okay"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:83 */ + + /* node '/pin-controller/uart0_default' defined in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:12 */ + uart0_default: uart0_default { + phandle = < 0x4 >; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:46 */ + + /* node '/pin-controller/uart0_default/group1' defined in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:13 */ + group1 { + pinmux = < 0x67feb >; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:14 */ + output-high; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:15 */ + }; + + /* node '/pin-controller/uart0_default/group2' defined in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:18 */ + group2 { + pinmux = < 0xff832c >; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:19 */ + bias-pull-up; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:20 */ + }; + }; + + /* node '/pin-controller/spim2_default' defined in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:24 */ + spim2_default: spim2_default { + phandle = < 0x9 >; /* in ../../../Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay:31 */ + + /* node '/pin-controller/spim2_default/group1' defined in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:25 */ + group1 { + pinmux = < 0xff9988 >, + < 0x32ffc7 >; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:26 */ + }; + + /* node '/pin-controller/spim2_default/group2' defined in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:30 */ + group2 { + pinmux = < 0x33ffc9 >; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:31 */ + output-low; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:32 */ + }; + }; + + /* node '/pin-controller/i2c0_default' defined in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:36 */ + i2c0_default: i2c0_default { + phandle = < 0x7 >; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:53 */ + + /* node '/pin-controller/i2c0_default/group1' defined in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:37 */ + group1 { + pinmux = < 0x2d1685 >, + < 0x2c9646 >; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:38 */ + bias-pull-up; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:40 */ + drive-open-drain; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:41 */ + output-high; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:42 */ + }; + }; + + /* node '/pin-controller/i2c1_default' defined in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:46 */ + i2c1_default: i2c1_default { + + /* node '/pin-controller/i2c1_default/group1' defined in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:47 */ + group1 { + pinmux = < 0x2e1728 >, + < 0x2d96e7 >; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:48 */ + bias-pull-up; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:50 */ + drive-open-drain; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:51 */ + output-high; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:52 */ + }; + }; + + /* node '/pin-controller/lcd_cam_default' defined in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:56 */ + lcd_cam_default: lcd_cam_default { + + /* node '/pin-controller/lcd_cam_default/group1' defined in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:57 */ + group1 { + pinmux = < 0x4affca >; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:58 */ + output-enable; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:59 */ + }; + + /* node '/pin-controller/lcd_cam_default/group2' defined in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:62 */ + group2 { + pinmux = < 0xffa626 >, + < 0xffa5af >, + < 0xffa54d >, + < 0xffa14f >, + < 0xffa191 >, + < 0xffa1d2 >, + < 0xffa210 >, + < 0xffa24e >, + < 0xffa28c >, + < 0xffa2cb >, + < 0xffa330 >; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:63 */ + input-enable; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:74 */ + bias-disable; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:75 */ + }; + }; + + /* node '/pin-controller/twai_default' defined in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:79 */ + twai_default: twai_default { + phandle = < 0xa >; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:82 */ + + /* node '/pin-controller/twai_default/group1' defined in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:80 */ + group1 { + pinmux = < 0x3a7fc3 >, + < 0xff9d04 >; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi:81 */ + }; + }; + }; + + /* node '/clock' defined in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:86 */ + clock: clock { + compatible = "espressif,esp32-clock"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:87 */ + fast-clk-src = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:88 */ + slow-clk-src = < 0x0 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:89 */ + #clock-cells = < 0x1 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:90 */ + status = "okay"; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:91 */ + phandle = < 0x3 >; /* in zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi:192 */ + }; + + /* node '/connector' defined in zephyr/boards/seeed/xiao_esp32s3/seeed_xiao_connector.dtsi:8 */ + xiao_d: connector { + compatible = "seeed,xiao-gpio"; /* in zephyr/boards/seeed/xiao_esp32s3/seeed_xiao_connector.dtsi:9 */ + #gpio-cells = < 0x2 >; /* in zephyr/boards/seeed/xiao_esp32s3/seeed_xiao_connector.dtsi:10 */ + gpio-map-mask = < 0xffffffff 0xffffffc0 >; /* in zephyr/boards/seeed/xiao_esp32s3/seeed_xiao_connector.dtsi:11 */ + gpio-map-pass-thru = < 0x0 0x3f >; /* in zephyr/boards/seeed/xiao_esp32s3/seeed_xiao_connector.dtsi:12 */ + gpio-map = < 0x0 0x0 &gpio0 0x1 0x0 >, + < 0x1 0x0 &gpio0 0x2 0x0 >, + < 0x2 0x0 &gpio0 0x3 0x0 >, + < 0x3 0x0 &gpio0 0x4 0x0 >, + < 0x4 0x0 &gpio0 0x5 0x0 >, + < 0x5 0x0 &gpio0 0x6 0x0 >, + < 0x6 0x0 &gpio1 0xb 0x0 >, + < 0x7 0x0 &gpio1 0xc 0x0 >, + < 0x8 0x0 &gpio0 0x7 0x0 >, + < 0x9 0x0 &gpio0 0x8 0x0 >, + < 0xa 0x0 &gpio0 0x9 0x0 >; /* in zephyr/boards/seeed/xiao_esp32s3/seeed_xiao_connector.dtsi:13 */ + }; + + /* node '/leds' defined in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:29 */ + leds { + compatible = "gpio-leds"; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:30 */ + + /* node '/leds/led_0' defined in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:32 */ + led0: led_0 { + gpios = < &gpio0 0x15 0x1 >; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:33 */ + label = "BUILTIN LED"; /* in zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi:34 */ + }; + }; +}; diff --git a/build/zephyr/zephyr.dts.d b/build/zephyr/zephyr.dts.d new file mode 100644 index 0000000..f876b8a --- /dev/null +++ b/build/zephyr/zephyr.dts.d @@ -0,0 +1,31 @@ +empty_file.o: /Users/wijnand/zephyrproject/zephyr/misc/empty_file.c \ + /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu.dts \ + /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi \ + /Users/wijnand/zephyrproject/zephyr/dts/xtensa/espressif/esp32s3/esp32s3_wroom_n8r8.dtsi \ + /Users/wijnand/zephyrproject/zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi \ + /Users/wijnand/zephyrproject/zephyr/dts/common/mem.h \ + /Users/wijnand/zephyrproject/zephyr/dts/common/freq.h \ + /Users/wijnand/zephyrproject/zephyr/dts/xtensa/xtensa.dtsi \ + /Users/wijnand/zephyrproject/zephyr/dts/common/skeleton.dtsi \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/adc.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dt-util.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_macro.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_loops.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_listify.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_is_eq.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_inc.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_dec.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_x2.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/gpio.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/i2c/i2c.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/esp32s3_clock.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/esp32s3-xtensa-intmux.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32s3-pinctrl.h \ + /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp-pinctrl-common.h \ + /Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32s3-gpio-sigmap.h \ + /Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/seeed_xiao_connector.dtsi \ + /Users/wijnand/zephyrproject/zephyr/dts/vendor/espressif/partitions_0x0_amp.dtsi \ + /Users/wijnand/zephyrproject/zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi \ + /Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay diff --git a/build/zephyr/zephyr.dts.pre b/build/zephyr/zephyr.dts.pre new file mode 100644 index 0000000..b7adeab --- /dev/null +++ b/build/zephyr/zephyr.dts.pre @@ -0,0 +1,1195 @@ +# 0 "/Users/wijnand/zephyrproject/zephyr/misc/empty_file.c" +# 0 "" +# 0 "" +# 1 "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu.dts" 1 + + + + + + +/dts-v1/; + +# 1 "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi" 1 + + + + + + +/dts-v1/; + +# 1 "/Users/wijnand/zephyrproject/zephyr/dts/xtensa/espressif/esp32s3/esp32s3_wroom_n8r8.dtsi" 1 3 4 + + + + + + +# 1 "/Users/wijnand/zephyrproject/zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi" 1 3 4 + + + + + +# 1 "/Users/wijnand/zephyrproject/zephyr/dts/common/mem.h" 1 3 4 +# 7 "/Users/wijnand/zephyrproject/zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi" 2 3 4 +# 1 "/Users/wijnand/zephyrproject/zephyr/dts/common/freq.h" 1 3 4 +# 8 "/Users/wijnand/zephyrproject/zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi" 2 3 4 +# 1 "/Users/wijnand/zephyrproject/zephyr/dts/xtensa/xtensa.dtsi" 1 3 4 + + + + + + +# 1 "/Users/wijnand/zephyrproject/zephyr/dts/common/skeleton.dtsi" 1 3 4 +# 9 "/Users/wijnand/zephyrproject/zephyr/dts/common/skeleton.dtsi" 3 4 +/ { + #address-cells = <1>; + #size-cells = <1>; + + chosen {}; + + aliases {}; +}; +# 8 "/Users/wijnand/zephyrproject/zephyr/dts/xtensa/xtensa.dtsi" 2 3 4 + +/ { + soc { + #address-cells = <1>; + #size-cells = <1>; + compatible = "simple-bus"; + ranges; + }; +}; +# 9 "/Users/wijnand/zephyrproject/zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi" 2 3 4 +# 1 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/adc.h" 1 3 4 +# 9 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/adc.h" 3 4 +# 1 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dt-util.h" 1 3 4 +# 19 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dt-util.h" 3 4 +# 1 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_macro.h" 1 3 4 +# 34 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_macro.h" 3 4 +# 1 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal.h" 1 3 4 +# 18 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal.h" 3 4 +# 1 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_loops.h" 1 3 4 +# 1465 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_loops.h" 3 4 +# 1 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_listify.h" 1 3 4 +# 1466 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_loops.h" 2 3 4 +# 19 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal.h" 2 3 4 +# 203 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal.h" 3 4 +# 1 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_is_eq.h" 1 3 4 +# 204 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal.h" 2 3 4 +# 234 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal.h" 3 4 +# 1 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_inc.h" 1 3 4 +# 235 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal.h" 2 3 4 + + +# 1 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_dec.h" 1 3 4 +# 238 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal.h" 2 3 4 + + +# 1 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_x2.h" 1 3 4 +# 241 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_internal.h" 2 3 4 +# 35 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/sys/util_macro.h" 2 3 4 +# 20 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/dt-util.h" 2 3 4 +# 10 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/adc.h" 2 3 4 +# 10 "/Users/wijnand/zephyrproject/zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi" 2 3 4 +# 1 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/gpio.h" 1 3 4 +# 11 "/Users/wijnand/zephyrproject/zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi" 2 3 4 +# 1 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/i2c/i2c.h" 1 3 4 +# 12 "/Users/wijnand/zephyrproject/zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi" 2 3 4 +# 1 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/esp32s3_clock.h" 1 3 4 +# 13 "/Users/wijnand/zephyrproject/zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi" 2 3 4 +# 1 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/interrupt-controller/esp32s3-xtensa-intmux.h" 1 3 4 +# 14 "/Users/wijnand/zephyrproject/zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi" 2 3 4 +# 1 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32s3-pinctrl.h" 1 3 4 +# 15 "/Users/wijnand/zephyrproject/zephyr/dts/xtensa/espressif/esp32s3/esp32s3_common.dtsi" 2 3 4 + +/ { + aliases { + die-temp0 = &coretemp; + }; + + chosen { + zephyr,canbus = &twai; + zephyr,entropy = &trng0; + zephyr,flash-controller = &flash; + zephyr,bt-hci = &esp32_bt_hci; + }; + + cpus { + #address-cells = <1>; + #size-cells = <0>; + + cpu0: cpu@0 { + device_type = "cpu"; + compatible = "espressif,xtensa-lx7"; + reg = <0>; + cpu-power-states = <&light_sleep &deep_sleep>; + clock-source = <1U>; + clock-frequency = <(((240) * 1000) * 1000)>; + xtal-freq = <(((40) * 1000) * 1000)>; + }; + + cpu1: cpu@1 { + device_type = "cpu"; + compatible = "espressif,xtensa-lx7"; + reg = <1>; + clock-source = <1U>; + clock-frequency = <(((240) * 1000) * 1000)>; + xtal-freq = <(((40) * 1000) * 1000)>; + }; + + power-states { + light_sleep: light_sleep { + compatible = "zephyr,power-state"; + power-state-name = "standby"; + min-residency-us = <1000>; + exit-latency-us = <50>; + }; + + deep_sleep: deep_sleep { + + + + compatible = "zephyr,power-state"; + power-state-name = "soft-off"; + status = "disabled"; + }; + }; + }; + + wifi: wifi { + compatible = "espressif,esp32-wifi"; + status = "disabled"; + }; + + esp32_bt_hci: esp32_bt_hci { + compatible = "espressif,esp32-bt-hci"; + bt-hci-vs-ext; + status = "disabled"; + }; + + pinctrl: pin-controller { + compatible = "espressif,esp32-pinctrl"; + status = "okay"; + }; + + clock: clock { + compatible = "espressif,esp32-clock"; + fast-clk-src = <1>; + slow-clk-src = <0>; + #clock-cells = <1>; + status = "okay"; + }; + + soc { + #address-cells = <1>; + #size-cells = <1>; + compatible = "simple-bus"; + ranges; + + icache0: memory@42000000 { + compatible = "zephyr,memory-region"; + reg = <0x42000000 (((32) * 1024) * 1024)>; + zephyr,memory-region = "ICACHE0"; + }; + + dcache0: memory@3c000000 { + compatible = "zephyr,memory-region"; + reg = <0x3c000000 (((32) * 1024) * 1024)>; + zephyr,memory-region = "DCACHE0"; + + psram0: psram0 { + compatible = "espressif,esp32-psram"; + size = <0x0>; + }; + }; + + sram0: memory@40370000 { + compatible = "zephyr,memory-region", "mmio-sram"; + reg = <0x40370000 ((32) * 1024)>; + zephyr,memory-region = "SRAM0"; + }; + + sram1: memory@3fc88000 { + compatible = "zephyr,memory-region", "mmio-sram"; + reg = <0x3fc88000 ((416) * 1024)>; + zephyr,memory-region = "SRAM1"; + }; + + sram2: memory@3fcf0000 { + compatible = "zephyr,memory-region", "mmio-sram"; + reg = <0x3fcf0000 ((64) * 1024)>; + zephyr,memory-region = "SRAM2"; + }; + + ipmmem0: memory@3fce5000 { + compatible = "mmio-sram"; + reg = <0x3fce5000 0x400>; + }; + + shm0: memory@3fce5400 { + compatible = "mmio-sram"; + reg = <0x3fce5400 0x4000>; + }; + + ipm0: ipm@3fce9400 { + compatible = "espressif,esp32-ipm"; + reg = <0x3fce9400 0x8>; + status = "disabled"; + shared-memory = <&ipmmem0>; + shared-memory-size = <0x400>; + interrupts = <79 0 0>, + <80 0 0>; + interrupt-parent = <&intc>; + }; + + mbox0: mbox@3fce9408 { + compatible = "espressif,mbox-esp32"; + reg = <0x3fce9408 0x8>; + status = "disabled"; + shared-memory = <&ipmmem0>; + shared-memory-size = <0x400>; + interrupts = <79 0 0>, + <80 0 0>; + interrupt-parent = <&intc>; + #mbox-cells = <1>; + }; + + rtc_slow_ram: memory@50000000 { + compatible = "zephyr,memory-region", "mmio-sram"; + reg = <0x50000000 ((8) * 1024)>; + zephyr,memory-region = "RTC_SLOW_RAM"; + }; + + rtc_fast_ram: memory@600fe000 { + compatible = "zephyr,memory-region", "mmio-sram"; + reg = <0x600fe000 ((8) * 1024)>; + zephyr,memory-region = "RTC_FAST_RAM"; + }; + + intc: interrupt-controller@600c2000 { + #interrupt-cells = <3>; + #address-cells = <0>; + compatible = "espressif,esp32-intc"; + interrupt-controller; + reg = <0x600c2000 0x1000>; + status = "okay"; + }; + + xt_wdt: xt_wdt@60021004 { + compatible = "espressif,esp32-xt-wdt"; + reg = <0x60021004 0x4>; + clocks = <&clock 12>; + interrupts = <39 0 0>; + interrupt-parent = <&intc>; + status = "disabled"; + }; + + rtc_timer: rtc_timer@60008004 { + reg = <0x60008004 0xc>; + compatible = "espressif,esp32-rtc-timer"; + clocks = <&clock 12>; + interrupts = <39 0 0>; + interrupt-parent = <&intc>; + status = "disabled"; + }; + + flash: flash-controller@60002000 { + compatible = "espressif,esp32-flash-controller"; + reg = <0x60002000 0x1000>; + #address-cells = <1>; + #size-cells = <1>; + + flash0: flash@0 { + compatible = "soc-nv-flash"; + erase-block-size = <4096>; + write-block-size = <4>; + + }; + }; + + uart0: uart@60000000 { + compatible = "espressif,esp32-uart"; + reg = <0x60000000 0x1000>; + interrupts = <27 0 0>; + interrupt-parent = <&intc>; + clocks = <&clock 101>; + status = "disabled"; + }; + + uart1: uart@60010000 { + compatible = "espressif,esp32-uart"; + reg = <0x60010000 0x1000>; + interrupts = <28 0 0>; + interrupt-parent = <&intc>; + clocks = <&clock 0>; + status = "disabled"; + }; + + uart2: uart@6002e000 { + compatible = "espressif,esp32-uart"; + reg = <0x6002e000 0x1000>; + interrupts = <29 0 0>; + interrupt-parent = <&intc>; + clocks = <&clock 1>; + status = "disabled"; + }; + + gpio: gpio { + compatible = "simple-bus"; + gpio-map-mask = <0xffffffe0 0xffffffc0>; + gpio-map-pass-thru = <0x1f 0x3f>; + gpio-map = <0x00 0x0 &gpio0 0x0 0x0 + 0x20 0x0 &gpio1 0x0 0x0>; + #gpio-cells = <2>; + #address-cells = <1>; + #size-cells = <1>; + ranges; + + gpio0: gpio@60004000 { + compatible = "espressif,esp32-gpio"; + gpio-controller; + #gpio-cells = <2>; + reg = <0x60004000 0x800>; + interrupts = <16 0 0>; + interrupt-parent = <&intc>; + + + + + + ngpios = <32>; + }; + + gpio1: gpio@60004800 { + compatible = "espressif,esp32-gpio"; + gpio-controller; + #gpio-cells = <2>; + reg = <0x60004800 0x800>; + interrupts = <16 0 0>; + interrupt-parent = <&intc>; + ngpios = <22>; + }; + }; + + touch: touch@6000885c { + compatible = "espressif,esp32-touch"; + reg = <0x6000885c 0x88 0x60008908 0x18>; + interrupts = <39 0 0>; + interrupt-parent = <&intc>; + status = "disabled"; + }; + + i2c0: i2c@60013000 { + compatible = "espressif,esp32-i2c"; + #address-cells = <1>; + #size-cells = <0>; + reg = <0x60013000 ((4) * 1024)>; + interrupts = <42 0 0>; + interrupt-parent = <&intc>; + clocks = <&clock 103>; + status = "disabled"; + }; + + i2c1: i2c@60027000 { + compatible = "espressif,esp32-i2c"; + #address-cells = <1>; + #size-cells = <0>; + reg = <0x60027000 ((4) * 1024)>; + interrupts = <43 0 0>; + interrupt-parent = <&intc>; + clocks = <&clock 104>; + status = "disabled"; + }; + + i2s0: i2s@6000f000 { + compatible = "espressif,esp32-i2s"; + #address-cells = <1>; + #size-cells = <0>; + reg = <0x6000f000 0x1000>; + interrupts = <25 0 0>; + interrupt-parent = <&intc>; + clocks = <&clock 105>; + dmas = <&dma 2>, <&dma 3>; + dma-names = "rx", "tx"; + unit = <0>; + status = "disabled"; + }; + + i2s1: i2s@6002d000 { + compatible = "espressif,esp32-i2s"; + #address-cells = <1>; + #size-cells = <0>; + reg = <0x6002d000 0x1000>; + interrupts = <26 0 0>; + interrupt-parent = <&intc>; + clocks = <&clock 106>; + dmas = <&dma 4>, <&dma 5>; + dma-names = "rx", "tx"; + unit = <1>; + status = "disabled"; + }; + + spi2: spi@60024000 { + compatible = "espressif,esp32-spi"; + reg = <0x60024000 ((4) * 1024)>; + interrupts = <21 0 0>; + interrupt-parent = <&intc>; + clocks = <&clock 115>; + dma-host = <0>; + status = "disabled"; + }; + + spi3: spi@60025000 { + compatible = "espressif,esp32-spi"; + reg = <0x60025000 ((4) * 1024)>; + interrupts = <22 0 0>; + interrupt-parent = <&intc>; + clocks = <&clock 116>; + dma-host = <1>; + status = "disabled"; + }; + + coretemp: coretemp@60008800 { + compatible = "espressif,esp32-temp"; + friendly-name = "coretemp"; + reg = <0x60008800 0x4>; + status = "disabled"; + }; + + adc0: adc@60040000 { + compatible = "espressif,esp32-adc"; + reg = <0x60040000 4>; + clocks = <&clock 128>; + unit = <1>; + channel-count = <10>; + #io-channel-cells = <1>; + status = "disabled"; + }; + + adc1: adc@60040004 { + compatible = "espressif,esp32-adc"; + reg = <0x60040004 4>; + clocks = <&clock 128>; + unit = <2>; + channel-count = <10>; + #io-channel-cells = <1>; + status = "disabled"; + }; + + twai: can@6002b000 { + compatible = "espressif,esp32-twai"; + reg = <0x6002b000 ((4) * 1024)>; + interrupts = <37 0 0>; + interrupt-parent = <&intc>; + clocks = <&clock 118>; + status = "disabled"; + }; + + lcd_cam: lcd_cam@60041000 { + compatible = "espressif,esp32-lcd-cam"; + reg = <0x60041000 ((4) * 1024)>; + clocks = <&clock 2>; + interrupts = <24 0 0>; + interrupt-parent = <&intc>; + dmas = <&dma 6>, <&dma 7>; + dma-names = "rx", "tx"; + + lcd_cam_dvp: lcd_cam_dvp { + compatible = "espressif,esp32-lcd-cam-dvp"; + status = "disabled"; + }; + + lcd_cam_disp: lcd_cam_disp { + compatible = "espressif,esp32-lcd-cam-mipi-dbi"; + #address-cells = <1>; + #size-cells = <0>; + status = "disabled"; + }; + }; + + usb_serial: uart@60038000 { + compatible = "espressif,esp32-usb-serial"; + reg = <0x60038000 ((4) * 1024)>; + status = "disabled"; + interrupts = <96 0 0>; + interrupt-parent = <&intc>; + clocks = <&clock 102>; + }; + + usb_otg: usb_otg@60080000 { + compatible = "espressif,esp32-usb-otg", "snps,dwc2"; + reg = <0x60080000 ((256) * 1024)>; + status = "disabled"; + interrupts = <38 0 0>; + interrupt-parent = <&intc>; + clocks = <&clock 102>; + num-out-eps = <6>; + num-in-eps = <6>; + ghwcfg1 = <0x00000000>; + ghwcfg2 = <0x224dd930>; + ghwcfg4 = <0xd3f0a030>; + }; + + timer0: counter@6001f000 { + compatible = "espressif,esp32-timer"; + reg = <0x6001f000 ((4) * 1024)>; + clocks = <&clock 3>; + group = <0>; + index = <0>; + interrupts = <50 0 0>; + interrupt-parent = <&intc>; + status = "disabled"; + + counter { + compatible = "espressif,esp32-counter"; + status = "disabled"; + }; + }; + + timer1: counter@6001f024 { + compatible = "espressif,esp32-timer"; + reg = <0x6001f024 ((4) * 1024)>; + clocks = <&clock 3>; + group = <0>; + index = <1>; + interrupts = <51 0 0>; + interrupt-parent = <&intc>; + status = "disabled"; + + counter { + compatible = "espressif,esp32-counter"; + status = "disabled"; + }; + }; + + timer2: counter@60020000 { + compatible = "espressif,esp32-timer"; + reg = <0x60020000 ((4) * 1024)>; + clocks = <&clock 4>; + group = <1>; + index = <0>; + interrupts = <53 0 0>; + interrupt-parent = <&intc>; + status = "disabled"; + + counter { + compatible = "espressif,esp32-counter"; + status = "disabled"; + }; + }; + + timer3: counter@60020024 { + compatible = "espressif,esp32-timer"; + reg = <0x60020024 ((4) * 1024)>; + clocks = <&clock 4>; + group = <1>; + index = <1>; + interrupts = <54 0 0>; + interrupt-parent = <&intc>; + + counter { + compatible = "espressif,esp32-counter"; + status = "disabled"; + }; + }; + + wdt0: watchdog@6001f048 { + compatible = "espressif,esp32-watchdog"; + reg = <0x6001f048 0x20>; + interrupts = <52 0 0>; + interrupt-parent = <&intc>; + clocks = <&clock 3>; + status = "disabled"; + }; + + wdt1: watchdog@60020048 { + compatible = "espressif,esp32-watchdog"; + reg = <0x60020048 0x20>; + interrupts = <55 0 0>; + interrupt-parent = <&intc>; + clocks = <&clock 4>; + status = "disabled"; + }; + + trng0: trng@6003507c { + compatible = "espressif,esp32-trng"; + reg = <0x6003507c 0x4>; + clocks = <&clock 6>; + status = "disabled"; + }; + + ledc0: ledc@60019000 { + compatible = "espressif,esp32-ledc"; + #pwm-cells = <3>; + reg = <0x60019000 ((4) * 1024)>; + clocks = <&clock 100>; + status = "disabled"; + }; + + mcpwm0: mcpwm@6001e000 { + compatible = "espressif,esp32-mcpwm"; + reg = <0x6001e000 ((4) * 1024)>; + interrupts = <31 0 0>; + interrupt-parent = <&intc>; + clocks = <&clock 107>; + #pwm-cells = <3>; + status = "disabled"; + }; + + mcpwm1: mcpwm@6002c000 { + compatible = "espressif,esp32-mcpwm"; + reg = <0x6002c000 ((4) * 1024)>; + interrupts = <32 0 0>; + interrupt-parent = <&intc>; + clocks = <&clock 108>; + #pwm-cells = <3>; + status = "disabled"; + }; + + pcnt: pcnt@60017000 { + compatible = "espressif,esp32-pcnt"; + reg = <0x60017000 ((4) * 1024)>; + interrupts = <41 0 0>; + interrupt-parent = <&intc>; + clocks = <&clock 113>; + status = "disabled"; + }; + + dma: dma@6003f000 { + compatible = "espressif,esp32-gdma"; + reg = <0x6003f000 ((4) * 1024)>; + #dma-cells = <1>; + interrupts = <66 0 + (1<<8)>, + <71 0 + (1<<8)>, + <67 0 + (1<<8)>, + <72 0 + (1<<8)>, + <68 0 + (1<<8)>, + <73 0 + (1<<8)>, + <69 0 + (1<<8)>, + <74 0 + (1<<8)>, + <70 0 + (1<<8)>, + <75 0 + (1<<8)>; + interrupt-parent = <&intc>; + clocks = <&clock 126>; + dma-channels = <10>; + dma-buf-addr-alignment = <4>; + status = "disabled"; + }; + + sdhc: sdhc@60028000 { + compatible = "espressif,esp32-sdhc"; + reg = <0x60028000 0x1000>; + interrupts = <30 0 0>; + interrupt-parent = <&intc>; + clocks = <&clock 117>; + #address-cells = <1>; + #size-cells = <0>; + + sdhc0: sdhc@0 { + compatible = "espressif,esp32-sdhc-slot"; + reg = <0>; + status = "disabled"; + }; + + sdhc1: sdhc@1 { + compatible = "espressif,esp32-sdhc-slot"; + reg = <1>; + status = "disabled"; + }; + }; + + sha: sha@6003b000 { + compatible = "espressif,esp32-sha"; + reg = <0x6003b000 0x100>; + clocks = <&clock 122>; + status = "okay"; + }; + + aes: aes@6003a000 { + compatible = "espressif,esp32-aes"; + reg = <0x6003a000 0x1000>; + clocks = <&clock 121>; + status = "okay"; + }; + }; +}; +# 8 "/Users/wijnand/zephyrproject/zephyr/dts/xtensa/espressif/esp32s3/esp32s3_wroom_n8r8.dtsi" 2 3 4 + + +&flash0 { + reg = <0x0 (((8) * 1024) * 1024)>; +}; + + +&psram0 { + size = <(((8) * 1024) * 1024)>; +}; +# 10 "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi" 2 +# 1 "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi" 1 + + + + + + +# 1 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp-pinctrl-common.h" 1 3 4 +# 8 "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi" 2 + +# 1 "/Users/wijnand/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/esp32s3-gpio-sigmap.h" 1 3 4 +# 10 "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi" 2 + +&pinctrl { + uart0_default: uart0_default { + group1 { + pinmux = <(((43 & 0x3FU) << 0U) | ((0x1FFU & 0x1FFU) << 6U) | ((12 & 0x1FFU) << 15U))>; + output-high; + }; + + group2 { + pinmux = <(((44 & 0x3FU) << 0U) | ((12 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>; + bias-pull-up; + }; + }; + + spim2_default: spim2_default { + group1 { + pinmux = <(((8 & 0x3FU) << 0U) | ((102 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>, + <(((7 & 0x3FU) << 0U) | ((0x1FFU & 0x1FFU) << 6U) | ((101 & 0x1FFU) << 15U))>; + }; + + group2 { + pinmux = <(((9 & 0x3FU) << 0U) | ((0x1FFU & 0x1FFU) << 6U) | ((103 & 0x1FFU) << 15U))>; + output-low; + }; + }; + + i2c0_default: i2c0_default { + group1 { + pinmux = <(((5 & 0x3FU) << 0U) | ((90 & 0x1FFU) << 6U) | ((90 & 0x1FFU) << 15U))>, + <(((6 & 0x3FU) << 0U) | ((89 & 0x1FFU) << 6U) | ((89 & 0x1FFU) << 15U))>; + bias-pull-up; + drive-open-drain; + output-high; + }; + }; + + i2c1_default: i2c1_default { + group1 { + pinmux = <(((40 & 0x3FU) << 0U) | ((92 & 0x1FFU) << 6U) | ((92 & 0x1FFU) << 15U))>, + <(((39 & 0x3FU) << 0U) | ((91 & 0x1FFU) << 6U) | ((91 & 0x1FFU) << 15U))>; + bias-pull-up; + drive-open-drain; + output-high; + }; + }; + + lcd_cam_default: lcd_cam_default { + group1 { + pinmux = <(((10 & 0x3FU) << 0U) | ((0x1FFU & 0x1FFU) << 6U) | ((149 & 0x1FFU) << 15U))>; + output-enable; + }; + + group2 { + pinmux = <(((38 & 0x3FU) << 0U) | ((152 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>, + <(((47 & 0x3FU) << 0U) | ((150 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>, + <(((13 & 0x3FU) << 0U) | ((149 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>, + <(((15 & 0x3FU) << 0U) | ((133 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>, + <(((17 & 0x3FU) << 0U) | ((134 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>, + <(((18 & 0x3FU) << 0U) | ((135 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>, + <(((16 & 0x3FU) << 0U) | ((136 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>, + <(((14 & 0x3FU) << 0U) | ((137 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>, + <(((12 & 0x3FU) << 0U) | ((138 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>, + <(((11 & 0x3FU) << 0U) | ((139 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>, + <(((48 & 0x3FU) << 0U) | ((140 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>; + input-enable; + bias-disable; + }; + }; + + twai_default: twai_default { + group1 { + pinmux = <(((3 & 0x3FU) << 0U) | ((0x1FFU & 0x1FFU) << 6U) | ((116 & 0x1FFU) << 15U))>, + <(((4 & 0x3FU) << 0U) | ((116 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>; + }; + }; +}; +# 11 "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi" 2 +# 1 "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/seeed_xiao_connector.dtsi" 1 + + + + + + +/ { + xiao_d: connector { + compatible = "seeed,xiao-gpio"; + #gpio-cells = <2>; + gpio-map-mask = <0xffffffff 0xffffffc0>; + gpio-map-pass-thru = <0 0x3f>; + gpio-map = <0 0 &gpio0 1 0>, + <1 0 &gpio0 2 0>, + <2 0 &gpio0 3 0>, + <3 0 &gpio0 4 0>, + <4 0 &gpio0 5 0>, + <5 0 &gpio0 6 0>, + <6 0 &gpio1 11 0>, + <7 0 &gpio1 12 0>, + <8 0 &gpio0 7 0>, + <9 0 &gpio0 8 0>, + <10 0 &gpio0 9 0>; + }; +}; + +xiao_spi: &spi2 {}; + +xiao_i2c: &i2c0 {}; + +xiao_serial: &uart0 {}; + +xiao_adc: &adc0 {}; +# 12 "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_common.dtsi" 2 + +/ { + chosen { + zephyr,sram = &sram1; + zephyr,console = &usb_serial; + zephyr,shell-uart = &usb_serial; + zephyr,flash = &flash0; + zephyr,code-partition = &slot0_partition; + zephyr,bt-hci = &esp32_bt_hci; + }; + + aliases { + i2c-0 = &i2c0; + watchdog0 = &wdt0; + led0 = &led0; + }; + + leds { + compatible = "gpio-leds"; + + led0: led_0 { + gpios = <&gpio0 21 (1 << 0)>; + label = "BUILTIN LED"; + }; + }; +}; + +&usb_serial { + status = "okay"; +}; + +&uart0 { + status = "okay"; + current-speed = <115200>; + pinctrl-0 = <&uart0_default>; + pinctrl-names = "default"; +}; + +&i2c0 { + status = "okay"; + clock-frequency = <100000>; + pinctrl-0 = <&i2c0_default>; + pinctrl-names = "default"; +}; + +&trng0 { + status = "okay"; +}; + +&spi2 { + #address-cells = <1>; + #size-cells = <0>; + status = "okay"; + pinctrl-0 = <&spim2_default>; + pinctrl-names = "default"; +}; + +&gpio0 { + status = "okay"; +}; + +&gpio1 { + status = "okay"; +}; + +&wdt0 { + status = "okay"; +}; + +&twai { + pinctrl-0 = <&twai_default>; + pinctrl-names = "default"; +}; + +&timer0 { + status = "okay"; +}; + +&timer1 { + status = "okay"; +}; + +&esp32_bt_hci { + status = "okay"; +}; + +&wifi { + status = "okay"; +}; +# 10 "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu.dts" 2 +# 1 "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi" 1 +# 11 "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3-pinctrl.dtsi" +&pinctrl { + uart0_default: uart0_default { + group1 { + pinmux = <(((43 & 0x3FU) << 0U) | ((0x1FFU & 0x1FFU) << 6U) | ((12 & 0x1FFU) << 15U))>; + output-high; + }; + + group2 { + pinmux = <(((44 & 0x3FU) << 0U) | ((12 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>; + bias-pull-up; + }; + }; + + spim2_default: spim2_default { + group1 { + pinmux = <(((8 & 0x3FU) << 0U) | ((102 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>, + <(((7 & 0x3FU) << 0U) | ((0x1FFU & 0x1FFU) << 6U) | ((101 & 0x1FFU) << 15U))>; + }; + + group2 { + pinmux = <(((9 & 0x3FU) << 0U) | ((0x1FFU & 0x1FFU) << 6U) | ((103 & 0x1FFU) << 15U))>; + output-low; + }; + }; + + i2c0_default: i2c0_default { + group1 { + pinmux = <(((5 & 0x3FU) << 0U) | ((90 & 0x1FFU) << 6U) | ((90 & 0x1FFU) << 15U))>, + <(((6 & 0x3FU) << 0U) | ((89 & 0x1FFU) << 6U) | ((89 & 0x1FFU) << 15U))>; + bias-pull-up; + drive-open-drain; + output-high; + }; + }; + + i2c1_default: i2c1_default { + group1 { + pinmux = <(((40 & 0x3FU) << 0U) | ((92 & 0x1FFU) << 6U) | ((92 & 0x1FFU) << 15U))>, + <(((39 & 0x3FU) << 0U) | ((91 & 0x1FFU) << 6U) | ((91 & 0x1FFU) << 15U))>; + bias-pull-up; + drive-open-drain; + output-high; + }; + }; + + lcd_cam_default: lcd_cam_default { + group1 { + pinmux = <(((10 & 0x3FU) << 0U) | ((0x1FFU & 0x1FFU) << 6U) | ((149 & 0x1FFU) << 15U))>; + output-enable; + }; + + group2 { + pinmux = <(((38 & 0x3FU) << 0U) | ((152 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>, + <(((47 & 0x3FU) << 0U) | ((150 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>, + <(((13 & 0x3FU) << 0U) | ((149 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>, + <(((15 & 0x3FU) << 0U) | ((133 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>, + <(((17 & 0x3FU) << 0U) | ((134 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>, + <(((18 & 0x3FU) << 0U) | ((135 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>, + <(((16 & 0x3FU) << 0U) | ((136 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>, + <(((14 & 0x3FU) << 0U) | ((137 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>, + <(((12 & 0x3FU) << 0U) | ((138 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>, + <(((11 & 0x3FU) << 0U) | ((139 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>, + <(((48 & 0x3FU) << 0U) | ((140 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>; + input-enable; + bias-disable; + }; + }; + + twai_default: twai_default { + group1 { + pinmux = <(((3 & 0x3FU) << 0U) | ((0x1FFU & 0x1FFU) << 6U) | ((116 & 0x1FFU) << 15U))>, + <(((4 & 0x3FU) << 0U) | ((116 & 0x1FFU) << 6U) | ((0x1FFU & 0x1FFU) << 15U))>; + }; + }; +}; +# 11 "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu.dts" 2 +# 1 "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/seeed_xiao_connector.dtsi" 1 + + + + + + +/ { + xiao_d: connector { + compatible = "seeed,xiao-gpio"; + #gpio-cells = <2>; + gpio-map-mask = <0xffffffff 0xffffffc0>; + gpio-map-pass-thru = <0 0x3f>; + gpio-map = <0 0 &gpio0 1 0>, + <1 0 &gpio0 2 0>, + <2 0 &gpio0 3 0>, + <3 0 &gpio0 4 0>, + <4 0 &gpio0 5 0>, + <5 0 &gpio0 6 0>, + <6 0 &gpio1 11 0>, + <7 0 &gpio1 12 0>, + <8 0 &gpio0 7 0>, + <9 0 &gpio0 8 0>, + <10 0 &gpio0 9 0>; + }; +}; + +xiao_spi: &spi2 {}; + +xiao_i2c: &i2c0 {}; + +xiao_serial: &uart0 {}; + +xiao_adc: &adc0 {}; +# 12 "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu.dts" 2 +# 1 "/Users/wijnand/zephyrproject/zephyr/dts/vendor/espressif/partitions_0x0_amp.dtsi" 1 3 4 + + + + + + +# 1 "/Users/wijnand/zephyrproject/zephyr/dts/vendor/espressif/partitions_0x0_amp_4M.dtsi" 1 3 4 + + + + + + +&flash0 { + partitions { + compatible = "fixed-partitions"; + #address-cells = <1>; + #size-cells = <1>; + + boot_partition: partition@0 { + label = "mcuboot"; + reg = <0x0 ((64) * 1024)>; + }; + + sys_partition: partition@10000 { + label = "sys"; + reg = <0x10000 ((64) * 1024)>; + }; + + slot0_partition: partition@20000 { + label = "image-0"; + reg = <0x20000 ((1344) * 1024)>; + }; + + slot1_partition: partition@170000 { + label = "image-1"; + reg = <0x170000 ((1344) * 1024)>; + }; + + slot0_appcpu_partition: partition@2c0000 { + label = "image-0-appcpu"; + reg = <0x2c0000 ((448) * 1024)>; + }; + + slot1_appcpu_partition: partition@330000 { + label = "image-1-appcpu"; + reg = <0x330000 ((448) * 1024)>; + }; + + slot0_lpcore_partition: partition@3a0000 { + label = "image-0-lpcore"; + reg = <0x3a0000 ((32) * 1024)>; + }; + + slot1_lpcore_partition: partition@3a8000 { + label = "image-1-lpcore"; + reg = <0x3a8000 ((32) * 1024)>; + }; + + storage_partition: partition@3b0000 { + label = "storage"; + reg = <0x3b0000 ((192) * 1024)>; + }; + + scratch_partition: partition@3e0000 { + label = "image-scratch"; + reg = <0x3e0000 ((124) * 1024)>; + }; + + coredump_partition: partition@3ff000 { + label = "coredump"; + reg = <0x3ff000 ((4) * 1024)>; + }; + }; +}; +# 8 "/Users/wijnand/zephyrproject/zephyr/dts/vendor/espressif/partitions_0x0_amp.dtsi" 2 3 4 +# 13 "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu.dts" 2 + +/ { + model = "Seeed Xiao ESP32S3 PROCPU"; + compatible = "seeed,xiao-esp32s3"; +}; +# 0 "" 2 +# 1 "/Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay" 1 +# 17 "/Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay" +/ { + chosen { + loramodem,kiss-uart = &usb_serial; + }; + aliases { + lora0 = &lora; + }; +}; + + +&spi2 { + status = "okay"; + #address-cells = <1>; + #size-cells = <0>; + pinctrl-0 = <&spim2_default>; + pinctrl-names = "default"; + cs-gpios = <&gpio0 3 (1 << 0)>; + + lora: lora@0 { + compatible = "semtech,sx1262"; + reg = <0>; + spi-max-frequency = <4000000>; + reset-gpios = <&gpio0 2 (1 << 0)>; + busy-gpios = <&gpio0 1 (0 << 0)>; + dio1-gpios = <&gpio0 0 (0 << 0)>; + dio2-tx-enable; + + tx-enable-gpios = <&gpio0 4 (0 << 0)>; + + }; +}; + +&gpio0 { + status = "okay"; +}; + +&gpio1 { + status = "okay"; +}; +# 0 "" 2 +# 1 "/Users/wijnand/zephyrproject/zephyr/misc/empty_file.c" diff --git a/build/zephyr/zephyr.elf b/build/zephyr/zephyr.elf new file mode 100755 index 0000000..525dade Binary files /dev/null and b/build/zephyr/zephyr.elf differ diff --git a/build/zephyr/zephyr.map b/build/zephyr/zephyr.map new file mode 100644 index 0000000..19105af --- /dev/null +++ b/build/zephyr/zephyr.map @@ -0,0 +1,18611 @@ +Archive member included to satisfy reference by file (symbol) + +app/libapp.a(main.c.obj) (--whole-archive) +app/libapp.a(kiss.c.obj) (--whole-archive) +app/libapp.a(lora_modem.c.obj) + (--whole-archive) +zephyr/libzephyr.a(validate_libc.c.obj) + (--whole-archive) +zephyr/libzephyr.a(heap.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cbprintf_packaged.c.obj) + (--whole-archive) +zephyr/libzephyr.a(clock.c.obj) + (--whole-archive) +zephyr/libzephyr.a(printk.c.obj) + (--whole-archive) +zephyr/libzephyr.a(sem.c.obj) + (--whole-archive) +zephyr/libzephyr.a(thread_entry.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cbprintf_complete.c.obj) + (--whole-archive) +zephyr/libzephyr.a(assert.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mpsc_pbuf.c.obj) + (--whole-archive) +zephyr/libzephyr.a(dec.c.obj) + (--whole-archive) +zephyr/libzephyr.a(hex.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rb.c.obj) (--whole-archive) +zephyr/libzephyr.a(set.c.obj) + (--whole-archive) +zephyr/libzephyr.a(timeutil.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bitarray.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bitmask.c.obj) + (--whole-archive) +zephyr/libzephyr.a(getopt.c.obj) + (--whole-archive) +zephyr/libzephyr.a(getopt_common.c.obj) + (--whole-archive) +zephyr/libzephyr.a(ring_buffer.c.obj) + (--whole-archive) +zephyr/libzephyr.a(configs.c.obj) + (--whole-archive) +zephyr/libzephyr.a(soc.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp32s3-mp.c.obj) + (--whole-archive) +zephyr/libzephyr.a(loader.c.obj) + (--whole-archive) +zephyr/libzephyr.a(hw_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_core.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_mgmt.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_cache.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_msg.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_output.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_backend_uart.c.obj) + (--whole-archive) +zephyr/libzephyr.a(tracing_none.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_efuse_api.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_efuse_fields.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_efuse_utility.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_efuse_table.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_efuse_fields.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_efuse_utility.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + (--whole-archive) +zephyr/libzephyr.a(flash_encrypt.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_flash_api.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(flash_mmap.c.obj) + (--whole-archive) +zephyr/libzephyr.a(flash_ops.c.obj) + (--whole-archive) +zephyr/libzephyr.a(memspi_host_driver.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_wrap.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cache_utils.c.obj) + (--whole-archive) +zephyr/libzephyr.a(uart_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(uart_hal_iram.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_hal_iram.c.obj) + (--whole-archive) +zephyr/libzephyr.a(lldesc.c.obj) + (--whole-archive) +zephyr/libzephyr.a(gdma_hal_top.c.obj) + (--whole-archive) +zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bootloader_clock_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mpu_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(flash_qio_mode.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + (--whole-archive) +zephyr/libzephyr.a(console_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(soc_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_io.c.obj) + (--whole-archive) +zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + (--whole-archive) +zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(clk_tree_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_io_periph.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_io_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(systimer_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(wdt_hal_iram.c.obj) + (--whole-archive) +zephyr/libzephyr.a(xt_wdt_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + (--whole-archive) +zephyr/libzephyr.a(clk_ctrl_os.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cpu.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_clk.c.obj) + (--whole-archive) +zephyr/libzephyr.a(hw_random.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mac_addr.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mspi_timing_config.c.obj) + (--whole-archive) +zephyr/libzephyr.a(periph_ctrl.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cpu_region_protect.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_clk_tree.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_cpu_intr.c.obj) + (--whole-archive) +zephyr/libzephyr.a(io_mux.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_clk.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_clk_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_sleep.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_time.c.obj) + (--whole-archive) +zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + (--whole-archive) +zephyr/libzephyr.a(systimer.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + (--whole-archive) +zephyr/libzephyr.a(regi2c_ctrl.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_module.c.obj) + (--whole-archive) +zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + (--whole-archive) +zephyr/libzephyr.a(sleep_modes.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_cache_msync.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_cache_utils.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_mmu_map.c.obj) + (--whole-archive) +zephyr/libzephyr.a(ext_mem_layout.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_crc.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_efuse.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_gpio.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_print.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_sys.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_err.c.obj) + (--whole-archive) +zephyr/libzephyr.a(clk.c.obj) + (--whole-archive) +zephyr/libzephyr.a(reset_reason.c.obj) + (--whole-archive) +zephyr/libzephyr.a(system_internal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_timer.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_timer_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(ets_timer_legacy.c.obj) + (--whole-archive) +zephyr/libzephyr.a(efuse_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cache_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(efuse_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mmu_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(gpio_periph.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_restart.c.obj) + (--whole-archive) +zephyr/libzephyr.a(flash_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bootloader_flash.c.obj) + (--whole-archive) +zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + (--whole-archive) +zephyr/libzephyr.a(soc_flash_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(soc_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(soc_random.c.obj) + (--whole-archive) +zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + (--whole-archive) +zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + (--whole-archive) +zephyr/arch/common/libarch__common.a(init.c.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + (--whole-archive) +zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + (--whole-archive) +zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + (--whole-archive) +zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + (--whole-archive) +zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + (--whole-archive) +zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + (--whole-archive) +zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + (--whole-archive) +zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + (--whole-archive) +zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + (--whole-archive) +zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + (--whole-archive) +zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + (--whole-archive) +zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + (--whole-archive) +zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + (--whole-archive) +zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + (--whole-archive) +zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + (--whole-archive) +zephyr/kernel/libkernel.a(busy_wait.c.obj) + zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) (z_impl_k_busy_wait) +zephyr/kernel/libkernel.a(device.c.obj) + app/libapp.a(lora_modem.c.obj) (z_impl_device_is_ready) +zephyr/kernel/libkernel.a(errno.c.obj) + zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) (z_impl_z_errno) +zephyr/kernel/libkernel.a(fatal.c.obj) + zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) (z_fatal_error) +zephyr/kernel/libkernel.a(init.c.obj) + zephyr/libzephyr.a(loader.c.obj) (_kernel) +zephyr/kernel/libkernel.a(idle.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (idle) +zephyr/kernel/libkernel.a(mutex.c.obj) + zephyr/libzephyr.a(esp_mmu_map.c.obj) (z_impl_k_mutex_init) +zephyr/kernel/libkernel.a(sem.c.obj) + zephyr/libzephyr.a(sem.c.obj) (z_impl_k_sem_init) +zephyr/kernel/libkernel.a(work.c.obj) + zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) (k_work_init) +zephyr/kernel/libkernel.a(thread.c.obj) + zephyr/libzephyr.a(mpsc_pbuf.c.obj) (k_is_in_isr) +zephyr/kernel/libkernel.a(sched.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_thread_timeout) +zephyr/kernel/libkernel.a(timeslicing.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_reset_time_slice) +zephyr/kernel/libkernel.a(timeout.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_add_timeout) +zephyr/kernel/libkernel.a(timer.c.obj) + zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) (z_timer_expiration_handler) +zephyr/kernel/libkernel.a(poll.c.obj) + zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) (z_impl_k_poll) +zephyr/kernel/libkernel.a(mempool.c.obj) + zephyr/libzephyr.a(flash_mmap.c.obj) (k_free) +zephyr/kernel/libkernel.a(banner.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (boot_banner) +zephyr/kernel/libkernel.a(kheap.c.obj) + zephyr/kernel/libkernel.a(mempool.c.obj) (k_heap_free) +zephyr/kernel/libkernel.a(system_work_q.c.obj) + zephyr/kernel/libkernel.a(work.c.obj) (k_sys_work_q) +/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/libgcc.a(_ashldi3.o) + zephyr/libzephyr.a(esp_efuse_fields.c.obj) (__ashldi3) +/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/libgcc.a(_ashrdi3.o) + zephyr/libzephyr.a(rtc_io.c.obj) (__ashrdi3) +/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/libgcc.a(_lshrdi3.o) + zephyr/libzephyr.a(esp_efuse_utility.c.obj) (__lshrdi3) +/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/libgcc.a(_bswapsi2.o) + app/libapp.a(main.c.obj) (__bswapsi2) +/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/libgcc.a(_bswapdi2.o) + zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) (__bswapdi2) +/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/libgcc.a(_divsf3.o) + zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) (__divsf3) +/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/libgcc.a(_addsubdf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__subdf3) +/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/libgcc.a(_muldf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__muldf3) +/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/libgcc.a(_divdf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__divdf3) +/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/libgcc.a(_fixdfdi.o) + zephyr/libzephyr.a(timeutil.c.obj) (__fixdfdi) +/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/libgcc.a(_floatsidf.o) + zephyr/libzephyr.a(timeutil.c.obj) (__floatunsidf) +/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/libgcc.a(_floatdidf.o) + zephyr/libzephyr.a(timeutil.c.obj) (__floatundidf) +/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/libgcc.a(_truncdfsf2.o) + zephyr/libzephyr.a(timeutil.c.obj) (__truncdfsf2) +/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/libgcc.a(_extendsfdf2.o) + zephyr/libzephyr.a(timeutil.c.obj) (__extendsfdf2) +/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/libgcc.a(_popcountsi2.o) + zephyr/libzephyr.a(bitarray.c.obj) (__popcountsi2) +/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/libgcc.a(_divdi3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__divdi3) +/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/libgcc.a(_moddi3.o) + zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) (__moddi3) +/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/libgcc.a(_udivdi3.o) + zephyr/libzephyr.a(clock.c.obj) (__udivdi3) +/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/libgcc.a(_umoddi3.o) + zephyr/libzephyr.a(clock.c.obj) (__umoddi3) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memcpy.S.o) + zephyr/libzephyr.a(heap.c.obj) (memcpy) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memset.S.o) + zephyr/libzephyr.a(heap.c.obj) (memset) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + zephyr/libzephyr.a(log_mgmt.c.obj) (strcmp) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + zephyr/libzephyr.a(cbprintf_packaged.c.obj) (strlen) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + zephyr/libzephyr.a(esp_efuse_utility.c.obj) (memcmp) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + zephyr/libzephyr.a(getopt.c.obj) (strchr) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + zephyr/libzephyr.a(cbprintf_complete.c.obj) (strnlen) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + zephyr/libzephyr.a(sleep_modes.c.obj) (fprintf) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + zephyr/libzephyr.a(esp_mmu_map.c.obj) (fputc) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + zephyr/libzephyr.a(esp_mmu_map.c.obj) (fputs) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + zephyr/libzephyr.a(heap_caps_zephyr.c.obj) (printf) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) (puts) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + zephyr/libzephyr.a(log_output.c.obj) (snprintf) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + (__l_vfprintf) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + (__l_vfscanf) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) (getc) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) (__file_str_put) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) (ungetc) + +Discarded input sections + + .text 0x00000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .data 0x00000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .bss 0x00000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .debug_line 0x00000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .debug_str 0x00000000 0x18f zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .comment 0x00000000 0x20 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .text 0x00000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .data 0x00000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .bss 0x00000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .text 0x00000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .data 0x00000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .bss 0x00000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .text 0x00000000 0x0 app/libapp.a(main.c.obj) + .data 0x00000000 0x0 app/libapp.a(main.c.obj) + .bss 0x00000000 0x0 app/libapp.a(main.c.obj) + .text 0x00000000 0x0 app/libapp.a(kiss.c.obj) + .data 0x00000000 0x0 app/libapp.a(kiss.c.obj) + .bss 0x00000000 0x0 app/libapp.a(kiss.c.obj) + .text 0x00000000 0x0 app/libapp.a(lora_modem.c.obj) + .data 0x00000000 0x0 app/libapp.a(lora_modem.c.obj) + .bss 0x00000000 0x0 app/libapp.a(lora_modem.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(validate_libc.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(validate_libc.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(validate_libc.c.obj) + .debug_info 0x00000000 0x79 zephyr/libzephyr.a(validate_libc.c.obj) + .debug_abbrev 0x00000000 0x26 zephyr/libzephyr.a(validate_libc.c.obj) + .debug_aranges + 0x00000000 0x18 zephyr/libzephyr.a(validate_libc.c.obj) + .debug_line 0x00000000 0x5e zephyr/libzephyr.a(validate_libc.c.obj) + .debug_str 0x00000000 0x231 zephyr/libzephyr.a(validate_libc.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(validate_libc.c.obj) + .literal.inplace_realloc$isra$0 + 0x00000000 0x60 zephyr/libzephyr.a(heap.c.obj) + .literal.sys_heap_usable_size + 0x00000000 0x8 zephyr/libzephyr.a(heap.c.obj) + .literal.sys_heap_aligned_alloc + 0x00000000 0x24 zephyr/libzephyr.a(heap.c.obj) + .literal.sys_heap_realloc + 0x00000000 0x1c zephyr/libzephyr.a(heap.c.obj) + .literal.sys_heap_aligned_realloc + 0x00000000 0x1c zephyr/libzephyr.a(heap.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .text.inplace_realloc$isra$0 + 0x00000000 0x194 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_usable_size + 0x00000000 0x3e zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_aligned_alloc + 0x00000000 0x10c zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_realloc + 0x00000000 0x76 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_aligned_realloc + 0x00000000 0x85 zephyr/libzephyr.a(heap.c.obj) + .literal.cbprintf_package + 0x00000000 0x4 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text.cbprintf_package + 0x00000000 0x2d zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .literal.timespec_add + 0x00000000 0x4 zephyr/libzephyr.a(clock.c.obj) + .literal.z_impl_sys_clock_getrtoffset + 0x00000000 0x4 zephyr/libzephyr.a(clock.c.obj) + .literal.sys_clock_gettime + 0x00000000 0x28 zephyr/libzephyr.a(clock.c.obj) + .literal.z_impl_sys_clock_settime + 0x00000000 0x20 zephyr/libzephyr.a(clock.c.obj) + .literal.z_impl_sys_clock_nanosleep + 0x00000000 0x54 zephyr/libzephyr.a(clock.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(clock.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(clock.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(clock.c.obj) + .text.timespec_compare + 0x00000000 0x48 zephyr/libzephyr.a(clock.c.obj) + .text.timespec_add + 0x00000000 0x78 zephyr/libzephyr.a(clock.c.obj) + .text.sys_clock_from_clockid + 0x00000000 0xa zephyr/libzephyr.a(clock.c.obj) + .text.z_impl_sys_clock_getrtoffset + 0x00000000 0x21 zephyr/libzephyr.a(clock.c.obj) + .rodata 0x00000000 0x20 zephyr/libzephyr.a(clock.c.obj) + .text.sys_clock_gettime + 0x00000000 0xb5 zephyr/libzephyr.a(clock.c.obj) + .text.z_impl_sys_clock_settime + 0x00000000 0x86 zephyr/libzephyr.a(clock.c.obj) + .text.z_impl_sys_clock_nanosleep + 0x00000000 0x1fc zephyr/libzephyr.a(clock.c.obj) + .bss.rt_clock_offset + 0x00000000 0x10 zephyr/libzephyr.a(clock.c.obj) + .debug_frame 0x00000000 0xb8 zephyr/libzephyr.a(clock.c.obj) + .debug_info 0x00000000 0xd48 zephyr/libzephyr.a(clock.c.obj) + .debug_abbrev 0x00000000 0x41f zephyr/libzephyr.a(clock.c.obj) + .debug_loc 0x00000000 0x5ab zephyr/libzephyr.a(clock.c.obj) + .debug_aranges + 0x00000000 0x50 zephyr/libzephyr.a(clock.c.obj) + .debug_ranges 0x00000000 0x140 zephyr/libzephyr.a(clock.c.obj) + .debug_line 0x00000000 0x1003 zephyr/libzephyr.a(clock.c.obj) + .debug_str 0x00000000 0x75f zephyr/libzephyr.a(clock.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(clock.c.obj) + .literal.__printk_get_hook + 0x00000000 0x4 zephyr/libzephyr.a(printk.c.obj) + .literal.vprintk + 0x00000000 0x4 zephyr/libzephyr.a(printk.c.obj) + .literal.z_impl_k_str_out + 0x00000000 0x4 zephyr/libzephyr.a(printk.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .text.arch_printk_char_out + 0x00000000 0x7 zephyr/libzephyr.a(printk.c.obj) + .text.__printk_get_hook + 0x00000000 0xa zephyr/libzephyr.a(printk.c.obj) + .text.vprintk 0x00000000 0x13 zephyr/libzephyr.a(printk.c.obj) + .text.z_impl_k_str_out + 0x00000000 0x1d zephyr/libzephyr.a(printk.c.obj) + .literal.sys_sem_init + 0x00000000 0x4 zephyr/libzephyr.a(sem.c.obj) + .literal.sys_sem_give + 0x00000000 0x4 zephyr/libzephyr.a(sem.c.obj) + .literal.sys_sem_take + 0x00000000 0x4 zephyr/libzephyr.a(sem.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_init + 0x00000000 0x14 zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_give + 0x00000000 0x10 zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_take + 0x00000000 0x2e zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_count_get + 0x00000000 0x7 zephyr/libzephyr.a(sem.c.obj) + .debug_frame 0x00000000 0x70 zephyr/libzephyr.a(sem.c.obj) + .debug_info 0x00000000 0x4de zephyr/libzephyr.a(sem.c.obj) + .debug_abbrev 0x00000000 0x23e zephyr/libzephyr.a(sem.c.obj) + .debug_loc 0x00000000 0x18b zephyr/libzephyr.a(sem.c.obj) + .debug_aranges + 0x00000000 0x38 zephyr/libzephyr.a(sem.c.obj) + .debug_ranges 0x00000000 0x60 zephyr/libzephyr.a(sem.c.obj) + .debug_line 0x00000000 0x4d5 zephyr/libzephyr.a(sem.c.obj) + .debug_str 0x00000000 0x399 zephyr/libzephyr.a(sem.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(sem.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .literal.encode_uint + 0x00000000 0x8 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .literal.z_cbvprintf_impl + 0x00000000 0x20 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text.encode_uint + 0x00000000 0xa6 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .rodata.z_cbvprintf_impl.str1.1 + 0x00000000 0x6 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text.z_cbvprintf_impl + 0x00000000 0x8e9 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .rodata.z_cbvprintf_impl + 0x00000000 0x58 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_info 0x00000000 0x10f4 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_abbrev 0x00000000 0x42d zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_loc 0x00000000 0x16ef zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_ranges 0x00000000 0x1e0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_line 0x00000000 0x1b49 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_str 0x00000000 0x674 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .literal.assert_post_action + 0x00000000 0x4 zephyr/libzephyr.a(assert.c.obj) + .literal.assert_print + 0x00000000 0x4 zephyr/libzephyr.a(assert.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .text.assert_post_action + 0x00000000 0xc zephyr/libzephyr.a(assert.c.obj) + .text.assert_print + 0x00000000 0x27 zephyr/libzephyr.a(assert.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(assert.c.obj) + .debug_info 0x00000000 0x1ba zephyr/libzephyr.a(assert.c.obj) + .debug_abbrev 0x00000000 0x12d zephyr/libzephyr.a(assert.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(assert.c.obj) + .debug_ranges 0x00000000 0x18 zephyr/libzephyr.a(assert.c.obj) + .debug_line 0x00000000 0x263 zephyr/libzephyr.a(assert.c.obj) + .debug_str 0x00000000 0x334 zephyr/libzephyr.a(assert.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(assert.c.obj) + .literal.mpsc_pbuf_put_word + 0x00000000 0x18 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .literal.mpsc_pbuf_put_word_ext + 0x00000000 0x1c zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .literal.mpsc_pbuf_put_data + 0x00000000 0x20 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .literal.mpsc_pbuf_get_utilization + 0x00000000 0x4 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_put_word + 0x00000000 0xa1 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_put_word_ext + 0x00000000 0xb9 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_put_data + 0x00000000 0xc5 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_get_utilization + 0x00000000 0x25 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_get_max_utilization + 0x00000000 0x21 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .literal.u8_to_dec + 0x00000000 0x4 zephyr/libzephyr.a(dec.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .text.u8_to_dec + 0x00000000 0x6a zephyr/libzephyr.a(dec.c.obj) + .debug_frame 0x00000000 0x28 zephyr/libzephyr.a(dec.c.obj) + .debug_info 0x00000000 0x12b zephyr/libzephyr.a(dec.c.obj) + .debug_abbrev 0x00000000 0x9c zephyr/libzephyr.a(dec.c.obj) + .debug_loc 0x00000000 0xdc zephyr/libzephyr.a(dec.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(dec.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/libzephyr.a(dec.c.obj) + .debug_line 0x00000000 0x30b zephyr/libzephyr.a(dec.c.obj) + .debug_str 0x00000000 0x264 zephyr/libzephyr.a(dec.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(dec.c.obj) + .literal.bin2hex + 0x00000000 0x8 zephyr/libzephyr.a(hex.c.obj) + .literal.hex2bin + 0x00000000 0xc zephyr/libzephyr.a(hex.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .text.char2hex + 0x00000000 0x3e zephyr/libzephyr.a(hex.c.obj) + .text.hex2char + 0x00000000 0x26 zephyr/libzephyr.a(hex.c.obj) + .text.bin2hex 0x00000000 0x45 zephyr/libzephyr.a(hex.c.obj) + .text.hex2bin 0x00000000 0x72 zephyr/libzephyr.a(hex.c.obj) + .debug_frame 0x00000000 0x70 zephyr/libzephyr.a(hex.c.obj) + .debug_info 0x00000000 0x2a1 zephyr/libzephyr.a(hex.c.obj) + .debug_abbrev 0x00000000 0x12a zephyr/libzephyr.a(hex.c.obj) + .debug_loc 0x00000000 0x30e zephyr/libzephyr.a(hex.c.obj) + .debug_aranges + 0x00000000 0x38 zephyr/libzephyr.a(hex.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/libzephyr.a(hex.c.obj) + .debug_line 0x00000000 0x5c9 zephyr/libzephyr.a(hex.c.obj) + .debug_str 0x00000000 0x26b zephyr/libzephyr.a(hex.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(hex.c.obj) + .literal.rotate + 0x00000000 0x10 zephyr/libzephyr.a(rb.c.obj) + .literal.rb_insert + 0x00000000 0x10 zephyr/libzephyr.a(rb.c.obj) + .literal.rb_remove + 0x00000000 0x24 zephyr/libzephyr.a(rb.c.obj) + .literal.z_rb_walk + 0x00000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .literal.z_rb_foreach_next + 0x00000000 0x4 zephyr/libzephyr.a(rb.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .text.find_and_stack + 0x00000000 0x36 zephyr/libzephyr.a(rb.c.obj) + .text.stack_left_limb + 0x00000000 0x4e zephyr/libzephyr.a(rb.c.obj) + .text.set_child + 0x00000000 0x16 zephyr/libzephyr.a(rb.c.obj) + .text.rotate 0x00000000 0x7a zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_get_minmax + 0x00000000 0x23 zephyr/libzephyr.a(rb.c.obj) + .text.rb_insert + 0x00000000 0x138 zephyr/libzephyr.a(rb.c.obj) + .text.rb_remove + 0x00000000 0x31d zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_walk + 0x00000000 0x23 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_child + 0x00000000 0x16 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_is_black + 0x00000000 0xa zephyr/libzephyr.a(rb.c.obj) + .text.rb_contains + 0x00000000 0x30 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_foreach_next + 0x00000000 0x64 zephyr/libzephyr.a(rb.c.obj) + .debug_frame 0x00000000 0x130 zephyr/libzephyr.a(rb.c.obj) + .debug_info 0x00000000 0x243d zephyr/libzephyr.a(rb.c.obj) + .debug_abbrev 0x00000000 0x4b8 zephyr/libzephyr.a(rb.c.obj) + .debug_loc 0x00000000 0x22bc zephyr/libzephyr.a(rb.c.obj) + .debug_aranges + 0x00000000 0x78 zephyr/libzephyr.a(rb.c.obj) + .debug_ranges 0x00000000 0x620 zephyr/libzephyr.a(rb.c.obj) + .debug_line 0x00000000 0x2857 zephyr/libzephyr.a(rb.c.obj) + .debug_str 0x00000000 0x45b zephyr/libzephyr.a(rb.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(rb.c.obj) + .literal.sys_set_union + 0x00000000 0x8 zephyr/libzephyr.a(set.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(set.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(set.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(set.c.obj) + .text.sys_set_find + 0x00000000 0x13 zephyr/libzephyr.a(set.c.obj) + .text.sys_set_union + 0x00000000 0x3b zephyr/libzephyr.a(set.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(set.c.obj) + .debug_info 0x00000000 0x170 zephyr/libzephyr.a(set.c.obj) + .debug_abbrev 0x00000000 0xf9 zephyr/libzephyr.a(set.c.obj) + .debug_loc 0x00000000 0x6e zephyr/libzephyr.a(set.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(set.c.obj) + .debug_ranges 0x00000000 0x18 zephyr/libzephyr.a(set.c.obj) + .debug_line 0x00000000 0x30c zephyr/libzephyr.a(set.c.obj) + .debug_str 0x00000000 0x276 zephyr/libzephyr.a(set.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(set.c.obj) + .literal.timeutil_timegm64 + 0x00000000 0x14 zephyr/libzephyr.a(timeutil.c.obj) + .literal.timeutil_timegm + 0x00000000 0x8 zephyr/libzephyr.a(timeutil.c.obj) + .literal.timeutil_sync_state_update + 0x00000000 0xc zephyr/libzephyr.a(timeutil.c.obj) + .literal.timeutil_sync_state_set_skew + 0x00000000 0xc zephyr/libzephyr.a(timeutil.c.obj) + .literal.timeutil_sync_estimate_skew + 0x00000000 0x20 zephyr/libzephyr.a(timeutil.c.obj) + .literal.timeutil_sync_ref_from_local + 0x00000000 0x24 zephyr/libzephyr.a(timeutil.c.obj) + .literal.timeutil_sync_local_from_ref + 0x00000000 0x24 zephyr/libzephyr.a(timeutil.c.obj) + .literal.timeutil_sync_skew_to_ppb + 0x00000000 0x14 zephyr/libzephyr.a(timeutil.c.obj) + .literal.timespec_normalize + 0x00000000 0x14 zephyr/libzephyr.a(timeutil.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_timegm64 + 0x00000000 0x108 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_timegm + 0x00000000 0x1c zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_state_update + 0x00000000 0x78 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_state_set_skew + 0x00000000 0x40 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_estimate_skew + 0x00000000 0xbc zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_ref_from_local + 0x00000000 0xbc zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_local_from_ref + 0x00000000 0xae zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_skew_to_ppb + 0x00000000 0x42 zephyr/libzephyr.a(timeutil.c.obj) + .text.timespec_normalize + 0x00000000 0xa3 zephyr/libzephyr.a(timeutil.c.obj) + .debug_frame 0x00000000 0xe8 zephyr/libzephyr.a(timeutil.c.obj) + .debug_info 0x00000000 0x8ec zephyr/libzephyr.a(timeutil.c.obj) + .debug_abbrev 0x00000000 0x20c zephyr/libzephyr.a(timeutil.c.obj) + .debug_loc 0x00000000 0x6ca zephyr/libzephyr.a(timeutil.c.obj) + .debug_aranges + 0x00000000 0x60 zephyr/libzephyr.a(timeutil.c.obj) + .debug_ranges 0x00000000 0x70 zephyr/libzephyr.a(timeutil.c.obj) + .debug_line 0x00000000 0xdee zephyr/libzephyr.a(timeutil.c.obj) + .debug_str 0x00000000 0x53d zephyr/libzephyr.a(timeutil.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(timeutil.c.obj) + .literal.match_region + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.is_region_set_clear + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.set_region + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.set_clear_region + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_popcount_region + 0x00000000 0x10 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_xor + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_alloc + 0x00000000 0xc zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_find_nth_set + 0x00000000 0x10 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_free + 0x00000000 0x8 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_is_region_set + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_is_region_cleared + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_test_and_set_region + 0x00000000 0x8 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_set_region + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_clear_region + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .text.setup_bundle_data$isra$0 + 0x00000000 0x3f zephyr/libzephyr.a(bitarray.c.obj) + .text.match_region + 0x00000000 0x7e zephyr/libzephyr.a(bitarray.c.obj) + .text.is_region_set_clear + 0x00000000 0x54 zephyr/libzephyr.a(bitarray.c.obj) + .text.set_region + 0x00000000 0x9c zephyr/libzephyr.a(bitarray.c.obj) + .text.set_clear_region + 0x00000000 0x50 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_popcount_region + 0x00000000 0x98 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_xor + 0x00000000 0x9e zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_set_bit + 0x00000000 0x30 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_clear_bit + 0x00000000 0x30 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_bit + 0x00000000 0x30 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_set_bit + 0x00000000 0x45 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_clear_bit + 0x00000000 0x45 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_alloc + 0x00000000 0xe4 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_find_nth_set + 0x00000000 0xbc zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_free + 0x00000000 0x9c zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_is_region_set + 0x00000000 0x15 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_is_region_cleared + 0x00000000 0x15 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_set_region + 0x00000000 0x70 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_set_region + 0x00000000 0x15 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_clear_region + 0x00000000 0x15 zephyr/libzephyr.a(bitarray.c.obj) + .debug_frame 0x00000000 0x1f0 zephyr/libzephyr.a(bitarray.c.obj) + .debug_info 0x00000000 0x1a96 zephyr/libzephyr.a(bitarray.c.obj) + .debug_abbrev 0x00000000 0x455 zephyr/libzephyr.a(bitarray.c.obj) + .debug_loc 0x00000000 0x1010 zephyr/libzephyr.a(bitarray.c.obj) + .debug_aranges + 0x00000000 0xb8 zephyr/libzephyr.a(bitarray.c.obj) + .debug_ranges 0x00000000 0x200 zephyr/libzephyr.a(bitarray.c.obj) + .debug_line 0x00000000 0x2522 zephyr/libzephyr.a(bitarray.c.obj) + .debug_str 0x00000000 0x609 zephyr/libzephyr.a(bitarray.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(bitarray.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(bitmask.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(bitmask.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(bitmask.c.obj) + .text.bitmask_find_gap + 0x00000000 0x93 zephyr/libzephyr.a(bitmask.c.obj) + .debug_frame 0x00000000 0x28 zephyr/libzephyr.a(bitmask.c.obj) + .debug_info 0x00000000 0x1eb zephyr/libzephyr.a(bitmask.c.obj) + .debug_abbrev 0x00000000 0x107 zephyr/libzephyr.a(bitmask.c.obj) + .debug_loc 0x00000000 0x1b5 zephyr/libzephyr.a(bitmask.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(bitmask.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/libzephyr.a(bitmask.c.obj) + .debug_line 0x00000000 0x501 zephyr/libzephyr.a(bitmask.c.obj) + .debug_str 0x00000000 0x2ae zephyr/libzephyr.a(bitmask.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(bitmask.c.obj) + .literal.sys_getopt_init + 0x00000000 0x1c zephyr/libzephyr.a(getopt.c.obj) + .literal.sys_getopt + 0x00000000 0x20 zephyr/libzephyr.a(getopt.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(getopt.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(getopt.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(getopt.c.obj) + .rodata.sys_getopt_init.str1.1 + 0x00000000 0x1 zephyr/libzephyr.a(getopt.c.obj) + .text.sys_getopt_init + 0x00000000 0x37 zephyr/libzephyr.a(getopt.c.obj) + .text.sys_getopt + 0x00000000 0x11e zephyr/libzephyr.a(getopt.c.obj) + .literal.z_getopt_global_state_update + 0x00000000 0x18 zephyr/libzephyr.a(getopt_common.c.obj) + .literal.sys_getopt_state_get + 0x00000000 0x4 zephyr/libzephyr.a(getopt_common.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(getopt_common.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(getopt_common.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(getopt_common.c.obj) + .text.z_getopt_global_state_update + 0x00000000 0x30 zephyr/libzephyr.a(getopt_common.c.obj) + .text.sys_getopt_state_get + 0x00000000 0x8 zephyr/libzephyr.a(getopt_common.c.obj) + .rodata.str1.1 + 0x00000000 0x1 zephyr/libzephyr.a(getopt_common.c.obj) + .data.m_getopt_common_state + 0x00000000 0x18 zephyr/libzephyr.a(getopt_common.c.obj) + .bss.sys_getopt_optarg + 0x00000000 0x4 zephyr/libzephyr.a(getopt_common.c.obj) + .bss.sys_getopt_optreset + 0x00000000 0x4 zephyr/libzephyr.a(getopt_common.c.obj) + .bss.sys_getopt_optopt + 0x00000000 0x4 zephyr/libzephyr.a(getopt_common.c.obj) + .data.sys_getopt_optind + 0x00000000 0x4 zephyr/libzephyr.a(getopt_common.c.obj) + .data.sys_getopt_opterr + 0x00000000 0x4 zephyr/libzephyr.a(getopt_common.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(getopt_common.c.obj) + .debug_info 0x00000000 0x271 zephyr/libzephyr.a(getopt_common.c.obj) + .debug_abbrev 0x00000000 0x13e zephyr/libzephyr.a(getopt_common.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(getopt_common.c.obj) + .debug_ranges 0x00000000 0x18 zephyr/libzephyr.a(getopt_common.c.obj) + .debug_line 0x00000000 0x2d2 zephyr/libzephyr.a(getopt_common.c.obj) + .debug_str 0x00000000 0x4e6 zephyr/libzephyr.a(getopt_common.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(getopt_common.c.obj) + .literal.ring_buf_put_claim + 0x00000000 0x4 zephyr/libzephyr.a(ring_buffer.c.obj) + .literal.ring_buf_get_claim + 0x00000000 0x4 zephyr/libzephyr.a(ring_buffer.c.obj) + .literal.ring_buf_put + 0x00000000 0xc zephyr/libzephyr.a(ring_buffer.c.obj) + .literal.ring_buf_get + 0x00000000 0xc zephyr/libzephyr.a(ring_buffer.c.obj) + .literal.ring_buf_peek + 0x00000000 0xc zephyr/libzephyr.a(ring_buffer.c.obj) + .literal.ring_buf_item_put + 0x00000000 0x10 zephyr/libzephyr.a(ring_buffer.c.obj) + .literal.ring_buf_item_get + 0x00000000 0x14 zephyr/libzephyr.a(ring_buffer.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_area_claim + 0x00000000 0x39 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_put_claim + 0x00000000 0x28 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_get_claim + 0x00000000 0x22 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_area_finish + 0x00000000 0x3e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_put + 0x00000000 0x3e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_get + 0x00000000 0x3e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_peek + 0x00000000 0x3e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_item_put + 0x00000000 0x7e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_item_get + 0x00000000 0x90 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_frame 0x00000000 0xe8 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_info 0x00000000 0xcb7 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_abbrev 0x00000000 0x2aa zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_loc 0x00000000 0x8b4 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_aranges + 0x00000000 0x60 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_ranges 0x00000000 0xe8 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_line 0x00000000 0xd99 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_str 0x00000000 0x477 zephyr/libzephyr.a(ring_buffer.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(ring_buffer.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .iram1.2.literal + 0x00000000 0x4 zephyr/libzephyr.a(soc.c.obj) + .literal.sys_arch_reboot + 0x00000000 0x4 zephyr/libzephyr.a(soc.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(soc.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(soc.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(soc.c.obj) + .iram1.2 0x00000000 0x9 zephyr/libzephyr.a(soc.c.obj) + .text.sys_arch_reboot + 0x00000000 0x9 zephyr/libzephyr.a(soc.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .debug_info 0x00000000 0x79 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .debug_abbrev 0x00000000 0x26 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .debug_aranges + 0x00000000 0x18 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .debug_line 0x00000000 0x68 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .debug_str 0x00000000 0x23b zephyr/libzephyr.a(esp32s3-mp.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(loader.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(loader.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(loader.c.obj) + .entry_addr 0x00000000 0x4 zephyr/libzephyr.a(loader.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(hw_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(hw_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(hw_init.c.obj) + .literal.z_log_timestamp + 0x00000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .literal.log_format_set_all_active_backends + 0x00000000 0xc zephyr/libzephyr.a(log_core.c.obj) + .literal.log_init + 0x00000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .literal.log_thread_trigger + 0x00000000 0x10 zephyr/libzephyr.a(log_core.c.obj) + .literal.unordered_notify + 0x00000000 0x10 zephyr/libzephyr.a(log_core.c.obj) + .literal.z_impl_log_buffered_cnt + 0x00000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .literal.z_log_dropped_pending + 0x00000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .literal.z_log_msg_claim_oldest + 0x00000000 0x20 zephyr/libzephyr.a(log_core.c.obj) + .literal.z_log_msg_claim + 0x00000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .literal.z_log_msg_enqueue + 0x00000000 0x18 zephyr/libzephyr.a(log_core.c.obj) + .literal.log_mem_get_usage + 0x00000000 0x8 zephyr/libzephyr.a(log_core.c.obj) + .literal.log_mem_get_max_usage + 0x00000000 0x8 zephyr/libzephyr.a(log_core.c.obj) + .literal.log_flush + 0x00000000 0xc zephyr/libzephyr.a(log_core.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(log_core.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(log_core.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(log_core.c.obj) + .text.log_format_table_size + 0x00000000 0x7 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_timestamp + 0x00000000 0x10 zephyr/libzephyr.a(log_core.c.obj) + .text.log_format_set_all_active_backends + 0x00000000 0x41 zephyr/libzephyr.a(log_core.c.obj) + .text.log_init + 0x00000000 0xf zephyr/libzephyr.a(log_core.c.obj) + .text.log_thread_trigger + 0x00000000 0x17 zephyr/libzephyr.a(log_core.c.obj) + .text.log_thread_set + 0x00000000 0x5 zephyr/libzephyr.a(log_core.c.obj) + .rodata.unordered_notify.str1.1 + 0x00000000 0x28 zephyr/libzephyr.a(log_core.c.obj) + .text.unordered_notify + 0x00000000 0x2b zephyr/libzephyr.a(log_core.c.obj) + .text.z_impl_log_buffered_cnt + 0x00000000 0xa zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_dropped_pending + 0x00000000 0xf zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_claim_oldest + 0x00000000 0x61 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_claim + 0x00000000 0xd zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_enqueue + 0x00000000 0x78 zephyr/libzephyr.a(log_core.c.obj) + .text.log_set_tag + 0x00000000 0x8 zephyr/libzephyr.a(log_core.c.obj) + .text.log_mem_get_usage + 0x00000000 0x14 zephyr/libzephyr.a(log_core.c.obj) + .text.log_mem_get_max_usage + 0x00000000 0x12 zephyr/libzephyr.a(log_core.c.obj) + .text.log_flush + 0x00000000 0x2c zephyr/libzephyr.a(log_core.c.obj) + .bss.unordered_cnt + 0x00000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.prev_timestamp + 0x00000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .literal.source_id_cmp + 0x00000000 0x4 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.z_log_link_get_dynamic_filter + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.z_log_ext_domain_count + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.log_src_cnt_get + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.log_domain_name_get + 0x00000000 0x4 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.log_compiled_level_get + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.z_log_link_set_runtime_level + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.z_log_runtime_filters_init + 0x00000000 0xc zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.log_source_id_get + 0x00000000 0xc zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.filter_set + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.z_impl_log_filter_set + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.z_impl_log_frontend_filter_set + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.log_backend_get_by_name + 0x00000000 0xc zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.log_filter_get + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.z_log_links_initiate + 0x00000000 0x24 zephyr/libzephyr.a(log_mgmt.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(log_mgmt.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.domain_id_cmp + 0x00000000 0xe zephyr/libzephyr.a(log_mgmt.c.obj) + .text.source_id_cmp + 0x00000000 0x14 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_link_get_dynamic_filter + 0x00000000 0x45 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_ext_domain_count + 0x00000000 0x1f zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_src_cnt_get + 0x00000000 0x11 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.log_domain_name_get.str1.1 + 0x00000000 0x1 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_domain_name_get + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_compiled_level_get + 0x00000000 0x1c zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_link_set_runtime_level + 0x00000000 0x45 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_runtime_filters_init + 0x00000000 0x34 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_source_id_get + 0x00000000 0x33 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.filter_set + 0x00000000 0x1f zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_impl_log_filter_set + 0x00000000 0x1f zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_impl_log_frontend_filter_set + 0x00000000 0x1f zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_backend_get_by_name + 0x00000000 0x26 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_backend_disable + 0x00000000 0xc zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_filter_get + 0x00000000 0x1f zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_frontend_filter_get + 0x00000000 0x7 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_links_initiate + 0x00000000 0x43 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.sname_cache_config$0 + 0x00000000 0x10 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.dname_cache_config$1 + 0x00000000 0x10 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.sname_cache + 0x00000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.dname_cache + 0x00000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.sname_cache_buffer + 0x00000000 0x9 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.dname_cache_buffer + 0x00000000 0x9 zephyr/libzephyr.a(log_mgmt.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(log_cache.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(log_cache.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_init + 0x00000000 0x56 zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_get + 0x00000000 0xa6 zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_put + 0x00000000 0x14 zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_release + 0x00000000 0x14 zephyr/libzephyr.a(log_cache.c.obj) + .debug_frame 0x00000000 0x70 zephyr/libzephyr.a(log_cache.c.obj) + .debug_info 0x00000000 0x10a7 zephyr/libzephyr.a(log_cache.c.obj) + .debug_abbrev 0x00000000 0x2be zephyr/libzephyr.a(log_cache.c.obj) + .debug_loc 0x00000000 0x9c4 zephyr/libzephyr.a(log_cache.c.obj) + .debug_aranges + 0x00000000 0x38 zephyr/libzephyr.a(log_cache.c.obj) + .debug_ranges 0x00000000 0x1d8 zephyr/libzephyr.a(log_cache.c.obj) + .debug_line 0x00000000 0xf44 zephyr/libzephyr.a(log_cache.c.obj) + .debug_str 0x00000000 0x4b8 zephyr/libzephyr.a(log_cache.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(log_cache.c.obj) + .literal.z_impl_z_log_msg_simple_create_2 + 0x00000000 0x4 zephyr/libzephyr.a(log_msg.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(log_msg.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(log_msg.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(log_msg.c.obj) + .text.z_impl_z_log_msg_simple_create_2 + 0x00000000 0x1a zephyr/libzephyr.a(log_msg.c.obj) + .literal.log_output_timestamp_to_us + 0x00000000 0xc zephyr/libzephyr.a(log_output.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(log_output.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(log_output.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(log_output.c.obj) + .text.log_output_timestamp_to_us + 0x00000000 0x2a zephyr/libzephyr.a(log_output.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_enter + 0x00000000 0x5 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_exit + 0x00000000 0x5 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_exit_to_scheduler + 0x00000000 0x5 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_idle + 0x00000000 0x5 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_idle_exit + 0x00000000 0x5 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_frame 0x00000000 0x88 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_info 0x00000000 0xb9 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_abbrev 0x00000000 0x5e zephyr/libzephyr.a(tracing_none.c.obj) + .debug_aranges + 0x00000000 0x40 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_ranges 0x00000000 0x30 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_line 0x00000000 0xc3 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_str 0x00000000 0x2a0 zephyr/libzephyr.a(tracing_none.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(tracing_none.c.obj) + .literal.k_mutex_lock$constprop$0$isra$0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.k_mutex_unlock$constprop$0$isra$0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_blob + 0x00000000 0x14 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_bit + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_cnt + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_blob + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_cnt + 0x00000000 0x30 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_bit + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_reg + 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_block + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_reg + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_block + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_begin + 0x00000000 0x1c zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_cancel + 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_commit + 0x00000000 0x28 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_check_errors + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_destroy_block + 0x00000000 0x4c zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.k_mutex_lock$constprop$0$isra$0 + 0x00000000 0x12 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.k_mutex_unlock$constprop$0$isra$0 + 0x00000000 0xe zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_blob + 0x00000000 0x62 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_bit + 0x00000000 0x26 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_cnt + 0x00000000 0x46 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_blob + 0x00000000 0x70 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_write_field_cnt.str1.1 + 0x00000000 0x48 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_cnt + 0x00000000 0x90 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_bit + 0x00000000 0x42 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_get_field_size + 0x00000000 0x1e zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_reg + 0x00000000 0x4e zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_block + 0x00000000 0x46 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_reg + 0x00000000 0x22 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_block + 0x00000000 0x46 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_begin.str1.1 + 0x00000000 0x31 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_begin + 0x00000000 0x39 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_cancel.str1.1 + 0x00000000 0x57 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_cancel + 0x00000000 0x45 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_commit.str1.1 + 0x00000000 0x33 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_commit + 0x00000000 0x56 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_check_errors + 0x00000000 0xd zephyr/libzephyr.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_destroy_block.str1.1 + 0x00000000 0x10b zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_destroy_block + 0x00000000 0xd6 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .bss.s_batch_writing_mode + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api.c.obj) + ._k_mutex.static.s_efuse_lock_ + 0x00000000 0x14 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_frame 0x00000000 0x1c0 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_info 0x00000000 0x1793 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_abbrev 0x00000000 0x502 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_loc 0x00000000 0x69f zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_aranges + 0x00000000 0xa8 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_ranges 0x00000000 0x98 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_line 0x00000000 0x149a zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_str 0x00000000 0xd48 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_reset + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_read_secure_version + 0x00000000 0x14 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_check_secure_version + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_update_secure_version + 0x00000000 0x40 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .iram1.0.literal + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_reset + 0x00000000 0xb zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_read_secure_version + 0x00000000 0x40 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_check_secure_version + 0x00000000 0xb1 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .rodata.esp_efuse_update_secure_version.str1.1 + 0x00000000 0x121 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_update_secure_version + 0x00000000 0xae zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .iram1.0 0x00000000 0xd zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_frame 0x00000000 0x88 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_info 0x00000000 0x61c zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x00000000 0x1f2 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_loc 0x00000000 0x20f zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_aranges + 0x00000000 0x40 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_ranges 0x00000000 0x30 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_line 0x00000000 0xa1d zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_str 0x00000000 0x66e zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.write_reg + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_process + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_reset + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_efuses + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_update_virt_blocks + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_single_block + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_pending + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_blocks + 0x00000000 0x14 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_read_reg + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_fill_buff + 0x00000000 0x10 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_count_once + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_cnt + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_reg + 0x00000000 0x14 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_blob + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_get_read_register_address + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_is_correct_written_data + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.write_reg + 0x00000000 0x3c zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_process.str1.1 + 0x00000000 0x3e zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_process + 0x00000000 0x104 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_reset + 0x00000000 0x47 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_efuses + 0x00000000 0x28 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_erase_virt_blocks + 0x00000000 0x5 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_update_virt_blocks.str1.1 + 0x00000000 0x23 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_update_virt_blocks + 0x00000000 0x11 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_single_block.str1.1 + 0x00000000 0xd zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_single_block + 0x00000000 0x66 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_pending + 0x00000000 0x36 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_blocks.str1.1 + 0x00000000 0xd zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_blocks + 0x00000000 0x2a zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_number_of_items + 0x00000000 0x12 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_read_reg + 0x00000000 0x2b zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_fill_buff + 0x00000000 0xaa zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_count_once + 0x00000000 0x3c zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_cnt + 0x00000000 0x71 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_write_reg.str1.1 + 0x00000000 0x4e zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_reg + 0x00000000 0x36 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_blob + 0x00000000 0x9e zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_read_register_address + 0x00000000 0x18 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_is_correct_written_data.str1.1 + 0x00000000 0xab zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_is_correct_written_data + 0x00000000 0x6e zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .bss.s_burn_counter + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_frame 0x00000000 0x1c0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_info 0x00000000 0x12c3 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00000000 0x44a zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_loc 0x00000000 0xf6e zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x00000000 0xa8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00000000 0x270 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_line 0x00000000 0x189b zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_str 0x00000000 0xa2e zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SYS_DATA_PART2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY5 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY4 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USER_DATA_MAC_CUSTOM + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USER_DATA + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_OCODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_TEMP_CALIB + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLK_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_OPTIONAL_UNIQUE_ID + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MINOR_HI + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIG_DBIAS_HVT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_V_DIG_DBIAS20 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_V_RTC_DBIAS20 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_K_DIG_LDO + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_K_RTC_LDO + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PSRAM_VENDOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PSRAM_TEMP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PSRAM_CAP + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_VENDOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_TEMP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_CAP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLK_VERSION_MINOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PKG_VERSION + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MINOR_LO + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D7 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D6 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D5 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D4 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_DQS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_WP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_HD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_Q + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CLK + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC + 0x00000000 0x1c zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_OTG_DOWNLOAD_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_VERSION + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FORCE_SEND_RESUME + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_ECC_EN + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_PAGE_SIZE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_TYPE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PIN_POWER_SELECTION + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_UART_PRINT_CONTROL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_ECC_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DIRECT_BOOT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_TPUW + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USB_PHY_SEL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_STRAP_JTAG_SEL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_SERIAL_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_EN + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_5 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_4 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_BOOT_CRYPT_CNT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WDT_DELAY_SEL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VDD_SPI_FORCE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VDD_SPI_TIEH + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VDD_SPI_XPD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USB_EXT_PHY_ENABLE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USB_EXCHG_PINS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_PAD_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SOFT_DIS_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_APP_CPU + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_TWAI + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_OTG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_FORCE_DOWNLOAD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_DCACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_ICACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DCACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_ICACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY5 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY4 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SOFT_DIS_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_USB_EXT_PHY_ENABLE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_USB_EXCHG_PINS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY5 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY4 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CUSTOM_MAC + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_USR_DATA + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_OCODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_TEMP_CALIB + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_OPTIONAL_UNIQUE_ID + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SYS_DATA_PART1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WAFER_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_HI + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIG_DBIAS_HVT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_V_DIG_DBIAS20 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_V_RTC_DBIAS20 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_K_DIG_LDO + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_K_RTC_LDO + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PSRAM_VENDOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PSRAM_TEMP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PSRAM_CAP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_VENDOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_TEMP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_CAP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK_VERSION_MINOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PKG_VERSION + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_LO + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D7 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D6 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D5 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D4 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_DQS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_WP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_HD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_Q + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CLK + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_OTG_DOWNLOAD_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_VERSION + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FORCE_SEND_RESUME + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_ECC_EN + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_PAGE_SIZE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_TYPE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PIN_POWER_SELECTION + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_UART_PRINT_CONTROL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_ECC_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DIRECT_BOOT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_TPUW + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_EN + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_5 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_4 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WDT_DELAY_SEL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_VDD_SPI_FORCE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_VDD_SPI_TIEH + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_VDD_SPI_XPD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_USB_PHY_SEL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_STRAP_JTAG_SEL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_PAD_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_APP_CPU + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_TWAI + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_OTG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_FORCE_DOWNLOAD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_DCACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_ICACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DCACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_ICACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_RD_DIS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SYS_DATA_PART2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY5 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY4 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY3 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY2 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY1 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY0 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.USER_DATA_MAC_CUSTOM + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.USER_DATA + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.OCODE 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.TEMP_CALIB + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.BLK_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.OPTIONAL_UNIQUE_ID + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MINOR_HI + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIG_DBIAS_HVT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.V_DIG_DBIAS20 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.V_RTC_DBIAS20 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.K_DIG_LDO + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.K_RTC_LDO + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.PSRAM_VENDOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.PSRAM_TEMP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.PSRAM_CAP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_VENDOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_TEMP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_CAP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.BLK_VERSION_MINOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.PKG_VERSION + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MINOR_LO + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D7 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D6 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D5 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D4 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_DQS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_WP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_HD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_Q + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CLK + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.MAC 0x00000000 0x18 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_OTG_DOWNLOAD_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SECURE_VERSION + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FORCE_SEND_RESUME + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_ECC_EN + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_PAGE_SIZE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_TYPE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.PIN_POWER_SELECTION + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.UART_PRINT_CONTROL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_ECC_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_DIRECT_BOOT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_TPUW + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.USB_PHY_SEL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.STRAP_JTAG_SEL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_SERIAL_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_EN + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_5 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_4 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_BOOT_CRYPT_CNT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WDT_DELAY_SEL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.VDD_SPI_FORCE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.VDD_SPI_TIEH + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.VDD_SPI_XPD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.USB_EXT_PHY_ENABLE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.USB_EXCHG_PINS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_PAD_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SOFT_DIS_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_APP_CPU + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_TWAI + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_OTG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_FORCE_DOWNLOAD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_DCACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_ICACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_DCACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_ICACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY5 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY4 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SOFT_DIS_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_USB_EXT_PHY_ENABLE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_USB_EXCHG_PINS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY5 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY4 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CUSTOM_MAC + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_USR_DATA + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_CAL_VOL_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_CAL_VOL_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_CAL_VOL_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_INIT_CODE_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_INIT_CODE_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_INIT_CODE_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_INIT_CODE_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_OCODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_TEMP_CALIB + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_OPTIONAL_UNIQUE_ID + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SYS_DATA_PART1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_CAL_VOL_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WAFER_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WAFER_VERSION_MINOR_HI + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIG_DBIAS_HVT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_V_DIG_DBIAS20 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_V_RTC_DBIAS20 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_K_DIG_LDO + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_K_RTC_LDO + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PSRAM_VENDOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PSRAM_TEMP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PSRAM_CAP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_VENDOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_TEMP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_CAP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK_VERSION_MINOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PKG_VERSION + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WAFER_VERSION_MINOR_LO + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D7 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D6 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D5 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D4 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_DQS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_WP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_HD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_CS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_Q + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_CLK + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_OTG_DOWNLOAD_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_VERSION + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FORCE_SEND_RESUME + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_ECC_EN + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_PAGE_SIZE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_TYPE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PIN_POWER_SELECTION + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_UART_PRINT_CONTROL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_ECC_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DIRECT_BOOT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DOWNLOAD_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_TPUW + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_EN + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_5 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_4 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_BOOT_CRYPT_CNT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WDT_DELAY_SEL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_VDD_SPI_FORCE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_VDD_SPI_TIEH + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_VDD_SPI_XPD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_USB_PHY_SEL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_STRAP_JTAG_SEL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_SERIAL_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_PAD_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_APP_CPU + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_TWAI + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_OTG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_FORCE_DOWNLOAD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DOWNLOAD_DCACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DOWNLOAD_ICACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DCACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_ICACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_RD_DIS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .debug_info 0x00000000 0x2e13 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .debug_abbrev 0x00000000 0x119 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .debug_aranges + 0x00000000 0x18 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .debug_line 0x00000000 0x29e zephyr/libzephyr.a(esp_efuse_table.c.obj) + .debug_str 0x00000000 0x3007 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .literal.esp_efuse_get_pkg_ver + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_disable_rom_download_mode + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_set_rom_log_scheme + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_enable_rom_secure_download_mode + 0x00000000 0x10 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_get_pkg_ver + 0x00000000 0x1c zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_rom_download_mode + 0x00000000 0x10 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_set_rom_log_scheme + 0x00000000 0x38 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_enable_rom_secure_download_mode + 0x00000000 0x1e zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_frame 0x00000000 0x70 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_info 0x00000000 0x3c0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x00000000 0x184 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_loc 0x00000000 0x15 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_aranges + 0x00000000 0x38 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_line 0x00000000 0x519 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_str 0x00000000 0x629 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_utility_clear_program_registers + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_chip_opt + 0x00000000 0x88 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_chip + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_new_coding_scheme + 0x00000000 0x1c zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_clear_program_registers + 0x00000000 0x11 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_check_errors + 0x00000000 0x7 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_burn_chip_opt.str1.1 + 0x00000000 0x187 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip_opt + 0x00000000 0x1e3 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip + 0x00000000 0x11 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_apply_new_coding_scheme.str1.1 + 0x00000000 0x3b zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_new_coding_scheme + 0x00000000 0x76 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.range_write_addr_blocks + 0x00000000 0x58 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .bss.write_mass_blocks + 0x00000000 0x160 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.range_read_addr_blocks + 0x00000000 0x58 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_frame 0x00000000 0x88 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_info 0x00000000 0x87f zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00000000 0x260 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_loc 0x00000000 0x333 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x00000000 0x40 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00000000 0xf0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_line 0x00000000 0xb93 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_str 0x00000000 0x779 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_block_is_empty + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_write_protect + 0x00000000 0x18 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_read_protect + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_purpose_field + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_read + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_read + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_write + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_write + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_purpose + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_purpose + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_keypurpose_dis_write + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_keypurpose_dis_write + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_find_purpose + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_key_block_unused + 0x00000000 0x14 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_find_unused_key_block + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_count_unused_key_blocks + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_key + 0x00000000 0x34 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_keys + 0x00000000 0x34 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_digest_revoke + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_digest_revoke + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_write_protect_of_digest_revoke + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_write_protect_of_digest_revoke + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_secure_boot_read_key_digests + 0x00000000 0x18 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_block_is_empty + 0x00000000 0x31 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect + 0x00000000 0x54 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_read_protect + 0x00000000 0x32 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_coding_scheme + 0x00000000 0xa zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_purpose_field + 0x00000000 0x18 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key + 0x00000000 0x18 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_read + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_read + 0x00000000 0x22 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_write + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_write + 0x00000000 0x22 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_purpose + 0x00000000 0x3c zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_purpose + 0x00000000 0x32 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_keypurpose_dis_write + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_keypurpose_dis_write + 0x00000000 0x22 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_purpose + 0x00000000 0x25 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_key_block_unused + 0x00000000 0x48 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_unused_key_block + 0x00000000 0x16 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_count_unused_key_blocks + 0x00000000 0x19 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_key.str1.1 + 0x00000000 0x5f zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_key + 0x00000000 0xe6 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_keys.str1.1 + 0x00000000 0xc0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_keys + 0x00000000 0xca zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_digest_revoke + 0x00000000 0x21 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_digest_revoke + 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_write_protect_of_digest_revoke + 0x00000000 0x21 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect_of_digest_revoke + 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_secure_boot_read_key_digests + 0x00000000 0x62 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .rodata.s_revoke_table + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .rodata.s_table + 0x00000000 0x78 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_frame 0x00000000 0x268 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_info 0x00000000 0x1397 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_abbrev 0x00000000 0x338 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_loc 0x00000000 0xa01 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_aranges + 0x00000000 0xe0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_ranges 0x00000000 0x128 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_line 0x00000000 0x1519 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_str 0x00000000 0x107d zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_flash_write_protect_crypt_cnt + 0x00000000 0x8 zephyr/libzephyr.a(flash_encrypt.c.obj) + .literal.esp_get_flash_encryption_mode + 0x00000000 0x2c zephyr/libzephyr.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_init_checks + 0x00000000 0x14 zephyr/libzephyr.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_set_release_mode + 0x00000000 0x64 zephyr/libzephyr.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_cfg_verify_release_mode + 0x00000000 0xb0 zephyr/libzephyr.a(flash_encrypt.c.obj) + .iram1.0.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_encrypt.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(flash_encrypt.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(flash_encrypt.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(flash_encrypt.c.obj) + .text.esp_flash_write_protect_crypt_cnt + 0x00000000 0xe zephyr/libzephyr.a(flash_encrypt.c.obj) + .text.esp_get_flash_encryption_mode + 0x00000000 0x72 zephyr/libzephyr.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_init_checks.str1.1 + 0x00000000 0x73 zephyr/libzephyr.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_init_checks + 0x00000000 0x26 zephyr/libzephyr.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_set_release_mode.str1.1 + 0x00000000 0x6f zephyr/libzephyr.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_set_release_mode + 0x00000000 0xaa zephyr/libzephyr.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_cfg_verify_release_mode.str1.1 + 0x00000000 0x2d1 zephyr/libzephyr.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_cfg_verify_release_mode + 0x00000000 0x162 zephyr/libzephyr.a(flash_encrypt.c.obj) + .iram1.0 0x00000000 0xd zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_frame 0x00000000 0xa0 zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_info 0x00000000 0x8bf zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_abbrev 0x00000000 0x290 zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_loc 0x00000000 0x1b6 zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_aranges + 0x00000000 0x48 zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_ranges 0x00000000 0x38 zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_line 0x00000000 0xba1 zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_str 0x00000000 0xa00 zephyr/libzephyr.a(flash_encrypt.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(flash_encrypt.c.obj) + .literal.esp_gpio_reserve + 0x00000000 0x4 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .literal.esp_gpio_revoke + 0x00000000 0x4 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .literal.esp_gpio_is_reserved + 0x00000000 0x4 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .text.esp_gpio_reserve + 0x00000000 0x23 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .text.esp_gpio_revoke + 0x00000000 0x29 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .text.esp_gpio_is_reserved + 0x00000000 0x1a zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .data.s_reserved_pin_mask + 0x00000000 0x8 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_frame 0x00000000 0x58 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_info 0x00000000 0x258 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_abbrev 0x00000000 0x133 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_loc 0x00000000 0x136 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_ranges 0x00000000 0x50 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_line 0x00000000 0x3a9 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_str 0x00000000 0x2df zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .literal.spi_flash_hal_setup_auto_resume_mode + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .literal.spi_flash_hal_disable_auto_resume_mode + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .text.spi_flash_hal_enter_dpd_mode + 0x00000000 0x26 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .text.spi_flash_hal_exit_dpd_mode + 0x00000000 0x26 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .text.spi_flash_hal_setup_auto_resume_mode + 0x00000000 0x1a zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .text.spi_flash_hal_disable_auto_resume_mode + 0x00000000 0x1a zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .literal.esp_opiflash_set_required_regs + 0x00000000 0x8 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .text.esp_opiflash_set_required_regs + 0x00000000 0x16 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .literal.read_unique_id + 0x00000000 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.find_region + 0x00000000 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_read_id + 0x00000000 0x8 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_read_unique_chip_id + 0x00000000 0x1c zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_get_size + 0x00000000 0x8 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_erase_region + 0x00000000 0xc zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_erase_chip + 0x00000000 0x14 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_get_chip_write_protect + 0x00000000 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_set_chip_write_protect + 0x00000000 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_get_protectable_regions + 0x00000000 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_get_protected_region + 0x00000000 0xc zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_set_protected_region + 0x00000000 0xc zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_read + 0x00000000 0x10 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_write + 0x00000000 0x1c zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_read_encrypted + 0x00000000 0x14 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_get_io_mode + 0x00000000 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_set_io_mode + 0x00000000 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_write_encrypted + 0x00000000 0x38 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_suspend_cmd_init + 0x00000000 0x1c zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_app_disable_protect + 0x00000000 0xc zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_init + 0x00000000 0x3c zephyr/libzephyr.a(esp_flash_api.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.read_unique_id + 0x00000000 0x30 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.find_region + 0x00000000 0x3b zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_chip_driver_initialized + 0x00000000 0xc zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_read_id + 0x00000000 0x36 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_read_unique_chip_id + 0x00000000 0x64 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_get_size + 0x00000000 0x36 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_erase_region + 0x00000000 0x1e9 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_erase_chip + 0x00000000 0x38 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_get_chip_write_protect + 0x00000000 0x4c zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_set_chip_write_protect + 0x00000000 0x4e zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_get_protectable_regions + 0x00000000 0x46 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_get_protected_region + 0x00000000 0x8d zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_set_protected_region + 0x00000000 0x9d zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_read + 0x00000000 0x116 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_write + 0x00000000 0x162 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_read_encrypted + 0x00000000 0x64 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_get_io_mode + 0x00000000 0x5b zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_set_io_mode + 0x00000000 0x52 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_write_encrypted + 0x00000000 0x1e6 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_suspend_cmd_init + 0x00000000 0x52 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_app_disable_protect + 0x00000000 0x21 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_init + 0x00000000 0x104 zephyr/libzephyr.a(esp_flash_api.c.obj) + .iram1.0.literal + 0x00000000 0x18 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_remove_flash_device + 0x00000000 0x2c zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_add_flash_device + 0x00000000 0x7c zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .iram1.0 0x00000000 0x13f zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .text.spi_bus_remove_flash_device + 0x00000000 0x8e zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .rodata.spi_bus_add_flash_device.str1.1 + 0x00000000 0x77 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .text.spi_bus_add_flash_device + 0x00000000 0x287 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .text.esp_flash_spi_init_include_func + 0x00000000 0x5 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .rodata.CSWTCH$57 + 0x00000000 0xc zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .literal.spi_flash_mmap + 0x00000000 0x14 zephyr/libzephyr.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_pages + 0x00000000 0x24 zephyr/libzephyr.a(flash_mmap.c.obj) + .literal.spi_flash_munmap + 0x00000000 0x10 zephyr/libzephyr.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_dump + 0x00000000 0x8 zephyr/libzephyr.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_get_free_pages + 0x00000000 0x4 zephyr/libzephyr.a(flash_mmap.c.obj) + .literal.spi_flash_cache2phys + 0x00000000 0x4 zephyr/libzephyr.a(flash_mmap.c.obj) + .literal.spi_flash_phys2cache + 0x00000000 0x8 zephyr/libzephyr.a(flash_mmap.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(flash_mmap.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(flash_mmap.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(flash_mmap.c.obj) + .text.spi_flash_mmap + 0x00000000 0x8b zephyr/libzephyr.a(flash_mmap.c.obj) + .text.spi_flash_mmap_pages + 0x00000000 0x15f zephyr/libzephyr.a(flash_mmap.c.obj) + .text.spi_flash_munmap + 0x00000000 0x3a zephyr/libzephyr.a(flash_mmap.c.obj) + .text.spi_flash_mmap_dump + 0x00000000 0x10 zephyr/libzephyr.a(flash_mmap.c.obj) + .text.spi_flash_mmap_get_free_pages + 0x00000000 0x1d zephyr/libzephyr.a(flash_mmap.c.obj) + .text.spi_flash_cache2phys + 0x00000000 0x24 zephyr/libzephyr.a(flash_mmap.c.obj) + .text.spi_flash_phys2cache + 0x00000000 0x30 zephyr/libzephyr.a(flash_mmap.c.obj) + .iram1.3.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_ops.c.obj) + .iram1.6.literal + 0x00000000 0x8 zephyr/libzephyr.a(flash_ops.c.obj) + .literal.esp_mspi_get_io + 0x00000000 0x14 zephyr/libzephyr.a(flash_ops.c.obj) + .literal.esp_mspi_pin_reserve + 0x00000000 0x10 zephyr/libzephyr.a(flash_ops.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(flash_ops.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(flash_ops.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(flash_ops.c.obj) + .iram1.3 0x00000000 0xa zephyr/libzephyr.a(flash_ops.c.obj) + .iram1.6 0x00000000 0x1f zephyr/libzephyr.a(flash_ops.c.obj) + .text.esp_mspi_get_io + 0x00000000 0x63 zephyr/libzephyr.a(flash_ops.c.obj) + .text.esp_mspi_pin_reserve + 0x00000000 0x4a zephyr/libzephyr.a(flash_ops.c.obj) + .rodata.s_mspi_io_num_default + 0x00000000 0xb zephyr/libzephyr.a(flash_ops.c.obj) + .dram1.1 0x00000000 0x8 zephyr/libzephyr.a(flash_ops.c.obj) + .literal.memspi_host_read + 0x00000000 0x4 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .text.memspi_host_read + 0x00000000 0x30 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .literal.spi_flash_hpm_get_dummy + 0x00000000 0x8 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .text.spi_flash_enable_high_performance_mode + 0x00000000 0x7 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .text.spi_flash_hpm_dummy_adjust + 0x00000000 0x7 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .text.spi_flash_hpm_get_dummy_generic + 0x00000000 0x1a zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .text.spi_flash_hpm_get_dummy + 0x00000000 0x10 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .bss.s_dummy_conf + 0x00000000 0x5 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .debug_frame 0x00000000 0x70 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .debug_info 0x00000000 0x45f zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .debug_abbrev 0x00000000 0x114 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .debug_aranges + 0x00000000 0x38 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .debug_line 0x00000000 0x421 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .debug_str 0x00000000 0xe6f zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .literal.esp_flash_app_disable_os_functions + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .text.get_temp_buffer_not_supported + 0x00000000 0x7 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .text.esp_flash_app_disable_os_functions + 0x00000000 0xc zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .literal.spi23_end + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .literal.spi23_start + 0x00000000 0x8 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .literal.esp_flash_init_os_functions + 0x00000000 0x10 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .literal.esp_flash_deinit_os_functions + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text.spi23_end + 0x00000000 0x10 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text.spi23_start + 0x00000000 0x1e zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_os_functions + 0x00000000 0x47 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_deinit_os_functions + 0x00000000 0x1e zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_main_bus_lock + 0x00000000 0x8 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_set_dangerous_write_protection + 0x00000000 0x23 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .rodata.esp_flash_spi23_default_os_functions + 0x00000000 0x28 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .literal.spi_flash_wrap_probe_c0 + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_enable_c0 + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_enable_77 + 0x00000000 0x8 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_clear_c0 + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_clear_77 + 0x00000000 0x8 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_probe + 0x00000000 0xc zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_enable + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_disable + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_support_wrap_size + 0x00000000 0x18 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_probe_c0 + 0x00000000 0x12 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_enable_c0 + 0x00000000 0x2e zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_enable_77 + 0x00000000 0x5a zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_clear_c0 + 0x00000000 0x1e zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_clear_77 + 0x00000000 0x46 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_probe + 0x00000000 0x47 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_enable + 0x00000000 0x30 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_disable + 0x00000000 0x2d zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .rodata.spi_flash_support_wrap_size.str1.1 + 0x00000000 0x3d zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_support_wrap_size + 0x00000000 0x49 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .bss.chip_wrap + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .rodata.str1.1 + 0x00000000 0xf zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .rodata.spi_flash_wrap_list + 0x00000000 0x20 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_frame 0x00000000 0xe8 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_info 0x00000000 0x8d8 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_abbrev 0x00000000 0x234 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_loc 0x00000000 0x2ea zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_aranges + 0x00000000 0x60 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_ranges 0x00000000 0x50 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_line 0x00000000 0x800 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_str 0x00000000 0x10a4 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_op_lock + 0x00000000 0x8 zephyr/libzephyr.a(cache_utils.c.obj) + .literal.spi_flash_op_unlock + 0x00000000 0x8 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.2.literal + 0x00000000 0x8 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.3.literal + 0x00000000 0x8 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.4.literal + 0x00000000 0x4 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.5.literal + 0x00000000 0x4 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.6.literal + 0x00000000 0x4 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.7.literal + 0x00000000 0x4 zephyr/libzephyr.a(cache_utils.c.obj) + .literal.esp_enable_cache_wrap + 0x00000000 0x14 zephyr/libzephyr.a(cache_utils.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(cache_utils.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(cache_utils.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(cache_utils.c.obj) + .text.spi_flash_op_lock + 0x00000000 0x12 zephyr/libzephyr.a(cache_utils.c.obj) + .text.spi_flash_op_unlock + 0x00000000 0xe zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.2 0x00000000 0x11 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.3 0x00000000 0x11 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.4 0x00000000 0xb zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.5 0x00000000 0xb zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.6 0x00000000 0xb zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.7 0x00000000 0x11 zephyr/libzephyr.a(cache_utils.c.obj) + .rodata.esp_enable_cache_wrap.str1.1 + 0x00000000 0x79 zephyr/libzephyr.a(cache_utils.c.obj) + .text.esp_enable_cache_wrap + 0x00000000 0x32 zephyr/libzephyr.a(cache_utils.c.obj) + ._k_mutex.static.s_flash_op_mutex_ + 0x00000000 0x14 zephyr/libzephyr.a(cache_utils.c.obj) + .literal.uart_hal_set_sw_flow_ctrl + 0x00000000 0x4 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_set_at_cmd_char + 0x00000000 0x4 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_set_tx_idle_num + 0x00000000 0x4 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_init + 0x00000000 0xc zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_get_max_rx_timeout_thrd + 0x00000000 0x4 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_get_port_num + 0x00000000 0xc zephyr/libzephyr.a(uart_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(uart_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(uart_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_set_sw_flow_ctrl + 0x00000000 0xcb zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_set_at_cmd_char + 0x00000000 0xe2 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_set_tx_idle_num + 0x00000000 0x22 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_set_dtr + 0x00000000 0x20 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_set_wakeup_edge_thrd + 0x00000000 0x20 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_get_wakeup_edge_thrd + 0x00000000 0x13 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_is_hw_rts_en + 0x00000000 0xf zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_set_loop_back + 0x00000000 0x22 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_init + 0x00000000 0xbb zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_get_max_rx_timeout_thrd + 0x00000000 0x17 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_get_port_num + 0x00000000 0x22 zephyr/libzephyr.a(uart_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .text.uart_hal_tx_break + 0x00000000 0x53 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .literal.spi_hal_set_data_pin_idle_level + 0x00000000 0x10 zephyr/libzephyr.a(spi_hal.c.obj) + .literal.spi_hal_sct_init + 0x00000000 0x4 zephyr/libzephyr.a(spi_hal.c.obj) + .literal.spi_hal_sct_deinit + 0x00000000 0x4 zephyr/libzephyr.a(spi_hal.c.obj) + .literal.spi_hal_master_cal_clock + 0x00000000 0x8 zephyr/libzephyr.a(spi_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_hal.c.obj) + .text.spi_hal_set_data_pin_idle_level + 0x00000000 0x7e zephyr/libzephyr.a(spi_hal.c.obj) + .text.spi_hal_deinit + 0x00000000 0x2e zephyr/libzephyr.a(spi_hal.c.obj) + .text.spi_hal_sct_init + 0x00000000 0x70 zephyr/libzephyr.a(spi_hal.c.obj) + .text.spi_hal_sct_deinit + 0x00000000 0x64 zephyr/libzephyr.a(spi_hal.c.obj) + .text.spi_hal_master_cal_clock + 0x00000000 0x14a zephyr/libzephyr.a(spi_hal.c.obj) + .literal.spi_hal_hw_prepare_rx + 0x00000000 0x4 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .literal.spi_hal_sct_set_conf_bits_len + 0x00000000 0x4 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .literal.spi_hal_sct_init_conf_buffer + 0x00000000 0x4 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .literal.spi_hal_sct_format_conf_buffer + 0x00000000 0x28 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text.spi_hal_hw_prepare_rx + 0x00000000 0x48 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text.spi_hal_hw_prepare_tx + 0x00000000 0x47 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text.spi_hal_get_intr_mask + 0x00000000 0xb0 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text.spi_hal_clear_intr_mask + 0x00000000 0xfa zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text.spi_hal_sct_set_conf_bits_len + 0x00000000 0x23 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text.spi_hal_sct_init_conf_buffer + 0x00000000 0x6e zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text.spi_hal_sct_format_conf_buffer + 0x00000000 0x252 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .literal.lldesc_setup_link_constrained + 0x00000000 0xc zephyr/libzephyr.a(lldesc.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(lldesc.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(lldesc.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(lldesc.c.obj) + .text.lldesc_setup_link_constrained + 0x00000000 0xc7 zephyr/libzephyr.a(lldesc.c.obj) + .text.lldesc_get_received_len + 0x00000000 0x2a zephyr/libzephyr.a(lldesc.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(lldesc.c.obj) + .debug_info 0x00000000 0x2bb zephyr/libzephyr.a(lldesc.c.obj) + .debug_abbrev 0x00000000 0x1a9 zephyr/libzephyr.a(lldesc.c.obj) + .debug_loc 0x00000000 0x15c zephyr/libzephyr.a(lldesc.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(lldesc.c.obj) + .debug_ranges 0x00000000 0x38 zephyr/libzephyr.a(lldesc.c.obj) + .debug_line 0x00000000 0x498 zephyr/libzephyr.a(lldesc.c.obj) + .debug_str 0x00000000 0x315 zephyr/libzephyr.a(lldesc.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(lldesc.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_deinit + 0x00000000 0x9 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_start_with_desc + 0x00000000 0x12 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_stop + 0x00000000 0x10 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_append + 0x00000000 0x10 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_reset + 0x00000000 0x10 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_set_priority + 0x00000000 0x12 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_connect_peri + 0x00000000 0x12 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_connect_mem + 0x00000000 0x12 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_disconnect_all + 0x00000000 0x10 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_enable_burst + 0x00000000 0x16 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_set_burst_size + 0x00000000 0x14 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_set_strategy + 0x00000000 0x1a zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_enable_intr + 0x00000000 0x16 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_clear_intr + 0x00000000 0x12 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_read_intr_status + 0x00000000 0x16 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_get_intr_status_reg + 0x00000000 0x12 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_get_eof_desc_addr + 0x00000000 0x16 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_frame 0x00000000 0x1a8 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_info 0x00000000 0x20aa zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_abbrev 0x00000000 0x2c9 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_loc 0x00000000 0x81 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_aranges + 0x00000000 0xa0 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_ranges 0x00000000 0x90 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_line 0x00000000 0x6d2 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_str 0x00000000 0xe09 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .literal.gdma_ahb_hal_init + 0x00000000 0x48 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_start_with_desc + 0x00000000 0x76 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_stop + 0x00000000 0x41 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_append + 0x00000000 0x41 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_reset + 0x00000000 0x54 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_set_priority + 0x00000000 0x45 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_connect_peri + 0x00000000 0x55 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_connect_mem + 0x00000000 0x56 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_disconnect_all + 0x00000000 0x4a zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_enable_burst + 0x00000000 0x7d zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_set_strategy + 0x00000000 0x8f zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_clear_intr + 0x00000000 0x21 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_read_intr_status + 0x00000000 0x3c zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_get_intr_status_reg + 0x00000000 0x1a zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_set_burst_size + 0x00000000 0x6b zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_get_eof_desc_addr + 0x00000000 0x36 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_enable_intr + 0x00000000 0x56 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_init + 0x00000000 0x67 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .data.gdma_ahb_hal_priv_data + 0x00000000 0x4 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_frame 0x00000000 0x1a8 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_info 0x00000000 0x312b zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_abbrev 0x00000000 0x469 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_loc 0x00000000 0x10a9 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_aranges + 0x00000000 0xa0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_ranges 0x00000000 0x228 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_line 0x00000000 0x12b0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_str 0x00000000 0x130c zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .literal.bootloader_clock_configure + 0x00000000 0x34 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .rodata 0x00000000 0x8 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .text.bootloader_clock_configure + 0x00000000 0xce zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .debug_frame 0x00000000 0x28 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .debug_info 0x00000000 0x361 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .debug_abbrev 0x00000000 0x12c zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .debug_line 0x00000000 0x4c9 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .debug_str 0x00000000 0x7a0 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(mpu_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(mpu_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(mpu_hal.c.obj) + .text.mpu_hal_set_region_access + 0x00000000 0x38 zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_frame 0x00000000 0x28 zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_info 0x00000000 0x233 zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_abbrev 0x00000000 0x158 zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_loc 0x00000000 0x7f zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_line 0x00000000 0x37d zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_str 0x00000000 0x336 zephyr/libzephyr.a(mpu_hal.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(mpu_hal.c.obj) + .iram1.3.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.4.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.6.literal + 0x00000000 0x8 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.7.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.8.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.10.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.11.literal + 0x00000000 0x14 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.12.literal + 0x00000000 0x18 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .literal.bootloader_enable_qio_mode + 0x00000000 0x50 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.5.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.9.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.3 0x00000000 0x15 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.4 0x00000000 0x15 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.6 0x00000000 0x29 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.7 0x00000000 0x13 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.8 0x00000000 0x13 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.10 0x00000000 0x13 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.11 0x00000000 0x3c zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.12 0x00000000 0x42 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .rodata.bootloader_enable_qio_mode.str1.1 + 0x00000000 0x90 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .text.bootloader_enable_qio_mode + 0x00000000 0x15a zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.5 0x00000000 0x15 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.9 0x00000000 0x13 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .dram1.2 0x00000000 0x1 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .dram1.1 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .rodata.str1.1 + 0x00000000 0x22 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .dram1.0 0x00000000 0x7e zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_frame 0x00000000 0x118 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_info 0x00000000 0xc91 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_abbrev 0x00000000 0x31a zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_loc 0x00000000 0x173 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_aranges + 0x00000000 0x70 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_ranges 0x00000000 0x78 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_line 0x00000000 0xb34 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_str 0x00000000 0x1464 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .literal.bootloader_flash_update_id + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .literal.bootloader_flash_update_size + 0x00000000 0x4 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.0.literal + 0x00000000 0x10 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.1.literal + 0x00000000 0xc zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.2.literal + 0x00000000 0xc zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.4.literal + 0x00000000 0x20 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.3.literal + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .literal.bootloader_init_spi_flash + 0x00000000 0x68 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .text.bootloader_flash_update_id + 0x00000000 0x12 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .text.bootloader_flash_update_size + 0x00000000 0xc zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.0 0x00000000 0x99 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.1 0x00000000 0x28 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.2 0x00000000 0x28 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.4 0x00000000 0x7a zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.3 0x00000000 0x14 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.bootloader_init_spi_flash.str1.1 + 0x00000000 0x72 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .text.bootloader_init_spi_flash + 0x00000000 0xee zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.CSWTCH$30 + 0x00000000 0x10 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.CSWTCH$25 + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.str1.1 + 0x00000000 0x57 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.CSWTCH$23 + 0x00000000 0x20 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.CSWTCH$22 + 0x00000000 0x14 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.CSWTCH$21 + 0x00000000 0x40 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_frame 0x00000000 0xd0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_info 0x00000000 0xd1b zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_abbrev 0x00000000 0x2d2 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_loc 0x00000000 0x229 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_aranges + 0x00000000 0x58 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_ranges 0x00000000 0x48 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_line 0x00000000 0xbc0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_str 0x00000000 0x175f zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(console_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(console_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(console_init.c.obj) + .text.esp_console_deinit + 0x00000000 0x5 zephyr/libzephyr.a(console_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .literal.rtcio_ll_iomux_func_sel + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_io_number_get + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_init + 0x00000000 0x2c zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_deinit + 0x00000000 0x24 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_set_level + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_get_level + 0x00000000 0x1c zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_set_drive_capability + 0x00000000 0x2c zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_get_drive_capability + 0x00000000 0x28 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction_in_sleep + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_iomux_func_sel + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_en + 0x00000000 0x24 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_dis + 0x00000000 0x24 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_force_hold_en_all + 0x00000000 0x8 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_force_hold_dis_all + 0x00000000 0xc zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_isolate + 0x00000000 0x28 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_wakeup_enable + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_wakeup_disable + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_io.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_io.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtcio_ll_iomux_func_sel + 0x00000000 0x36 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_io_number_get + 0x00000000 0x10 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_init + 0x00000000 0x9e zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_deinit + 0x00000000 0x6c zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_set_level + 0x00000000 0x5f zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_get_level + 0x00000000 0x44 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.rtc_gpio_set_drive_capability.str1.1 + 0x00000000 0x4f zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_set_drive_capability + 0x00000000 0xd0 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.rtc_gpio_get_drive_capability.str1.1 + 0x00000000 0x2a zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_get_drive_capability + 0x00000000 0xa5 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction + 0x00000000 0x50 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction_in_sleep + 0x00000000 0x50 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_iomux_func_sel + 0x00000000 0x4e zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_hold_en + 0x00000000 0x62 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_hold_dis + 0x00000000 0x65 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_en_all + 0x00000000 0x2c zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_dis_all + 0x00000000 0x2a zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_isolate + 0x00000000 0x6b zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_enable + 0x00000000 0x7e zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_disable + 0x00000000 0x6d zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x18 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x17 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0x11 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0x12 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x11 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$5 + 0x00000000 0x18 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$10 + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$11 + 0x00000000 0x17 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$12 + 0x00000000 0x1e zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$13 + 0x00000000 0x1e zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$14 + 0x00000000 0x13 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$15 + 0x00000000 0x13 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$16 + 0x00000000 0x10 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$17 + 0x00000000 0xe zephyr/libzephyr.a(rtc_io.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .rodata.temperature_sensor_attributes + 0x00000000 0x64 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .debug_info 0x00000000 0xf6 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .debug_abbrev 0x00000000 0x90 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .debug_aranges + 0x00000000 0x18 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .debug_line 0x00000000 0x123 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .debug_str 0x00000000 0x2c6 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .literal.temperature_sensor_ll_set_range + 0x00000000 0x4 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .literal.temperature_sensor_hal_get_raw_value + 0x00000000 0x1c zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .literal.temperature_sensor_hal_get_degree + 0x00000000 0x24 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .literal.temperature_sensor_hal_init + 0x00000000 0xc zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .literal.temperature_sensor_hal_sync_tsens_idx + 0x00000000 0x4 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .text.temperature_sensor_ll_set_range + 0x00000000 0x1a zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .text.temperature_sensor_hal_get_raw_value + 0x00000000 0x82 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .text.temperature_sensor_hal_get_degree + 0x00000000 0x95 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .text.temperature_sensor_hal_init + 0x00000000 0x1c zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .text.temperature_sensor_hal_sync_tsens_idx + 0x00000000 0xb zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .data.s_hal_tsens_idx + 0x00000000 0x1 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .data.s_hal_record_max + 0x00000000 0x4 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .data.s_hal_record_min + 0x00000000 0x4 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_frame 0x00000000 0x88 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_info 0x00000000 0x1f29 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_abbrev 0x00000000 0x2d8 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_loc 0x00000000 0x9f zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_aranges + 0x00000000 0x40 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_ranges 0x00000000 0x78 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_line 0x00000000 0x7f2 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_str 0x00000000 0x144f zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .literal.clk_hal_clock_output_setup + 0x00000000 0x4 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .literal.clk_hal_clock_output_teardown + 0x00000000 0x4 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .text.clk_hal_clock_output_setup + 0x00000000 0x5c zephyr/libzephyr.a(clk_tree_hal.c.obj) + .text.clk_hal_clock_output_teardown + 0x00000000 0x37 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .literal.rtcio_ll_input_enable + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_input_disable + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_enable_output_in_sleep + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_disable_output_in_sleep + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_disable_input_in_sleep + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_enable_sleep_setting + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_set_direction + 0x00000000 0x10 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_set_direction_in_sleep + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_isolate + 0x00000000 0x10 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_ll_input_enable + 0x00000000 0x1f zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_ll_input_disable + 0x00000000 0x22 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_ll_enable_output_in_sleep + 0x00000000 0x22 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_ll_disable_output_in_sleep + 0x00000000 0x24 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_ll_disable_input_in_sleep + 0x00000000 0x22 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_ll_enable_sleep_setting + 0x00000000 0x1f zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction + 0x00000000 0xc3 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .rodata.rtcio_hal_set_direction + 0x00000000 0x18 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction_in_sleep + 0x00000000 0xac zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_hal_isolate + 0x00000000 0x86 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_frame 0x00000000 0xe8 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_info 0x00000000 0x1948 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_abbrev 0x00000000 0x301 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_loc 0x00000000 0x342 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_aranges + 0x00000000 0x60 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_ranges 0x00000000 0x80 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_line 0x00000000 0xa43 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_str 0x00000000 0xda7 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.systimer_hal_get_time + 0x00000000 0x4 zephyr/libzephyr.a(systimer_hal.c.obj) + .literal.systimer_hal_counter_value_advance + 0x00000000 0x4 zephyr/libzephyr.a(systimer_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(systimer_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(systimer_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_deinit + 0x00000000 0x1a zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_get_clock_source + 0x00000000 0x7 zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_get_counter_value + 0x00000000 0x50 zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_get_time + 0x00000000 0x1a zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_set_alarm_target + 0x00000000 0x6c zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_set_alarm_period + 0x00000000 0x67 zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_get_alarm_value + 0x00000000 0x1c zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_enable_alarm_int + 0x00000000 0x1e zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_counter_value_advance + 0x00000000 0x55 zephyr/libzephyr.a(systimer_hal.c.obj) + .literal.wdt_hal_init + 0x00000000 0x34 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .literal.wdt_hal_deinit + 0x00000000 0x4 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .literal.wdt_hal_config_stage + 0x00000000 0x24 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text.wdt_hal_init + 0x00000000 0x28e zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text.wdt_hal_deinit + 0x00000000 0xc6 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text.wdt_hal_config_stage + 0x00000000 0x12e zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text.wdt_hal_enable + 0x00000000 0x4c zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text.wdt_hal_handle_intr + 0x00000000 0x51 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text.wdt_hal_feed + 0x00000000 0x2a zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text.wdt_hal_is_enabled + 0x00000000 0x1f zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .literal.xt_wdt_hal_init + 0x00000000 0x8 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .literal.xt_wdt_hal_enable_backup_clk + 0x00000000 0x4 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .literal.xt_wdt_hal_enable + 0x00000000 0x4 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .text.xt_wdt_hal_init + 0x00000000 0x38 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .text.xt_wdt_hal_enable_backup_clk + 0x00000000 0x6d zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .text.xt_wdt_hal_enable + 0x00000000 0x38 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_frame 0x00000000 0x58 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_info 0x00000000 0x3fc8 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_abbrev 0x00000000 0x38b zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_loc 0x00000000 0x2ce zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_ranges 0x00000000 0xa0 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_line 0x00000000 0x690 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_str 0x00000000 0x29f4 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .literal.adc_calc_hw_calibration_code + 0x00000000 0x24 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .iram1.0.literal + 0x00000000 0x8 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .literal.adc_lock_acquire + 0x00000000 0xc zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .literal.adc_lock_release + 0x00000000 0x20 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .literal.adc_lock_try_acquire + 0x00000000 0xc zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .literal.adc_apb_periph_claim + 0x00000000 0x18 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .literal.adc_apb_periph_free + 0x00000000 0x28 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc_calc_hw_calibration_code + 0x00000000 0x7a zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .iram1.0 0x00000000 0x18 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc_lock_acquire + 0x00000000 0x24 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .rodata.adc_lock_release.str1.1 + 0x00000000 0x7c zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc_lock_release + 0x00000000 0x4e zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc_lock_try_acquire + 0x00000000 0x2e zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc2_wifi_acquire + 0x00000000 0x7 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc2_wifi_release + 0x00000000 0x7 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc_apb_periph_claim + 0x00000000 0x48 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .rodata.adc_apb_periph_free.str1.1 + 0x00000000 0x34 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc_apb_periph_free + 0x00000000 0x62 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .rodata.__func__$0 + 0x00000000 0x14 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x11 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .bss.s_adc_digi_ctrlr_cnt + 0x00000000 0x4 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .bss.s_spinlock + 0x00000000 0x4 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + ._k_mutex.static.adc2_lock_ + 0x00000000 0x14 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + ._k_mutex.static.adc1_lock_ + 0x00000000 0x14 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .bss.s_adc_cali_param + 0x00000000 0x20 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_frame 0x00000000 0xe8 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_info 0x00000000 0x7b39 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_abbrev 0x00000000 0x4cc zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_loc 0x00000000 0x309 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_aranges + 0x00000000 0x60 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_ranges 0x00000000 0xd8 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_line 0x00000000 0xfd6 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_str 0x00000000 0x612c zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .literal.periph_rtc_dig_clk8m_enable + 0x00000000 0x18 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .literal.periph_rtc_dig_clk8m_get_freq + 0x00000000 0x4 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .literal.periph_rtc_dig_clk8m_disable + 0x00000000 0x14 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .text.periph_rtc_dig_clk8m_enable + 0x00000000 0x50 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .text.periph_rtc_dig_clk8m_get_freq + 0x00000000 0xa zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .text.periph_rtc_dig_clk8m_disable + 0x00000000 0x38 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .bss.s_rc_fast_freq_hz + 0x00000000 0x4 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .bss.s_periph_ref_counts + 0x00000000 0x1 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .bss.periph_spinlock + 0x00000000 0x4 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_frame 0x00000000 0x58 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_info 0x00000000 0x826 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_abbrev 0x00000000 0x216 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_loc 0x00000000 0x6c zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_ranges 0x00000000 0x50 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_line 0x00000000 0x841 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_str 0x00000000 0x15d4 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .literal.esp_cpu_stall + 0x00000000 0xc zephyr/libzephyr.a(cpu.c.obj) + .literal.esp_cpu_unstall + 0x00000000 0xc zephyr/libzephyr.a(cpu.c.obj) + .literal.esp_cpu_reset + 0x00000000 0x8 zephyr/libzephyr.a(cpu.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(cpu.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(cpu.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_stall + 0x00000000 0x79 zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_unstall + 0x00000000 0x49 zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_reset + 0x00000000 0x25 zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_wait_for_intr + 0x00000000 0x8 zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_set_breakpoint + 0x00000000 0x24 zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_clear_breakpoint + 0x00000000 0x27 zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_set_watchpoint + 0x00000000 0x6a zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_clear_watchpoint + 0x00000000 0x1b zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_compare_and_set + 0x00000000 0x14 zephyr/libzephyr.a(cpu.c.obj) + .debug_frame 0x00000000 0xe8 zephyr/libzephyr.a(cpu.c.obj) + .debug_info 0x00000000 0x6f8 zephyr/libzephyr.a(cpu.c.obj) + .debug_abbrev 0x00000000 0x201 zephyr/libzephyr.a(cpu.c.obj) + .debug_loc 0x00000000 0x52e zephyr/libzephyr.a(cpu.c.obj) + .debug_aranges + 0x00000000 0x60 zephyr/libzephyr.a(cpu.c.obj) + .debug_ranges 0x00000000 0x90 zephyr/libzephyr.a(cpu.c.obj) + .debug_line 0x00000000 0xaf3 zephyr/libzephyr.a(cpu.c.obj) + .debug_str 0x00000000 0x56d zephyr/libzephyr.a(cpu.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(cpu.c.obj) + .literal.calc_checksum + 0x00000000 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .iram1.1.literal + 0x00000000 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .iram1.2.literal + 0x00000000 0x8 zephyr/libzephyr.a(esp_clk.c.obj) + .iram1.3.literal + 0x00000000 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .literal.esp_rtc_get_time_us + 0x00000000 0x20 zephyr/libzephyr.a(esp_clk.c.obj) + .literal.esp_clk_slowclk_cal_get + 0x00000000 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .literal.esp_clk_private_lock + 0x00000000 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .literal.esp_clk_private_unlock + 0x00000000 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_clk.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_clk.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_clk.c.obj) + .text.calc_checksum + 0x00000000 0x1c zephyr/libzephyr.a(esp_clk.c.obj) + .iram1.1 0x00000000 0x14 zephyr/libzephyr.a(esp_clk.c.obj) + .iram1.2 0x00000000 0x1a zephyr/libzephyr.a(esp_clk.c.obj) + .iram1.3 0x00000000 0x14 zephyr/libzephyr.a(esp_clk.c.obj) + .text.esp_rtc_get_time_us + 0x00000000 0xa2 zephyr/libzephyr.a(esp_clk.c.obj) + .text.esp_clk_slowclk_cal_get + 0x00000000 0xd zephyr/libzephyr.a(esp_clk.c.obj) + .text.esp_clk_rtc_time + 0x00000000 0x9 zephyr/libzephyr.a(esp_clk.c.obj) + .text.esp_clk_private_lock + 0x00000000 0xd zephyr/libzephyr.a(esp_clk.c.obj) + .text.esp_clk_private_unlock + 0x00000000 0x10 zephyr/libzephyr.a(esp_clk.c.obj) + .data.first_call$0 + 0x00000000 0x1 zephyr/libzephyr.a(esp_clk.c.obj) + .rtc_timer_data_in_rtc_mem + 0x00000000 0x18 zephyr/libzephyr.a(esp_clk.c.obj) + .bss.s_esp_rtc_time_lock + 0x00000000 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .iram1.0.literal + 0x00000000 0x1c zephyr/libzephyr.a(hw_random.c.obj) + .literal.esp_fill_random + 0x00000000 0xc zephyr/libzephyr.a(hw_random.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(hw_random.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(hw_random.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(hw_random.c.obj) + .iram1.0 0x00000000 0x81 zephyr/libzephyr.a(hw_random.c.obj) + .text.esp_fill_random + 0x00000000 0x2e zephyr/libzephyr.a(hw_random.c.obj) + .bss.last_ccount$0 + 0x00000000 0x4 zephyr/libzephyr.a(hw_random.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(hw_random.c.obj) + .debug_info 0x00000000 0x34c zephyr/libzephyr.a(hw_random.c.obj) + .debug_abbrev 0x00000000 0x201 zephyr/libzephyr.a(hw_random.c.obj) + .debug_loc 0x00000000 0x117 zephyr/libzephyr.a(hw_random.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(hw_random.c.obj) + .debug_ranges 0x00000000 0x98 zephyr/libzephyr.a(hw_random.c.obj) + .debug_line 0x00000000 0x7cc zephyr/libzephyr.a(hw_random.c.obj) + .debug_str 0x00000000 0x3c2 zephyr/libzephyr.a(hw_random.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(hw_random.c.obj) + .literal.get_idx + 0x00000000 0x10 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.get_efuse_factory_mac + 0x00000000 0x10 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.get_efuse_mac_custom + 0x00000000 0x20 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.get_mac_addr_from_mac_table + 0x00000000 0x1c zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_mac_addr_len_get + 0x00000000 0x4 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_iface_mac_addr_set + 0x00000000 0x20 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_base_mac_addr_set + 0x00000000 0x4 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_efuse_mac_get_custom + 0x00000000 0x4 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_efuse_mac_get_default + 0x00000000 0x4 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_derive_local_mac + 0x00000000 0x10 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_read_mac + 0x00000000 0x4c zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_base_mac_addr_get + 0x00000000 0x4 zephyr/libzephyr.a(mac_addr.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(mac_addr.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(mac_addr.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(mac_addr.c.obj) + .rodata.get_idx.str1.1 + 0x00000000 0x39 zephyr/libzephyr.a(mac_addr.c.obj) + .text.get_idx 0x00000000 0x2e zephyr/libzephyr.a(mac_addr.c.obj) + .text.get_efuse_factory_mac + 0x00000000 0x28 zephyr/libzephyr.a(mac_addr.c.obj) + .rodata.get_efuse_mac_custom.str1.1 + 0x00000000 0x23 zephyr/libzephyr.a(mac_addr.c.obj) + .text.get_efuse_mac_custom + 0x00000000 0x54 zephyr/libzephyr.a(mac_addr.c.obj) + .rodata.get_mac_addr_from_mac_table.str1.1 + 0x00000000 0x37 zephyr/libzephyr.a(mac_addr.c.obj) + .text.get_mac_addr_from_mac_table + 0x00000000 0x8c zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_mac_addr_len_get + 0x00000000 0x24 zephyr/libzephyr.a(mac_addr.c.obj) + .rodata.esp_iface_mac_addr_set.str1.1 + 0x00000000 0x7c zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_iface_mac_addr_set + 0x00000000 0x7a zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_base_mac_addr_set + 0x00000000 0x11 zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_efuse_mac_get_custom + 0x00000000 0x10 zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_efuse_mac_get_default + 0x00000000 0x10 zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_derive_local_mac + 0x00000000 0x5a zephyr/libzephyr.a(mac_addr.c.obj) + .rodata.esp_read_mac.str1.1 + 0x00000000 0x6c zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_read_mac + 0x00000000 0x10d zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_base_mac_addr_get + 0x00000000 0x11 zephyr/libzephyr.a(mac_addr.c.obj) + .data.s_mac_table + 0x00000000 0x38 zephyr/libzephyr.a(mac_addr.c.obj) + .debug_frame 0x00000000 0x130 zephyr/libzephyr.a(mac_addr.c.obj) + .debug_info 0x00000000 0xb5a zephyr/libzephyr.a(mac_addr.c.obj) + .debug_abbrev 0x00000000 0x36e zephyr/libzephyr.a(mac_addr.c.obj) + .debug_loc 0x00000000 0x653 zephyr/libzephyr.a(mac_addr.c.obj) + .debug_aranges + 0x00000000 0x78 zephyr/libzephyr.a(mac_addr.c.obj) + .debug_ranges 0x00000000 0xb8 zephyr/libzephyr.a(mac_addr.c.obj) + .debug_line 0x00000000 0xebc zephyr/libzephyr.a(mac_addr.c.obj) + .debug_str 0x00000000 0x6c5 zephyr/libzephyr.a(mac_addr.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(mac_addr.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .text.s_register_config_driver + 0x00000000 0x5 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_psram_tuning + 0x00000000 0x5 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_get_psram_low_speed_freq_mhz + 0x00000000 0x7 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .literal.periph_rcc_release_enter + 0x00000000 0x8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .literal.periph_rcc_release_exit + 0x00000000 0x8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .literal.periph_module_reset + 0x00000000 0x1c zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.5.literal + 0x00000000 0x14 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.6.literal + 0x00000000 0x14 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.7.literal + 0x00000000 0x1c zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.8.literal + 0x00000000 0x18 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.9.literal + 0x00000000 0x10 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.10.literal + 0x00000000 0x8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.11.literal + 0x00000000 0x8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + .text.periph_rcc_release_enter + 0x00000000 0x1a zephyr/libzephyr.a(periph_ctrl.c.obj) + .text.periph_rcc_release_exit + 0x00000000 0x13 zephyr/libzephyr.a(periph_ctrl.c.obj) + .text.periph_module_reset + 0x00000000 0x6e zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.5 0x00000000 0x34 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.6 0x00000000 0x34 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.7 0x00000000 0x7e zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.8 0x00000000 0x58 zephyr/libzephyr.a(periph_ctrl.c.obj) + .rodata.str1.1 + 0x00000000 0x3f zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.9 0x00000000 0x22 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.10 0x00000000 0x11 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.11 0x00000000 0x11 zephyr/libzephyr.a(periph_ctrl.c.obj) + .literal.esp_cpu_configure_region_protection + 0x00000000 0x10 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .rodata 0x00000000 0x14 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .text.esp_cpu_configure_region_protection + 0x00000000 0x32 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_frame 0x00000000 0x28 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_info 0x00000000 0x174 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_abbrev 0x00000000 0x10b zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_loc 0x00000000 0x3f zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_line 0x00000000 0x24a zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_str 0x00000000 0x308 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .text.esp_clk_tree_initialize + 0x00000000 0x5 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .text.esp_clk_tree_is_power_on + 0x00000000 0x7 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .text.esp_clk_tree_enable_power + 0x00000000 0x7 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .text.esp_clk_tree_enable_src + 0x00000000 0x7 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .literal.io_mux_enable_lp_io_clock + 0x00000000 0x20 zephyr/libzephyr.a(io_mux.c.obj) + .literal.io_mux_force_disable_lp_io_clock + 0x00000000 0x1c zephyr/libzephyr.a(io_mux.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(io_mux.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(io_mux.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(io_mux.c.obj) + .text.io_mux_set_clock_source + 0x00000000 0x7 zephyr/libzephyr.a(io_mux.c.obj) + .text.io_mux_enable_lp_io_clock + 0x00000000 0xaa zephyr/libzephyr.a(io_mux.c.obj) + .text.io_mux_force_disable_lp_io_clock + 0x00000000 0x60 zephyr/libzephyr.a(io_mux.c.obj) + .bss.s_rtc_io_status + 0x00000000 0x1c zephyr/libzephyr.a(io_mux.c.obj) + .bss.s_io_mux_spinlock + 0x00000000 0x4 zephyr/libzephyr.a(io_mux.c.obj) + .debug_frame 0x00000000 0x58 zephyr/libzephyr.a(io_mux.c.obj) + .debug_info 0x00000000 0x2445 zephyr/libzephyr.a(io_mux.c.obj) + .debug_abbrev 0x00000000 0x34e zephyr/libzephyr.a(io_mux.c.obj) + .debug_loc 0x00000000 0x19f zephyr/libzephyr.a(io_mux.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/libzephyr.a(io_mux.c.obj) + .debug_ranges 0x00000000 0x70 zephyr/libzephyr.a(io_mux.c.obj) + .debug_line 0x00000000 0x985 zephyr/libzephyr.a(io_mux.c.obj) + .debug_str 0x00000000 0x2293 zephyr/libzephyr.a(io_mux.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(io_mux.c.obj) + .literal.rtc_clk_bbpll_add_consumer + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_bbpll_remove_consumer + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_disable_external + 0x00000000 0x10 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_bootstrap + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enabled + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_8m_enabled + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_8md256_enabled + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_slow_freq_get_hz + 0x00000000 0xc zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_fast_src_get + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_config_fast + 0x00000000 0x10 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_xtal_for_sleep + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_apb_freq_get + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_dig_clk8m_enable + 0x00000000 0x8 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_dig_clk8m_disable + 0x00000000 0x8 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_dig_8m_enabled + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_bbpll_add_consumer + 0x00000000 0xe zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_bbpll_remove_consumer + 0x00000000 0xe zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_32k_disable_external + 0x00000000 0x50 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_32k_bootstrap + 0x00000000 0xe zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enabled + 0x00000000 0x1e zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_8m_enabled + 0x00000000 0x18 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_8md256_enabled + 0x00000000 0x18 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_slow_freq_get_hz + 0x00000000 0x1d zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_fast_src_get + 0x00000000 0x10 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_config_fast + 0x00000000 0x38 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_xtal_for_sleep + 0x00000000 0xb zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_apb_freq_get + 0x00000000 0xa zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_enable + 0x00000000 0x20 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_disable + 0x00000000 0x20 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_dig_8m_enabled + 0x00000000 0x10 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_init + 0x00000000 0x5c zephyr/libzephyr.a(rtc_clk_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .rodata.rtc_clk_init.str1.1 + 0x00000000 0x32 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .text.rtc_clk_init + 0x00000000 0x13a zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_frame 0x00000000 0x28 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_info 0x00000000 0x8c4 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_abbrev 0x00000000 0x2f3 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_loc 0x00000000 0x108 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_line 0x00000000 0x844 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_str 0x00000000 0xd2f zephyr/libzephyr.a(rtc_clk_init.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .literal.rtc_vddsdio_get_config + 0x00000000 0x8 zephyr/libzephyr.a(rtc_init.c.obj) + .literal.rtc_vddsdio_set_config + 0x00000000 0x4 zephyr/libzephyr.a(rtc_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_init.c.obj) + .text.rtc_vddsdio_get_config + 0x00000000 0x63 zephyr/libzephyr.a(rtc_init.c.obj) + .text.rtc_vddsdio_set_config + 0x00000000 0x48 zephyr/libzephyr.a(rtc_init.c.obj) + .literal.rtc_sleep_get_default_config + 0x00000000 0x14 zephyr/libzephyr.a(rtc_sleep.c.obj) + .literal.rtc_sleep_init + 0x00000000 0x90 zephyr/libzephyr.a(rtc_sleep.c.obj) + .literal.rtc_sleep_low_init + 0x00000000 0xc zephyr/libzephyr.a(rtc_sleep.c.obj) + .literal.rtc_sleep_start + 0x00000000 0x28 zephyr/libzephyr.a(rtc_sleep.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_sleep.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_sleep.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_sleep.c.obj) + .text.rtc_sleep_get_default_config + 0x00000000 0x14b zephyr/libzephyr.a(rtc_sleep.c.obj) + .text.rtc_sleep_init + 0x00000000 0x3dd zephyr/libzephyr.a(rtc_sleep.c.obj) + .text.rtc_sleep_low_init + 0x00000000 0x7a zephyr/libzephyr.a(rtc_sleep.c.obj) + .text.rtc_sleep_start + 0x00000000 0xbd zephyr/libzephyr.a(rtc_sleep.c.obj) + .literal.rtc_clk_cal_ratio + 0x00000000 0xc zephyr/libzephyr.a(rtc_time.c.obj) + .literal.rtc_clk_wait_for_slow_cycle + 0x00000000 0x8 zephyr/libzephyr.a(rtc_time.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_time.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_time.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_time.c.obj) + .text.rtc_clk_cal_ratio + 0x00000000 0x2c zephyr/libzephyr.a(rtc_time.c.obj) + .text.rtc_time_slowclk_to_us + 0x00000000 0x19 zephyr/libzephyr.a(rtc_time.c.obj) + .text.rtc_clk_wait_for_slow_cycle + 0x00000000 0x2e zephyr/libzephyr.a(rtc_time.c.obj) + .literal.s_sar_power_acquire + 0x00000000 0x10 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.s_sar_power_release + 0x00000000 0x28 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_power_enable + 0x00000000 0xc zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_power_disable + 0x00000000 0x10 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_pwdet_power_acquire + 0x00000000 0x4 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_pwdet_power_release + 0x00000000 0x4 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_oneshot_power_acquire + 0x00000000 0x4 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_oneshot_power_release + 0x00000000 0x4 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_continuous_power_acquire + 0x00000000 0x4 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_continuous_power_release + 0x00000000 0x4 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_reset + 0x00000000 0x10 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.s_sar_power_acquire + 0x00000000 0x50 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .rodata.s_sar_power_release.str1.1 + 0x00000000 0x40 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.s_sar_power_release + 0x00000000 0x6c zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_power_enable + 0x00000000 0x3a zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_power_disable + 0x00000000 0x40 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_pwdet_power_acquire + 0x00000000 0xb zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_pwdet_power_release + 0x00000000 0xb zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_oneshot_power_acquire + 0x00000000 0xb zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_oneshot_power_release + 0x00000000 0xb zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_continuous_power_acquire + 0x00000000 0xb zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_continuous_power_release + 0x00000000 0xb zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_reset + 0x00000000 0x36 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.adc_reset_lock_acquire + 0x00000000 0x5 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.adc_reset_lock_release + 0x00000000 0x5 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .rodata.__func__$0 + 0x00000000 0x14 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .bss.s_sar_power_on_cnt + 0x00000000 0x4 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(systimer.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(systimer.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(systimer.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .literal.regi2c_ctrl_read_reg + 0x00000000 0x4 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .iram1.3.literal + 0x00000000 0x8 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .iram1.4.literal + 0x00000000 0x8 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .text.regi2c_ctrl_read_reg + 0x00000000 0x1f zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .iram1.3 0x00000000 0x21 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .iram1.4 0x00000000 0x21 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .dram1.2 0x00000000 0x8 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .iram1.5.literal + 0x00000000 0x10 zephyr/libzephyr.a(rtc_module.c.obj) + .literal.rtc_isr_register + 0x00000000 0x2c zephyr/libzephyr.a(rtc_module.c.obj) + .literal.rtc_isr_deregister + 0x00000000 0x10 zephyr/libzephyr.a(rtc_module.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_module.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_module.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_module.c.obj) + .iram1.5 0x00000000 0x4c zephyr/libzephyr.a(rtc_module.c.obj) + .text.rtc_isr_register + 0x00000000 0x9a zephyr/libzephyr.a(rtc_module.c.obj) + .text.rtc_isr_deregister + 0x00000000 0x6f zephyr/libzephyr.a(rtc_module.c.obj) + .bss.s_rtc_isr_handle + 0x00000000 0x4 zephyr/libzephyr.a(rtc_module.c.obj) + .dram1.4 0x00000000 0x4 zephyr/libzephyr.a(rtc_module.c.obj) + .dram1.3 0x00000000 0x4 zephyr/libzephyr.a(rtc_module.c.obj) + .bss.rtc_spinlock + 0x00000000 0x4 zephyr/libzephyr.a(rtc_module.c.obj) + .literal.temperature_sensor_power_acquire + 0x00000000 0x30 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .literal.temperature_sensor_power_release + 0x00000000 0x28 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .literal.temp_sensor_get_raw_value + 0x00000000 0x20 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .text.temperature_sensor_power_acquire + 0x00000000 0xd3 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .text.temperature_sensor_power_release + 0x00000000 0x92 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .text.temp_sensor_get_raw_value + 0x00000000 0x67 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .bss.timer1 0x00000000 0x8 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .bss.s_first_temp_read + 0x00000000 0x1 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .bss.s_temperature_sensor_power_cnt + 0x00000000 0x4 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_frame 0x00000000 0x58 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_info 0x00000000 0x249d zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_abbrev 0x00000000 0x3bf zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_loc 0x00000000 0x195 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_ranges 0x00000000 0x68 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_line 0x00000000 0xb96 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_str 0x00000000 0x2185 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .rtc.entry.literal + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.s_sleep_hook_deregister + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.get_power_down_flags + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.get_sleep_flags + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.s_sleep_hook_register + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.9.literal + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.10.literal + 0x00000000 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.sleep_rtc_wdt_prepare + 0x00000000 0x24 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.rtcio_ll_function_select$constprop$0 + 0x00000000 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.12.literal + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_overhead_out_time_refresh + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.5.literal + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.6.literal + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.11.literal + 0x00000000 0x18 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_start$constprop$0 + 0x00000000 0xa0 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_light_sleep_inner$constprop$0 + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_get_deep_sleep_wake_stub + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.13.literal + 0x00000000 0x48 zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.7.literal + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_register_hook + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_deregister_hook + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_register_phy_hook + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_deregister_phy_hook + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.14.literal + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.15.literal + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_light_sleep_start + 0x00000000 0xa4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_wakeup_source + 0x00000000 0x28 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_timer_wakeup + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_deep_sleep + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_try + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_touchpad_wakeup + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_is_valid_wakeup_gpio + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext0_wakeup + 0x00000000 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext1_wakeup_io + 0x00000000 0x18 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_ext1_wakeup_io + 0x00000000 0x18 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext1_wakeup + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_gpio_wakeup + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_uart_wakeup + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_wifi_wakeup + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_wifi_wakeup + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_bt_wakeup + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_bt_wakeup + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_get_wakeup_cause + 0x00000000 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_get_wakeup_causes + 0x00000000 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_get_touchpad_wakeup_status + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_get_ext1_wakeup_status + 0x00000000 0x14 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_pd_config + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_acquire_lp_use_xtal + 0x00000000 0x1c zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_release_lp_use_xtal + 0x00000000 0x1c zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.16.literal + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_periph_use_8m + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_adc_tsens_monitor + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.rtc_sleep_enable_ultra_low + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(sleep_modes.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(sleep_modes.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.entry.text + 0x00000000 0xb zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.8 0x00000000 0x5 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.s_sleep_hook_deregister + 0x00000000 0x30 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.get_power_down_flags + 0x00000000 0x4c zephyr/libzephyr.a(sleep_modes.c.obj) + .text.get_sleep_flags + 0x00000000 0x58 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.s_sleep_hook_register + 0x00000000 0x4c zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.9 0x00000000 0x1f zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.10 0x00000000 0x27 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.sleep_rtc_wdt_prepare + 0x00000000 0x5f zephyr/libzephyr.a(sleep_modes.c.obj) + .text.rtcio_ll_function_select$constprop$0 + 0x00000000 0x63 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.12 0x00000000 0x1d zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_overhead_out_time_refresh + 0x00000000 0x18 zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.5 0x00000000 0xf zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.6 0x00000000 0x17 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.11 0x00000000 0x42 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_start$constprop$0 + 0x00000000 0x32e zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_light_sleep_inner$constprop$0 + 0x00000000 0x3b zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_get_deep_sleep_wake_stub + 0x00000000 0x17 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.13 0x00000000 0xaf zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.7 0x00000000 0xa zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_deep_sleep_register_hook + 0x00000000 0x12 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_deep_sleep_deregister_hook + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_deep_sleep_register_phy_hook + 0x00000000 0x12 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_deep_sleep_deregister_phy_hook + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.14 0x00000000 0x12 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.15 0x00000000 0x11 zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_light_sleep_start.str1.1 + 0x00000000 0x40 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_light_sleep_start + 0x00000000 0x29c zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_disable_wakeup_source.str1.1 + 0x00000000 0x32 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wakeup_source + 0x00000000 0xde zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ulp_wakeup + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_timer_wakeup + 0x00000000 0x69 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_deep_sleep + 0x00000000 0x13 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_deep_sleep_try + 0x00000000 0x18 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_touchpad_wakeup + 0x00000000 0x16 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_is_valid_wakeup_gpio + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext0_wakeup + 0x00000000 0x52 zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_ext1_wakeup_io.str1.1 + 0x00000000 0x1f zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext1_wakeup_io + 0x00000000 0xbf zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_disable_ext1_wakeup_io.str1.1 + 0x00000000 0x33 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_disable_ext1_wakeup_io + 0x00000000 0xc0 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext1_wakeup + 0x00000000 0x2c zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_gpio_wakeup + 0x00000000 0x15 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_uart_wakeup + 0x00000000 0x30 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_wifi_wakeup + 0x00000000 0x15 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wifi_wakeup + 0x00000000 0x16 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_wifi_beacon_wakeup + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wifi_beacon_wakeup + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_bt_wakeup + 0x00000000 0x16 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_disable_bt_wakeup + 0x00000000 0x16 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_get_wakeup_cause + 0x00000000 0x63 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_get_wakeup_causes + 0x00000000 0x96 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_get_touchpad_wakeup_status + 0x00000000 0x1c zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_get_ext1_wakeup_status + 0x00000000 0x52 zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_pd_config.str1.1 + 0x00000000 0x7b zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_pd_config + 0x00000000 0x9a zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_acquire_lp_use_xtal.str1.1 + 0x00000000 0x5c zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_acquire_lp_use_xtal + 0x00000000 0x3f zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_release_lp_use_xtal.str1.1 + 0x00000000 0x5e zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_release_lp_use_xtal + 0x00000000 0x3f zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.16 0x00000000 0x18 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_periph_use_8m + 0x00000000 0x22 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_adc_tsens_monitor + 0x00000000 0x22 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.rtc_sleep_enable_ultra_low + 0x00000000 0x22 zephyr/libzephyr.a(sleep_modes.c.obj) + .bss.s_cache_suspend_cnt + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.force_fast.4 + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .bss.spinlock_rtc_deep_sleep + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .bss.s_light_sleep_wakeup + 0x00000000 0x1 zephyr/libzephyr.a(sleep_modes.c.obj) + .bss.s_lightsleep_cnt + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .bss.s_dslp_phy_cb + 0x00000000 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + .bss.s_dslp_cb + 0x00000000 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_cache_get_alignment + 0x00000000 0x14 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .literal.esp_cache_get_line_size_by_addr + 0x00000000 0x10 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .text.esp_cache_get_alignment + 0x00000000 0x32 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .text.esp_cache_get_line_size_by_addr + 0x00000000 0x5a zephyr/libzephyr.a(esp_cache_msync.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x18 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .literal.esp_cache_freeze_caches_disable_interrupts + 0x00000000 0x18 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .literal.esp_cache_unfreeze_caches_enable_interrupts + 0x00000000 0xc zephyr/libzephyr.a(esp_cache_utils.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .text.esp_cache_freeze_caches_disable_interrupts + 0x00000000 0x2e zephyr/libzephyr.a(esp_cache_utils.c.obj) + .text.esp_cache_unfreeze_caches_enable_interrupts + 0x00000000 0x1c zephyr/libzephyr.a(esp_cache_utils.c.obj) + .bss.s_spinlock + 0x00000000 0x4 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .iram1.2.literal + 0x00000000 0x4 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.4.literal + 0x00000000 0xc zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.3.literal + 0x00000000 0x4 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.5.literal + 0x00000000 0x20 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.6.literal + 0x00000000 0xc zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.k_mutex_unlock$constprop$0$isra$0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_get_max_consecutive_free_block_size + 0x00000000 0x18 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_reserve_block_with_caps + 0x00000000 0x20 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map + 0x00000000 0x68 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.esp_mmu_unmap + 0x00000000 0x38 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_dump_mapped_blocks + 0x00000000 0x74 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.7.literal + 0x00000000 0x54 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.esp_mmu_vaddr_to_paddr + 0x00000000 0x30 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.esp_mmu_paddr_to_vaddr + 0x00000000 0x28 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.2 0x00000000 0xb zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.4 0x00000000 0x1c zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.3 0x00000000 0xb zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.5 0x00000000 0x80 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.6 0x00000000 0x1d zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.k_mutex_unlock$constprop$0$isra$0 + 0x00000000 0xe zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_get_max_consecutive_free_block_size.str1.1 + 0x00000000 0x3c zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_get_max_consecutive_free_block_size + 0x00000000 0x67 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_reserve_block_with_caps.str1.1 + 0x00000000 0x1d zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_reserve_block_with_caps + 0x00000000 0xb8 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map.str1.1 + 0x00000000 0xe5 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.esp_mmu_map + 0x00000000 0x310 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_unmap.str1.1 + 0x00000000 0x82 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.esp_mmu_unmap + 0x00000000 0xe1 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_dump_mapped_blocks.str1.1 + 0x00000000 0x139 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_dump_mapped_blocks + 0x00000000 0x111 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.str1.1 + 0x00000000 0xf5 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.7 0x00000000 0xaa zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_vaddr_to_paddr.str1.1 + 0x00000000 0x5a zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.esp_mmu_vaddr_to_paddr + 0x00000000 0xa2 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_paddr_to_vaddr.str1.1 + 0x00000000 0x24 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.esp_mmu_paddr_to_vaddr + 0x00000000 0x6e zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x17 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x17 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0xe zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0xc zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x24 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$5 + 0x00000000 0x30 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .dram1.0 0x00000000 0x4 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(ext_mem_layout.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(ext_mem_layout.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(ext_mem_layout.c.obj) + .literal.Cache_Count_Flash_Pages + 0x00000000 0x4 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text.Cache_Count_Flash_Pages + 0x00000000 0x17 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .debug_info 0x00000000 0x64 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .debug_abbrev 0x00000000 0x26 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .debug_aranges + 0x00000000 0x18 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .debug_line 0x00000000 0x7d zephyr/libzephyr.a(esp_rom_crc.c.obj) + .debug_str 0x00000000 0x239 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .literal.esp_rom_efuse_get_opiconfig + 0x00000000 0x8 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .text.esp_rom_efuse_get_opiconfig + 0x00000000 0x3a zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_frame 0x00000000 0x28 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_info 0x00000000 0xee zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_abbrev 0x00000000 0x78 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_loc 0x00000000 0x3c zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_line 0x00000000 0x219 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_str 0x00000000 0x2ab zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .debug_info 0x00000000 0x6b zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .debug_abbrev 0x00000000 0x26 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .debug_aranges + 0x00000000 0x18 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .debug_line 0x00000000 0x7e zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .debug_str 0x00000000 0x246 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .text 0x00000000 0x81 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .debug_line 0x00000000 0x1c9 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .debug_info 0x00000000 0x32 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .debug_abbrev 0x00000000 0x28 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .debug_str 0x00000000 0xaa zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .literal.esp_rom_cvt$part$0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_rom_print.c.obj) + .literal.esp_rom_cvt + 0x00000000 0x4 zephyr/libzephyr.a(esp_rom_print.c.obj) + .literal.esp_rom_vprintf + 0x00000000 0x50 zephyr/libzephyr.a(esp_rom_print.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_print.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_print.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_print.c.obj) + .text.esp_rom_cvt$part$0 + 0x00000000 0x99 zephyr/libzephyr.a(esp_rom_print.c.obj) + .text.esp_rom_cvt + 0x00000000 0x3a zephyr/libzephyr.a(esp_rom_print.c.obj) + .rodata.esp_rom_vprintf.str1.1 + 0x00000000 0x34 zephyr/libzephyr.a(esp_rom_print.c.obj) + .text.esp_rom_vprintf + 0x00000000 0x4cf zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_frame 0x00000000 0x58 zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_info 0x00000000 0x732 zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_abbrev 0x00000000 0x22e zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_loc 0x00000000 0x1114 zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_ranges 0x00000000 0x40 zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_line 0x00000000 0xdef zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_str 0x00000000 0x375 zephyr/libzephyr.a(esp_rom_print.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_rom_print.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_output_to_channels + 0x00000000 0x8 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .literal.esp_rom_install_uart_printf + 0x00000000 0x14 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .text.esp_rom_output_to_channels + 0x00000000 0x22 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .text.esp_rom_install_uart_printf + 0x00000000 0x22 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .literal._esp_error_check_failed_without_abort + 0x00000000 0x24 zephyr/libzephyr.a(esp_err.c.obj) + .literal._esp_error_check_failed + 0x00000000 0x28 zephyr/libzephyr.a(esp_err.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_err.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_err.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_err.c.obj) + .rodata._esp_error_check_failed_without_abort.str1.1 + 0x00000000 0x70 zephyr/libzephyr.a(esp_err.c.obj) + .text._esp_error_check_failed_without_abort + 0x00000000 0x47 zephyr/libzephyr.a(esp_err.c.obj) + .rodata._esp_error_check_failed.str1.1 + 0x00000000 0x10 zephyr/libzephyr.a(esp_err.c.obj) + .text._esp_error_check_failed + 0x00000000 0x4b zephyr/libzephyr.a(esp_err.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(esp_err.c.obj) + .debug_info 0x00000000 0x51e zephyr/libzephyr.a(esp_err.c.obj) + .debug_abbrev 0x00000000 0x1d3 zephyr/libzephyr.a(esp_err.c.obj) + .debug_loc 0x00000000 0x28a zephyr/libzephyr.a(esp_err.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(esp_err.c.obj) + .debug_ranges 0x00000000 0x48 zephyr/libzephyr.a(esp_err.c.obj) + .debug_line 0x00000000 0x580 zephyr/libzephyr.a(esp_err.c.obj) + .debug_str 0x00000000 0x335 zephyr/libzephyr.a(esp_err.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_err.c.obj) + .literal.select_rtc_slow_clk + 0x00000000 0x2c zephyr/libzephyr.a(clk.c.obj) + .literal.esp_clk_init + 0x00000000 0x2c zephyr/libzephyr.a(clk.c.obj) + .literal.rtc_clk_select_rtc_slow_clk + 0x00000000 0x4 zephyr/libzephyr.a(clk.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(clk.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(clk.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(clk.c.obj) + .rodata.select_rtc_slow_clk.str1.1 + 0x00000000 0x4d zephyr/libzephyr.a(clk.c.obj) + .text.select_rtc_slow_clk + 0x00000000 0x88 zephyr/libzephyr.a(clk.c.obj) + .text.esp_clk_init + 0x00000000 0x7d zephyr/libzephyr.a(clk.c.obj) + .text.rtc_clk_select_rtc_slow_clk + 0x00000000 0xe zephyr/libzephyr.a(clk.c.obj) + .literal.esp_reset_reason + 0x00000000 0x4 zephyr/libzephyr.a(reset_reason.c.obj) + .literal.esp_reset_reason_set_hint + 0x00000000 0x8 zephyr/libzephyr.a(reset_reason.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(reset_reason.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(reset_reason.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(reset_reason.c.obj) + .text.esp_reset_reason + 0x00000000 0xa zephyr/libzephyr.a(reset_reason.c.obj) + .text.esp_reset_reason_set_hint + 0x00000000 0x29 zephyr/libzephyr.a(reset_reason.c.obj) + .literal.esp_system_reset_modules_on_exit + 0x00000000 0x1c zephyr/libzephyr.a(system_internal.c.obj) + .literal.esp_restart_noos + 0x00000000 0x68 zephyr/libzephyr.a(system_internal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(system_internal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(system_internal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(system_internal.c.obj) + .text.esp_system_reset_modules_on_exit + 0x00000000 0xa9 zephyr/libzephyr.a(system_internal.c.obj) + .rodata 0x00000000 0x10 zephyr/libzephyr.a(system_internal.c.obj) + .text.esp_restart_noos + 0x00000000 0x107 zephyr/libzephyr.a(system_internal.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(system_internal.c.obj) + .debug_info 0x00000000 0x4d77 zephyr/libzephyr.a(system_internal.c.obj) + .debug_abbrev 0x00000000 0x3f2 zephyr/libzephyr.a(system_internal.c.obj) + .debug_loc 0x00000000 0x106 zephyr/libzephyr.a(system_internal.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(system_internal.c.obj) + .debug_ranges 0x00000000 0x30 zephyr/libzephyr.a(system_internal.c.obj) + .debug_line 0x00000000 0xaf2 zephyr/libzephyr.a(system_internal.c.obj) + .debug_str 0x00000000 0x3288 zephyr/libzephyr.a(system_internal.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(system_internal.c.obj) + .literal.timer_list_lock + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.timer_list_unlock + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.timer_remove + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.timer_alarm_handler + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.deinit_timer_task + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .literal.timer_insert$isra$0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.timer_init + 0x00000000 0x10 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.timer_restart + 0x00000000 0x1c zephyr/libzephyr.a(esp_timer.c.obj) + .literal.timer_task + 0x00000000 0x30 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_create + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_restart + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_restart_at + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_start_once + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_start_once_at + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_start_periodic + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_start_periodic_at + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_stop + 0x00000000 0x10 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_stop_blocking + 0x00000000 0x3c zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_delete + 0x00000000 0x14 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_init + 0x00000000 0x40 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_deinit + 0x00000000 0x10 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_dump + 0x00000000 0x40 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_get_next_alarm + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_get_next_alarm_for_wake_up + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_get_period + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_get_expiry_time + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_is_active + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_timer.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_timer.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_list_lock + 0x00000000 0x10 zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_list_unlock + 0x00000000 0x13 zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_remove + 0x00000000 0x50 zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_alarm_handler + 0x00000000 0xe zephyr/libzephyr.a(esp_timer.c.obj) + .text.deinit_timer_task + 0x00000000 0x1b zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_insert$isra$0 + 0x00000000 0x73 zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_init + 0x00000000 0x60 zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_restart + 0x00000000 0xca zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_task + 0x00000000 0x153 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_create + 0x00000000 0x76 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_restart + 0x00000000 0x18 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_restart_at + 0x00000000 0x41 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_start_once + 0x00000000 0x22 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_start_once_at + 0x00000000 0x3e zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_start_periodic + 0x00000000 0x39 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_start_periodic_at + 0x00000000 0x5e zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_stop + 0x00000000 0x42 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_stop_blocking + 0x00000000 0xfa zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_delete + 0x00000000 0x6e zephyr/libzephyr.a(esp_timer.c.obj) + .rodata.esp_timer_init.str1.1 + 0x00000000 0x48 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_init + 0x00000000 0x81 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_deinit + 0x00000000 0x26 zephyr/libzephyr.a(esp_timer.c.obj) + .rodata.esp_timer_dump.str1.1 + 0x00000000 0x54 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_dump + 0x00000000 0xca zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_get_next_alarm + 0x00000000 0x3e zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_get_next_alarm_for_wake_up + 0x00000000 0x4e zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_get_period + 0x00000000 0x42 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_get_expiry_time + 0x00000000 0x52 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_is_active + 0x00000000 0x3e zephyr/libzephyr.a(esp_timer.c.obj) + .bss.s_timer_lock_key + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer.c.obj) + .bss.s_timer_task_created + 0x00000000 0x1 zephyr/libzephyr.a(esp_timer.c.obj) + .bss.s_timer_semaphore + 0x00000000 0x18 zephyr/libzephyr.a(esp_timer.c.obj) + .bss.s_timer_task + 0x00000000 0x68 zephyr/libzephyr.a(esp_timer.c.obj) + .bss.timer_task_stack + 0x00000000 0x1000 zephyr/libzephyr.a(esp_timer.c.obj) + .bss.s_timers 0x00000000 0x4 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_frame 0x00000000 0x298 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_info 0x00000000 0x27e2 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_abbrev 0x00000000 0x638 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_loc 0x00000000 0x1132 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_aranges + 0x00000000 0xf0 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_ranges 0x00000000 0x2a0 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_line 0x00000000 0x2859 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_str 0x00000000 0xf7a zephyr/libzephyr.a(esp_timer.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_impl_lock + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .literal.esp_timer_impl_unlock + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .literal.esp_timer_impl_set_alarm + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_lock + 0x00000000 0xd zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_unlock + 0x00000000 0x10 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_set_alarm + 0x00000000 0x12 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_get_min_period_us + 0x00000000 0x9 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .data.timestamp_id + 0x00000000 0x10 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .bss.s_time_update_lock + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_frame 0x00000000 0x70 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_info 0x00000000 0x298 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_abbrev 0x00000000 0x1b0 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_loc 0x00000000 0x49 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_aranges + 0x00000000 0x38 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_ranges 0x00000000 0x40 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_line 0x00000000 0x3d3 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_str 0x00000000 0x4d9 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .literal.timer_alarm_isr + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_get_counter_reg + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_get_time + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_set_alarm_id + 0x00000000 0x14 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_set + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_advance + 0x00000000 0xc zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_init + 0x00000000 0x34 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_deinit + 0x00000000 0x18 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_get_alarm_reg + 0x00000000 0xc zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.timer_alarm_isr + 0x00000000 0x26 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_get_counter_reg + 0x00000000 0x14 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_get_time + 0x00000000 0x1a zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_set_alarm_id + 0x00000000 0x4a zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_set + 0x00000000 0x47 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_advance + 0x00000000 0x24 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .rodata.esp_timer_impl_init.str1.1 + 0x00000000 0x87 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_init + 0x00000000 0x74 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_deinit + 0x00000000 0x4d zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_get_alarm_reg + 0x00000000 0x24 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .bss.s_alarm_handler + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .bss.s_timer_interrupt_handle + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.__esp_system_init_fn_esp_timer_init_nonos + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_init.c.obj) + .text.__esp_system_init_fn_esp_timer_init_nonos + 0x00000000 0xd zephyr/libzephyr.a(esp_timer_init.c.obj) + .text.esp_timer_init_include_func + 0x00000000 0x5 zephyr/libzephyr.a(esp_timer_init.c.obj) + .esp_system_init_fn.101 + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer_init.c.obj) + .literal.ets_timer_setfn + 0x00000000 0x24 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .literal.ets_timer_arm_us + 0x00000000 0x28 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .literal.ets_timer_arm + 0x00000000 0x28 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .literal.ets_timer_done + 0x00000000 0x8 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .literal.ets_timer_disarm + 0x00000000 0x8 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .rodata.ets_timer_setfn.str1.1 + 0x00000000 0xa6 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text.ets_timer_setfn + 0x00000000 0x56 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .rodata.ets_timer_arm_us.str1.1 + 0x00000000 0x66 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text.ets_timer_arm_us + 0x00000000 0x53 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text.ets_timer_arm + 0x00000000 0x5f zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text.ets_timer_done + 0x00000000 0x1c zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text.ets_timer_disarm + 0x00000000 0x16 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text.ets_timer_init + 0x00000000 0x5 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text.ets_timer_deinit + 0x00000000 0x5 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_frame 0x00000000 0xb8 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_info 0x00000000 0x785 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_abbrev 0x00000000 0x2d4 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_loc 0x00000000 0x190 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_aranges + 0x00000000 0x50 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_ranges 0x00000000 0x90 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_line 0x00000000 0x7c1 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_str 0x00000000 0x4f1 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .literal.efuse_hal_set_timing + 0x00000000 0x8 zephyr/libzephyr.a(efuse_hal.c.obj) + .literal.efuse_hal_read + 0x00000000 0x8 zephyr/libzephyr.a(efuse_hal.c.obj) + .literal.efuse_hal_clear_program_registers + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .literal.efuse_hal_program + 0x00000000 0x10 zephyr/libzephyr.a(efuse_hal.c.obj) + .literal.efuse_hal_rs_calculate + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .literal.efuse_hal_is_coding_error_in_block + 0x00000000 0xc zephyr/libzephyr.a(efuse_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .text.efuse_hal_set_timing + 0x00000000 0xb6 zephyr/libzephyr.a(efuse_hal.c.obj) + .text.efuse_hal_read + 0x00000000 0x64 zephyr/libzephyr.a(efuse_hal.c.obj) + .text.efuse_hal_clear_program_registers + 0x00000000 0xb zephyr/libzephyr.a(efuse_hal.c.obj) + .text.efuse_hal_program + 0x00000000 0x78 zephyr/libzephyr.a(efuse_hal.c.obj) + .text.efuse_hal_rs_calculate + 0x00000000 0xf zephyr/libzephyr.a(efuse_hal.c.obj) + .text.efuse_hal_is_coding_error_in_block + 0x00000000 0x52 zephyr/libzephyr.a(efuse_hal.c.obj) + .literal.s_cache_hal_init_ctx + 0x00000000 0xc zephyr/libzephyr.a(cache_hal.c.obj) + .literal.cache_hal_init + 0x00000000 0x18 zephyr/libzephyr.a(cache_hal.c.obj) + .literal.cache_hal_is_cache_enabled + 0x00000000 0x8 zephyr/libzephyr.a(cache_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + .text.s_cache_hal_init_ctx + 0x00000000 0x3a zephyr/libzephyr.a(cache_hal.c.obj) + .text.cache_hal_init + 0x00000000 0x7d zephyr/libzephyr.a(cache_hal.c.obj) + .text.cache_hal_is_cache_enabled + 0x00000000 0x2e zephyr/libzephyr.a(cache_hal.c.obj) + .literal.efuse_hal_get_mac + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.1.literal + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.2.literal + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.3.literal + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.4.literal + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.5.literal + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .text.efuse_hal_get_mac + 0x00000000 0x19 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.1 0x00000000 0x23 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.2 0x00000000 0x11 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.3 0x00000000 0x11 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.4 0x00000000 0x11 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.5 0x00000000 0x22 zephyr/libzephyr.a(efuse_hal.c.obj) + .literal.mmu_hal_init + 0x00000000 0xc zephyr/libzephyr.a(mmu_hal.c.obj) + .literal.mmu_hal_check_valid_ext_vaddr_region + 0x00000000 0x8 zephyr/libzephyr.a(mmu_hal.c.obj) + .literal.mmu_hal_unmap_region + 0x00000000 0x4 zephyr/libzephyr.a(mmu_hal.c.obj) + .literal.mmu_hal_vaddr_to_paddr + 0x00000000 0x4 zephyr/libzephyr.a(mmu_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(mmu_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(mmu_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(mmu_hal.c.obj) + .text.mmu_hal_init + 0x00000000 0x1a zephyr/libzephyr.a(mmu_hal.c.obj) + .text.mmu_hal_pages_to_bytes + 0x00000000 0x8 zephyr/libzephyr.a(mmu_hal.c.obj) + .text.mmu_hal_bytes_to_pages + 0x00000000 0x8 zephyr/libzephyr.a(mmu_hal.c.obj) + .text.mmu_hal_check_valid_ext_vaddr_region + 0x00000000 0x55 zephyr/libzephyr.a(mmu_hal.c.obj) + .text.mmu_hal_unmap_region + 0x00000000 0x35 zephyr/libzephyr.a(mmu_hal.c.obj) + .text.mmu_hal_vaddr_to_paddr + 0x00000000 0x3a zephyr/libzephyr.a(mmu_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(gpio_periph.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(gpio_periph.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(gpio_periph.c.obj) + .rodata.GPIO_HOLD_MASK + 0x00000000 0xc4 zephyr/libzephyr.a(gpio_periph.c.obj) + .literal.esp_register_shutdown_handler + 0x00000000 0x4 zephyr/libzephyr.a(esp_restart.c.obj) + .literal.esp_unregister_shutdown_handler + 0x00000000 0x4 zephyr/libzephyr.a(esp_restart.c.obj) + .literal.esp_restart + 0x00000000 0x8 zephyr/libzephyr.a(esp_restart.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_restart.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_restart.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_restart.c.obj) + .text.esp_register_shutdown_handler + 0x00000000 0x31 zephyr/libzephyr.a(esp_restart.c.obj) + .text.esp_unregister_shutdown_handler + 0x00000000 0x2a zephyr/libzephyr.a(esp_restart.c.obj) + .text.esp_restart + 0x00000000 0x1e zephyr/libzephyr.a(esp_restart.c.obj) + .bss.shutdown_handlers + 0x00000000 0x14 zephyr/libzephyr.a(esp_restart.c.obj) + .debug_frame 0x00000000 0x58 zephyr/libzephyr.a(esp_restart.c.obj) + .debug_info 0x00000000 0x456 zephyr/libzephyr.a(esp_restart.c.obj) + .debug_abbrev 0x00000000 0x145 zephyr/libzephyr.a(esp_restart.c.obj) + .debug_loc 0x00000000 0x13a zephyr/libzephyr.a(esp_restart.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/libzephyr.a(esp_restart.c.obj) + .debug_ranges 0x00000000 0x38 zephyr/libzephyr.a(esp_restart.c.obj) + .debug_line 0x00000000 0x46d zephyr/libzephyr.a(esp_restart.c.obj) + .debug_str 0x00000000 0xdf1 zephyr/libzephyr.a(esp_restart.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_restart.c.obj) + .literal.spi_flash_init_chip_state + 0x00000000 0xc zephyr/libzephyr.a(flash_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(flash_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(flash_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(flash_init.c.obj) + .text.spi_flash_init_chip_state + 0x00000000 0x22 zephyr/libzephyr.a(flash_init.c.obj) + .literal.bootloader_mmap_get_free_pages + 0x00000000 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_mmap + 0x00000000 0x1c zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_munmap + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_flash_read + 0x00000000 0xc zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_flash_write + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_sector + 0x00000000 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_range + 0x00000000 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.esp_rom_flash_mmap + 0x00000000 0x28 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.esp_rom_flash_unmmap + 0x00000000 0x10 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.esp_rom_flash_erase_sector + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.esp_rom_flash_erase_range + 0x00000000 0xc zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.esp_rom_flash_write + 0x00000000 0x28 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_spi_flash_reset + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash.c.obj) + .iram1.7.literal + 0x00000000 0x14 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_flash_get_spi_mode + 0x00000000 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_mmap_get_free_pages + 0x00000000 0x10 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_mmap + 0x00000000 0x4c zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_munmap + 0x00000000 0x18 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_flash_read + 0x00000000 0x36 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_flash_write + 0x00000000 0x2c zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_sector + 0x00000000 0x18 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_range + 0x00000000 0x14 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.esp_rom_flash_mmap_get_free_pages + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash.c.obj) + .rodata.esp_rom_flash_mmap.str1.1 + 0x00000000 0x41 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.esp_rom_flash_mmap + 0x00000000 0x91 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.esp_rom_flash_unmmap + 0x00000000 0x2a zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.esp_rom_flash_erase_sector + 0x00000000 0x1c zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.esp_rom_flash_erase_range + 0x00000000 0x62 zephyr/libzephyr.a(bootloader_flash.c.obj) + .rodata.esp_rom_flash_write.str1.1 + 0x00000000 0xbd zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.esp_rom_flash_write + 0x00000000 0x84 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_spi_flash_reset + 0x00000000 0x23 zephyr/libzephyr.a(bootloader_flash.c.obj) + .iram1.7 0x00000000 0x9e zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_flash_get_spi_mode + 0x00000000 0x2e zephyr/libzephyr.a(bootloader_flash.c.obj) + .bss.mapped 0x00000000 0x1 zephyr/libzephyr.a(bootloader_flash.c.obj) + .bss.map 0x00000000 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.heap_caps_alloc_failed + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_malloc_base + 0x00000000 0xc zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_realloc_base + 0x00000000 0xc zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_register_failed_alloc_callback + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_malloc + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_malloc_default + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_malloc_prefer + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_realloc + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_realloc_default + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_realloc_prefer + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_free + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_calloc + 0x00000000 0xc zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_calloc_prefer + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_get_info + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_print_heap_info + 0x00000000 0x8 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_aligned_alloc + 0x00000000 0xc zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_aligned_free + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_aligned_calloc + 0x00000000 0x8 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_alloc_failed + 0x00000000 0x16 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_malloc_base + 0x00000000 0x23 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_realloc_base + 0x00000000 0x22 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_register_failed_alloc_callback + 0x00000000 0x13 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_malloc + 0x00000000 0x11 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_malloc_extmem_enable + 0x00000000 0x5 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_malloc_default + 0x00000000 0x14 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_malloc_prefer + 0x00000000 0x14 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_realloc + 0x00000000 0x14 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_realloc_default + 0x00000000 0x16 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_realloc_prefer + 0x00000000 0x16 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_free + 0x00000000 0xe zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_calloc + 0x00000000 0x2c zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_calloc_prefer + 0x00000000 0x1b zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_get_total_size + 0x00000000 0xa zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_get_free_size + 0x00000000 0x7 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_get_minimum_free_size + 0x00000000 0x7 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_get_largest_free_block + 0x00000000 0x7 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_get_info + 0x00000000 0x12 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .rodata.heap_caps_print_heap_info.str1.1 + 0x00000000 0x3e zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_print_heap_info + 0x00000000 0xe zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_check_integrity + 0x00000000 0x7 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_check_integrity_all + 0x00000000 0x7 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_check_integrity_addr + 0x00000000 0x7 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_dump + 0x00000000 0x5 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_dump_all + 0x00000000 0x5 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_get_allocated_size + 0x00000000 0x7 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_aligned_alloc + 0x00000000 0x22 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_aligned_free + 0x00000000 0xe zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_aligned_calloc + 0x00000000 0x2e zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .rodata.__func__$0 + 0x00000000 0x18 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .rodata.__func__$1 + 0x00000000 0x11 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .rodata.__func__$2 + 0x00000000 0x17 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .rodata.__func__$3 + 0x00000000 0x16 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .bss.alloc_failed_callback + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_frame 0x00000000 0x2c8 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_info 0x00000000 0xd5f zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_abbrev 0x00000000 0x349 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_loc 0x00000000 0x4d0 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_aranges + 0x00000000 0x100 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_ranges 0x00000000 0x138 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_line 0x00000000 0xbc9 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_str 0x00000000 0x87b zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(soc_flash_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(soc_flash_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(soc_flash_init.c.obj) + .literal.ana_bod_reset_config + 0x00000000 0x8 zephyr/libzephyr.a(soc_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .text.ana_bod_reset_config + 0x00000000 0x34 zephyr/libzephyr.a(soc_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(soc_random.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(soc_random.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(soc_random.c.obj) + .text 0x00000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .data 0x00000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .bss 0x00000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .text 0x00000000 0x0 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .data 0x00000000 0x0 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .bss 0x00000000 0x0 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .literal.arch_early_memcpy + 0x00000000 0x4 zephyr/arch/common/libarch__common.a(init.c.obj) + .text 0x00000000 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + .data 0x00000000 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + .bss 0x00000000 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + .text.arch_early_memcpy + 0x00000000 0x12 zephyr/arch/common/libarch__common.a(init.c.obj) + .text 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .text.arch_cpu_atomic_idle + 0x00000000 0xe zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .literal.arch_syscall_oops + 0x00000000 0x4 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .text 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .text.arch_syscall_oops + 0x00000000 0xd zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .text 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .literal.z_arch_irq_connect_dynamic + 0x00000000 0x4 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .text 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .text.z_irq_priority_set + 0x00000000 0x5 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .text.z_arch_irq_connect_dynamic + 0x00000000 0x12 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .text.xtensa_irq_is_enabled + 0x00000000 0x18 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .text 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .text 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .text.arch_ipi_lazy_coprocessors_save + 0x00000000 0x5 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .text 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .literal.__chk_fail + 0x00000000 0xc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .rodata.__chk_fail.str1.1 + 0x00000000 0x1e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .text.__chk_fail + 0x00000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_frame 0x00000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_info 0x00000000 0x121 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_abbrev 0x00000000 0xba zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_line 0x00000000 0x162 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_str 0x00000000 0x2ea zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .comment 0x00000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .literal.z_errno_wrap + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .text.z_errno_wrap + 0x00000000 0xd zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_frame 0x00000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_info 0x00000000 0xda zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_abbrev 0x00000000 0x9a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_line 0x00000000 0x1a5 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_str 0x00000000 0x264 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .comment 0x00000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .literal._exit + 0x00000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .rodata._exit.str1.1 + 0x00000000 0x5 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .text._exit 0x00000000 0xf zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_frame 0x00000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_info 0x00000000 0xc4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_abbrev 0x00000000 0x7f zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_line 0x00000000 0xa4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_str 0x00000000 0x25b zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .comment 0x00000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .literal.__retarget_lock_init_recursive + 0x00000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_init + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_close_recursive + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_close + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_acquire_recursive + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_acquire + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_try_acquire_recursive + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_try_acquire + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_release_recursive + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_release + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_init_recursive + 0x00000000 0x16 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_init + 0x00000000 0xe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_close_recursive + 0x00000000 0xe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_close + 0x00000000 0xe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_acquire_recursive + 0x00000000 0x12 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_acquire + 0x00000000 0xe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_try_acquire_recursive + 0x00000000 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_try_acquire + 0x00000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_release_recursive + 0x00000000 0xe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_release + 0x00000000 0xe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + ._k_mutex.static.__lock___libc_recursive_mutex_ + 0x00000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_frame 0x00000000 0x100 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_info 0x00000000 0x9c4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_abbrev 0x00000000 0x307 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_loc 0x00000000 0xd4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_aranges + 0x00000000 0x68 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_ranges 0x00000000 0xb8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_line 0x00000000 0x7e2 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_str 0x00000000 0x85f zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .comment 0x00000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__stdin_hook_install + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text.__stdin_hook_install + 0x00000000 0x15 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .rodata.stdout + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .rodata.stdin 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss.__stdin 0x00000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .literal.time 0x00000000 0x4 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .text.time 0x00000000 0x22 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_frame 0x00000000 0x28 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_info 0x00000000 0x14f zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_abbrev 0x00000000 0xff zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_loc 0x00000000 0x37 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_line 0x00000000 0x2ee zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_str 0x00000000 0x298 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .comment 0x00000000 0x20 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .literal.malloc_lock + 0x00000000 0x8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.malloc_unlock + 0x00000000 0x8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.malloc + 0x00000000 0x14 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.aligned_alloc + 0x00000000 0x14 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.realloc + 0x00000000 0x14 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.free 0x00000000 0x10 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.calloc + 0x00000000 0xc zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.reallocarray + 0x00000000 0x8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc_lock + 0x00000000 0x12 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc_unlock + 0x00000000 0xe zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc 0x00000000 0x30 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.aligned_alloc + 0x00000000 0x30 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.realloc 0x00000000 0x30 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.free 0x00000000 0x1c zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.calloc 0x00000000 0x32 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.reallocarray + 0x00000000 0x27 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .data.z_malloc_heap_mutex + 0x00000000 0x14 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.fnmatchx + 0x00000000 0x80 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .literal.fnmatch + 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .data 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .bss 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text.foldcase + 0x00000000 0x13 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text.fnmatchx + 0x00000000 0x55e zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text.fnmatch 0x00000000 0x18 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_frame 0x00000000 0x58 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_info 0x00000000 0x823 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_abbrev 0x00000000 0x2a2 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_loc 0x00000000 0x5f8 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_ranges 0x00000000 0x108 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_line 0x00000000 0xedd zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_str 0x00000000 0x312 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .comment 0x00000000 0x20 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .literal.getentropy + 0x00000000 0x10 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .text 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .data 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .bss 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .text.getentropy + 0x00000000 0x4f zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_frame 0x00000000 0x28 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_info 0x00000000 0x44d zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_abbrev 0x00000000 0x23b zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_loc 0x00000000 0xa2 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_line 0x00000000 0x473 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_str 0x00000000 0x3d6 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .comment 0x00000000 0x20 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .literal.getopt_init + 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .literal.getopt_state_get + 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .literal.getopt + 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .literal.z_getopt_global_state_update_shim + 0x00000000 0x10 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .text 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .data 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .bss 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .text.getopt_init + 0x00000000 0xb zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .text.getopt_state_get + 0x00000000 0xd zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .text.getopt 0x00000000 0x14 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .text.z_getopt_global_state_update_shim + 0x00000000 0x21 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .bss.optopt 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .bss.optind 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .bss.opterr 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .bss.optarg 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_frame 0x00000000 0x70 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_info 0x00000000 0x2e2 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_abbrev 0x00000000 0x18c zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_loc 0x00000000 0x2b zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_aranges + 0x00000000 0x38 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_line 0x00000000 0x30a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_str 0x00000000 0x4ab zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .comment 0x00000000 0x20 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .literal.esp_intr_mark_shared + 0x00000000 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .literal.esp_intr_reserve + 0x00000000 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .iram1.1.literal + 0x00000000 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .iram1.2.literal + 0x00000000 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .literal.esp_intr_free + 0x00000000 0x24 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text 0x00000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .data 0x00000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text.esp_intr_mark_shared + 0x00000000 0x41 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text.esp_intr_reserve + 0x00000000 0x39 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .iram1.1 0x00000000 0x5b zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text.esp_intr_get_intno + 0x00000000 0xc zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text.esp_intr_get_cpu + 0x00000000 0xc zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .iram1.2 0x00000000 0x7a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text.esp_intr_free + 0x00000000 0xe0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text 0x00000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .data 0x00000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .text 0x00000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .data 0x00000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text.uart_register_input + 0x00000000 0x5 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text 0x00000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .data 0x00000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.RtcBkupWrite + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .literal.RtcBkupRead + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .literal.RtcGetCalendarTime + 0x00000000 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .text.RtcBkupWrite + 0x00000000 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .text.RtcBkupRead + 0x00000000 0x16 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .text.RtcGetCalendarTime + 0x00000000 0x3a zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .bss.backup_reg + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .literal.rand1 + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .literal.srand1 + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .literal.randr + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .literal.Crc32 + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .literal.Crc32Update + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.rand1 0x00000000 0x31 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.srand1 0x00000000 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.randr 0x00000000 0x15 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.memcpy1 0x00000000 0x1d zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.memcpyr 0x00000000 0x21 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.memset1 0x00000000 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.Nibble2HexChar + 0x00000000 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.Crc32 0x00000000 0x42 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.Crc32Init + 0x00000000 0x7 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.Crc32Update + 0x00000000 0x3c zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.Crc32Finalize + 0x00000000 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .data.next 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_frame 0x00000000 0x118 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_info 0x00000000 0x431 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_abbrev 0x00000000 0x120 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_loc 0x00000000 0x3fc zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_aranges + 0x00000000 0x70 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_ranges 0x00000000 0xc0 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_line 0x00000000 0x6f2 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_str 0x00000000 0x32e zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .comment 0x00000000 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .literal.CalendarDiv61 + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.SysTimeSet + 0x00000000 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.SysTimeGet + 0x00000000 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.SysTimeGetMcuTime + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.SysTimeToMs + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.SysTimeFromMs + 0x00000000 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.SysTimeMkTime + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.SysTimeLocalTime + 0x00000000 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.CalendarDiv61 + 0x00000000 0x34 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeAdd + 0x00000000 0x24 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeSub + 0x00000000 0x23 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeSet + 0x00000000 0x33 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeGet + 0x00000000 0x3b zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeGetMcuTime + 0x00000000 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeToMs + 0x00000000 0x39 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeFromMs + 0x00000000 0x4a zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .rodata 0x00000000 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeMkTime + 0x00000000 0x86 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeLocalTime + 0x00000000 0x180 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .rodata.str1.1 + 0x00000000 0x1c zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .data.WeekDayString + 0x00000000 0x1c zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_frame 0x00000000 0x100 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_info 0x00000000 0x911 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_abbrev 0x00000000 0x2d3 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_loc 0x00000000 0x966 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_aranges + 0x00000000 0x68 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_ranges 0x00000000 0x70 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_line 0x00000000 0xe83 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_str 0x00000000 0x4ae zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .comment 0x00000000 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.TimerReset + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .literal.TimerTempCompensation + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .literal.TimerProcess + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .text.TimerSetContext + 0x00000000 0x7 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .text.TimerIsStarted + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .text.TimerReset + 0x00000000 0x16 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .text.TimerTempCompensation + 0x00000000 0x11 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .text.TimerProcess + 0x00000000 0xb zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .literal.Delay + 0x00000000 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .text.Delay 0x00000000 0x1c zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .literal.SX126xSetFs + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xSetTxInfinitePreamble + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xCalibrate + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xSetRxTxFallbackMode + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xSetDio3AsTcxoCtrl + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xSetCadParams + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xGetStatus + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xGetDeviceErrors + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xClearDeviceErrors + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xSetFs + 0x00000000 0x1a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xSetTxInfinitePreamble + 0x00000000 0x1a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xCalibrate + 0x00000000 0x4e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xSetRxTxFallbackMode + 0x00000000 0x16 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xSetDio3AsTcxoCtrl + 0x00000000 0x27 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xSetCadParams + 0x00000000 0x36 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xGetStatus + 0x00000000 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xGetDeviceErrors + 0x00000000 0x28 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xClearDeviceErrors + 0x00000000 0x16 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .text 0x00000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .data 0x00000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .text 0x00000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .data 0x00000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .text 0x00000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .data 0x00000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text 0x00000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .data 0x00000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .text 0x00000000 0x0 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .data 0x00000000 0x0 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .text 0x00000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .data 0x00000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text.sys_clock_set_timeout + 0x00000000 0x5 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text.sys_clock_idle_exit + 0x00000000 0x5 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_frame 0x00000000 0x40 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_info 0x00000000 0xda zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_abbrev 0x00000000 0x7e zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_ranges 0x00000000 0x18 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_line 0x00000000 0x1b9 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_str 0x00000000 0x27e zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .comment 0x00000000 0x20 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text 0x00000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .data 0x00000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .text.sys_clock_idle_exit + 0x00000000 0x5 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .literal.z_impl_device_init + 0x00000000 0x4 zephyr/kernel/libkernel.a(device.c.obj) + .literal.z_device_get_all_static + 0x00000000 0xc zephyr/kernel/libkernel.a(device.c.obj) + .literal.z_impl_device_get_binding + 0x00000000 0x10 zephyr/kernel/libkernel.a(device.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_impl_device_init + 0x00000000 0x1a zephyr/kernel/libkernel.a(device.c.obj) + .text.z_device_get_all_static + 0x00000000 0x19 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_impl_device_get_binding + 0x00000000 0x42 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_impl_device_deinit + 0x00000000 0x8 zephyr/kernel/libkernel.a(device.c.obj) + .literal.z_impl_z_errno + 0x00000000 0x4 zephyr/kernel/libkernel.a(errno.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(errno.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(errno.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(errno.c.obj) + .text.z_impl_z_errno + 0x00000000 0xd zephyr/kernel/libkernel.a(errno.c.obj) + .rodata._k_neg_eagain + 0x00000000 0x4 zephyr/kernel/libkernel.a(errno.c.obj) + .debug_frame 0x00000000 0x28 zephyr/kernel/libkernel.a(errno.c.obj) + .debug_info 0x00000000 0x666 zephyr/kernel/libkernel.a(errno.c.obj) + .debug_abbrev 0x00000000 0x1b1 zephyr/kernel/libkernel.a(errno.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/kernel/libkernel.a(errno.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/kernel/libkernel.a(errno.c.obj) + .debug_line 0x00000000 0x38a zephyr/kernel/libkernel.a(errno.c.obj) + .debug_str 0x00000000 0x6c3 zephyr/kernel/libkernel.a(errno.c.obj) + .comment 0x00000000 0x20 zephyr/kernel/libkernel.a(errno.c.obj) + .literal.k_fatal_halt + 0x00000000 0x4 zephyr/kernel/libkernel.a(fatal.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .text.k_fatal_halt + 0x00000000 0xc zephyr/kernel/libkernel.a(fatal.c.obj) + .literal.z_early_rand_get + 0x00000000 0x18 zephyr/kernel/libkernel.a(init.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .text.z_early_rand_get + 0x00000000 0x5b zephyr/kernel/libkernel.a(init.c.obj) + .data.state$1 0x00000000 0x8 zephyr/kernel/libkernel.a(init.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .text.arch_spin_relax + 0x00000000 0x7 zephyr/kernel/libkernel.a(idle.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .literal.z_impl_k_sem_reset + 0x00000000 0x14 zephyr/kernel/libkernel.a(sem.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .text.z_impl_k_sem_reset + 0x00000000 0x7e zephyr/kernel/libkernel.a(sem.c.obj) + .literal.unschedule_locked + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.cancel_async_locked + 0x00000000 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .literal.cancel_sync_locked + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.work_timeout + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.work_flush_locked + 0x00000000 0x10 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_flush + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_cancel + 0x00000000 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_cancel_sync + 0x00000000 0xc zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_queue_init + 0x00000000 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_queue_run + 0x00000000 0xc zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_queue_drain + 0x00000000 0xc zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_queue_unplug + 0x00000000 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_queue_stop + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_init_delayable + 0x00000000 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_delayable_busy_get + 0x00000000 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_schedule_for_queue + 0x00000000 0xc zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_schedule + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_reschedule_for_queue + 0x00000000 0x10 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_reschedule + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_cancel_delayable + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_cancel_delayable_sync + 0x00000000 0x10 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_flush_delayable + 0x00000000 0x10 zephyr/kernel/libkernel.a(work.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .text.handle_flush + 0x00000000 0x5 zephyr/kernel/libkernel.a(work.c.obj) + .text.unschedule_locked + 0x00000000 0x24 zephyr/kernel/libkernel.a(work.c.obj) + .text.cancel_async_locked + 0x00000000 0x66 zephyr/kernel/libkernel.a(work.c.obj) + .text.cancel_sync_locked + 0x00000000 0x32 zephyr/kernel/libkernel.a(work.c.obj) + .text.work_timeout + 0x00000000 0x30 zephyr/kernel/libkernel.a(work.c.obj) + .text.work_flush_locked + 0x00000000 0x77 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_busy_get + 0x00000000 0x13 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_flush + 0x00000000 0x2a zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel + 0x00000000 0x18 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_sync + 0x00000000 0x3e zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_init + 0x00000000 0x12 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_run + 0x00000000 0x50 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_drain + 0x00000000 0x59 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_unplug + 0x00000000 0x24 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_stop + 0x00000000 0x76 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_init_delayable + 0x00000000 0x19 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_delayable_busy_get + 0x00000000 0x10 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_schedule_for_queue + 0x00000000 0x4c zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_schedule + 0x00000000 0x16 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_reschedule_for_queue + 0x00000000 0x4c zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_reschedule + 0x00000000 0x16 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_delayable + 0x00000000 0x20 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_delayable_sync + 0x00000000 0x46 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_flush_delayable + 0x00000000 0x56 zephyr/kernel/libkernel.a(work.c.obj) + .literal.z_impl_k_is_preempt_thread + 0x00000000 0x4 zephyr/kernel/libkernel.a(thread.c.obj) + .literal.k_thread_state_str + 0x00000000 0x14 zephyr/kernel/libkernel.a(thread.c.obj) + .literal.k_thread_user_mode_enter + 0x00000000 0x8 zephyr/kernel/libkernel.a(thread.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_is_preempt_thread + 0x00000000 0x22 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_thread_priority_get + 0x00000000 0xb zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_thread_name_copy + 0x00000000 0x8 zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.k_thread_state_str.str1.1 + 0x00000000 0x3 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_state_str + 0x00000000 0x75 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_init_thread_base + 0x00000000 0x19 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_user_mode_enter + 0x00000000 0x28 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_get + 0x00000000 0x18 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_all_get + 0x00000000 0xe zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_cpu_get + 0x00000000 0xc zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.str1.1 + 0x00000000 0x41 zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.state_string$0 + 0x00000000 0x40 zephyr/kernel/libkernel.a(thread.c.obj) + .literal.z_requeue_current + 0x00000000 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_yield_testing_only + 0x00000000 0x4 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_impl_k_thread_suspend + 0x00000000 0x20 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_impl_k_thread_resume + 0x00000000 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_pend_thread + 0x00000000 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_swap_next_thread + 0x00000000 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_impl_k_thread_priority_set + 0x00000000 0xc zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_impl_k_reschedule + 0x00000000 0x10 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.k_can_yield + 0x00000000 0x10 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_impl_k_usleep + 0x00000000 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_impl_k_thread_join + 0x00000000 0x10 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_unready_thread + 0x00000000 0x4 zephyr/kernel/libkernel.a(sched.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_requeue_current + 0x00000000 0x47 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_yield_testing_only + 0x00000000 0x14 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_suspend + 0x00000000 0xe5 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_resume + 0x00000000 0x30 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_pend_thread + 0x00000000 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_swap_next_thread + 0x00000000 0x22 zephyr/kernel/libkernel.a(sched.c.obj) + .text.init_ready_q + 0x00000000 0xb zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_priority_set + 0x00000000 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_reschedule + 0x00000000 0x4e zephyr/kernel/libkernel.a(sched.c.obj) + .text.k_can_yield + 0x00000000 0x44 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_usleep + 0x00000000 0x30 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_join + 0x00000000 0x60 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_sched_waitq_walk + 0x00000000 0x54 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_unready_thread + 0x00000000 0x16 zephyr/kernel/libkernel.a(sched.c.obj) + .bss._sched_spinlock + 0x00000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.k_sched_time_slice_set + 0x00000000 0x10 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text.k_sched_time_slice_set + 0x00000000 0x28 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .literal.timeout_rem + 0x00000000 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .literal.z_timeout_remaining + 0x00000000 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .literal.z_timeout_expires + 0x00000000 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .literal.z_get_next_timeout_expiry + 0x00000000 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .literal.sys_timepoint_calc + 0x00000000 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + .literal.sys_timepoint_timeout + 0x00000000 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.timeout_rem + 0x00000000 0x34 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_timeout_remaining + 0x00000000 0x38 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_timeout_expires + 0x00000000 0x2c zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_get_next_timeout_expiry + 0x00000000 0x1c zephyr/kernel/libkernel.a(timeout.c.obj) + .text.sys_timepoint_calc + 0x00000000 0x46 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.sys_timepoint_timeout + 0x00000000 0x42 zephyr/kernel/libkernel.a(timeout.c.obj) + .literal.z_impl_k_timer_status_sync + 0x00000000 0x8 zephyr/kernel/libkernel.a(timer.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .text.z_impl_k_timer_status_get + 0x00000000 0x16 zephyr/kernel/libkernel.a(timer.c.obj) + .text.z_impl_k_timer_status_sync + 0x00000000 0x31 zephyr/kernel/libkernel.a(timer.c.obj) + .bss.lock 0x00000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .literal.triggered_work_handler + 0x00000000 0x4 zephyr/kernel/libkernel.a(poll.c.obj) + .literal.triggered_work_expiration_handler + 0x00000000 0x4 zephyr/kernel/libkernel.a(poll.c.obj) + .literal.k_work_poll_init + 0x00000000 0xc zephyr/kernel/libkernel.a(poll.c.obj) + .literal.k_work_poll_submit_to_queue + 0x00000000 0x1c zephyr/kernel/libkernel.a(poll.c.obj) + .literal.k_work_poll_submit + 0x00000000 0x8 zephyr/kernel/libkernel.a(poll.c.obj) + .literal.k_work_poll_cancel + 0x00000000 0x8 zephyr/kernel/libkernel.a(poll.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + .text.triggered_work_handler + 0x00000000 0x2b zephyr/kernel/libkernel.a(poll.c.obj) + .text.triggered_work_expiration_handler + 0x00000000 0x1a zephyr/kernel/libkernel.a(poll.c.obj) + .text.k_poll_event_init + 0x00000000 0x25 zephyr/kernel/libkernel.a(poll.c.obj) + .text.z_impl_k_poll_signal_init + 0x00000000 0xd zephyr/kernel/libkernel.a(poll.c.obj) + .text.z_impl_k_poll_signal_reset + 0x00000000 0x9 zephyr/kernel/libkernel.a(poll.c.obj) + .text.z_impl_k_poll_signal_check + 0x00000000 0xd zephyr/kernel/libkernel.a(poll.c.obj) + .text.k_work_poll_init + 0x00000000 0x26 zephyr/kernel/libkernel.a(poll.c.obj) + .text.k_work_poll_submit_to_queue + 0x00000000 0xdc zephyr/kernel/libkernel.a(poll.c.obj) + .text.k_work_poll_submit + 0x00000000 0x1a zephyr/kernel/libkernel.a(poll.c.obj) + .text.k_work_poll_cancel + 0x00000000 0x44 zephyr/kernel/libkernel.a(poll.c.obj) + .literal.z_thread_alloc_helper + 0x00000000 0x10 zephyr/kernel/libkernel.a(mempool.c.obj) + .literal.k_aligned_alloc + 0x00000000 0xc zephyr/kernel/libkernel.a(mempool.c.obj) + .literal.k_realloc + 0x00000000 0xc zephyr/kernel/libkernel.a(mempool.c.obj) + .literal.z_thread_aligned_alloc + 0x00000000 0x8 zephyr/kernel/libkernel.a(mempool.c.obj) + .literal.z_thread_malloc + 0x00000000 0x8 zephyr/kernel/libkernel.a(mempool.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.z_thread_alloc_helper + 0x00000000 0x2c zephyr/kernel/libkernel.a(mempool.c.obj) + .text.k_aligned_alloc + 0x00000000 0x18 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.k_realloc + 0x00000000 0x47 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.z_thread_aligned_alloc + 0x00000000 0x14 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.z_thread_malloc + 0x00000000 0x14 zephyr/kernel/libkernel.a(mempool.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(banner.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(banner.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(banner.c.obj) + .literal.z_heap_alloc_helper + 0x00000000 0xc zephyr/kernel/libkernel.a(kheap.c.obj) + .literal.k_heap_array_get + 0x00000000 0xc zephyr/kernel/libkernel.a(kheap.c.obj) + .literal.k_heap_alloc + 0x00000000 0x8 zephyr/kernel/libkernel.a(kheap.c.obj) + .literal.k_heap_aligned_alloc + 0x00000000 0x8 zephyr/kernel/libkernel.a(kheap.c.obj) + .literal.k_heap_calloc + 0x00000000 0x8 zephyr/kernel/libkernel.a(kheap.c.obj) + .literal.k_heap_realloc + 0x00000000 0x10 zephyr/kernel/libkernel.a(kheap.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.z_heap_alloc_helper + 0x00000000 0x5e zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_array_get + 0x00000000 0x19 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_alloc + 0x00000000 0x1c zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_aligned_alloc + 0x00000000 0x1c zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_calloc + 0x00000000 0x32 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_realloc + 0x00000000 0x5e zephyr/kernel/libkernel.a(kheap.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .text 0x00000000 0x18 /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/libgcc.a(_ashldi3.o) + .data 0x00000000 0x0 /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/libgcc.a(_ashldi3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_ashldi3.o) + .text 0x00000000 0x19 /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/libgcc.a(_ashrdi3.o) + .data 0x00000000 0x0 /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/libgcc.a(_ashrdi3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_ashrdi3.o) + .text 0x00000000 0x18 /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/libgcc.a(_lshrdi3.o) + .data 0x00000000 0x0 /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/libgcc.a(_lshrdi3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_lshrdi3.o) + .text 0x00000000 0x14 /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/libgcc.a(_bswapsi2.o) + .data 0x00000000 0x0 /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/libgcc.a(_bswapsi2.o) + .bss 0x00000000 0x0 /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/libgcc.a(_bswapsi2.o) + .text 0x00000000 0x22 /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/libgcc.a(_bswapdi2.o) + .data 0x00000000 0x0 /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/libgcc.a(_bswapdi2.o) + .bss 0x00000000 0x0 /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/libgcc.a(_bswapdi2.o) + .text 0x00000000 0x59 /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/libgcc.a(_divsf3.o) + .data 0x00000000 0x0 /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/libgcc.a(_divsf3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_divsf3.o) + .literal 0x00000000 0x10 /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/libgcc.a(_addsubdf3.o) + .text 0x00000000 0x312 /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/libgcc.a(_addsubdf3.o) + .data 0x00000000 0x0 /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/libgcc.a(_addsubdf3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_addsubdf3.o) + .literal 0x00000000 0xc /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/libgcc.a(_muldf3.o) + .text 0x00000000 0x1ff /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/libgcc.a(_muldf3.o) + .data 0x00000000 0x0 /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/libgcc.a(_muldf3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_muldf3.o) + .literal 0x00000000 0x10 /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/libgcc.a(_divdf3.o) + .text 0x00000000 0x213 /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/libgcc.a(_divdf3.o) + .data 0x00000000 0x0 /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/libgcc.a(_divdf3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_divdf3.o) + .literal 0x00000000 0x4 /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/libgcc.a(_fixdfdi.o) + .text 0x00000000 0x6c /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/libgcc.a(_fixdfdi.o) + .data 0x00000000 0x0 /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/libgcc.a(_fixdfdi.o) + .bss 0x00000000 0x0 /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/libgcc.a(_fixdfdi.o) + .text 0x00000000 0x3d /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/libgcc.a(_floatsidf.o) + .data 0x00000000 0x0 /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/libgcc.a(_floatsidf.o) + .bss 0x00000000 0x0 /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/libgcc.a(_floatsidf.o) + .text 0x00000000 0x81 /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/libgcc.a(_floatdidf.o) + .data 0x00000000 0x0 /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/libgcc.a(_floatdidf.o) + .bss 0x00000000 0x0 /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/libgcc.a(_floatdidf.o) + .literal 0x00000000 0x8 /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/libgcc.a(_truncdfsf2.o) + .text 0x00000000 0xa4 /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/libgcc.a(_truncdfsf2.o) + .data 0x00000000 0x0 /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/libgcc.a(_truncdfsf2.o) + .bss 0x00000000 0x0 /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/libgcc.a(_truncdfsf2.o) + .literal 0x00000000 0x8 /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/libgcc.a(_extendsfdf2.o) + .text 0x00000000 0x62 /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/libgcc.a(_extendsfdf2.o) + .data 0x00000000 0x0 /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/libgcc.a(_extendsfdf2.o) + .bss 0x00000000 0x0 /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/libgcc.a(_extendsfdf2.o) + .literal 0x00000000 0xc /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/libgcc.a(_popcountsi2.o) + .text 0x00000000 0x37 /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/libgcc.a(_popcountsi2.o) + .data 0x00000000 0x0 /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/libgcc.a(_popcountsi2.o) + .bss 0x00000000 0x0 /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/libgcc.a(_popcountsi2.o) + .debug_frame 0x00000000 0x28 /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/libgcc.a(_popcountsi2.o) + .text 0x00000000 0x26e /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/libgcc.a(_divdi3.o) + .data 0x00000000 0x0 /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/libgcc.a(_divdi3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_divdi3.o) + .text 0x00000000 0x2ea /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/libgcc.a(_moddi3.o) + .data 0x00000000 0x0 /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/libgcc.a(_moddi3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_moddi3.o) + .text 0x00000000 0x254 /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/libgcc.a(_udivdi3.o) + .data 0x00000000 0x0 /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/libgcc.a(_udivdi3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_udivdi3.o) + .text 0x00000000 0x2bb /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/libgcc.a(_umoddi3.o) + .data 0x00000000 0x0 /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/libgcc.a(_umoddi3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_umoddi3.o) + .literal 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memcpy.S.o) + .text 0x00000000 0x135 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memcpy.S.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memcpy.S.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memcpy.S.o) + .literal 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memset.S.o) + .text 0x00000000 0x74 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memset.S.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memset.S.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memset.S.o) + .literal 0x00000000 0x1c /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + .text 0x00000000 0x123 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + .literal 0x00000000 0xc /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + .text 0x00000000 0x63 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + .text.memcmp 0x00000000 0x26 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + .text.strchr 0x00000000 0x1d /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + .text.strnlen 0x00000000 0x1a /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + .text.putc 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + .text.fputs 0x00000000 0x33 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + .literal.printf + 0x00000000 0x8 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + .text.printf 0x00000000 0x2e /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + .literal.puts 0x00000000 0x4 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + .text.puts 0x00000000 0x43 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .literal.scanf_getc + 0x00000000 0x4 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .literal.skip_spaces + 0x00000000 0x8 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .literal.__l_vfscanf + 0x00000000 0x4c /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .text.scanf_getc + 0x00000000 0x1a /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .text.skip_spaces + 0x00000000 0x46 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .text.putval 0x00000000 0x32 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .rodata.__l_vfscanf.str1.1 + 0x00000000 0xc /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .text.__l_vfscanf + 0x00000000 0x456 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .debug_frame 0x00000000 0x70 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + .text.getc 0x00000000 0x96 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + .text.ungetc 0x00000000 0x7c /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + +Memory Configuration + +Name Origin Length Attributes +FLASH 0x00000000 0x007fff00 r +iram0_0_seg 0x40374000 0x00065704 xr +dram0_0_seg 0x3fc88000 0x00061704 rw +irom0_0_seg 0x42000000 0x02000000 xr +drom0_0_seg 0x3c000000 0x02000000 r +rtc_iram_seg 0x600fe000 0x00002000 xrw +rtc_slow_seg 0x50000000 0x00002000 rw +IDT_LIST 0x3ebfe010 0x00002000 rw +*default* 0x00000000 0xffffffff + +Linker script and memory map + + 0x420074f8 vfprintf = __l_vfprintf + 0x00000000 vfscanf = __l_vfscanf +LOAD zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj +LOAD zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj +LOAD zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj +LOAD app/libapp.a +LOAD zephyr/libzephyr.a +LOAD zephyr/arch/common/libarch__common.a +LOAD zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a +LOAD zephyr/lib/libc/picolibc/liblib__libc__picolibc.a +LOAD zephyr/lib/libc/common/liblib__libc__common.a +LOAD zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a +LOAD zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a +LOAD zephyr/drivers/clock_control/libdrivers__clock_control.a +LOAD zephyr/drivers/console/libdrivers__console.a +LOAD zephyr/drivers/gpio/libdrivers__gpio.a +LOAD zephyr/drivers/lora/loramac-node/libloramac-node.a +LOAD zephyr/drivers/pinctrl/libdrivers__pinctrl.a +LOAD zephyr/drivers/serial/libdrivers__serial.a +LOAD zephyr/drivers/spi/libdrivers__spi.a +LOAD zephyr/drivers/timer/libdrivers__timer.a +LOAD zephyr/kernel/libkernel.a +LOAD zephyr/arch/common/libisr_tables.a +LOAD /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/libgcc.a +LOAD /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a +LOAD /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/libgcc.a + 0x403d9704 procpu_iram_end = 0x403d9704 + 0x3fce9704 procpu_dram_end = 0x3fce9704 + 0x40374000 procpu_iram_org = 0x40374000 + 0x00065704 procpu_iram_len = (procpu_iram_end - procpu_iram_org) + 0x3fc88000 procpu_dram_org = 0x3fc88000 + 0x00061704 procpu_dram_len = (procpu_dram_end - procpu_dram_org) + 0x44000000 procpu_irom_end = 0x44000000 + 0x3e000000 procpu_drom_end = 0x3e000000 + 0x42000000 procpu_irom_org = 0x42000000 + 0x02000000 procpu_irom_len = 0x2000000 + 0x3c000000 procpu_drom_org = 0x3c000000 + 0x02000000 procpu_drom_len = 0x2000000 + 0x600fe000 rtc_iram_org = 0x600fe000 + 0x00002000 rtc_iram_len = 0x2000 + 0x50000000 rtc_slow_org = 0x50000000 + 0x00002000 rtc_slow_len = 0x2000 + 0x3fce9704 _heap_sentry = 0x3fce9704 + 0x0005334c _libc_heap_size = (_heap_sentry - _end) + 0x006f0000 _iram_dram_offset = 0x6f0000 + +.rel.plt 0x00000000 0x0 + *(SORT_BY_ALIGNMENT(.rel.plt)) + [!provide] PROVIDE (__rel_iplt_start = .) + *(SORT_BY_ALIGNMENT(.rel.iplt)) + [!provide] PROVIDE (__rel_iplt_end = .) + +.rela.plt 0x00000000 0x0 + *(SORT_BY_ALIGNMENT(.rela.plt)) + [!provide] PROVIDE (__rela_iplt_start = .) + *(SORT_BY_ALIGNMENT(.rela.iplt)) + [!provide] PROVIDE (__rela_iplt_end = .) + +.rel.dyn + *(SORT_BY_ALIGNMENT(.rel.*)) + +.rela.dyn + *(SORT_BY_ALIGNMENT(.rela.*)) + +.rtc.text 0x600fe000 0x0 load address 0x00000000 + 0x600fe000 . = ALIGN (0x4) + 0x600fe000 _rtc_text_start = ABSOLUTE (.) + 0x600fe000 _rtc_fast_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.rtc.literal) SORT_BY_ALIGNMENT(.rtc.literal.*)) + *(SORT_BY_ALIGNMENT(.rtc.text) SORT_BY_ALIGNMENT(.rtc.text.*)) + *(SORT_BY_ALIGNMENT(.rtc.entry.literal)) + *(SORT_BY_ALIGNMENT(.rtc.entry.text)) + 0x600fe000 . = ALIGN (0x4) + +.rtc.force_fast + 0x600fe000 0x0 load address 0x00000000 + 0x600fe000 . = ALIGN (0x4) + 0x600fe000 _rtc_force_fast_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.rtc.force_fast) SORT_BY_ALIGNMENT(.rtc.force_fast.*)) + 0x600fe000 . = ALIGN (0x4) + 0x600fe000 _rtc_force_fast_end = ABSOLUTE (.) + +.rtc.data 0x50000000 0x0 load address 0x00000000 + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_data_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.rtc.data) SORT_BY_ALIGNMENT(.rtc.data.*)) + *(SORT_BY_ALIGNMENT(.rtc.rodata) SORT_BY_ALIGNMENT(.rtc.rodata.*)) + 0x50000000 _rtc_data_end = ABSOLUTE (.) + +.rtc.bss 0x50000000 0x0 load address 0x00000000 + 0x50000000 _rtc_bss_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.rtc.bss) SORT_BY_ALIGNMENT(.rtc.bss.*)) + 0x50000000 _rtc_bss_end = ABSOLUTE (.) + +.rtc_noinit 0x50000000 0x0 load address 0x00000000 + 0x50000000 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.rtc_noinit) SORT_BY_ALIGNMENT(.rtc_noinit.*)) + 0x50000000 . = ALIGN (0x4) + +.rtc.force_slow + 0x50000000 0x24 load address 0x00000000 + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_force_slow_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.rtc.force_slow) SORT_BY_ALIGNMENT(.rtc.force_slow.*)) + .rtc.force_slow.3 + 0x50000000 0x24 zephyr/libzephyr.a(sleep_modes.c.obj) + 0x50000024 . = ALIGN (0x4) + 0x50000024 _rtc_force_slow_end = ABSOLUTE (.) + 0x00000024 _rtc_slow_length = (_rtc_force_slow_end - _rtc_data_start) + 0x00000000 _rtc_fast_length = (_rtc_force_fast_end - _rtc_fast_start) + +.iram0.vectors 0x40374000 0x400 load address 0x00000024 + 0x40374000 _init_start = ABSOLUTE (.) + 0x00000000 . = 0x0 + *(SORT_BY_ALIGNMENT(.WindowVectors.text)) + .WindowVectors.text + 0x40374000 0x16a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + 0x40374000 _WindowOverflow4 + 0x40374040 _WindowUnderflow4 + 0x40374050 _xt_alloca_exc + 0x40374080 _WindowOverflow8 + 0x403740c0 _WindowUnderflow8 + 0x40374100 _WindowOverflow12 + 0x40374140 _WindowUnderflow12 + 0x00000180 . = 0x180 + *fill* 0x4037416a 0x16 + *(SORT_BY_ALIGNMENT(.Level2InterruptVector.text)) + .Level2InterruptVector.text + 0x40374180 0x2d zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x40374180 _Level2Vector + 0x000001c0 . = 0x1c0 + *fill* 0x403741ad 0x13 + *(SORT_BY_ALIGNMENT(.Level3InterruptVector.text)) + .Level3InterruptVector.text + 0x403741c0 0x29 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x2d (size before relaxing) + 0x403741c0 _Level3Vector + 0x00000200 . = 0x200 + *fill* 0x403741e9 0x17 + *(SORT_BY_ALIGNMENT(.Level4InterruptVector.text)) + .Level4InterruptVector.text + 0x40374200 0x29 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x2d (size before relaxing) + 0x40374200 _Level4Vector + 0x00000240 . = 0x240 + *fill* 0x40374229 0x17 + *(SORT_BY_ALIGNMENT(.Level5InterruptVector.text)) + .Level5InterruptVector.text + 0x40374240 0x29 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x2d (size before relaxing) + 0x40374240 _Level5Vector + 0x00000280 . = 0x280 + *fill* 0x40374269 0x17 + *(SORT_BY_ALIGNMENT(.DebugExceptionVector.text)) + .DebugExceptionVector.text + 0x40374280 0x29 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x2d (size before relaxing) + 0x40374280 _Level6Vector + 0x000002c0 . = 0x2c0 + *fill* 0x403742a9 0x17 + *(SORT_BY_ALIGNMENT(.NMIExceptionVector.text)) + .NMIExceptionVector.text + 0x403742c0 0x29 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x2d (size before relaxing) + 0x403742c0 _Level7Vector + 0x00000300 . = 0x300 + *fill* 0x403742e9 0x17 + *(SORT_BY_ALIGNMENT(.KernelExceptionVector.text)) + .KernelExceptionVector.text + 0x40374300 0x3 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x40374300 _KernelExceptionVector + 0x00000340 . = 0x340 + *fill* 0x40374303 0x3d + *(SORT_BY_ALIGNMENT(.UserExceptionVector.text)) + .UserExceptionVector.text + 0x40374340 0x16 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x40374340 _Level1RealVector + 0x000003c0 . = 0x3c0 + *fill* 0x40374356 0x6a + *(SORT_BY_ALIGNMENT(.DoubleExceptionVector.text)) + .DoubleExceptionVector.text + 0x403743c0 0x3 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x403743c0 _DoubleExceptionVector + 0x00000400 . = 0x400 + *fill* 0x403743c3 0x3d + 0x40374400 _invalid_pc_placeholder = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.*Vector.literal)) + *(SORT_BY_ALIGNMENT(.UserEnter.literal)) + *(SORT_BY_ALIGNMENT(.UserEnter.text)) + 0x40374400 . = ALIGN (0x10) + *(SORT_BY_ALIGNMENT(.entry.text)) + *(SORT_BY_ALIGNMENT(.init.literal)) + *(.init) + 0x40374400 _init_end = ABSOLUTE (.) + 0x40374400 _iram_start = ABSOLUTE (.) + +.iram0.text 0x40374400 0xac6c load address 0x00000424 + 0x40374400 _iram_text_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.iram1) SORT_BY_ALIGNMENT(.iram1.*)) + .iram1.1.literal + 0x40374400 0xc zephyr/libzephyr.a(soc.c.obj) + 0x1c (size before relaxing) + .iram1.3.literal + 0x4037440c 0x4 zephyr/libzephyr.a(soc.c.obj) + 0x8 (size before relaxing) + .iram1.3.literal + 0x40374410 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .iram1.1.literal + 0x40374414 0x4 zephyr/libzephyr.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .iram1.2.literal + 0x40374418 0x4 zephyr/libzephyr.a(flash_ops.c.obj) + .iram1.4.literal + 0x4037441c 0x4 zephyr/libzephyr.a(flash_ops.c.obj) + 0xc (size before relaxing) + .iram1.5.literal + 0x40374420 0x0 zephyr/libzephyr.a(flash_ops.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x40374420 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x40374420 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x40374420 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x40374420 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x40374420 0x4 zephyr/libzephyr.a(cache_utils.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x40374424 0x0 zephyr/libzephyr.a(cache_utils.c.obj) + 0xc (size before relaxing) + .iram1.8.literal + 0x40374424 0x1c zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.9.literal + 0x40374440 0xc zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.3.literal + 0x4037444c 0x8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.4.literal + 0x40374454 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x8 (size before relaxing) + .iram1.3.literal + 0x40374454 0xc zephyr/libzephyr.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x40374460 0xc zephyr/libzephyr.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .iram1.4.literal + 0x4037446c 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .iram1.2.literal + 0x40374470 0x18 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x2c (size before relaxing) + .iram1.1.literal + 0x40374488 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x40374488 0x8 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .iram1.1.literal + 0x40374490 0x0 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x8 (size before relaxing) + .iram1.6.literal + 0x40374490 0x10 zephyr/libzephyr.a(rtc_module.c.obj) + .iram1.7.literal + 0x403744a0 0x0 zephyr/libzephyr.a(rtc_module.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x403744a0 0x4 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.0.literal + 0x403744a4 0x4 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .iram1.0.literal + 0x403744a8 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.1.literal + 0x403744ac 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x403744ac 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x403744ac 0x1c zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x24 (size before relaxing) + .iram1.2.literal + 0x403744c8 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x403744c8 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x3c (size before relaxing) + .iram1.3.literal + 0x403744cc 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x403744cc 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x8 (size before relaxing) + .iram1.6.literal + 0x403744d0 0xc zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x40 (size before relaxing) + .iram1.8.literal + 0x403744dc 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x403744dc 0xc zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .iram1.4.literal + 0x403744e8 0xc zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x18 (size before relaxing) + .iram1.5.literal + 0x403744f4 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x10 (size before relaxing) + .iram1.2.literal + 0x403744f4 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x403744fc 0x48 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x5c (size before relaxing) + .iram1.0.literal + 0x40374544 0x4 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .iram1.0.literal + 0x40374548 0x40 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x78 (size before relaxing) + .literal.xtensa_exccause + 0x40374588 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .literal.xtensa_fatal_error + 0x40374590 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + 0x8 (size before relaxing) + .literal 0x40374590 0x4 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x8 (size before relaxing) + .literal.z_irq_spurious + 0x40374594 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + 0x10 (size before relaxing) + .literal.arch_new_thread + 0x4037459c 0xc zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .literal.xtensa_handle_irq_lvl + 0x403745a8 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .literal.return_to + 0x403745b0 0x4 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.z_log_msg_static_create$constprop$0 + 0x403745b4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x4 (size before relaxing) + .literal.xtensa_dump_stack$part$0 + 0x403745b4 0x1c zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x3c (size before relaxing) + .literal.xtensa_is_outside_stack_bounds + 0x403745d0 0x4 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_is_frame_pointer_valid + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_dump_stack + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_int2_c + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_int3_c + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_int4_c + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_int5_c + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_int6_c + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_int7_c + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_excint1_c + 0x403745d4 0x28 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x64 (size before relaxing) + .literal.z_prep_c + 0x403745fc 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + 0x8 (size before relaxing) + .literal.z_isr_install + 0x403745fc 0x0 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + 0x8 (size before relaxing) + .literal.arch_irq_connect_dynamic + 0x403745fc 0x0 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + 0x4 (size before relaxing) + .literal.arch_early_memset + 0x403745fc 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x4 (size before relaxing) + .literal.arch_bss_zero + 0x403745fc 0x8 zephyr/arch/common/libarch__common.a(init.c.obj) + 0xc (size before relaxing) + .literal.z_impl_k_busy_wait + 0x40374604 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + 0x8 (size before relaxing) + .literal.k_sys_fatal_error_handler + 0x40374604 0x4 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x14 (size before relaxing) + .literal.z_fatal_error + 0x40374608 0x18 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x38 (size before relaxing) + .literal.z_sys_init_run_level + 0x40374620 0x4 zephyr/kernel/libkernel.a(init.c.obj) + 0x8 (size before relaxing) + .literal.bg_thread_main + 0x40374624 0x14 zephyr/kernel/libkernel.a(init.c.obj) + 0x38 (size before relaxing) + .literal.z_init_cpu + 0x40374638 0xc zephyr/kernel/libkernel.a(init.c.obj) + 0x18 (size before relaxing) + .literal.z_cstart + 0x40374644 0x10 zephyr/kernel/libkernel.a(init.c.obj) + 0x44 (size before relaxing) + .literal.idle 0x40374654 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + 0x4 (size before relaxing) + .literal.adjust_owner_prio$isra$0 + 0x40374654 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x4 (size before relaxing) + .literal.z_impl_k_mutex_lock + 0x40374654 0x4 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x18 (size before relaxing) + .literal.z_impl_k_mutex_unlock + 0x40374658 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x18 (size before relaxing) + .literal.z_impl_k_sem_give + 0x40374658 0x4 zephyr/kernel/libkernel.a(sem.c.obj) + 0x14 (size before relaxing) + .literal.z_impl_k_sem_take + 0x4037465c 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + 0x8 (size before relaxing) + .literal.notify_queue_locked$isra$0 + 0x4037465c 0x0 zephyr/kernel/libkernel.a(work.c.obj) + 0x4 (size before relaxing) + .literal.work_queue_main + 0x4037465c 0x8 zephyr/kernel/libkernel.a(work.c.obj) + 0x20 (size before relaxing) + .literal.submit_to_queue_locked + 0x40374664 0x0 zephyr/kernel/libkernel.a(work.c.obj) + 0xc (size before relaxing) + .literal.k_work_init + 0x40374664 0x0 zephyr/kernel/libkernel.a(work.c.obj) + 0x4 (size before relaxing) + .literal.z_work_submit_to_queue + 0x40374664 0x0 zephyr/kernel/libkernel.a(work.c.obj) + 0x4 (size before relaxing) + .literal.k_work_submit_to_queue + 0x40374664 0x0 zephyr/kernel/libkernel.a(work.c.obj) + 0x8 (size before relaxing) + .literal.k_work_submit + 0x40374664 0x4 zephyr/kernel/libkernel.a(work.c.obj) + 0x8 (size before relaxing) + .literal.k_work_queue_start + 0x40374668 0x4 zephyr/kernel/libkernel.a(work.c.obj) + 0x10 (size before relaxing) + .literal.z_setup_new_thread + 0x4037466c 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + 0x8 (size before relaxing) + .literal.z_impl_k_thread_create + 0x4037466c 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + 0x10 (size before relaxing) + .literal.z_dummy_thread_init + 0x4037466c 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + 0x8 (size before relaxing) + .literal.unpend_thread_no_timeout + 0x4037466c 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.ready_thread + 0x4037466c 0x4 zephyr/kernel/libkernel.a(sched.c.obj) + 0xc (size before relaxing) + .literal.unready_thread + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x10 (size before relaxing) + .literal.add_thread_timeout + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.z_swap$isra$0 + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0xc (size before relaxing) + .literal.reschedule$isra$0 + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.add_to_waitq_locked + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.move_current_to_end_of_prio_q + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0xc (size before relaxing) + .literal.z_ready_thread + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_unpend_thread_no_timeout + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_sched_wake_thread_locked + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.z_thread_timeout + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_pend_curr + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x10 (size before relaxing) + .literal.z_unpend1_no_timeout + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_unpend_thread + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.z_thread_prio_set + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x14 (size before relaxing) + .literal.z_reschedule + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_reschedule_irqlock + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0xc (size before relaxing) + .literal.k_sched_lock + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.k_sched_unlock + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x10 (size before relaxing) + .literal.z_get_next_switch_handle + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_unpend_all + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.z_sched_init + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.z_impl_k_yield + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x10 (size before relaxing) + .literal.z_tick_sleep + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x1c (size before relaxing) + .literal.z_impl_k_sleep + 0x40374670 0x4 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.z_impl_k_wakeup + 0x40374674 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0xc (size before relaxing) + .literal.z_impl_k_sched_current_thread_query + 0x40374674 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_thread_abort + 0x40374674 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x38 (size before relaxing) + .literal.z_impl_k_thread_abort + 0x40374674 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_sched_wake + 0x40374674 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0xc (size before relaxing) + .literal.z_sched_wait + 0x40374674 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.z_time_slice_size + 0x40374674 0x8 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0xc (size before relaxing) + .literal.slice_timeout + 0x4037467c 0xc zephyr/kernel/libkernel.a(timeslicing.c.obj) + .literal.z_reset_time_slice + 0x40374688 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x1c (size before relaxing) + .literal.z_time_slice + 0x4037468c 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x14 (size before relaxing) + .literal.first + 0x4037468c 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + .literal.next_timeout + 0x40374690 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x4 (size before relaxing) + .literal.elapsed + 0x40374690 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x8 (size before relaxing) + .literal.remove_timeout + 0x40374694 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x4 (size before relaxing) + .literal.z_add_timeout + 0x40374694 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x24 (size before relaxing) + .literal.z_abort_timeout + 0x40374698 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x14 (size before relaxing) + .literal.sys_clock_announce + 0x40374698 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x20 (size before relaxing) + .literal.sys_clock_tick_get + 0x40374698 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x8 (size before relaxing) + .literal.sys_clock_tick_get_32 + 0x40374698 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x4 (size before relaxing) + .literal.z_impl_k_uptime_ticks + 0x40374698 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x4 (size before relaxing) + .literal.z_timer_expiration_handler + 0x40374698 0x4 zephyr/kernel/libkernel.a(timer.c.obj) + 0x1c (size before relaxing) + .literal.z_impl_k_timer_start + 0x4037469c 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + 0xc (size before relaxing) + .literal.z_impl_k_timer_stop + 0x4037469c 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + 0x10 (size before relaxing) + .literal.clear_event_registrations + 0x4037469c 0x4 zephyr/kernel/libkernel.a(poll.c.obj) + .literal.register_events + 0x403746a0 0x4 zephyr/kernel/libkernel.a(poll.c.obj) + 0x8 (size before relaxing) + .literal.signal_poll_event$isra$0 + 0x403746a4 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + 0x14 (size before relaxing) + .literal.z_impl_k_poll + 0x403746a4 0x8 zephyr/kernel/libkernel.a(poll.c.obj) + 0x1c (size before relaxing) + .literal.z_handle_obj_poll_events + 0x403746ac 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + 0x4 (size before relaxing) + .literal.z_impl_k_poll_signal_raise + 0x403746ac 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + 0xc (size before relaxing) + .literal.k_free + 0x403746ac 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x4 (size before relaxing) + .literal.k_malloc + 0x403746ac 0x8 zephyr/kernel/libkernel.a(mempool.c.obj) + 0xc (size before relaxing) + .literal.k_calloc + 0x403746b4 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x8 (size before relaxing) + .literal.k_thread_system_pool_assign + 0x403746b4 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x4 (size before relaxing) + .literal.boot_banner + 0x403746b4 0x4 zephyr/kernel/libkernel.a(banner.c.obj) + 0x8 (size before relaxing) + .literal.k_heap_init + 0x403746b8 0x4 zephyr/kernel/libkernel.a(kheap.c.obj) + .literal.statics_init + 0x403746bc 0x8 zephyr/kernel/libkernel.a(kheap.c.obj) + 0xc (size before relaxing) + .literal.k_heap_free + 0x403746c4 0x4 zephyr/kernel/libkernel.a(kheap.c.obj) + 0xc (size before relaxing) + .literal.k_sys_work_q_init + 0x403746c8 0x8 zephyr/kernel/libkernel.a(system_work_q.c.obj) + 0x10 (size before relaxing) + .literal.cbvprintf_package + 0x403746d0 0x14 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x1c (size before relaxing) + .literal.cbpprintf_external + 0x403746e4 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x4 (size before relaxing) + .literal.cbprintf_package_convert + 0x403746e4 0x8 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x34 (size before relaxing) + .literal.ccompare_isr + 0x403746ec 0x8 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0xc (size before relaxing) + .literal.sys_clock_set_timeout + 0x403746f4 0x8 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x10 (size before relaxing) + .literal.sys_clock_elapsed + 0x403746fc 0x0 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x8 (size before relaxing) + .literal.activate_foreach_backend + 0x403746fc 0x8 zephyr/libzephyr.a(log_core.c.obj) + .literal.enable_logger + 0x40374704 0x18 zephyr/libzephyr.a(log_core.c.obj) + 0x24 (size before relaxing) + .literal.default_lf_get_timestamp + 0x4037471c 0x0 zephyr/libzephyr.a(log_core.c.obj) + 0x8 (size before relaxing) + .literal.log_process_thread_timer_expiry_fn + 0x4037471c 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x8 (size before relaxing) + .literal.z_log_init + 0x40374720 0x8 zephyr/libzephyr.a(log_core.c.obj) + 0x1c (size before relaxing) + .literal.log_format_func_t_get + 0x40374728 0x4 zephyr/libzephyr.a(log_core.c.obj) + .literal.z_log_vprintk + 0x4037472c 0x0 zephyr/libzephyr.a(log_core.c.obj) + 0x4 (size before relaxing) + .literal.log_set_timestamp_func + 0x4037472c 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x8 (size before relaxing) + .literal.z_log_notify_backend_enabled + 0x40374730 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0xc (size before relaxing) + .literal.z_log_dropped + 0x40374734 0x8 zephyr/libzephyr.a(log_core.c.obj) + 0x1c (size before relaxing) + .literal.z_log_notify_drop + 0x4037473c 0x0 zephyr/libzephyr.a(log_core.c.obj) + 0x4 (size before relaxing) + .literal.z_log_dropped_read_and_clear + 0x4037473c 0x0 zephyr/libzephyr.a(log_core.c.obj) + 0x4 (size before relaxing) + .literal.dropped_notify + 0x4037473c 0x0 zephyr/libzephyr.a(log_core.c.obj) + 0xc (size before relaxing) + .literal.z_log_msg_init + 0x4037473c 0x10 zephyr/libzephyr.a(log_core.c.obj) + .literal.log_core_init + 0x4037474c 0x8 zephyr/libzephyr.a(log_core.c.obj) + 0x20 (size before relaxing) + .literal.z_log_msg_alloc + 0x40374754 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x8 (size before relaxing) + .literal.z_log_msg_local_claim + 0x40374758 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x8 (size before relaxing) + .literal.z_log_msg_free + 0x4037475c 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x8 (size before relaxing) + .literal.z_log_msg_pending + 0x40374760 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x8 (size before relaxing) + .literal.z_impl_log_process + 0x40374764 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x30 (size before relaxing) + .literal.z_impl_log_panic + 0x40374768 0x0 zephyr/libzephyr.a(log_core.c.obj) + 0x14 (size before relaxing) + .literal.log_process_thread_func + 0x40374768 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x2c (size before relaxing) + .literal.z_log_msg_post_finalize + 0x4037476c 0x0 zephyr/libzephyr.a(log_core.c.obj) + 0x28 (size before relaxing) + .literal.z_log_msg_commit + 0x4037476c 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x10 (size before relaxing) + .literal.printk + 0x40374770 0x0 zephyr/libzephyr.a(printk.c.obj) + 0x4 (size before relaxing) + .literal.z_cbprintf_cpy + 0x40374770 0x0 zephyr/libzephyr.a(log_msg.c.obj) + 0x4 (size before relaxing) + .literal.z_log_msg_finalize + 0x40374770 0x0 zephyr/libzephyr.a(log_msg.c.obj) + 0xc (size before relaxing) + .literal.z_log_msg_simple_create + 0x40374770 0x0 zephyr/libzephyr.a(log_msg.c.obj) + 0xc (size before relaxing) + .literal.z_impl_z_log_msg_simple_create_0 + 0x40374770 0x0 zephyr/libzephyr.a(log_msg.c.obj) + 0x4 (size before relaxing) + .literal.z_impl_z_log_msg_simple_create_1 + 0x40374770 0x0 zephyr/libzephyr.a(log_msg.c.obj) + 0x4 (size before relaxing) + .literal.z_impl_z_log_msg_static_create + 0x40374770 0x10 zephyr/libzephyr.a(log_msg.c.obj) + 0x28 (size before relaxing) + .literal.z_log_msg_runtime_vcreate + 0x40374780 0x4 zephyr/libzephyr.a(log_msg.c.obj) + 0x1c (size before relaxing) + .literal.log_msg_get_source_id + 0x40374784 0x4 zephyr/libzephyr.a(log_msg.c.obj) + .literal.console_out + 0x40374788 0x4 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .literal.log_output_flush + 0x4037478c 0x0 zephyr/libzephyr.a(log_output.c.obj) + 0x4 (size before relaxing) + .literal.print_formatted + 0x4037478c 0x8 zephyr/libzephyr.a(log_output.c.obj) + .literal.newline_print + 0x40374794 0x8 zephyr/libzephyr.a(log_output.c.obj) + 0xc (size before relaxing) + .literal.out_func + 0x4037479c 0x0 zephyr/libzephyr.a(log_output.c.obj) + 0x4 (size before relaxing) + .literal.cr_out_func + 0x4037479c 0x0 zephyr/libzephyr.a(log_output.c.obj) + 0x8 (size before relaxing) + .literal.log_output_process + 0x4037479c 0x50 zephyr/libzephyr.a(log_output.c.obj) + 0xac (size before relaxing) + .literal.log_output_msg_process + 0x403747ec 0x4 zephyr/libzephyr.a(log_output.c.obj) + 0xc (size before relaxing) + .literal.log_output_dropped_process + 0x403747f0 0x10 zephyr/libzephyr.a(log_output.c.obj) + 0x1c (size before relaxing) + .literal.log_output_timestamp_freq_set + 0x40374800 0x0 zephyr/libzephyr.a(log_output.c.obj) + 0x8 (size before relaxing) + .literal.dropped + 0x40374800 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x4 (size before relaxing) + .literal.process + 0x40374800 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x4 (size before relaxing) + .literal.char_out + 0x40374800 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x4 (size before relaxing) + .literal.map_rom_segments + 0x40374800 0x54 zephyr/libzephyr.a(loader.c.obj) + 0x84 (size before relaxing) + .literal.__start + 0x40374854 0x18 zephyr/libzephyr.a(loader.c.obj) + 0x44 (size before relaxing) + .literal.flash_is_octal_mode_enabled + 0x4037486c 0x0 zephyr/libzephyr.a(flash_init.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_config + 0x4037486c 0x8 zephyr/libzephyr.a(flash_init.c.obj) + 0x28 (size before relaxing) + .literal.configure_spi_pins + 0x40374874 0xc zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x20 (size before relaxing) + .literal.flash_set_dummy_out + 0x40374880 0xc zephyr/libzephyr.a(soc_flash_init.c.obj) + .literal.flash_dummy_config + 0x4037488c 0x0 zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x8 (size before relaxing) + .literal.flash_cs_timing_config + 0x4037488c 0xc zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x10 (size before relaxing) + .literal.init_spi_flash + 0x40374898 0x3c zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x6c (size before relaxing) + .literal.flash_update_id + 0x403748d4 0x0 zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x8 (size before relaxing) + .literal.esp_console_init + 0x403748d4 0x4 zephyr/libzephyr.a(console_init.c.obj) + 0x10 (size before relaxing) + .literal.print_banner + 0x403748d8 0x10 zephyr/libzephyr.a(soc_init.c.obj) + 0x1c (size before relaxing) + .literal.read_bootloader_header + 0x403748e8 0x4 zephyr/libzephyr.a(soc_init.c.obj) + 0x14 (size before relaxing) + .literal.config_wdt + 0x403748ec 0x4 zephyr/libzephyr.a(soc_init.c.obj) + 0x24 (size before relaxing) + .literal.check_bootloader_validity + 0x403748f0 0x10 zephyr/libzephyr.a(soc_init.c.obj) + 0x2c (size before relaxing) + .literal.ana_super_wdt_reset_config + 0x40374900 0xc zephyr/libzephyr.a(soc_init.c.obj) + .literal.ana_clock_glitch_reset_config + 0x4037490c 0x8 zephyr/libzephyr.a(soc_init.c.obj) + 0xc (size before relaxing) + .literal.ana_reset_config + 0x40374914 0x0 zephyr/libzephyr.a(soc_init.c.obj) + 0xc (size before relaxing) + .literal.super_wdt_auto_feed + 0x40374914 0x8 zephyr/libzephyr.a(soc_init.c.obj) + 0xc (size before relaxing) + .literal.wdt_reset_info_dump + 0x4037491c 0x28 zephyr/libzephyr.a(soc_init.c.obj) + 0x2c (size before relaxing) + .literal.wdt_reset_cpu0_info_enable + 0x40374944 0x10 zephyr/libzephyr.a(soc_init.c.obj) + .literal.check_wdt_reset + 0x40374954 0x8 zephyr/libzephyr.a(soc_init.c.obj) + 0x18 (size before relaxing) + .literal.bootloader_clock_configure + 0x4037495c 0x10 zephyr/libzephyr.a(soc_init.c.obj) + 0x24 (size before relaxing) + .literal.hardware_init + 0x4037496c 0xc zephyr/libzephyr.a(hw_init.c.obj) + 0x4c (size before relaxing) + .literal.soc_random_enable + 0x40374978 0x2c zephyr/libzephyr.a(soc_random.c.obj) + 0x44 (size before relaxing) + .literal.soc_random_disable + 0x403749a4 0x8 zephyr/libzephyr.a(soc_random.c.obj) + 0x2c (size before relaxing) + .literal.s_get_bus_mask + 0x403749ac 0x0 zephyr/libzephyr.a(esp_mmu_map.c.obj) + 0x8 (size before relaxing) + .literal.esp_mmu_map_init + 0x403749ac 0x20 zephyr/libzephyr.a(esp_mmu_map.c.obj) + 0x3c (size before relaxing) + .literal.esp_rom_flash_read + 0x403749cc 0x1c zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x38 (size before relaxing) + .literal.bootloader_enable_wp + 0x403749e8 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .literal.mmu_hal_ctx_init + 0x403749e8 0x4 zephyr/libzephyr.a(mmu_hal.c.obj) + .literal.mmu_hal_unmap_all + 0x403749ec 0x8 zephyr/libzephyr.a(mmu_hal.c.obj) + 0xc (size before relaxing) + .literal.mmu_hal_paddr_to_vaddr + 0x403749f4 0x0 zephyr/libzephyr.a(mmu_hal.c.obj) + 0x4 (size before relaxing) + .literal.mmu_hal_map_region + 0x403749f4 0x4 zephyr/libzephyr.a(mmu_hal.c.obj) + .literal.spi_flash_hal_configure_host_io_mode + 0x403749f8 0x8 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_hal_common_command + 0x40374a00 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_hal_read + 0x40374a00 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_program_page + 0x40374a00 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_setup_read_suspend + 0x40374a00 0x4 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_setup_auto_suspend_mode + 0x40374a04 0x10 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_hal_disable_auto_suspend_mode + 0x40374a14 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_device_config + 0x40374a14 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_encryption_hal_enable + 0x40374a14 0x8 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.spi_flash_encryption_hal_disable + 0x40374a1c 0x0 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_encryption_hal_prepare + 0x40374a1c 0x10 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_encryption_hal_done + 0x40374a2c 0x8 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.spi_flash_encryption_hal_destroy + 0x40374a34 0x4 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.cache_hal_vaddr_to_cache_level_id$part$0 + 0x40374a38 0x8 zephyr/libzephyr.a(cache_hal.c.obj) + .literal.cache_hal_disable + 0x40374a40 0x8 zephyr/libzephyr.a(cache_hal.c.obj) + 0xc (size before relaxing) + .literal.cache_hal_enable + 0x40374a48 0x8 zephyr/libzephyr.a(cache_hal.c.obj) + 0x10 (size before relaxing) + .literal.cache_hal_suspend + 0x40374a50 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + 0xc (size before relaxing) + .literal.cache_hal_resume + 0x40374a50 0x8 zephyr/libzephyr.a(cache_hal.c.obj) + 0x10 (size before relaxing) + .literal.cache_hal_vaddr_to_cache_level_id + 0x40374a58 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + 0x4 (size before relaxing) + .literal.cache_hal_invalidate_addr + 0x40374a58 0x4 zephyr/libzephyr.a(cache_hal.c.obj) + 0x8 (size before relaxing) + .literal.cache_hal_writeback_addr + 0x40374a5c 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + 0x8 (size before relaxing) + .literal.cache_hal_freeze + 0x40374a5c 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + 0xc (size before relaxing) + .literal.cache_hal_unfreeze + 0x40374a5c 0x8 zephyr/libzephyr.a(cache_hal.c.obj) + 0xc (size before relaxing) + .literal.cache_hal_get_cache_line_size + 0x40374a64 0x8 zephyr/libzephyr.a(cache_hal.c.obj) + .literal.wdt_hal_write_protect_disable + 0x40374a6c 0x4 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .literal.systimer_hal_init + 0x40374a70 0x4 zephyr/libzephyr.a(systimer_hal.c.obj) + .literal.systimer_hal_select_alarm_mode + 0x40374a74 0x0 zephyr/libzephyr.a(systimer_hal.c.obj) + 0x4 (size before relaxing) + .literal.gpspi_flash_ll_get_buffer_data + 0x40374a74 0x0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_gpspi_device_config + 0x40374a74 0x8 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_gpspi_configure_host_io_mode + 0x40374a7c 0x8 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_hal_gpspi_common_command + 0x40374a84 0x0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_hal_gpspi_read + 0x40374a84 0x0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_gd_suspend_cmd_conf + 0x40374a84 0x4 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .literal.spi_flash_chip_gd_get_io_mode + 0x40374a88 0x0 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_gd_set_io_mode + 0x40374a88 0x10 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_chip_generic_reset + 0x40374a98 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_config_host_io_mode + 0x40374a98 0xc zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .literal.spi_flash_chip_generic_get_caps + 0x40374aa4 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_suspend_cmd_conf + 0x40374aa4 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_read + 0x40374aa4 0x8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_chip_generic_write + 0x40374aac 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_get_write_protect + 0x40374aac 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_yield + 0x40374aac 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_read_unique_id + 0x40374aac 0x8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_chip_generic_write_encrypted + 0x40374ab4 0x8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .literal.spi_flash_common_read_qe_sr$constprop$0$isra$0 + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_common_write_qe_sr$isra$0 + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_write_status_16b_wrsr + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_erase_block + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_erase_sector + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_page_program + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_read_status_8b_rdsr2 + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_get_io_mode + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_read_status_8b_rdsr + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_write_status_8b_wrsr + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_write_status_8b_wrsr2 + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_set_io_mode + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_set_io_mode + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_issi_set_io_mode + 0x40374abc 0x8 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_issi_get_io_mode + 0x40374ac4 0x0 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_set_write_protect + 0x40374ac4 0x8 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_mxic_opi_erase_chip + 0x40374acc 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_erase_sector + 0x40374acc 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_erase_block + 0x40374acc 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_read_id + 0x40374acc 0x8 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_get_write_protect + 0x40374ad4 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_write + 0x40374ad4 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_page_program + 0x40374ad4 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_get_io_mode + 0x40374ad4 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_read_reg + 0x40374ad4 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_winbond_suspend_cmd_conf + 0x40374ad4 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_read + 0x40374ad4 0x8 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_chip_winbond_erase_block + 0x40374adc 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_erase_sector + 0x40374adc 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_page_program + 0x40374adc 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.memspi_host_read_status_hs + 0x40374adc 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4 (size before relaxing) + .literal.memspi_host_erase_chip + 0x40374adc 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4 (size before relaxing) + .literal.memspi_host_set_write_protect + 0x40374adc 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4 (size before relaxing) + .literal.memspi_host_read_id_hs + 0x40374adc 0x8 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x10 (size before relaxing) + .literal.memspi_host_flush_cache + 0x40374ae4 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_erase_sector + 0x40374ae4 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_erase_block + 0x40374ae4 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_program_page + 0x40374ae4 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_init_pointers + 0x40374ae4 0xc zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x14 (size before relaxing) + .literal.s_probe_mxic_chip + 0x40374af0 0x8 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0xc (size before relaxing) + .literal.s_mxic_set_required_regs + 0x40374af8 0x4 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0x8 (size before relaxing) + .literal.s_flash_init_mxic + 0x40374afc 0x20 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0x48 (size before relaxing) + .literal.esp_opiflash_init + 0x40374b1c 0x18 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0x24 (size before relaxing) + .literal.get_buffer_malloc + 0x40374b34 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_os_check_yield + 0x40374b34 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.release_buffer_malloc + 0x40374b34 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.delay_us + 0x40374b34 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_os_yield + 0x40374b34 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_app_enable_os_functions + 0x40374b34 0x8 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0xc (size before relaxing) + .literal.delay_us + 0x40374b3c 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + 0x4 (size before relaxing) + .literal.check_chip_pointer_default + 0x40374b3c 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.flash_end_flush_cache + 0x40374b3c 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.detect_spi_flash_chip + 0x40374b3c 0xc zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x14 (size before relaxing) + .literal.spiflash_start_default + 0x40374b48 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_read_chip_id + 0x40374b48 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_get_physical_size + 0x40374b48 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_is_quad_mode + 0x40374b48 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_init_main + 0x40374b48 0x14 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x40 (size before relaxing) + .literal.rtc_clk_32k_enable + 0x40374b5c 0x1c zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enable_external + 0x40374b78 0x8 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_8m_enable + 0x40374b80 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_slow_src_set + 0x40374b84 0xc zephyr/libzephyr.a(rtc_clk.c.obj) + 0x18 (size before relaxing) + .literal.rtc_clk_slow_src_get + 0x40374b90 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_fast_src_set + 0x40374b90 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_cpu_freq_mhz_to_config + 0x40374b90 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_xtal_freq_update + 0x40374b90 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_pll_mhz + 0x40374b94 0x10 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x50 (size before relaxing) + .literal.rtc_clk_cpu_freq_set_config + 0x40374ba4 0x10 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x50 (size before relaxing) + .literal.rtc_clk_cpu_freq_set_xtal + 0x40374bb4 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_divider_set + 0x40374bb4 0xc zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_8m_divider_set + 0x40374bc0 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_sleep_pu + 0x40374bc0 0x20 zephyr/libzephyr.a(rtc_sleep.c.obj) + .literal.rtc_clk_cal_internal + 0x40374be0 0x1c zephyr/libzephyr.a(rtc_time.c.obj) + 0x38 (size before relaxing) + .literal.rtc_clk_cal + 0x40374bfc 0x0 zephyr/libzephyr.a(rtc_time.c.obj) + 0x14 (size before relaxing) + .literal.rtc_time_us_to_slowclk + 0x40374bfc 0x4 zephyr/libzephyr.a(rtc_time.c.obj) + 0x14 (size before relaxing) + .literal.rtc_time_get + 0x40374c00 0xc zephyr/libzephyr.a(rtc_time.c.obj) + .literal.rtc_clk_freq_cal + 0x40374c0c 0x0 zephyr/libzephyr.a(rtc_time.c.obj) + 0x4 (size before relaxing) + .literal.mspi_timing_config_set_flash_clock + 0x40374c0c 0xc zephyr/libzephyr.a(mspi_timing_config.c.obj) + 0x10 (size before relaxing) + .literal.mspi_timing_config_set_psram_clock + 0x40374c18 0x4 zephyr/libzephyr.a(mspi_timing_config.c.obj) + 0xc (size before relaxing) + .literal.mspi_timing_enter_low_speed_mode + 0x40374c1c 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x8 (size before relaxing) + .literal.mspi_timing_enter_high_speed_mode + 0x40374c1c 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x4 (size before relaxing) + .literal.mspi_timing_change_speed_mode_cache_safe + 0x40374c1c 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x10 (size before relaxing) + .literal.spi_timing_get_flash_timing_param + 0x40374c1c 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x4 (size before relaxing) + .literal.mspi_timing_set_pin_drive_strength + 0x40374c1c 0x4 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0xc (size before relaxing) + .literal.regi2c_ctrl_read_reg_mask + 0x40374c20 0x4 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .literal.regi2c_ctrl_write_reg + 0x40374c24 0x4 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .literal.regi2c_ctrl_write_reg_mask + 0x40374c28 0x4 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .literal.regi2c_saradc_enable + 0x40374c2c 0x8 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x18 (size before relaxing) + .literal.regi2c_saradc_disable + 0x40374c34 0x0 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x14 (size before relaxing) + .literal.Cache_Suspend_ICache + 0x40374c34 0x8 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .literal.Cache_Suspend_DCache + 0x40374c3c 0x4 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x8 (size before relaxing) + .literal.Cache_Freeze_ICache_Enable + 0x40374c40 0x4 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x8 (size before relaxing) + .literal.Cache_Freeze_DCache_Enable + 0x40374c44 0x4 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x8 (size before relaxing) + .literal.Cache_WriteBack_Addr + 0x40374c48 0x10 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x18 (size before relaxing) + .literal.esp_rom_opiflash_cache_mode_config + 0x40374c58 0x14 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + 0x24 (size before relaxing) + .literal.esp_rom_install_channel_putc + 0x40374c6c 0x10 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .literal.esp_cache_suspend_ext_mem_cache + 0x40374c7c 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_resume_ext_mem_cache + 0x40374c7c 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_freeze_ext_mem_cache + 0x40374c7c 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_unfreeze_ext_mem_cache + 0x40374c7c 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_sync_ops_enter_critical_section + 0x40374c7c 0x4 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .literal.esp_cache_sync_ops_exit_critical_section + 0x40374c80 0x0 zephyr/libzephyr.a(esp_cache_msync.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_msync + 0x40374c80 0x20 zephyr/libzephyr.a(esp_cache_msync.c.obj) + 0x40 (size before relaxing) + .iram1.1 0x40374ca0 0x4b zephyr/libzephyr.a(soc.c.obj) + 0x57 (size before relaxing) + 0x40374ca0 __esp_platform_app_start + *fill* 0x40374ceb 0x1 + .iram1.3 0x40374cec 0x1b zephyr/libzephyr.a(soc.c.obj) + 0x40374cec arch_printk_char_out + *fill* 0x40374d07 0x1 + .iram1.3 0x40374d08 0x62 zephyr/libzephyr.a(esp_flash_api.c.obj) + *fill* 0x40374d6a 0x2 + .iram1.1 0x40374d6c 0x7d zephyr/libzephyr.a(flash_mmap.c.obj) + 0x8d (size before relaxing) + 0x40374d6c spi_flash_check_and_flush_cache + *fill* 0x40374de9 0x3 + .iram1.2 0x40374dec 0xa zephyr/libzephyr.a(flash_ops.c.obj) + 0x40374dec spi_flash_guard_set + *fill* 0x40374df6 0x2 + .iram1.4 0x40374df8 0x15 zephyr/libzephyr.a(flash_ops.c.obj) + 0x19 (size before relaxing) + 0x40374df8 esp_mspi_pin_init + *fill* 0x40374e0d 0x3 + .iram1.5 0x40374e10 0x1a zephyr/libzephyr.a(flash_ops.c.obj) + 0x1e (size before relaxing) + 0x40374e10 spi_flash_init_chip_state + *fill* 0x40374e2a 0x2 + .iram1.1 0x40374e2c 0x11 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + *fill* 0x40374e3d 0x3 + .iram1.0 0x40374e40 0x11 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + *fill* 0x40374e51 0x3 + .iram1.5 0x40374e54 0xa zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0xd (size before relaxing) + *fill* 0x40374e5e 0x2 + .iram1.4 0x40374e60 0xc zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x10 (size before relaxing) + .iram1.0 0x40374e6c 0x15 zephyr/libzephyr.a(cache_utils.c.obj) + 0x19 (size before relaxing) + 0x40374e6c spi_flash_disable_interrupts_caches_and_other_cpu + *fill* 0x40374e81 0x3 + .iram1.1 0x40374e84 0x18 zephyr/libzephyr.a(cache_utils.c.obj) + 0x1c (size before relaxing) + 0x40374e84 spi_flash_enable_interrupts_caches_and_other_cpu + .iram1.8 0x40374e9c 0x3c zephyr/libzephyr.a(cache_utils.c.obj) + 0x40374e9c esp_config_instruction_cache_mode + .iram1.9 0x40374ed8 0x21 zephyr/libzephyr.a(cache_utils.c.obj) + 0x40374ed8 esp_config_data_cache_mode + *fill* 0x40374ef9 0x3 + .iram1.3 0x40374efc 0x27 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x40374efc periph_rcc_enter + *fill* 0x40374f23 0x1 + .iram1.4 0x40374f24 0x2c zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x40374f24 periph_rcc_exit + .iram1.3 0x40374f50 0x34 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x40374f50 rtc_get_xtal + 0x40374f50 rtc_clk_xtal_freq_get + .iram1.0 0x40374f84 0xb9 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x40374f84 rtc_clk_cpu_freq_get_config + *fill* 0x4037503d 0x3 + .iram1.4 0x40375040 0xa zephyr/libzephyr.a(rtc_clk.c.obj) + 0x40375040 rtc_clk_apb_freq_update + *fill* 0x4037504a 0x2 + .iram1.2 0x4037504c 0xad zephyr/libzephyr.a(rtc_clk.c.obj) + 0xb9 (size before relaxing) + 0x4037504c rtc_clk_cpu_freq_to_xtal + *fill* 0x403750f9 0x3 + .iram1.1 0x403750fc 0xf zephyr/libzephyr.a(rtc_clk.c.obj) + 0x13 (size before relaxing) + 0x403750fc rtc_clk_cpu_set_to_default_config + *fill* 0x4037510b 0x1 + .iram1.0 0x4037510c 0x27 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x4037510c regi2c_enter_critical + *fill* 0x40375133 0x1 + .iram1.1 0x40375134 0x2c zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x40375134 regi2c_exit_critical + .iram1.6 0x40375160 0x34 zephyr/libzephyr.a(rtc_module.c.obj) + 0x40375160 rtc_isr_noniram_disable + .iram1.7 0x40375194 0x1f zephyr/libzephyr.a(rtc_module.c.obj) + 0x40375194 rtc_isr_noniram_enable + *fill* 0x403751b3 0x1 + .iram1.1 0x403751b4 0x5a zephyr/libzephyr.a(esp_mmu_map.c.obj) + 0x403751b4 esp_mmu_paddr_find_caps + *fill* 0x4037520e 0x2 + .iram1.0 0x40375210 0x11 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + 0x40375210 esp_rom_output_switch_buffer + *fill* 0x40375221 0x3 + .iram1.0 0x40375224 0x40 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x40375224 efuse_hal_get_major_chip_version + .iram1.1 0x40375264 0x3a zephyr/libzephyr.a(efuse_hal.c.obj) + 0x40375264 efuse_hal_get_minor_chip_version + *fill* 0x4037529e 0x2 + .iram1.0 0x403752a0 0x18 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x1c (size before relaxing) + 0x403752a0 efuse_hal_chip_revision + .iram1.1 0x403752b8 0x23e zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x403752b8 bootloader_flash_execute_command_common + *fill* 0x403754f6 0x2 + .iram1.2 0x403754f8 0x20 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x403754f8 bootloader_execute_flash_command + .iram1.0 0x40375518 0x138 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x150 (size before relaxing) + 0x40375518 bootloader_flash_unlock_default + 0x40375518 bootloader_flash_unlock + .iram1.3 0x40375650 0x21 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x40375650 bootloader_flash_read_sfdp + *fill* 0x40375671 0x3 + .iram1.4 0x40375674 0x24 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x28 (size before relaxing) + 0x40375674 bootloader_read_flash_id + .iram1.6 0x40375698 0x96 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0xae (size before relaxing) + 0x40375698 bootloader_flash_xmc_startup + *fill* 0x4037572e 0x2 + .iram1.8 0x40375730 0x10 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x40375730 bootloader_flash_is_octal_mode_enabled + .iram1.3 0x40375740 0xab zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x40375740 esp_intr_disable + *fill* 0x403757eb 0x1 + .iram1.4 0x403757ec 0x50 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x403757ec esp_intr_noniram_disable + .iram1.5 0x4037583c 0x41 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x44 (size before relaxing) + 0x4037583c esp_intr_noniram_enable + *fill* 0x4037587d 0x3 + .iram1.2 0x40375880 0x11 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x17 (size before relaxing) + *fill* 0x40375891 0x3 + .iram1.0 0x40375894 0x356 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x35e (size before relaxing) + *fill* 0x40375bea 0x2 + .iram1.0 0x40375bec 0x22 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x40375c0e 0x2 + .iram1.0 0x40375c10 0x410 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x420 (size before relaxing) + *fill* 0x40376020 0x0 + *fill* 0x40376020 0x0 + *fill* 0x40376020 0x0 + *fill* 0x40376020 0x0 + *fill* 0x40376020 0x0 + *fill* 0x40376020 0x0 + *fill* 0x40376020 0x0 + .iram1.7 0x40376020 0x7 zephyr/libzephyr.a(flash_ops.c.obj) + 0x40376020 esp_mspi_32bit_address_flash_feature_check + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x1 + .iram1.5 0x40376028 0x4b zephyr/libzephyr.a(bootloader_flash.c.obj) + *fill* 0x40376073 0x0 + *fill* 0x40376073 0x0 + *fill* 0x40376073 0x0 + *fill* 0x40376073 0x1 + .iram1.0 0x40376074 0x35 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + *fill* 0x403760a9 0x0 + *fill* 0x403760a9 0x3 + .iram1.1 0x403760ac 0x6a zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x40376116 0x0 + *fill* 0x40376116 0x0 + *fill* 0x40376116 0x0 + *fill* 0x40376116 0x2 + .iram1.0 0x40376118 0x20 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *(SORT_BY_ALIGNMENT(.iram0.literal) SORT_BY_ALIGNMENT(.iram.literal) SORT_BY_ALIGNMENT(.iram.text.literal) SORT_BY_ALIGNMENT(.iram0.text) SORT_BY_ALIGNMENT(.iram.text)) + .iram0.text 0x40376138 0x31 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x40376138 _Level1Vector + *libarch__xtensa__core.a:(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40376169 0x3 + .text.xtensa_exccause + 0x4037616c 0x17 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + 0x4037616c xtensa_exccause + *fill* 0x40376183 0x1 + .text.xtensa_fatal_error + 0x40376184 0x1e zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + 0x22 (size before relaxing) + 0x40376184 xtensa_fatal_error + *fill* 0x403761a2 0x2 + .text 0x403761a4 0x223 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x403761a4 xtensa_spill_reg_windows + 0x403761c4 xtensa_save_high_regs + 0x4037620c xtensa_restore_high_regs + 0x40376241 _restore_context + 0x4037627c xtensa_arch_except + 0x4037627f xtensa_arch_except_epc + 0x40376284 xtensa_arch_kernel_oops + 0x40376287 xtensa_arch_kernel_oops_epc + 0x4037628c xtensa_switch + *fill* 0x403763c7 0x1 + .text.z_irq_spurious + 0x403763c8 0x3f zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + 0x43 (size before relaxing) + 0x403763c8 z_irq_spurious + *fill* 0x40376407 0x1 + .text.arch_new_thread + 0x40376408 0x38 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + 0x40376408 arch_new_thread + .text.xtensa_handle_irq_lvl + 0x40376440 0x4c zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .text.return_to + 0x4037648c 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + .text.z_log_msg_static_create$constprop$0 + 0x403764a0 0x13 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + *fill* 0x403764b3 0x1 + .text.xtensa_dump_stack$part$0 + 0x403764b4 0x17b zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x193 (size before relaxing) + *fill* 0x4037662f 0x1 + .text.xtensa_is_outside_stack_bounds + 0x40376630 0x46 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x40376630 xtensa_is_outside_stack_bounds + *fill* 0x40376676 0x2 + .text.xtensa_is_frame_pointer_valid + 0x40376678 0x28 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x2c (size before relaxing) + 0x40376678 xtensa_is_frame_pointer_valid + .text.xtensa_dump_stack + 0x403766a0 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + 0x403766a0 xtensa_dump_stack + .text.xtensa_int2_c + 0x403766b4 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + 0x403766b4 xtensa_int2_c + .text.xtensa_int3_c + 0x403766c8 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + 0x403766c8 xtensa_int3_c + .text.xtensa_int4_c + 0x403766dc 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + 0x403766dc xtensa_int4_c + .text.xtensa_int5_c + 0x403766f0 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + 0x403766f0 xtensa_int5_c + .text.xtensa_int6_c + 0x40376704 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + 0x40376704 xtensa_int6_c + .text.xtensa_int7_c + 0x40376718 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + 0x40376718 xtensa_int7_c + .text.xtensa_excint1_c + 0x4037672c 0x1b8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x1dc (size before relaxing) + 0x4037672c xtensa_excint1_c + .text.z_prep_c + 0x403768e4 0x10 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + 0x14 (size before relaxing) + 0x403768e4 z_prep_c + *fill* 0x403768f4 0x0 + .text.arch_cpu_idle + 0x403768f4 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + 0x403768f4 arch_cpu_idle + *fill* 0x403768fc 0x0 + *fill* 0x403768fc 0x0 + *fill* 0x403768fc 0x0 + *fill* 0x403768fc 0x0 + .text.arch_coprocessors_disable + 0x403768fc 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + 0x403768fc arch_coprocessors_disable + *fill* 0x40376904 0x0 + *fill* 0x40376904 0x0 + *fill* 0x40376904 0x0 + *libarch__common.a:(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + .text.z_isr_install + 0x40376904 0x14 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + 0x18 (size before relaxing) + 0x40376904 z_isr_install + .text.arch_irq_connect_dynamic + 0x40376918 0xe zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + 0x12 (size before relaxing) + 0x40376918 arch_irq_connect_dynamic + *fill* 0x40376926 0x2 + .text.arch_early_memset + 0x40376928 0x12 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x40376928 arch_early_memset + *fill* 0x4037693a 0x2 + .text.arch_bss_zero + 0x4037693c 0x13 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x16 (size before relaxing) + 0x4037693c arch_bss_zero + *fill* 0x4037694f 0x1 + .text.z_get_sw_isr_table_idx + 0x40376950 0x5 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + 0x40376950 z_get_sw_isr_table_idx + *fill* 0x40376955 0x0 + *fill* 0x40376955 0x0 + *fill* 0x40376955 0x0 + *libkernel.a:(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40376955 0x3 + .text.z_impl_k_busy_wait + 0x40376958 0x20 zephyr/kernel/libkernel.a(busy_wait.c.obj) + 0x24 (size before relaxing) + 0x40376958 z_impl_k_busy_wait + .text.k_sys_fatal_error_handler + 0x40376978 0x18 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x20 (size before relaxing) + 0x40376978 k_sys_fatal_error_handler + .text.z_fatal_error + 0x40376990 0xa4 zephyr/kernel/libkernel.a(fatal.c.obj) + 0xb8 (size before relaxing) + 0x40376990 z_fatal_error + .text.z_sys_init_run_level + 0x40376a34 0x2c zephyr/kernel/libkernel.a(init.c.obj) + 0x30 (size before relaxing) + .text.bg_thread_main + 0x40376a60 0x9e zephyr/kernel/libkernel.a(init.c.obj) + 0xae (size before relaxing) + *fill* 0x40376afe 0x2 + .text.z_init_cpu + 0x40376b00 0x5e zephyr/kernel/libkernel.a(init.c.obj) + 0x40376b00 z_init_cpu + *fill* 0x40376b5e 0x2 + .text.z_cstart + 0x40376b60 0x83 zephyr/kernel/libkernel.a(init.c.obj) + 0xa7 (size before relaxing) + 0x40376b60 z_cstart + *fill* 0x40376be3 0x1 + .text.idle 0x40376be4 0xc zephyr/kernel/libkernel.a(idle.c.obj) + 0xf (size before relaxing) + 0x40376be4 idle + *fill* 0x40376bf0 0x0 + .text.adjust_owner_prio$isra$0 + 0x40376bf0 0x1c zephyr/kernel/libkernel.a(mutex.c.obj) + .text.z_impl_k_mutex_lock + 0x40376c0c 0xbb zephyr/kernel/libkernel.a(mutex.c.obj) + 0xc3 (size before relaxing) + 0x40376c0c z_impl_k_mutex_lock + *fill* 0x40376cc7 0x1 + .text.z_impl_k_mutex_unlock + 0x40376cc8 0x8a zephyr/kernel/libkernel.a(mutex.c.obj) + 0x92 (size before relaxing) + 0x40376cc8 z_impl_k_mutex_unlock + *fill* 0x40376d52 0x2 + .text.z_impl_k_sem_give + 0x40376d54 0x6c zephyr/kernel/libkernel.a(sem.c.obj) + 0x78 (size before relaxing) + 0x40376d54 z_impl_k_sem_give + .text.z_impl_k_sem_take + 0x40376dc0 0x3a zephyr/kernel/libkernel.a(sem.c.obj) + 0x3d (size before relaxing) + 0x40376dc0 z_impl_k_sem_take + *fill* 0x40376dfa 0x2 + .text.notify_queue_locked$isra$0 + 0x40376dfc 0x14 zephyr/kernel/libkernel.a(work.c.obj) + .text.work_queue_main + 0x40376e10 0x128 zephyr/kernel/libkernel.a(work.c.obj) + 0x134 (size before relaxing) + .text.submit_to_queue_locked + 0x40376f38 0xa4 zephyr/kernel/libkernel.a(work.c.obj) + 0xa8 (size before relaxing) + .text.k_work_init + 0x40376fdc 0x14 zephyr/kernel/libkernel.a(work.c.obj) + 0x40376fdc k_work_init + .text.z_work_submit_to_queue + 0x40376ff0 0x1c zephyr/kernel/libkernel.a(work.c.obj) + 0x40376ff0 z_work_submit_to_queue + .text.k_work_submit_to_queue + 0x4037700c 0x1a zephyr/kernel/libkernel.a(work.c.obj) + 0x1e (size before relaxing) + 0x4037700c k_work_submit_to_queue + *fill* 0x40377026 0x2 + .text.k_work_submit + 0x40377028 0x12 zephyr/kernel/libkernel.a(work.c.obj) + 0x40377028 k_work_submit + *fill* 0x4037703a 0x2 + .text.k_work_queue_start + 0x4037703c 0x75 zephyr/kernel/libkernel.a(work.c.obj) + 0x7d (size before relaxing) + 0x4037703c k_work_queue_start + *fill* 0x403770b1 0x3 + .text.z_setup_new_thread + 0x403770b4 0x5b zephyr/kernel/libkernel.a(thread.c.obj) + 0x5f (size before relaxing) + 0x403770b4 z_setup_new_thread + *fill* 0x4037710f 0x1 + .text.z_impl_k_thread_create + 0x40377110 0x52 zephyr/kernel/libkernel.a(thread.c.obj) + 0x5a (size before relaxing) + 0x40377110 z_impl_k_thread_create + *fill* 0x40377162 0x2 + .text.z_dummy_thread_init + 0x40377164 0x27 zephyr/kernel/libkernel.a(thread.c.obj) + 0x40377164 z_dummy_thread_init + *fill* 0x4037718b 0x1 + .text.unpend_thread_no_timeout + 0x4037718c 0x19 zephyr/kernel/libkernel.a(sched.c.obj) + 0x1d (size before relaxing) + *fill* 0x403771a5 0x3 + .text.ready_thread + 0x403771a8 0x98 zephyr/kernel/libkernel.a(sched.c.obj) + .text.unready_thread + 0x40377240 0x5a zephyr/kernel/libkernel.a(sched.c.obj) + 0x62 (size before relaxing) + *fill* 0x4037729a 0x2 + .text.add_thread_timeout + 0x4037729c 0x1b zephyr/kernel/libkernel.a(sched.c.obj) + *fill* 0x403772b7 0x1 + .text.z_swap$isra$0 + 0x403772b8 0x31 zephyr/kernel/libkernel.a(sched.c.obj) + 0x35 (size before relaxing) + *fill* 0x403772e9 0x3 + .text.reschedule$isra$0 + 0x403772ec 0x2c zephyr/kernel/libkernel.a(sched.c.obj) + .text.add_to_waitq_locked + 0x40377318 0x54 zephyr/kernel/libkernel.a(sched.c.obj) + 0x58 (size before relaxing) + .text.move_current_to_end_of_prio_q + 0x4037736c 0x78 zephyr/kernel/libkernel.a(sched.c.obj) + 0x7c (size before relaxing) + 0x4037736c move_current_to_end_of_prio_q + .text.z_ready_thread + 0x403773e4 0x13 zephyr/kernel/libkernel.a(sched.c.obj) + 0x16 (size before relaxing) + 0x403773e4 z_ready_thread + *fill* 0x403773f7 0x1 + .text.z_unpend_thread_no_timeout + 0x403773f8 0x18 zephyr/kernel/libkernel.a(sched.c.obj) + 0x1c (size before relaxing) + 0x403773f8 z_unpend_thread_no_timeout + .text.z_sched_wake_thread_locked + 0x40377410 0x2a zephyr/kernel/libkernel.a(sched.c.obj) + 0x2e (size before relaxing) + 0x40377410 z_sched_wake_thread_locked + *fill* 0x4037743a 0x2 + .text.z_thread_timeout + 0x4037743c 0x14 zephyr/kernel/libkernel.a(sched.c.obj) + 0x17 (size before relaxing) + 0x4037743c z_thread_timeout + *fill* 0x40377450 0x0 + .text.z_pend_curr + 0x40377450 0x25 zephyr/kernel/libkernel.a(sched.c.obj) + 0x2d (size before relaxing) + 0x40377450 z_pend_curr + *fill* 0x40377475 0x3 + .text.z_unpend1_no_timeout + 0x40377478 0x22 zephyr/kernel/libkernel.a(sched.c.obj) + 0x26 (size before relaxing) + 0x40377478 z_unpend1_no_timeout + *fill* 0x4037749a 0x2 + .text.z_unpend_thread + 0x4037749c 0x10 zephyr/kernel/libkernel.a(sched.c.obj) + 0x17 (size before relaxing) + 0x4037749c z_unpend_thread + *fill* 0x403774ac 0x0 + .text.z_thread_prio_set + 0x403774ac 0xf7 zephyr/kernel/libkernel.a(sched.c.obj) + 0x403774ac z_thread_prio_set + *fill* 0x403775a3 0x1 + .text.z_reschedule + 0x403775a4 0xa zephyr/kernel/libkernel.a(sched.c.obj) + 0xe (size before relaxing) + 0x403775a4 z_reschedule + *fill* 0x403775ae 0x2 + .text.z_reschedule_irqlock + 0x403775b0 0x38 zephyr/kernel/libkernel.a(sched.c.obj) + 0x3c (size before relaxing) + 0x403775b0 z_reschedule_irqlock + .text.k_sched_lock + 0x403775e8 0x1b zephyr/kernel/libkernel.a(sched.c.obj) + 0x403775e8 k_sched_lock + *fill* 0x40377603 0x1 + .text.k_sched_unlock + 0x40377604 0x56 zephyr/kernel/libkernel.a(sched.c.obj) + 0x40377604 k_sched_unlock + *fill* 0x4037765a 0x2 + .text.z_get_next_switch_handle + 0x4037765c 0x14 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4037765c z_get_next_switch_handle + .text.z_unpend_all + 0x40377670 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + 0x28 (size before relaxing) + 0x40377670 z_unpend_all + .text.z_sched_init + 0x40377694 0xf zephyr/kernel/libkernel.a(sched.c.obj) + 0x40377694 z_sched_init + *fill* 0x403776a3 0x1 + .text.z_impl_k_yield + 0x403776a4 0x84 zephyr/kernel/libkernel.a(sched.c.obj) + 0x88 (size before relaxing) + 0x403776a4 z_impl_k_yield + .text.z_tick_sleep + 0x40377728 0x60 zephyr/kernel/libkernel.a(sched.c.obj) + 0x6b (size before relaxing) + *fill* 0x40377788 0x0 + .text.z_impl_k_sleep + 0x40377788 0x2f zephyr/kernel/libkernel.a(sched.c.obj) + 0x33 (size before relaxing) + 0x40377788 z_impl_k_sleep + *fill* 0x403777b7 0x1 + .text.z_impl_k_wakeup + 0x403777b8 0x34 zephyr/kernel/libkernel.a(sched.c.obj) + 0x3c (size before relaxing) + 0x403777b8 z_impl_k_wakeup + .text.z_impl_k_sched_current_thread_query + 0x403777ec 0xa zephyr/kernel/libkernel.a(sched.c.obj) + 0x403777ec z_impl_k_sched_current_thread_query + *fill* 0x403777f6 0x2 + .text.z_thread_abort + 0x403777f8 0xf7 zephyr/kernel/libkernel.a(sched.c.obj) + 0x112 (size before relaxing) + 0x403777f8 z_thread_abort + *fill* 0x403778ef 0x1 + .text.z_impl_k_thread_abort + 0x403778f0 0xa zephyr/kernel/libkernel.a(sched.c.obj) + 0xe (size before relaxing) + 0x403778f0 z_impl_k_thread_abort + *fill* 0x403778fa 0x2 + .text.z_sched_wake + 0x403778fc 0x3a zephyr/kernel/libkernel.a(sched.c.obj) + 0x42 (size before relaxing) + 0x403778fc z_sched_wake + *fill* 0x40377936 0x2 + .text.z_sched_wait + 0x40377938 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + 0x40377938 z_sched_wait + .text.z_time_slice_size + 0x4037795c 0x42 zephyr/kernel/libkernel.a(timeslicing.c.obj) + *fill* 0x4037799e 0x2 + .text.slice_timeout + 0x403779a0 0x1e zephyr/kernel/libkernel.a(timeslicing.c.obj) + *fill* 0x403779be 0x2 + .text.z_reset_time_slice + 0x403779c0 0x3a zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x42 (size before relaxing) + 0x403779c0 z_reset_time_slice + *fill* 0x403779fa 0x2 + .text.z_time_slice + 0x403779fc 0x39 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x40 (size before relaxing) + 0x403779fc z_time_slice + *fill* 0x40377a35 0x3 + .text.first 0x40377a38 0xf zephyr/kernel/libkernel.a(timeout.c.obj) + *fill* 0x40377a47 0x1 + .text.next_timeout + 0x40377a48 0x3b zephyr/kernel/libkernel.a(timeout.c.obj) + 0x3f (size before relaxing) + *fill* 0x40377a83 0x1 + .text.elapsed 0x40377a84 0x16 zephyr/kernel/libkernel.a(timeout.c.obj) + *fill* 0x40377a9a 0x2 + .text.remove_timeout + 0x40377a9c 0x36 zephyr/kernel/libkernel.a(timeout.c.obj) + *fill* 0x40377ad2 0x2 + .text.z_add_timeout + 0x40377ad4 0x10d zephyr/kernel/libkernel.a(timeout.c.obj) + 0x121 (size before relaxing) + 0x40377ad4 z_add_timeout + *fill* 0x40377be1 0x3 + .text.z_abort_timeout + 0x40377be4 0x3c zephyr/kernel/libkernel.a(timeout.c.obj) + 0x4c (size before relaxing) + 0x40377be4 z_abort_timeout + .text.sys_clock_announce + 0x40377c20 0x9f zephyr/kernel/libkernel.a(timeout.c.obj) + 0xab (size before relaxing) + 0x40377c20 sys_clock_announce + *fill* 0x40377cbf 0x1 + .text.sys_clock_tick_get + 0x40377cc0 0x24 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x28 (size before relaxing) + 0x40377cc0 sys_clock_tick_get + .text.sys_clock_tick_get_32 + 0x40377ce4 0xa zephyr/kernel/libkernel.a(timeout.c.obj) + 0xd (size before relaxing) + 0x40377ce4 sys_clock_tick_get_32 + *fill* 0x40377cee 0x2 + .text.z_impl_k_uptime_ticks + 0x40377cf0 0xf zephyr/kernel/libkernel.a(timeout.c.obj) + 0x40377cf0 z_impl_k_uptime_ticks + *fill* 0x40377cff 0x1 + .text.z_timer_expiration_handler + 0x40377d00 0x108 zephyr/kernel/libkernel.a(timer.c.obj) + 0x110 (size before relaxing) + 0x40377d00 z_timer_expiration_handler + .text.z_impl_k_timer_start + 0x40377e08 0x52 zephyr/kernel/libkernel.a(timer.c.obj) + 0x56 (size before relaxing) + 0x40377e08 z_impl_k_timer_start + *fill* 0x40377e5a 0x2 + .text.z_impl_k_timer_stop + 0x40377e5c 0x28 zephyr/kernel/libkernel.a(timer.c.obj) + 0x34 (size before relaxing) + 0x40377e5c z_impl_k_timer_stop + .text.clear_event_registrations + 0x40377e84 0x44 zephyr/kernel/libkernel.a(poll.c.obj) + .text.register_events + 0x40377ec8 0x105 zephyr/kernel/libkernel.a(poll.c.obj) + *fill* 0x40377fcd 0x3 + .text.signal_poll_event$isra$0 + 0x40377fd0 0x7e zephyr/kernel/libkernel.a(poll.c.obj) + 0x8a (size before relaxing) + *fill* 0x4037804e 0x2 + .text.z_impl_k_poll + 0x40378050 0x84 zephyr/kernel/libkernel.a(poll.c.obj) + 0x90 (size before relaxing) + 0x40378050 z_impl_k_poll + .text.z_handle_obj_poll_events + 0x403780d4 0x33 zephyr/kernel/libkernel.a(poll.c.obj) + 0x37 (size before relaxing) + 0x403780d4 z_handle_obj_poll_events + *fill* 0x40378107 0x1 + .text.z_impl_k_poll_signal_raise + 0x40378108 0x3c zephyr/kernel/libkernel.a(poll.c.obj) + 0x40 (size before relaxing) + 0x40378108 z_impl_k_poll_signal_raise + .text.k_free 0x40378144 0xf zephyr/kernel/libkernel.a(mempool.c.obj) + 0x12 (size before relaxing) + 0x40378144 k_free + *fill* 0x40378153 0x1 + .text.k_malloc + 0x40378154 0x14 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x18 (size before relaxing) + 0x40378154 k_malloc + .text.k_calloc + 0x40378168 0x28 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x2c (size before relaxing) + 0x40378168 k_calloc + .text.k_thread_system_pool_assign + 0x40378190 0xb zephyr/kernel/libkernel.a(mempool.c.obj) + 0x40378190 k_thread_system_pool_assign + *fill* 0x4037819b 0x1 + .text.boot_banner + 0x4037819c 0xb zephyr/kernel/libkernel.a(banner.c.obj) + 0xe (size before relaxing) + 0x4037819c boot_banner + *fill* 0x403781a7 0x1 + .text.k_heap_init + 0x403781a8 0x17 zephyr/kernel/libkernel.a(kheap.c.obj) + 0x403781a8 k_heap_init + *fill* 0x403781bf 0x1 + .text.statics_init + 0x403781c0 0x22 zephyr/kernel/libkernel.a(kheap.c.obj) + *fill* 0x403781e2 0x2 + .text.k_heap_free + 0x403781e4 0x2c zephyr/kernel/libkernel.a(kheap.c.obj) + 0x30 (size before relaxing) + 0x403781e4 k_heap_free + .text.k_sys_work_q_init + 0x40378210 0x18 zephyr/kernel/libkernel.a(system_work_q.c.obj) + 0x1c (size before relaxing) + *fill* 0x40378228 0x0 + .text.do_device_init + 0x40378228 0x35 zephyr/kernel/libkernel.a(device.c.obj) + 0x40378228 do_device_init + *fill* 0x4037825d 0x3 + .text.z_impl_device_is_ready + 0x40378260 0x1c zephyr/kernel/libkernel.a(device.c.obj) + 0x40378260 z_impl_device_is_ready + .text.arch_system_halt + 0x4037827c 0x9 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x4037827c arch_system_halt + *fill* 0x40378285 0x0 + *fill* 0x40378285 0x0 + *fill* 0x40378285 0x0 + *fill* 0x40378285 0x0 + *fill* 0x40378285 0x3 + .text.z_impl_k_mutex_init + 0x40378288 0x11 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x40378288 z_impl_k_mutex_init + *fill* 0x40378299 0x0 + *fill* 0x40378299 0x0 + *fill* 0x40378299 0x3 + .text.z_impl_k_sem_init + 0x4037829c 0x20 zephyr/kernel/libkernel.a(sem.c.obj) + 0x4037829c z_impl_k_sem_init + *fill* 0x403782bc 0x0 + .text.flag_test_and_clear + 0x403782bc 0x1d zephyr/kernel/libkernel.a(work.c.obj) + *fill* 0x403782d9 0x0 + *fill* 0x403782d9 0x0 + *fill* 0x403782d9 0x0 + *fill* 0x403782d9 0x3 + .text.k_is_in_isr + 0x403782dc 0xf zephyr/kernel/libkernel.a(thread.c.obj) + 0x403782dc k_is_in_isr + *fill* 0x403782eb 0x1 + .text.z_impl_k_thread_name_set + 0x403782ec 0x8 zephyr/kernel/libkernel.a(thread.c.obj) + 0x403782ec z_impl_k_thread_name_set + .text.k_thread_name_get + 0x403782f4 0x7 zephyr/kernel/libkernel.a(thread.c.obj) + 0x403782f4 k_thread_name_get + *fill* 0x403782fb 0x0 + *fill* 0x403782fb 0x0 + *fill* 0x403782fb 0x0 + *fill* 0x403782fb 0x1 + .text.sys_dlist_remove + 0x403782fc 0x13 zephyr/kernel/libkernel.a(sched.c.obj) + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x1 + .text.k_timer_init + 0x40378310 0x1a zephyr/kernel/libkernel.a(timer.c.obj) + 0x40378310 k_timer_init + *fill* 0x4037832a 0x0 + *fill* 0x4037832a 0x2 + .text.add_event + 0x4037832c 0x69 zephyr/kernel/libkernel.a(poll.c.obj) + *fill* 0x40378395 0x0 + *fill* 0x40378395 0x0 + *fill* 0x40378395 0x0 + *fill* 0x40378395 0x3 + .text.z_alloc_helper + 0x40378398 0x2b zephyr/kernel/libkernel.a(mempool.c.obj) + *fill* 0x403783c3 0x0 + *fill* 0x403783c3 0x0 + *fill* 0x403783c3 0x0 + *fill* 0x403783c3 0x0 + *fill* 0x403783c3 0x0 + *fill* 0x403783c3 0x0 + *libgcc.a:lib2funcs.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:cbprintf_packaged.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x403783c3 0x1 + .text.cbvprintf_package + 0x403783c4 0x3cc zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x403783c4 cbvprintf_package + .text.cbpprintf_external + 0x40378790 0x72 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x40378790 cbpprintf_external + *fill* 0x40378802 0x2 + .text.cbprintf_package_convert + 0x40378804 0x3b8 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x3bc (size before relaxing) + 0x40378804 cbprintf_package_convert + *fill* 0x40378bbc 0x0 + .text.is_ptr 0x40378bbc 0x4f zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x40378bbc is_ptr + *fill* 0x40378c0b 0x0 + *libdrivers__flash.a:flash_esp32.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:windowspill_asm.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:log_noos.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libdrivers__timer.a:xtensa_sys_timer.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40378c0b 0x1 + .text.ccompare_isr + 0x40378c0c 0x32 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x36 (size before relaxing) + *fill* 0x40378c3e 0x2 + .text.sys_clock_set_timeout + 0x40378c40 0x6c zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x40378c40 sys_clock_set_timeout + .text.sys_clock_elapsed + 0x40378cac 0x22 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x40378cac sys_clock_elapsed + *fill* 0x40378cce 0x2 + .text.sys_clock_driver_init + 0x40378cd0 0x21 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + *fill* 0x40378cf1 0x0 + *fill* 0x40378cf1 0x3 + .text.sys_clock_cycle_get_32 + 0x40378cf4 0x8 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x40378cf4 sys_clock_cycle_get_32 + *libzephyr.a:log_core.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + .text.activate_foreach_backend + 0x40378cfc 0x5d zephyr/libzephyr.a(log_core.c.obj) + *fill* 0x40378d59 0x3 + .text.enable_logger + 0x40378d5c 0x3e zephyr/libzephyr.a(log_core.c.obj) + 0x46 (size before relaxing) + *fill* 0x40378d9a 0x2 + .text.default_lf_get_timestamp + 0x40378d9c 0x14 zephyr/libzephyr.a(log_core.c.obj) + 0x18 (size before relaxing) + .text.log_process_thread_timer_expiry_fn + 0x40378db0 0xb zephyr/libzephyr.a(log_core.c.obj) + 0xe (size before relaxing) + *fill* 0x40378dbb 0x1 + .text.z_log_init + 0x40378dbc 0x90 zephyr/libzephyr.a(log_core.c.obj) + 0x94 (size before relaxing) + .text.log_format_func_t_get + 0x40378e4c 0xd zephyr/libzephyr.a(log_core.c.obj) + 0x40378e4c log_format_func_t_get + *fill* 0x40378e59 0x3 + .text.z_log_vprintk + 0x40378e5c 0x1f zephyr/libzephyr.a(log_core.c.obj) + 0x40378e5c z_log_vprintk + *fill* 0x40378e7b 0x1 + .text.log_set_timestamp_func + 0x40378e7c 0x1a zephyr/libzephyr.a(log_core.c.obj) + 0x40378e7c log_set_timestamp_func + *fill* 0x40378e96 0x2 + .text.z_log_notify_backend_enabled + 0x40378e98 0x1b zephyr/libzephyr.a(log_core.c.obj) + 0x40378e98 z_log_notify_backend_enabled + *fill* 0x40378eb3 0x1 + .text.z_log_dropped + 0x40378eb4 0x34 zephyr/libzephyr.a(log_core.c.obj) + 0x3c (size before relaxing) + 0x40378eb4 z_log_dropped + .text.z_log_notify_drop + 0x40378ee8 0xa zephyr/libzephyr.a(log_core.c.obj) + 0xe (size before relaxing) + *fill* 0x40378ef2 0x2 + .text.z_log_dropped_read_and_clear + 0x40378ef4 0x1d zephyr/libzephyr.a(log_core.c.obj) + 0x40378ef4 z_log_dropped_read_and_clear + *fill* 0x40378f11 0x3 + .text.dropped_notify + 0x40378f14 0x30 zephyr/libzephyr.a(log_core.c.obj) + 0x40378f14 dropped_notify + .text.z_log_msg_init + 0x40378f44 0x18 zephyr/libzephyr.a(log_core.c.obj) + 0x40378f44 z_log_msg_init + .text.log_core_init + 0x40378f5c 0x46 zephyr/libzephyr.a(log_core.c.obj) + 0x4a (size before relaxing) + 0x40378f5c log_core_init + *fill* 0x40378fa2 0x2 + .text.z_log_msg_alloc + 0x40378fa4 0x16 zephyr/libzephyr.a(log_core.c.obj) + 0x40378fa4 z_log_msg_alloc + *fill* 0x40378fba 0x2 + .text.z_log_msg_local_claim + 0x40378fbc 0x10 zephyr/libzephyr.a(log_core.c.obj) + 0x40378fbc z_log_msg_local_claim + .text.z_log_msg_free + 0x40378fcc 0x12 zephyr/libzephyr.a(log_core.c.obj) + 0x40378fcc z_log_msg_free + *fill* 0x40378fde 0x2 + .text.z_log_msg_pending + 0x40378fe0 0x10 zephyr/libzephyr.a(log_core.c.obj) + 0x40378fe0 z_log_msg_pending + .text.z_impl_log_process + 0x40378ff0 0xaa zephyr/libzephyr.a(log_core.c.obj) + 0xb2 (size before relaxing) + 0x40378ff0 z_impl_log_process + *fill* 0x4037909a 0x2 + .text.z_impl_log_panic + 0x4037909c 0x42 zephyr/libzephyr.a(log_core.c.obj) + 0x46 (size before relaxing) + 0x4037909c z_impl_log_panic + *fill* 0x403790de 0x2 + .text.log_process_thread_func + 0x403790e0 0x85 zephyr/libzephyr.a(log_core.c.obj) + 0x95 (size before relaxing) + *fill* 0x40379165 0x3 + .text.z_log_msg_post_finalize + 0x40379168 0x58 zephyr/libzephyr.a(log_core.c.obj) + 0x63 (size before relaxing) + *fill* 0x403791c0 0x0 + .text.z_log_msg_commit + 0x403791c0 0x1d zephyr/libzephyr.a(log_core.c.obj) + 0x21 (size before relaxing) + 0x403791c0 z_log_msg_commit + *fill* 0x403791dd 0x3 + .text.log_msg_generic_get_wlen + 0x403791e0 0x24 zephyr/libzephyr.a(log_core.c.obj) + .text.dummy_timestamp + 0x40379204 0x7 zephyr/libzephyr.a(log_core.c.obj) + *fill* 0x4037920b 0x0 + *fill* 0x4037920b 0x1 + .text.atomic_inc + 0x4037920c 0x1b zephyr/libzephyr.a(log_core.c.obj) + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x1 + .text.z_log_get_tag + 0x40379228 0x7 zephyr/libzephyr.a(log_core.c.obj) + 0x40379228 z_log_get_tag + *libzephyr.a:cbprintf_complete.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:printk.*(SORT_BY_ALIGNMENT(.literal.printk) SORT_BY_ALIGNMENT(.literal.vprintk) SORT_BY_ALIGNMENT(.literal.char_out) SORT_BY_ALIGNMENT(.text.printk) SORT_BY_ALIGNMENT(.text.vprintk) SORT_BY_ALIGNMENT(.text.char_out)) + *fill* 0x4037922f 0x1 + .text.printk 0x40379230 0x2b zephyr/libzephyr.a(printk.c.obj) + 0x40379230 printk + *fill* 0x4037925b 0x0 + *libzephyr.a:log_msg.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037925b 0x1 + .text.z_cbprintf_cpy + 0x4037925c 0x2b zephyr/libzephyr.a(log_msg.c.obj) + *fill* 0x40379287 0x1 + .text.z_log_msg_finalize + 0x40379288 0x32 zephyr/libzephyr.a(log_msg.c.obj) + 0x36 (size before relaxing) + 0x40379288 z_log_msg_finalize + *fill* 0x403792ba 0x2 + .text.z_log_msg_simple_create + 0x403792bc 0x5f zephyr/libzephyr.a(log_msg.c.obj) + 0x63 (size before relaxing) + *fill* 0x4037931b 0x1 + .text.z_impl_z_log_msg_simple_create_0 + 0x4037931c 0x12 zephyr/libzephyr.a(log_msg.c.obj) + 0x16 (size before relaxing) + 0x4037931c z_impl_z_log_msg_simple_create_0 + *fill* 0x4037932e 0x2 + .text.z_impl_z_log_msg_simple_create_1 + 0x40379330 0x17 zephyr/libzephyr.a(log_msg.c.obj) + 0x40379330 z_impl_z_log_msg_simple_create_1 + *fill* 0x40379347 0x1 + .text.z_impl_z_log_msg_static_create + 0x40379348 0x106 zephyr/libzephyr.a(log_msg.c.obj) + 0x10e (size before relaxing) + 0x40379348 z_impl_z_log_msg_static_create + *fill* 0x4037944e 0x2 + .text.z_log_msg_runtime_vcreate + 0x40379450 0xb8 zephyr/libzephyr.a(log_msg.c.obj) + 0xc0 (size before relaxing) + 0x40379450 z_log_msg_runtime_vcreate + .text.log_msg_get_source_id + 0x40379508 0x17 zephyr/libzephyr.a(log_msg.c.obj) + 0x40379508 log_msg_get_source_id + *fill* 0x4037951f 0x0 + *fill* 0x4037951f 0x0 + *fill* 0x4037951f 0x0 + *fill* 0x4037951f 0x0 + *fill* 0x4037951f 0x0 + *fill* 0x4037951f 0x0 + *fill* 0x4037951f 0x0 + *libzephyr.a:log_list.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libdrivers__console.a:uart_console.*(SORT_BY_ALIGNMENT(.literal.console_out) SORT_BY_ALIGNMENT(.text.console_out)) + *fill* 0x4037951f 0x1 + .text.console_out + 0x40379520 0x22 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + *fill* 0x40379542 0x0 + *libzephyr.a:log_output.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40379542 0x2 + .text.log_output_flush + 0x40379544 0x18 zephyr/libzephyr.a(log_output.c.obj) + 0x1c (size before relaxing) + .text.print_formatted + 0x4037955c 0x2c zephyr/libzephyr.a(log_output.c.obj) + .text.newline_print + 0x40379588 0x16 zephyr/libzephyr.a(log_output.c.obj) + 0x19 (size before relaxing) + *fill* 0x4037959e 0x2 + .text.out_func + 0x403795a0 0x32 zephyr/libzephyr.a(log_output.c.obj) + 0x36 (size before relaxing) + *fill* 0x403795d2 0x2 + .text.cr_out_func + 0x403795d4 0x1a zephyr/libzephyr.a(log_output.c.obj) + 0x1e (size before relaxing) + *fill* 0x403795ee 0x2 + .text.log_output_process + 0x403795f0 0x242 zephyr/libzephyr.a(log_output.c.obj) + 0x27a (size before relaxing) + 0x403795f0 log_output_process + *fill* 0x40379832 0x2 + .text.log_output_msg_process + 0x40379834 0x4e zephyr/libzephyr.a(log_output.c.obj) + 0x56 (size before relaxing) + 0x40379834 log_output_msg_process + *fill* 0x40379882 0x2 + .text.log_output_dropped_process + 0x40379884 0x48 zephyr/libzephyr.a(log_output.c.obj) + 0x50 (size before relaxing) + 0x40379884 log_output_dropped_process + .text.log_output_timestamp_freq_set + 0x403798cc 0x2b zephyr/libzephyr.a(log_output.c.obj) + 0x403798cc log_output_timestamp_freq_set + *fill* 0x403798f7 0x1 + .text.log_output_write + 0x403798f8 0x1a zephyr/libzephyr.a(log_output.c.obj) + *fill* 0x40379912 0x0 + *fill* 0x40379912 0x0 + *fill* 0x40379912 0x0 + *fill* 0x40379912 0x0 + *fill* 0x40379912 0x0 + *fill* 0x40379912 0x0 + *libzephyr.a:log_backend_uart.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40379912 0x2 + .text.dropped 0x40379914 0x13 zephyr/libzephyr.a(log_backend_uart.c.obj) + *fill* 0x40379927 0x1 + .text.process 0x40379928 0x1e zephyr/libzephyr.a(log_backend_uart.c.obj) + *fill* 0x40379946 0x2 + .text.char_out + 0x40379948 0x25 zephyr/libzephyr.a(log_backend_uart.c.obj) + *fill* 0x4037996d 0x3 + .text.format_set + 0x40379970 0xf zephyr/libzephyr.a(log_backend_uart.c.obj) + *fill* 0x4037997f 0x1 + .text.log_backend_uart_init + 0x40379980 0xf zephyr/libzephyr.a(log_backend_uart.c.obj) + *fill* 0x4037998f 0x1 + .text.panic 0x40379990 0x37 zephyr/libzephyr.a(log_backend_uart.c.obj) + *fill* 0x403799c7 0x0 + *fill* 0x403799c7 0x0 + *fill* 0x403799c7 0x0 + *libzephyr.a:log_minimal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:loader.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x403799c7 0x1 + .text.map_rom_segments + 0x403799c8 0x316 zephyr/libzephyr.a(loader.c.obj) + 0x326 (size before relaxing) + 0x403799c8 map_rom_segments + *fill* 0x40379cde 0x2 + .text.__start 0x40379ce0 0x5e zephyr/libzephyr.a(loader.c.obj) + 0x6e (size before relaxing) + 0x40379ce0 __start + *fill* 0x40379d3e 0x0 + *fill* 0x40379d3e 0x0 + *libzephyr.a:flash_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40379d3e 0x2 + .text.flash_is_octal_mode_enabled + 0x40379d40 0x10 zephyr/libzephyr.a(flash_init.c.obj) + 0x40379d40 flash_is_octal_mode_enabled + .text.esp_flash_config + 0x40379d50 0x2f zephyr/libzephyr.a(flash_init.c.obj) + 0x3f (size before relaxing) + 0x40379d50 esp_flash_config + *fill* 0x40379d7f 0x0 + *libzephyr.a:soc_flash_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40379d7f 0x1 + .text.configure_spi_pins + 0x40379d80 0x7a zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x40379d80 configure_spi_pins + *fill* 0x40379dfa 0x2 + .text.flash_set_dummy_out + 0x40379dfc 0x28 zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x40379dfc flash_set_dummy_out + .text.flash_dummy_config + 0x40379e24 0xd zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x14 (size before relaxing) + 0x40379e24 flash_dummy_config + *fill* 0x40379e31 0x3 + .text.flash_cs_timing_config + 0x40379e34 0x99 zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x40379e34 flash_cs_timing_config + *fill* 0x40379ecd 0x3 + .text.init_spi_flash + 0x40379ed0 0xfe zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x112 (size before relaxing) + 0x40379ed0 init_spi_flash + *fill* 0x40379fce 0x2 + .text.flash_update_id + 0x40379fd0 0x12 zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x40379fd0 flash_update_id + *fill* 0x40379fe2 0x0 + *fill* 0x40379fe2 0x0 + *fill* 0x40379fe2 0x0 + *fill* 0x40379fe2 0x0 + *libzephyr.a:console_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40379fe2 0x2 + .text.esp_console_init + 0x40379fe4 0x24 zephyr/libzephyr.a(console_init.c.obj) + 0x28 (size before relaxing) + 0x40379fe4 esp_console_init + *fill* 0x4037a008 0x0 + *libzephyr.a:soc_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + .text.print_banner + 0x4037a008 0x2a zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a008 print_banner + *fill* 0x4037a032 0x2 + .text.read_bootloader_header + 0x4037a034 0x26 zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a034 read_bootloader_header + *fill* 0x4037a05a 0x2 + .text.config_wdt + 0x4037a05c 0x42 zephyr/libzephyr.a(soc_init.c.obj) + 0x56 (size before relaxing) + 0x4037a05c config_wdt + *fill* 0x4037a09e 0x2 + .text.check_bootloader_validity + 0x4037a0a0 0x92 zephyr/libzephyr.a(soc_init.c.obj) + 0x96 (size before relaxing) + 0x4037a0a0 check_bootloader_validity + *fill* 0x4037a132 0x2 + .text.ana_super_wdt_reset_config + 0x4037a134 0x3b zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a134 ana_super_wdt_reset_config + *fill* 0x4037a16f 0x1 + .text.ana_clock_glitch_reset_config + 0x4037a170 0x3a zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a170 ana_clock_glitch_reset_config + *fill* 0x4037a1aa 0x2 + .text.ana_reset_config + 0x4037a1ac 0x3a zephyr/libzephyr.a(soc_init.c.obj) + 0x3e (size before relaxing) + 0x4037a1ac ana_reset_config + *fill* 0x4037a1e6 0x2 + .text.super_wdt_auto_feed + 0x4037a1e8 0x2c zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a1e8 super_wdt_auto_feed + .text.wdt_reset_info_dump + 0x4037a214 0x52 zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a214 wdt_reset_info_dump + *fill* 0x4037a266 0x2 + .text.wdt_reset_cpu0_info_enable + 0x4037a268 0x3c zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a268 wdt_reset_cpu0_info_enable + .text.check_wdt_reset + 0x4037a2a4 0x2e zephyr/libzephyr.a(soc_init.c.obj) + 0x35 (size before relaxing) + 0x4037a2a4 check_wdt_reset + *fill* 0x4037a2d2 0x2 + .text.bootloader_clock_configure + 0x4037a2d4 0x73 zephyr/libzephyr.a(soc_init.c.obj) + 0x7b (size before relaxing) + 0x4037a2d4 bootloader_clock_configure + *fill* 0x4037a347 0x0 + *fill* 0x4037a347 0x0 + *fill* 0x4037a347 0x0 + *fill* 0x4037a347 0x1 + .text.soc_hw_init + 0x4037a348 0x5 zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a348 soc_hw_init + *fill* 0x4037a34d 0x0 + *fill* 0x4037a34d 0x0 + *fill* 0x4037a34d 0x0 + *fill* 0x4037a34d 0x0 + *fill* 0x4037a34d 0x0 + *fill* 0x4037a34d 0x0 + *libzephyr.a:hw_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037a34d 0x3 + .text.hardware_init + 0x4037a350 0x66 zephyr/libzephyr.a(hw_init.c.obj) + 0x92 (size before relaxing) + 0x4037a350 hardware_init + *fill* 0x4037a3b6 0x0 + *libzephyr.a:soc_random.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037a3b6 0x2 + .text.soc_random_enable + 0x4037a3b8 0x29b zephyr/libzephyr.a(soc_random.c.obj) + 0x2ab (size before relaxing) + 0x4037a3b8 soc_random_enable + *fill* 0x4037a653 0x1 + .text.soc_random_disable + 0x4037a654 0x175 zephyr/libzephyr.a(soc_random.c.obj) + 0x185 (size before relaxing) + 0x4037a654 soc_random_disable + *fill* 0x4037a7c9 0x0 + *fill* 0x4037a7c9 0x0 + *libzephyr.a:esp_mmu_map.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037a7c9 0x3 + .text.s_get_bus_mask + 0x4037a7cc 0x26 zephyr/libzephyr.a(esp_mmu_map.c.obj) + *fill* 0x4037a7f2 0x2 + .text.esp_mmu_map_init + 0x4037a7f4 0x124 zephyr/libzephyr.a(esp_mmu_map.c.obj) + 0x128 (size before relaxing) + 0x4037a7f4 esp_mmu_map_init + *fill* 0x4037a918 0x0 + *fill* 0x4037a918 0x0 + *libphy.a:(SORT_BY_ALIGNMENT(.phyiram) SORT_BY_ALIGNMENT(.phyiram.*)) + *libgcov.a:(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *librtc.a:(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp32s3-mp.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_flash.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + .text.esp_rom_flash_read + 0x4037a918 0xd5 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0xe5 (size before relaxing) + 0x4037a918 esp_rom_flash_read + *fill* 0x4037a9ed 0x3 + .text.bootloader_enable_wp + 0x4037a9f0 0x13 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x4037a9f0 bootloader_enable_wp + *fill* 0x4037aa03 0x0 + *libzephyr.a:flash_mmap.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:mmu_psram_flash.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_psram_impl_quad.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_psram_impl_octal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:efuse_hal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:mmu_hal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037aa03 0x1 + .text.mmu_hal_ctx_init + 0x4037aa04 0xe zephyr/libzephyr.a(mmu_hal.c.obj) + 0x4037aa04 mmu_hal_ctx_init + *fill* 0x4037aa12 0x2 + .text.mmu_hal_unmap_all + 0x4037aa14 0x34 zephyr/libzephyr.a(mmu_hal.c.obj) + 0x4037aa14 mmu_hal_unmap_all + .text.mmu_hal_paddr_to_vaddr + 0x4037aa48 0x5d zephyr/libzephyr.a(mmu_hal.c.obj) + 0x4037aa48 mmu_hal_paddr_to_vaddr + *fill* 0x4037aaa5 0x3 + .text.mmu_hal_map_region + 0x4037aaa8 0x42 zephyr/libzephyr.a(mmu_hal.c.obj) + 0x4037aaa8 mmu_hal_map_region + *fill* 0x4037aaea 0x0 + *fill* 0x4037aaea 0x0 + *fill* 0x4037aaea 0x0 + *libzephyr.a:spi_flash_hal_iram.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037aaea 0x2 + .text.spi_flash_hal_configure_host_io_mode + 0x4037aaec 0x310 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037aaec spi_flash_hal_configure_host_io_mode + .text.spi_flash_hal_common_command + 0x4037adfc 0x1a8 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037adfc spi_flash_hal_common_command + .text.spi_flash_hal_read + 0x4037afa4 0xc2 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037afa4 spi_flash_hal_read + *fill* 0x4037b066 0x2 + .text.spi_flash_hal_program_page + 0x4037b068 0xba zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b068 spi_flash_hal_program_page + *fill* 0x4037b122 0x2 + .text.spi_flash_hal_setup_read_suspend + 0x4037b124 0x74 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b124 spi_flash_hal_setup_read_suspend + .text.spi_flash_hal_setup_auto_suspend_mode + 0x4037b198 0x198 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b198 spi_flash_hal_setup_auto_suspend_mode + .text.spi_flash_hal_disable_auto_suspend_mode + 0x4037b330 0x86 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b330 spi_flash_hal_disable_auto_suspend_mode + *fill* 0x4037b3b6 0x2 + .text.spi_flash_hal_device_config + 0x4037b3b8 0x113 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x117 (size before relaxing) + 0x4037b3b8 spi_flash_hal_device_config + *fill* 0x4037b4cb 0x1 + .text.spi_flash_hal_poll_cmd_done + 0x4037b4cc 0xf zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b4cc spi_flash_hal_poll_cmd_done + *fill* 0x4037b4db 0x0 + *fill* 0x4037b4db 0x1 + .text.spi_flash_hal_erase_chip + 0x4037b4dc 0x28 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b4dc spi_flash_hal_erase_chip + .text.spi_flash_hal_erase_sector + 0x4037b504 0x73 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b504 spi_flash_hal_erase_sector + *fill* 0x4037b577 0x1 + .text.spi_flash_hal_erase_block + 0x4037b578 0x6c zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b578 spi_flash_hal_erase_block + *fill* 0x4037b5e4 0x0 + .text.spi_flash_hal_set_write_protect + 0x4037b5e4 0x30 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b5e4 spi_flash_hal_set_write_protect + .text.spi_flash_hal_check_status + 0x4037b614 0x20 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b614 spi_flash_hal_check_status + *fill* 0x4037b634 0x0 + *fill* 0x4037b634 0x0 + .text.spi_flash_hal_resume + 0x4037b634 0x22 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b634 spi_flash_hal_resume + *fill* 0x4037b656 0x2 + .text.spi_flash_hal_suspend + 0x4037b658 0x22 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b658 spi_flash_hal_suspend + *libzephyr.a:spi_flash_encrypt_hal_iram.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037b67a 0x2 + .text.spi_flash_encryption_hal_enable + 0x4037b67c 0x21 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4037b67c spi_flash_encryption_hal_enable + *fill* 0x4037b69d 0x3 + .text.spi_flash_encryption_hal_disable + 0x4037b6a0 0x17 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4037b6a0 spi_flash_encryption_hal_disable + *fill* 0x4037b6b7 0x1 + .text.spi_flash_encryption_hal_prepare + 0x4037b6b8 0x34 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4037b6b8 spi_flash_encryption_hal_prepare + .text.spi_flash_encryption_hal_done + 0x4037b6ec 0x22 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4037b6ec spi_flash_encryption_hal_done + *fill* 0x4037b70e 0x2 + .text.spi_flash_encryption_hal_destroy + 0x4037b710 0xf zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4037b710 spi_flash_encryption_hal_destroy + *fill* 0x4037b71f 0x0 + *fill* 0x4037b71f 0x0 + *fill* 0x4037b71f 0x0 + *fill* 0x4037b71f 0x0 + *fill* 0x4037b71f 0x1 + .text.spi_flash_encryption_hal_check + 0x4037b720 0xe zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4037b720 spi_flash_encryption_hal_check + *libzephyr.a:cache_hal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037b72e 0x2 + .text.cache_hal_vaddr_to_cache_level_id$part$0 + 0x4037b730 0x42 zephyr/libzephyr.a(cache_hal.c.obj) + *fill* 0x4037b772 0x2 + .text.cache_hal_disable + 0x4037b774 0x1f zephyr/libzephyr.a(cache_hal.c.obj) + 0x4037b774 cache_hal_disable + *fill* 0x4037b793 0x1 + .text.cache_hal_enable + 0x4037b794 0x2e zephyr/libzephyr.a(cache_hal.c.obj) + 0x4037b794 cache_hal_enable + *fill* 0x4037b7c2 0x2 + .text.cache_hal_suspend + 0x4037b7c4 0x19 zephyr/libzephyr.a(cache_hal.c.obj) + 0x1f (size before relaxing) + 0x4037b7c4 cache_hal_suspend + *fill* 0x4037b7dd 0x3 + .text.cache_hal_resume + 0x4037b7e0 0x2e zephyr/libzephyr.a(cache_hal.c.obj) + 0x4037b7e0 cache_hal_resume + *fill* 0x4037b80e 0x2 + .text.cache_hal_vaddr_to_cache_level_id + 0x4037b810 0x29 zephyr/libzephyr.a(cache_hal.c.obj) + 0x4037b810 cache_hal_vaddr_to_cache_level_id + *fill* 0x4037b839 0x3 + .text.cache_hal_invalidate_addr + 0x4037b83c 0x23 zephyr/libzephyr.a(cache_hal.c.obj) + 0x4037b83c cache_hal_invalidate_addr + *fill* 0x4037b85f 0x1 + .text.cache_hal_writeback_addr + 0x4037b860 0x1f zephyr/libzephyr.a(cache_hal.c.obj) + 0x23 (size before relaxing) + 0x4037b860 cache_hal_writeback_addr + *fill* 0x4037b87f 0x1 + .text.cache_hal_freeze + 0x4037b880 0x1c zephyr/libzephyr.a(cache_hal.c.obj) + 0x24 (size before relaxing) + 0x4037b880 cache_hal_freeze + .text.cache_hal_unfreeze + 0x4037b89c 0x1f zephyr/libzephyr.a(cache_hal.c.obj) + 0x4037b89c cache_hal_unfreeze + *fill* 0x4037b8bb 0x1 + .text.cache_hal_get_cache_line_size + 0x4037b8bc 0x1b zephyr/libzephyr.a(cache_hal.c.obj) + 0x4037b8bc cache_hal_get_cache_line_size + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *libzephyr.a:ledc_hal_iram.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:i2c_hal_iram.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:wdt_hal_iram.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037b8d7 0x1 + .text.wdt_hal_write_protect_disable + 0x4037b8d8 0x1d zephyr/libzephyr.a(wdt_hal_iram.c.obj) + 0x4037b8d8 wdt_hal_write_protect_disable + *fill* 0x4037b8f5 0x0 + *fill* 0x4037b8f5 0x3 + .text.wdt_hal_write_protect_enable + 0x4037b8f8 0x1c zephyr/libzephyr.a(wdt_hal_iram.c.obj) + 0x4037b8f8 wdt_hal_write_protect_enable + .text.wdt_hal_disable + 0x4037b914 0x30 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + 0x4037b914 wdt_hal_disable + .text.wdt_hal_set_flashboot_en + 0x4037b944 0x45 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + 0x4037b944 wdt_hal_set_flashboot_en + *libzephyr.a:systimer_hal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037b989 0x3 + .text.systimer_hal_init + 0x4037b98c 0x1c zephyr/libzephyr.a(systimer_hal.c.obj) + 0x4037b98c systimer_hal_init + .text.systimer_hal_select_alarm_mode + 0x4037b9a8 0x3c zephyr/libzephyr.a(systimer_hal.c.obj) + 0x4037b9a8 systimer_hal_select_alarm_mode + *fill* 0x4037b9e4 0x0 + .text.systimer_hal_set_tick_rate_ops + 0x4037b9e4 0xd zephyr/libzephyr.a(systimer_hal.c.obj) + 0x4037b9e4 systimer_hal_set_tick_rate_ops + *fill* 0x4037b9f1 0x3 + .text.systimer_hal_enable_counter + 0x4037b9f4 0x22 zephyr/libzephyr.a(systimer_hal.c.obj) + 0x4037b9f4 systimer_hal_enable_counter + *fill* 0x4037ba16 0x2 + .text.systimer_hal_connect_alarm_counter + 0x4037ba18 0x21 zephyr/libzephyr.a(systimer_hal.c.obj) + 0x4037ba18 systimer_hal_connect_alarm_counter + *fill* 0x4037ba39 0x3 + .text.systimer_hal_counter_can_stall_by_cpu + 0x4037ba3c 0x35 zephyr/libzephyr.a(systimer_hal.c.obj) + 0x4037ba3c systimer_hal_counter_can_stall_by_cpu + *libzephyr.a:spi_flash_hal_gpspi.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037ba71 0x3 + .text.gpspi_flash_ll_get_buffer_data + 0x4037ba74 0x58 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .text.spi_flash_hal_gpspi_device_config + 0x4037bacc 0x145 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x4037bacc spi_flash_hal_gpspi_device_config + *fill* 0x4037bc11 0x3 + .text.spi_flash_hal_gpspi_configure_host_io_mode + 0x4037bc14 0x25f zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x4037bc14 spi_flash_hal_gpspi_configure_host_io_mode + *fill* 0x4037be73 0x1 + .text.spi_flash_hal_gpspi_common_command + 0x4037be74 0x1a0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x1a4 (size before relaxing) + 0x4037be74 spi_flash_hal_gpspi_common_command + .text.spi_flash_hal_gpspi_read + 0x4037c014 0xc8 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x4037c014 spi_flash_hal_gpspi_read + *fill* 0x4037c0dc 0x0 + .text.spi_flash_hal_gpspi_poll_cmd_done + 0x4037c0dc 0xf zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x4037c0dc spi_flash_hal_gpspi_poll_cmd_done + *fill* 0x4037c0eb 0x0 + *fill* 0x4037c0eb 0x0 + *fill* 0x4037c0eb 0x1 + .text.spi_flash_hal_gpspi_supports_direct_write + 0x4037c0ec 0x7 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x4037c0ec spi_flash_hal_gpspi_supports_direct_write + *fill* 0x4037c0f3 0x1 + .text.spi_flash_hal_gpspi_supports_direct_read + 0x4037c0f4 0x7 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x4037c0f4 spi_flash_hal_gpspi_supports_direct_read + *fill* 0x4037c0fb 0x1 + .text.spi_flash_hal_gpspi_check_status + 0x4037c0fc 0x14 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x4037c0fc spi_flash_hal_gpspi_check_status + *libzephyr.a:lldesc.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *(SORT_BY_ALIGNMENT(.literal.esp_log_write) SORT_BY_ALIGNMENT(.text.esp_log_write)) + *(SORT_BY_ALIGNMENT(.literal.esp_log_timestamp) SORT_BY_ALIGNMENT(.text.esp_log_timestamp)) + *(SORT_BY_ALIGNMENT(.literal.esp_log_early_timestamp) SORT_BY_ALIGNMENT(.text.esp_log_early_timestamp)) + *(SORT_BY_ALIGNMENT(.literal.esp_log_impl_lock) SORT_BY_ALIGNMENT(.text.esp_log_impl_lock)) + *(SORT_BY_ALIGNMENT(.literal.esp_log_impl_lock_timeout) SORT_BY_ALIGNMENT(.text.esp_log_impl_lock_timeout)) + *(SORT_BY_ALIGNMENT(.literal.esp_log_impl_unlock) SORT_BY_ALIGNMENT(.text.esp_log_impl_unlock)) + *libzephyr.a:spi_flash_chip_boya.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .text.spi_flash_chip_boya_probe + 0x4037c110 0x22 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + 0x4037c110 spi_flash_chip_boya_probe + *fill* 0x4037c132 0x2 + .text.spi_flash_chip_boya_get_caps + 0x4037c134 0x7 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + 0x4037c134 spi_flash_chip_boya_get_caps + *libzephyr.a:spi_flash_chip_gd.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037c13b 0x1 + .text.spi_flash_chip_gd_suspend_cmd_conf + 0x4037c13c 0x1d zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x4037c13c spi_flash_chip_gd_suspend_cmd_conf + *fill* 0x4037c159 0x3 + .text.spi_flash_chip_gd_get_io_mode + 0x4037c15c 0x1a zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x1e (size before relaxing) + 0x4037c15c spi_flash_chip_gd_get_io_mode + *fill* 0x4037c176 0x2 + .text.spi_flash_chip_gd_set_io_mode + 0x4037c178 0x38 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x3c (size before relaxing) + 0x4037c178 spi_flash_chip_gd_set_io_mode + *fill* 0x4037c1b0 0x0 + .text.spi_flash_chip_gd_get_caps + 0x4037c1b0 0x14 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x4037c1b0 spi_flash_chip_gd_get_caps + .text.spi_flash_chip_gd_detect_size + 0x4037c1c4 0x34 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x4037c1c4 spi_flash_chip_gd_detect_size + *fill* 0x4037c1f8 0x0 + *fill* 0x4037c1f8 0x0 + .text.spi_flash_chip_gd_probe + 0x4037c1f8 0x3b zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x4037c1f8 spi_flash_chip_gd_probe + *fill* 0x4037c233 0x0 + *libzephyr.a:spi_flash_chip_generic.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037c233 0x1 + .text.spi_flash_chip_generic_reset + 0x4037c234 0x55 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c234 spi_flash_chip_generic_reset + *fill* 0x4037c289 0x3 + .text.spi_flash_chip_generic_config_host_io_mode + 0x4037c28c 0xf6 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c28c spi_flash_chip_generic_config_host_io_mode + *fill* 0x4037c382 0x2 + .text.spi_flash_chip_generic_get_caps + 0x4037c384 0x69 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c384 spi_flash_chip_generic_get_caps + *fill* 0x4037c3ed 0x3 + .text.spi_flash_chip_generic_suspend_cmd_conf + 0x4037c3f0 0x1d zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c3f0 spi_flash_chip_generic_suspend_cmd_conf + *fill* 0x4037c40d 0x3 + .text.spi_flash_chip_generic_read + 0x4037c410 0x93 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x97 (size before relaxing) + 0x4037c410 spi_flash_chip_generic_read + *fill* 0x4037c4a3 0x1 + .text.spi_flash_chip_generic_write + 0x4037c4a4 0x94 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c4a4 spi_flash_chip_generic_write + .text.spi_flash_chip_generic_get_write_protect + 0x4037c538 0x2c zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c538 spi_flash_chip_generic_get_write_protect + .text.spi_flash_chip_generic_yield + 0x4037c564 0x42 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c564 spi_flash_chip_generic_yield + *fill* 0x4037c5a6 0x2 + .text.spi_flash_chip_generic_read_unique_id + 0x4037c5a8 0x6c zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c5a8 spi_flash_chip_generic_read_unique_id + .text.spi_flash_chip_generic_write_encrypted + 0x4037c614 0xa8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c614 spi_flash_chip_generic_write_encrypted + .text.spi_flash_common_read_qe_sr$constprop$0$isra$0 + 0x4037c6bc 0x34 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x4037c6f0 0x34 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x38 (size before relaxing) + 0x4037c6f0 spi_flash_common_read_status_16b_rdsr_rdsr2 + .text.spi_flash_common_write_qe_sr$isra$0 + 0x4037c724 0x2e zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + *fill* 0x4037c752 0x2 + .text.spi_flash_common_write_status_16b_wrsr + 0x4037c754 0x15 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c754 spi_flash_common_write_status_16b_wrsr + *fill* 0x4037c769 0x3 + .text.spi_flash_chip_generic_erase_block + 0x4037c76c 0xc2 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c76c spi_flash_chip_generic_erase_block + *fill* 0x4037c82e 0x2 + .text.spi_flash_chip_generic_erase_sector + 0x4037c830 0xc2 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c830 spi_flash_chip_generic_erase_sector + *fill* 0x4037c8f2 0x2 + .text.spi_flash_chip_generic_page_program + 0x4037c8f4 0xa8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c8f4 spi_flash_chip_generic_page_program + .text.spi_flash_common_read_status_8b_rdsr2 + 0x4037c99c 0x10 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x14 (size before relaxing) + 0x4037c99c spi_flash_common_read_status_8b_rdsr2 + .text.spi_flash_chip_generic_get_io_mode + 0x4037c9ac 0x1a zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x1e (size before relaxing) + 0x4037c9ac spi_flash_chip_generic_get_io_mode + *fill* 0x4037c9c6 0x2 + .text.spi_flash_common_read_status_8b_rdsr + 0x4037c9c8 0x10 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x14 (size before relaxing) + 0x4037c9c8 spi_flash_common_read_status_8b_rdsr + .text.spi_flash_common_write_status_8b_wrsr + 0x4037c9d8 0x15 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c9d8 spi_flash_common_write_status_8b_wrsr + *fill* 0x4037c9ed 0x3 + .text.spi_flash_common_write_status_8b_wrsr2 + 0x4037c9f0 0x15 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c9f0 spi_flash_common_write_status_8b_wrsr2 + *fill* 0x4037ca05 0x3 + .text.spi_flash_common_set_io_mode + 0x4037ca08 0x87 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x8b (size before relaxing) + 0x4037ca08 spi_flash_common_set_io_mode + *fill* 0x4037ca8f 0x1 + .text.spi_flash_chip_generic_set_io_mode + 0x4037ca90 0x18 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037ca90 spi_flash_chip_generic_set_io_mode + .text.spi_flash_chip_generic_detect_size + 0x4037caa8 0x43 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037caa8 spi_flash_chip_generic_detect_size + *fill* 0x4037caeb 0x1 + .text.spi_flash_chip_generic_probe + 0x4037caec 0x7 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037caec spi_flash_chip_generic_probe + *fill* 0x4037caf3 0x0 + *fill* 0x4037caf3 0x1 + .text.spi_flash_chip_generic_erase_chip + 0x4037caf4 0x86 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037caf4 spi_flash_chip_generic_erase_chip + *fill* 0x4037cb7a 0x2 + .text.spi_flash_chip_generic_set_write_protect + 0x4037cb7c 0x4f zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037cb7c spi_flash_chip_generic_set_write_protect + *fill* 0x4037cbcb 0x1 + .text.spi_flash_chip_generic_read_reg + 0x4037cbcc 0x12 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037cbcc spi_flash_chip_generic_read_reg + *fill* 0x4037cbde 0x2 + .text.spi_flash_chip_generic_wait_idle + 0x4037cbe0 0x7e zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037cbe0 spi_flash_chip_generic_wait_idle + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x2 + .text.spi_flash_chip_generic_read_unique_id_none + 0x4037cc60 0x8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037cc60 spi_flash_chip_generic_read_unique_id_none + *fill* 0x4037cc68 0x0 + *fill* 0x4037cc68 0x0 + *fill* 0x4037cc68 0x0 + *fill* 0x4037cc68 0x0 + *libzephyr.a:spi_flash_chip_issi.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .text.spi_flash_chip_issi_set_io_mode + 0x4037cc68 0x14 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0x18 (size before relaxing) + 0x4037cc68 spi_flash_chip_issi_set_io_mode + .text.spi_flash_chip_issi_get_io_mode + 0x4037cc7c 0x1a zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0x1e (size before relaxing) + 0x4037cc7c spi_flash_chip_issi_get_io_mode + *fill* 0x4037cc96 0x2 + .text.spi_flash_chip_issi_probe + 0x4037cc98 0x24 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0x4037cc98 spi_flash_chip_issi_probe + .text.spi_flash_chip_issi_get_caps + 0x4037ccbc 0x7 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0x4037ccbc spi_flash_chip_issi_get_caps + *fill* 0x4037ccc3 0x0 + *libzephyr.a:spi_flash_chip_mxic.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037ccc3 0x1 + .text.spi_flash_chip_mxic_probe + 0x4037ccc4 0x1c zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + 0x4037ccc4 spi_flash_chip_mxic_probe + .text.spi_flash_chip_mxic_detect_size + 0x4037cce0 0x43 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + 0x4037cce0 spi_flash_chip_mxic_detect_size + *fill* 0x4037cd23 0x1 + .text.spi_flash_chip_mxic_get_caps + 0x4037cd24 0x7 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + 0x4037cd24 spi_flash_chip_mxic_get_caps + *libzephyr.a:spi_flash_chip_mxic_opi.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037cd2b 0x1 + .text.spi_flash_chip_mxic_opi_set_write_protect + 0x4037cd2c 0x6a zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037cd2c spi_flash_chip_mxic_opi_set_write_protect + *fill* 0x4037cd96 0x2 + .text.spi_flash_chip_mxic_opi_erase_chip + 0x4037cd98 0x86 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037cd98 spi_flash_chip_mxic_opi_erase_chip + *fill* 0x4037ce1e 0x2 + .text.spi_flash_chip_mxic_opi_erase_sector + 0x4037ce20 0x89 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037ce20 spi_flash_chip_mxic_opi_erase_sector + *fill* 0x4037cea9 0x3 + .text.spi_flash_chip_mxic_opi_erase_block + 0x4037ceac 0x89 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037ceac spi_flash_chip_mxic_opi_erase_block + *fill* 0x4037cf35 0x3 + .text.spi_flash_chip_mxic_opi_read_id + 0x4037cf38 0xc3 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037cf38 spi_flash_chip_mxic_opi_read_id + *fill* 0x4037cffb 0x1 + .text.spi_flash_chip_mxic_opi_get_write_protect + 0x4037cffc 0x2c zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037cffc spi_flash_chip_mxic_opi_get_write_protect + .text.spi_flash_chip_mxic_opi_write + 0x4037d028 0x94 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d028 spi_flash_chip_mxic_opi_write + .text.spi_flash_chip_mxic_opi_page_program + 0x4037d0bc 0x88 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d0bc spi_flash_chip_mxic_opi_page_program + .text.spi_flash_chip_mxic_opi_get_io_mode + 0x4037d144 0x76 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d144 spi_flash_chip_mxic_opi_get_io_mode + *fill* 0x4037d1ba 0x2 + .text.spi_flash_chip_mxic_opi_read_reg + 0x4037d1bc 0x5b zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d1bc spi_flash_chip_mxic_opi_read_reg + *fill* 0x4037d217 0x1 + .text.spi_flash_chip_mxic_opi_probe + 0x4037d218 0x1c zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d218 spi_flash_chip_mxic_opi_probe + .text.spi_flash_chip_mxic_opi_detect_size + 0x4037d234 0x34 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d234 spi_flash_chip_mxic_opi_detect_size + .text.spi_flash_chip_mxic_opi_get_caps + 0x4037d268 0x7 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d268 spi_flash_chip_mxic_opi_get_caps + *fill* 0x4037d26f 0x0 + *fill* 0x4037d26f 0x0 + *fill* 0x4037d26f 0x0 + *fill* 0x4037d26f 0x0 + *fill* 0x4037d26f 0x1 + .text.spi_flash_chip_xmic_opi_set_io_mode + 0x4037d270 0x7 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d270 spi_flash_chip_xmic_opi_set_io_mode + *fill* 0x4037d277 0x1 + .text.spi_flash_chip_xmic_opi_config_host_io_mode + 0x4037d278 0x38 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d278 spi_flash_chip_xmic_opi_config_host_io_mode + *fill* 0x4037d2b0 0x0 + *fill* 0x4037d2b0 0x0 + *libzephyr.a:spi_flash_chip_th.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037d2b0 0x0 + .text.spi_flash_chip_th_probe + 0x4037d2b0 0x22 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + 0x4037d2b0 spi_flash_chip_th_probe + *fill* 0x4037d2d2 0x2 + .text.spi_flash_chip_th_get_caps + 0x4037d2d4 0x7 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + 0x4037d2d4 spi_flash_chip_th_get_caps + *libzephyr.a:spi_flash_chip_winbond.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037d2db 0x1 + .text.spi_flash_chip_winbond_suspend_cmd_conf + 0x4037d2dc 0x1d zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4037d2dc spi_flash_chip_winbond_suspend_cmd_conf + *fill* 0x4037d2f9 0x3 + .text.spi_flash_chip_winbond_read + 0x4037d2fc 0x93 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x97 (size before relaxing) + 0x4037d2fc spi_flash_chip_winbond_read + *fill* 0x4037d38f 0x1 + .text.spi_flash_chip_winbond_erase_block + 0x4037d390 0xe0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4037d390 spi_flash_chip_winbond_erase_block + .text.spi_flash_chip_winbond_erase_sector + 0x4037d470 0xdc zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4037d470 spi_flash_chip_winbond_erase_sector + .text.spi_flash_chip_winbond_page_program + 0x4037d54c 0x95 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4037d54c spi_flash_chip_winbond_page_program + *fill* 0x4037d5e1 0x3 + .text.spi_flash_chip_winbond_probe + 0x4037d5e4 0x13 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4037d5e4 spi_flash_chip_winbond_probe + *fill* 0x4037d5f7 0x1 + .text.spi_flash_chip_winbond_get_caps + 0x4037d5f8 0x14 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4037d5f8 spi_flash_chip_winbond_get_caps + *fill* 0x4037d60c 0x0 + *fill* 0x4037d60c 0x0 + *libzephyr.a:memspi_host_driver.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .text.memspi_host_read_status_hs + 0x4037d60c 0x3a zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d60c memspi_host_read_status_hs + *fill* 0x4037d646 0x2 + .text.memspi_host_erase_chip + 0x4037d648 0x23 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d648 memspi_host_erase_chip + *fill* 0x4037d66b 0x1 + .text.memspi_host_set_write_protect + 0x4037d66c 0x2c zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d66c memspi_host_set_write_protect + .text.memspi_host_read_id_hs + 0x4037d698 0x7e zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d698 memspi_host_read_id_hs + *fill* 0x4037d716 0x2 + .text.memspi_host_flush_cache + 0x4037d718 0x19 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d718 memspi_host_flush_cache + *fill* 0x4037d731 0x3 + .text.memspi_host_erase_sector + 0x4037d734 0x36 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d734 memspi_host_erase_sector + *fill* 0x4037d76a 0x2 + .text.memspi_host_erase_block + 0x4037d76c 0x37 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d76c memspi_host_erase_block + *fill* 0x4037d7a3 0x1 + .text.memspi_host_program_page + 0x4037d7a4 0x3e zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d7a4 memspi_host_program_page + *fill* 0x4037d7e2 0x2 + .text.memspi_host_init_pointers + 0x4037d7e4 0x54 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d7e4 memspi_host_init_pointers + *fill* 0x4037d838 0x0 + *fill* 0x4037d838 0x0 + *fill* 0x4037d838 0x0 + .text.memspi_host_write_data_slicer + 0x4037d838 0x33 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d838 memspi_host_write_data_slicer + *fill* 0x4037d86b 0x1 + .text.memspi_host_read_data_slicer + 0x4037d86c 0x2a zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d86c memspi_host_read_data_slicer + *fill* 0x4037d896 0x0 + *fill* 0x4037d896 0x0 + *fill* 0x4037d896 0x0 + *fill* 0x4037d896 0x0 + *fill* 0x4037d896 0x0 + *fill* 0x4037d896 0x0 + *libzephyr.a:flash_brownout_hook.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:spi_flash_wrap.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:spi_flash_hpm_enable.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:spi_flash_oct_flash_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037d896 0x2 + .text.s_probe_mxic_chip + 0x4037d898 0x36 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + *fill* 0x4037d8ce 0x2 + .text.s_mxic_set_required_regs + 0x4037d8d0 0x1e zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + *fill* 0x4037d8ee 0x2 + .text.s_flash_init_mxic + 0x4037d8f0 0x13c zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0x144 (size before relaxing) + .text.esp_opiflash_init + 0x4037da2c 0x5b zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0x4037da2c esp_opiflash_init + *fill* 0x4037da87 0x0 + *fill* 0x4037da87 0x0 + *libzephyr.a:flash_ops.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:spi_flash_os_func_app.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037da87 0x1 + .text.get_buffer_malloc + 0x4037da88 0x1d zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + *fill* 0x4037daa5 0x3 + .text.spi_flash_os_check_yield + 0x4037daa8 0x15 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + *fill* 0x4037dabd 0x3 + .text.release_buffer_malloc + 0x4037dac0 0xa zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0xe (size before relaxing) + *fill* 0x4037daca 0x2 + .text.delay_us + 0x4037dacc 0x10 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text.spi_flash_os_yield + 0x4037dadc 0x11 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + *fill* 0x4037daed 0x3 + .text.esp_flash_app_enable_os_functions + 0x4037daf0 0x1b zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4037daf0 esp_flash_app_enable_os_functions + *fill* 0x4037db0b 0x1 + .text.main_flash_region_protected + 0x4037db0c 0x7 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + *fill* 0x4037db13 0x0 + *fill* 0x4037db13 0x0 + *fill* 0x4037db13 0x0 + *fill* 0x4037db13 0x0 + *fill* 0x4037db13 0x0 + *libzephyr.a:spi_flash_os_func_noos.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037db13 0x1 + .text.delay_us + 0x4037db14 0x10 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + *fill* 0x4037db24 0x0 + *libzephyr.a:esp_flash_api.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + .text.check_chip_pointer_default + 0x4037db24 0x1f zephyr/libzephyr.a(esp_flash_api.c.obj) + *fill* 0x4037db43 0x1 + .text.flash_end_flush_cache + 0x4037db44 0x46 zephyr/libzephyr.a(esp_flash_api.c.obj) + *fill* 0x4037db8a 0x2 + .text.detect_spi_flash_chip + 0x4037db8c 0x64 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.spiflash_start_default + 0x4037dbf0 0x11 zephyr/libzephyr.a(esp_flash_api.c.obj) + *fill* 0x4037dc01 0x3 + .text.esp_flash_read_chip_id + 0x4037dc04 0x10 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x14 (size before relaxing) + 0x4037dc04 esp_flash_read_chip_id + .text.esp_flash_get_physical_size + 0x4037dc14 0x5e zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4037dc14 esp_flash_get_physical_size + *fill* 0x4037dc72 0x2 + .text.esp_flash_is_quad_mode + 0x4037dc74 0x1e zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4037dc74 esp_flash_is_quad_mode + *fill* 0x4037dc92 0x2 + .text.esp_flash_init_main + 0x4037dc94 0x120 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x128 (size before relaxing) + 0x4037dc94 esp_flash_init_main + .text.spiflash_start_core + 0x4037ddb4 0x4b zephyr/libzephyr.a(esp_flash_api.c.obj) + *fill* 0x4037ddff 0x1 + .text.spiflash_end_default + 0x4037de00 0x1f zephyr/libzephyr.a(esp_flash_api.c.obj) + *fill* 0x4037de1f 0x0 + *fill* 0x4037de1f 0x0 + *fill* 0x4037de1f 0x0 + *fill* 0x4037de1f 0x0 + *fill* 0x4037de1f 0x0 + *fill* 0x4037de1f 0x0 + *libzephyr.a:esp_err.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *(SORT_BY_ALIGNMENT(.literal.esp_system_abort) SORT_BY_ALIGNMENT(.text.esp_system_abort)) + *(SORT_BY_ALIGNMENT(.literal.esp_restart_noos) SORT_BY_ALIGNMENT(.text.esp_restart_noos)) + *(SORT_BY_ALIGNMENT(.literal.esp_system_reset_modules_on_exit) SORT_BY_ALIGNMENT(.text.esp_system_reset_modules_on_exit)) + *(SORT_BY_ALIGNMENT(.literal.esp_cpu_stall) SORT_BY_ALIGNMENT(.text.esp_cpu_stall)) + *(SORT_BY_ALIGNMENT(.literal.esp_cpu_unstall) SORT_BY_ALIGNMENT(.text.esp_cpu_unstall)) + *(SORT_BY_ALIGNMENT(.literal.esp_cpu_reset) SORT_BY_ALIGNMENT(.text.esp_cpu_reset)) + *(SORT_BY_ALIGNMENT(.literal.esp_cpu_wait_for_intr) SORT_BY_ALIGNMENT(.text.esp_cpu_wait_for_intr)) + *(SORT_BY_ALIGNMENT(.literal.esp_cpu_compare_and_set) SORT_BY_ALIGNMENT(.text.esp_cpu_compare_and_set)) + *(SORT_BY_ALIGNMENT(.literal.esp_gpio_reserve_pins) SORT_BY_ALIGNMENT(.text.esp_gpio_reserve_pins)) + *(SORT_BY_ALIGNMENT(.literal.esp_gpio_is_pin_reserved) SORT_BY_ALIGNMENT(.text.esp_gpio_is_pin_reserved)) + *(SORT_BY_ALIGNMENT(.literal.rtc_vddsdio_get_config) SORT_BY_ALIGNMENT(.text.rtc_vddsdio_get_config)) + *(SORT_BY_ALIGNMENT(.literal.rtc_vddsdio_set_config) SORT_BY_ALIGNMENT(.text.rtc_vddsdio_set_config)) + *libzephyr.a:esp_memory_utils.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:rtc_clk.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037de1f 0x1 + .text.rtc_clk_32k_enable + 0x4037de20 0xce zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037de20 rtc_clk_32k_enable + *fill* 0x4037deee 0x2 + .text.rtc_clk_32k_enable_external + 0x4037def0 0x59 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037def0 rtc_clk_32k_enable_external + *fill* 0x4037df49 0x3 + .text.rtc_clk_8m_enable + 0x4037df4c 0x7e zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037df4c rtc_clk_8m_enable + *fill* 0x4037dfca 0x2 + .text.rtc_clk_slow_src_set + 0x4037dfcc 0xa8 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037dfcc rtc_clk_slow_src_set + .text.rtc_clk_slow_src_get + 0x4037e074 0x10 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037e074 rtc_clk_slow_src_get + .text.rtc_clk_fast_src_set + 0x4037e084 0x42 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037e084 rtc_clk_fast_src_set + *fill* 0x4037e0c6 0x2 + .text.rtc_clk_cpu_freq_mhz_to_config + 0x4037e0c8 0x56 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037e0c8 rtc_clk_cpu_freq_mhz_to_config + *fill* 0x4037e11e 0x2 + .text.rtc_clk_xtal_freq_update + 0x4037e120 0x28 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037e120 rtc_clk_xtal_freq_update + .text.rtc_clk_cpu_freq_to_pll_mhz + 0x4037e148 0x15b zephyr/libzephyr.a(rtc_clk.c.obj) + 0x16f (size before relaxing) + *fill* 0x4037e2a3 0x1 + .text.rtc_clk_cpu_freq_set_config + 0x4037e2a4 0x1c7 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x1e3 (size before relaxing) + 0x4037e2a4 rtc_clk_cpu_freq_set_config + *fill* 0x4037e46b 0x1 + .text.rtc_clk_cpu_freq_set_xtal + 0x4037e46c 0x25 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037e46c rtc_clk_cpu_freq_set_xtal + *fill* 0x4037e491 0x3 + .text.rtc_clk_divider_set + 0x4037e494 0x46 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037e494 rtc_clk_divider_set + *fill* 0x4037e4da 0x2 + .text.rtc_clk_8m_divider_set + 0x4037e4dc 0x44 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037e4dc rtc_clk_8m_divider_set + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *libzephyr.a:rtc_clk_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:rtc_sleep.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .text.rtc_sleep_pu + 0x4037e520 0x189 zephyr/libzephyr.a(rtc_sleep.c.obj) + 0x4037e520 rtc_sleep_pu + *libzephyr.a:rtc_time.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037e6a9 0x3 + .text.rtc_clk_cal_internal + 0x4037e6ac 0x21e zephyr/libzephyr.a(rtc_time.c.obj) + 0x222 (size before relaxing) + *fill* 0x4037e8ca 0x2 + .text.rtc_clk_cal + 0x4037e8cc 0xa8 zephyr/libzephyr.a(rtc_time.c.obj) + 0xb0 (size before relaxing) + 0x4037e8cc rtc_clk_cal + .text.rtc_time_us_to_slowclk + 0x4037e974 0x78 zephyr/libzephyr.a(rtc_time.c.obj) + 0x4037e974 rtc_time_us_to_slowclk + .text.rtc_time_get + 0x4037e9ec 0x2a zephyr/libzephyr.a(rtc_time.c.obj) + 0x4037e9ec rtc_time_get + *fill* 0x4037ea16 0x2 + .text.rtc_clk_freq_cal + 0x4037ea18 0x1c zephyr/libzephyr.a(rtc_time.c.obj) + 0x4037ea18 rtc_clk_freq_to_period + 0x4037ea18 rtc_clk_freq_cal + *fill* 0x4037ea34 0x0 + *fill* 0x4037ea34 0x0 + *fill* 0x4037ea34 0x0 + *libzephyr.a:systimer.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .text.systimer_ticks_to_us + 0x4037ea34 0xe zephyr/libzephyr.a(systimer.c.obj) + 0x4037ea34 systimer_ticks_to_us + *fill* 0x4037ea42 0x2 + .text.systimer_us_to_ticks + 0x4037ea44 0x10 zephyr/libzephyr.a(systimer.c.obj) + 0x4037ea44 systimer_us_to_ticks + *libzephyr.a:mspi_timing_config.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .text.mspi_timing_config_set_flash_clock + 0x4037ea54 0x5a zephyr/libzephyr.a(mspi_timing_config.c.obj) + 0x4037ea54 mspi_timing_config_set_flash_clock + *fill* 0x4037eaae 0x2 + .text.mspi_timing_config_set_psram_clock + 0x4037eab0 0x4b zephyr/libzephyr.a(mspi_timing_config.c.obj) + 0x4037eab0 mspi_timing_config_set_psram_clock + *fill* 0x4037eafb 0x0 + *libzephyr.a:mspi_timing_tuning.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037eafb 0x1 + .text.mspi_timing_enter_low_speed_mode + 0x4037eafc 0x1c zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x20 (size before relaxing) + 0x4037eafc mspi_timing_enter_low_speed_mode + .text.mspi_timing_enter_high_speed_mode + 0x4037eb18 0x12 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x4037eb18 mspi_timing_enter_high_speed_mode + *fill* 0x4037eb2a 0x2 + .text.mspi_timing_change_speed_mode_cache_safe + 0x4037eb2c 0x1c zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x2a (size before relaxing) + 0x4037eb2c mspi_timing_change_speed_mode_cache_safe + *fill* 0x4037eb48 0x0 + .text.spi_timing_get_flash_timing_param + 0x4037eb48 0x9 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x4037eb48 spi_timing_get_flash_timing_param + *fill* 0x4037eb51 0x3 + .text.mspi_timing_set_pin_drive_strength + 0x4037eb54 0x5f zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x4037eb54 mspi_timing_set_pin_drive_strength + *fill* 0x4037ebb3 0x1 + .text.mspi_timing_flash_tuning + 0x4037ebb4 0x5 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x4037ebb4 mspi_timing_flash_tuning + *fill* 0x4037ebb9 0x0 + *fill* 0x4037ebb9 0x0 + *fill* 0x4037ebb9 0x3 + .text.spi_flash_timing_is_tuned + 0x4037ebbc 0x7 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x4037ebbc spi_flash_timing_is_tuned + *fill* 0x4037ebc3 0x0 + *fill* 0x4037ebc3 0x0 + *libzephyr.a:regi2c_ctrl.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037ebc3 0x1 + .text.regi2c_ctrl_read_reg_mask + 0x4037ebc4 0x25 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x4037ebc4 regi2c_ctrl_read_reg_mask + *fill* 0x4037ebe9 0x3 + .text.regi2c_ctrl_write_reg + 0x4037ebec 0x20 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x4037ebec regi2c_ctrl_write_reg + .text.regi2c_ctrl_write_reg_mask + 0x4037ec0c 0x26 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x4037ec0c regi2c_ctrl_write_reg_mask + *fill* 0x4037ec32 0x2 + .text.regi2c_saradc_enable + 0x4037ec34 0x41 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x45 (size before relaxing) + 0x4037ec34 regi2c_saradc_enable + *fill* 0x4037ec75 0x3 + .text.regi2c_saradc_disable + 0x4037ec78 0x34 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x38 (size before relaxing) + 0x4037ec78 regi2c_saradc_disable + *fill* 0x4037ecac 0x0 + *fill* 0x4037ecac 0x0 + *fill* 0x4037ecac 0x0 + *fill* 0x4037ecac 0x0 + *(SORT_BY_ALIGNMENT(.literal.sar_periph_ctrl_power_enable) SORT_BY_ALIGNMENT(.text.sar_periph_ctrl_power_enable)) + *(SORT_BY_ALIGNMENT(.literal.GPIO_HOLD_MASK) SORT_BY_ALIGNMENT(.text.GPIO_HOLD_MASK)) + *libzephyr.a:esp_rom_cache_esp32s2_esp32s3.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .text.Cache_Suspend_ICache + 0x4037ecac 0x1b zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x4037ecac Cache_Suspend_ICache + *fill* 0x4037ecc7 0x1 + .text.Cache_Suspend_DCache + 0x4037ecc8 0x24 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x4037ecc8 Cache_Suspend_DCache + .text.Cache_Freeze_ICache_Enable + 0x4037ecec 0x1c zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x4037ecec Cache_Freeze_ICache_Enable + .text.Cache_Freeze_DCache_Enable + 0x4037ed08 0x24 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x4037ed08 Cache_Freeze_DCache_Enable + .text.Cache_WriteBack_Addr + 0x4037ed2c 0x90 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x4037ed2c Cache_WriteBack_Addr + *fill* 0x4037edbc 0x0 + *libzephyr.a:cache_utils.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + .text.spi_flash_init_lock + 0x4037edbc 0x5 zephyr/libzephyr.a(cache_utils.c.obj) + 0x4037edbc spi_flash_init_lock + *libzephyr.a:esp_rom_spiflash.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037edc1 0x3 + .text.esp_rom_opiflash_cache_mode_config + 0x4037edc4 0xe6 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + 0x4037edc4 esp_rom_opiflash_cache_mode_config + *fill* 0x4037eeaa 0x0 + *libzephyr.a:esp_rom_sys.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037eeaa 0x2 + .text.esp_rom_install_channel_putc + 0x4037eeac 0x2e zephyr/libzephyr.a(esp_rom_sys.c.obj) + 0x4037eeac esp_rom_install_channel_putc + *fill* 0x4037eeda 0x0 + *libzephyr.a:esp_rom_systimer.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_rom_wdt.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_rom_efuse.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_cache_utils.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037eeda 0x2 + .text.esp_cache_suspend_ext_mem_cache + 0x4037eedc 0xf zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4037eedc esp_cache_suspend_ext_mem_cache + *fill* 0x4037eeeb 0x1 + .text.esp_cache_resume_ext_mem_cache + 0x4037eeec 0xf zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4037eeec esp_cache_resume_ext_mem_cache + *fill* 0x4037eefb 0x1 + .text.esp_cache_freeze_ext_mem_cache + 0x4037eefc 0xf zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4037eefc esp_cache_freeze_ext_mem_cache + *fill* 0x4037ef0b 0x1 + .text.esp_cache_unfreeze_ext_mem_cache + 0x4037ef0c 0xf zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4037ef0c esp_cache_unfreeze_ext_mem_cache + *fill* 0x4037ef1b 0x0 + *fill* 0x4037ef1b 0x0 + *fill* 0x4037ef1b 0x0 + *fill* 0x4037ef1b 0x0 + *libzephyr.a:esp_cache_msync.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037ef1b 0x1 + .text.esp_cache_sync_ops_enter_critical_section + 0x4037ef1c 0xd zephyr/libzephyr.a(esp_cache_msync.c.obj) + 0x4037ef1c esp_cache_sync_ops_enter_critical_section + *fill* 0x4037ef29 0x3 + .text.esp_cache_sync_ops_exit_critical_section + 0x4037ef2c 0x10 zephyr/libzephyr.a(esp_cache_msync.c.obj) + 0x4037ef2c esp_cache_sync_ops_exit_critical_section + .text.esp_cache_msync + 0x4037ef3c 0x12d zephyr/libzephyr.a(esp_cache_msync.c.obj) + 0x131 (size before relaxing) + 0x4037ef3c esp_cache_msync + *fill* 0x4037f069 0x0 + *fill* 0x4037f069 0x0 + 0x4037f06c . = ALIGN (0x4) + *fill* 0x4037f069 0x3 + +.loader.text 0x4037f06c 0x36c load address 0x0000b090 + 0x4037f06c . = ALIGN (0x4) + 0x4037f06c _loader_text_start = ABSOLUTE (.) + *libzephyr.a:bootloader_clock_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_wdt.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_flash.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_flash_config_esp32s3.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_clock_loader.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_efuse.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_utility.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_sha.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_panic.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_image_format.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:flash_encrypt.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:flash_encryption_secure_features.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:flash_partitions.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:flash_qio_mode.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:spi_flash_hal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .literal.get_flash_clock_divider + 0x4037f06c 0x10 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_hal_init + 0x4037f07c 0x10 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x20 (size before relaxing) + .literal.spi_flash_hal_supports_direct_write + 0x4037f08c 0x4 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .literal.spi_flash_hal_supports_direct_read + 0x4037f090 0x0 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_init_default_chip + 0x4037f090 0x40 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x68 (size before relaxing) + .literal.esp_flash_app_init + 0x4037f0d0 0x4 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x14 (size before relaxing) + .text.get_flash_clock_divider + 0x4037f0d4 0x33 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x3b (size before relaxing) + *fill* 0x4037f107 0x1 + .text.spi_flash_hal_init + 0x4037f108 0x181 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x185 (size before relaxing) + 0x4037f108 spi_flash_hal_init + *fill* 0x4037f289 0x3 + .text.spi_flash_hal_supports_direct_write + 0x4037f28c 0x12 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x4037f28c spi_flash_hal_supports_direct_write + *fill* 0x4037f29e 0x2 + .text.spi_flash_hal_supports_direct_read + 0x4037f2a0 0x12 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x4037f2a0 spi_flash_hal_supports_direct_read + *fill* 0x4037f2b2 0x0 + *fill* 0x4037f2b2 0x0 + *fill* 0x4037f2b2 0x0 + *libzephyr.a:spi_flash_hal_common.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_flash_spi_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037f2b2 0x2 + .text.esp_flash_init_default_chip + 0x4037f2b4 0x10c zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x11c (size before relaxing) + 0x4037f2b4 esp_flash_init_default_chip + .text.esp_flash_app_init + 0x4037f3c0 0x17 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x1f (size before relaxing) + 0x4037f3c0 esp_flash_app_init + *fill* 0x4037f3d7 0x0 + *libzephyr.a:secure_boot.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:secure_boot_secure_features.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:secure_boot_signatures_bootloader.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_efuse_table.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_efuse_fields.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_efuse_api.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_efuse_utility.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_efuse_api_key_esp32xx.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:mpu_hal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:cpu_region_protect.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *(SORT_BY_ALIGNMENT(.fini.literal)) + *(.fini) + 0x4037f3d8 . = ALIGN (0x4) + *fill* 0x4037f3d7 0x1 + 0x4037f3d8 _loader_text_end = ABSOLUTE (.) + +.iram0.text_end + 0x4037f3d8 0x10 load address 0x0000b3fc + 0x4037f3e8 . = (ALIGN (0x4) + 0x10) + *fill* 0x4037f3d8 0x10 + 0x4037f3e8 _iram_text_end = ABSOLUTE (.) + +.iram0.data 0x4037f3e8 0x0 load address 0x0000b3fc + 0x4037f3e8 . = ALIGN (0x4) + 0x4037f3e8 _iram_data_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.iram.data)) + *(SORT_BY_ALIGNMENT(.iram.data*)) + 0x4037f3e8 _iram_data_end = ABSOLUTE (.) + +.iram0.bss 0x4037f3e8 0x0 load address 0x0000b3fc + 0x4037f3e8 . = ALIGN (0x4) + 0x4037f3e8 _iram_bss_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.iram.bss)) + *(SORT_BY_ALIGNMENT(.iram.bss*)) + 0x4037f3e8 _iram_bss_end = ABSOLUTE (.) + 0x4037f3e8 . = ALIGN (0x4) + 0x4037f3e8 _iram_end = ABSOLUTE (.) + +.dram0.dummy 0x3fc88000 0x73f0 + 0x3fc8f3e8 . = (ORIGIN (dram0_0_seg) + (MAX (_iram_end, 0x40378000) - 0x40378000)) + *fill* 0x3fc88000 0x73e8 + 0x3fc8f3f0 . = ALIGN (0x10) + *fill* 0x3fc8f3e8 0x8 + +.dram0.data 0x3fc8f3f0 0x1e7c load address 0x0000b3fc + 0x3fc8f3f0 . = ALIGN (0x8) + 0x3fc8f3f0 _data_start = ABSOLUTE (.) + 0x3fc8f3f0 __data_start = ABSOLUTE (.) + 0x3fc8f3f0 _btdm_data_start = ABSOLUTE (.) + *libbtdm_app.a:(SORT_BY_ALIGNMENT(.data) SORT_BY_ALIGNMENT(.data.*)) + 0x3fc8f3f0 . = ALIGN (0x4) + 0x3fc8f3f0 _btdm_data_end = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.data)) + *(SORT_BY_ALIGNMENT(.data.*)) + .data.s_config + 0x3fc8f3f0 0x70 zephyr/libzephyr.a(sleep_modes.c.obj) + .data.spi_data_0 + 0x3fc8f460 0x180 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .data._char_out + 0x3fc8f5e0 0x4 zephyr/libzephyr.a(printk.c.obj) + .data.map 0x3fc8f5e4 0x18 zephyr/libzephyr.a(loader.c.obj) + .data.timestamp_func + 0x3fc8f5fc 0x4 zephyr/libzephyr.a(log_core.c.obj) + .data.backend_cb_log_backend_uart + 0x3fc8f600 0x8 zephyr/libzephyr.a(log_backend_uart.c.obj) + .data.rom_func$0 + 0x3fc8f608 0x34 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .data.registered_chip_funcs + 0x3fc8f63c 0x8 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .data.esp_flash_registered_chips + 0x3fc8f644 0x4 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + 0x3fc8f644 esp_flash_registered_chips + .data.default_registered_chips + 0x3fc8f648 0x24 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .data.g_rtc_dbias_pvt_non_240m + 0x3fc8f66c 0x4 zephyr/libzephyr.a(rtc_init.c.obj) + 0x3fc8f66c g_rtc_dbias_pvt_non_240m + .data.g_dig_dbias_pvt_non_240m + 0x3fc8f670 0x4 zephyr/libzephyr.a(rtc_init.c.obj) + 0x3fc8f670 g_dig_dbias_pvt_non_240m + .data.g_rtc_dbias_pvt_240m + 0x3fc8f674 0x4 zephyr/libzephyr.a(rtc_init.c.obj) + 0x3fc8f674 g_rtc_dbias_pvt_240m + .data.g_dig_dbias_pvt_240m + 0x3fc8f678 0x4 zephyr/libzephyr.a(rtc_init.c.obj) + 0x3fc8f678 g_dig_dbias_pvt_240m + .data._putc1 0x3fc8f67c 0x4 zephyr/libzephyr.a(esp_rom_sys.c.obj) + 0x3fc8f67c _putc1 + .data.current_read_mapping + 0x3fc8f680 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + .data.__stdout + 0x3fc8f684 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .data.gpio_config_1 + 0x3fc8f694 0x10 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .data.gpio_config_0 + 0x3fc8f6a4 0x10 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .data.timer_work + 0x3fc8f6b4 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x3fc8f6b4 timer_work + .data.uart_esp32_data_0 + 0x3fc8f6c4 0x14 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .data.slice_ticks + 0x3fc8f6d8 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .data.timeout_list + 0x3fc8f6dc 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .data.wait_q$0 + 0x3fc8f6e4 0x8 zephyr/kernel/libkernel.a(poll.c.obj) + .data.MaxPayloadLength + 0x3fc8f6ec 0x1 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc8f6ec MaxPayloadLength + *(SORT_BY_ALIGNMENT(.gnu.linkonce.d.*)) + *(SORT_BY_ALIGNMENT(.data1)) + *(SORT_BY_ALIGNMENT(.sdata)) + *(SORT_BY_ALIGNMENT(.sdata.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.s.*)) + *(SORT_BY_ALIGNMENT(.sdata2)) + *(SORT_BY_ALIGNMENT(.sdata2.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.s2.*)) + *(SORT_BY_ALIGNMENT(.srodata)) + *(SORT_BY_ALIGNMENT(.srodata.*)) + *libarch__xtensa__core.a:(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc8f6ed 0x3 + .rodata.CSWTCH$3 + 0x3fc8f6f0 0x104 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .rodata.xtensa_lvl_mask + 0x3fc8f7f4 0x1c zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .rodata.xtensa_exccause.str1.1 + 0x3fc8f810 0x11 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .rodata.str1.1 + 0x3fc8f810 0x1c9 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .rodata.z_irq_spurious.str1.1 + 0x3fc8f810 0x2d zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .rodata.xtensa_dump_stack$part$0.str1.1 + 0x3fc8f810 0xbb zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .rodata.xtensa_excint1_c.str1.1 + 0x3fc8f810 0xc7 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + *libkernel.a:fatal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.CSWTCH$406 + 0x3fc8f810 0x14 zephyr/kernel/libkernel.a(fatal.c.obj) + .rodata.k_sys_fatal_error_handler.str1.1 + 0x3fc8f824 0xf zephyr/kernel/libkernel.a(fatal.c.obj) + .rodata.z_fatal_error.str1.1 + 0x3fc8f824 0x56 zephyr/kernel/libkernel.a(fatal.c.obj) + .rodata.str1.1 + 0x3fc8f824 0x4a zephyr/kernel/libkernel.a(fatal.c.obj) + *libkernel.a:init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.levels$0 + 0x3fc8f824 0x18 zephyr/kernel/libkernel.a(init.c.obj) + .rodata.z_cstart.str1.1 + 0x3fc8f83c 0x5 zephyr/kernel/libkernel.a(init.c.obj) + .rodata.str1.1 + 0x3fc8f83c 0x3 zephyr/kernel/libkernel.a(init.c.obj) + *libzephyr.a:cbprintf_complete.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:log_core.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.mpsc_config + 0x3fc8f83c 0x14 zephyr/libzephyr.a(log_core.c.obj) + .rodata.format_table + 0x3fc8f850 0x10 zephyr/libzephyr.a(log_core.c.obj) + .rodata.enable_logger.str1.1 + 0x3fc8f860 0x8 zephyr/libzephyr.a(log_core.c.obj) + .rodata.str1.1 + 0x3fc8f860 0x4 zephyr/libzephyr.a(log_core.c.obj) + *libzephyr.a:log_backend_uart.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.lbu_cb_ctx + 0x3fc8f860 0x8 zephyr/libzephyr.a(log_backend_uart.c.obj) + .rodata.lbu_output + 0x3fc8f868 0x10 zephyr/libzephyr.a(log_backend_uart.c.obj) + .rodata.log_backend_uart_api + 0x3fc8f878 0x1c zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x3fc8f878 log_backend_uart_api + .rodata.str1.1 + 0x3fc8f894 0x1a zephyr/libzephyr.a(log_backend_uart.c.obj) + *libzephyr.a:log_output.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.colors + 0x3fc8f894 0x14 zephyr/libzephyr.a(log_output.c.obj) + .rodata.severity + 0x3fc8f8a8 0x14 zephyr/libzephyr.a(log_output.c.obj) + .rodata.newline_print.str1.1 + 0x3fc8f8bc 0x5 zephyr/libzephyr.a(log_output.c.obj) + .rodata.log_output_process.str1.1 + 0x3fc8f8bc 0x51 zephyr/libzephyr.a(log_output.c.obj) + .rodata.log_output_dropped_process.str1.1 + 0x3fc8f8bc 0x3 zephyr/libzephyr.a(log_output.c.obj) + .rodata.postfix$0 + 0x3fc8f8bc 0x1c zephyr/libzephyr.a(log_output.c.obj) + .rodata.prefix$1 + 0x3fc8f8d8 0xc zephyr/libzephyr.a(log_output.c.obj) + .rodata.str1.1 + 0x3fc8f8e4 0x20 zephyr/libzephyr.a(log_output.c.obj) + *libzephyr.a:log_minimal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:loader.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.libc_heap_size + 0x3fc8f8e4 0x4 zephyr/libzephyr.a(loader.c.obj) + .rodata.map_rom_segments.str1.1 + 0x3fc8f8e8 0xdcb zephyr/libzephyr.a(loader.c.obj) + 0xaf (size before relaxing) + .rodata.__start.str1.1 + 0x3fc906b3 0x41 zephyr/libzephyr.a(loader.c.obj) + *libzephyr.a:flash_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.esp_flash_config.str1.1 + 0x3fc906b3 0x32 zephyr/libzephyr.a(flash_init.c.obj) + *libzephyr.a:soc_flash_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc906b3 0x1 + .rodata.init_spi_flash + 0x3fc906b4 0x20 zephyr/libzephyr.a(soc_flash_init.c.obj) + .rodata.CSWTCH$11 + 0x3fc906d4 0x20 zephyr/libzephyr.a(soc_flash_init.c.obj) + .rodata.CSWTCH$10 + 0x3fc906f4 0x40 zephyr/libzephyr.a(soc_flash_init.c.obj) + .rodata.init_spi_flash.str1.1 + 0x3fc90734 0x8c zephyr/libzephyr.a(soc_flash_init.c.obj) + .rodata.str1.1 + 0x3fc90734 0x3b zephyr/libzephyr.a(soc_flash_init.c.obj) + *libzephyr.a:console_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:soc_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata 0x3fc90734 0x8 zephyr/libzephyr.a(soc_init.c.obj) + .rodata.print_banner.str1.1 + 0x3fc9073c 0x69 zephyr/libzephyr.a(soc_init.c.obj) + .rodata.read_bootloader_header.str1.1 + 0x3fc9073c 0x31 zephyr/libzephyr.a(soc_init.c.obj) + .rodata.check_bootloader_validity.str1.1 + 0x3fc9073c 0x8f zephyr/libzephyr.a(soc_init.c.obj) + .rodata.wdt_reset_info_dump.str1.1 + 0x3fc9073c 0x3b zephyr/libzephyr.a(soc_init.c.obj) + .rodata.check_wdt_reset.str1.1 + 0x3fc9073c 0x28 zephyr/libzephyr.a(soc_init.c.obj) + *libzephyr.a:hw_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata 0x3fc9073c 0x8 zephyr/libzephyr.a(hw_init.c.obj) + .rodata.hardware_init.str1.1 + 0x3fc90744 0x3f zephyr/libzephyr.a(hw_init.c.obj) + *libzephyr.a:soc_random.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libdrivers__serial.a:uart_esp32.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata 0x3fc90744 0x28 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .rodata.__pinctrl_dev_config__device_dts_ord_64 + 0x3fc9076c 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .rodata.__pinctrl_states__device_dts_ord_64 + 0x3fc90774 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .rodata.__pinctrl_state_pins_0__device_dts_ord_64 + 0x3fc9077c 0x10 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .rodata.uart_esp32_init.str1.1 + 0x3fc9078c 0x64 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .rodata.str1.1 + 0x3fc9078c 0x19 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *libdrivers__flash.a:flash_esp32.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_mmu_map.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp32s3-mp.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:bootloader_flash.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + .rodata.CSWTCH$82 + 0x3fc9078c 0x6 zephyr/libzephyr.a(bootloader_flash.c.obj) + .rodata.bootloader_mmap.str1.1 + 0x3fc90792 0x5e zephyr/libzephyr.a(bootloader_flash.c.obj) + .rodata.esp_rom_flash_read.str1.1 + 0x3fc90792 0xb8 zephyr/libzephyr.a(bootloader_flash.c.obj) + .rodata.str1.1 + 0x3fc90792 0x40 zephyr/libzephyr.a(bootloader_flash.c.obj) + *libzephyr.a:flash_mmap.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:mmu_psram_flash.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_psram_impl_octal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_psram_impl_quad.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:efuse_hal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:mmu_hal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:spi_flash_hal_iram.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc90792 0x2 + .rodata.spi_flash_hal_configure_host_io_mode + 0x3fc90794 0x48 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .rodata.CSWTCH$57 + 0x3fc907dc 0x4 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + *libzephyr.a:spi_flash_encrypt_hal_iram.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:cache_hal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:ledc_hal_iram.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:i2c_hal_iram.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:wdt_hal_iram.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:systimer_hal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:spi_flash_hal_gpspi.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.spi_flash_hal_gpspi_configure_host_io_mode + 0x3fc907e0 0x18 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + *libzephyr.a:lldesc.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *(SORT_BY_ALIGNMENT(.rodata.esp_log_write)) + *(SORT_BY_ALIGNMENT(.rodata.esp_log_timestamp)) + *(SORT_BY_ALIGNMENT(.rodata.esp_log_early_timestamp)) + *(SORT_BY_ALIGNMENT(.rodata.esp_log_impl_lock)) + *(SORT_BY_ALIGNMENT(.rodata.esp_log_impl_lock_timeout)) + *(SORT_BY_ALIGNMENT(.rodata.esp_log_impl_unlock)) + *libzephyr.a:spi_flash_chip_boya.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.esp_flash_chip_boya + 0x3fc907f8 0x7c zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + 0x3fc907f8 esp_flash_chip_boya + .rodata.chip_name + 0x3fc90874 0x5 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + *libzephyr.a:spi_flash_chip_gd.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc90879 0x3 + .rodata.esp_flash_chip_gd + 0x3fc9087c 0x7c zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x3fc9087c esp_flash_chip_gd + .rodata.chip_name + 0x3fc908f8 0x3 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + *libzephyr.a:spi_flash_chip_generic.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc908fb 0x1 + .rodata.spi_flash_chip_generic_config_host_io_mode + 0x3fc908fc 0x18 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .rodata.esp_flash_chip_generic + 0x3fc90914 0x7c zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x3fc90914 esp_flash_chip_generic + .rodata.spi_flash_chip_generic_read.str1.1 + 0x3fc90990 0x35 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_read_unique_id.str1.1 + 0x3fc90990 0x44 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .rodata.chip_name + 0x3fc90990 0x8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .rodata.TAG 0x3fc90998 0xd zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + *libzephyr.a:spi_flash_chip_issi.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc909a5 0x3 + .rodata.esp_flash_chip_issi + 0x3fc909a8 0x7c zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0x3fc909a8 esp_flash_chip_issi + .rodata.chip_name + 0x3fc90a24 0x5 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + *libzephyr.a:spi_flash_chip_mxic.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc90a29 0x3 + .rodata.esp_flash_chip_mxic + 0x3fc90a2c 0x7c zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + 0x3fc90a2c esp_flash_chip_mxic + .rodata.chip_name + 0x3fc90aa8 0x5 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + *libzephyr.a:spi_flash_chip_mxic_opi.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc90aad 0x3 + .rodata.esp_flash_chip_mxic_opi + 0x3fc90ab0 0x7c zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x3fc90ab0 esp_flash_chip_mxic_opi + .rodata.spi_flash_chip_mxic_opi_read_id.str1.1 + 0x3fc90b2c 0x16 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .rodata.chip_name + 0x3fc90b2c 0xb zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + *libzephyr.a:spi_flash_chip_th.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc90b37 0x1 + .rodata.esp_flash_chip_th + 0x3fc90b38 0x7c zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + 0x3fc90b38 esp_flash_chip_th + .rodata.chip_name + 0x3fc90bb4 0x3 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + *libzephyr.a:spi_flash_chip_winbond.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc90bb7 0x1 + .rodata.esp_flash_chip_winbond + 0x3fc90bb8 0x7c zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x3fc90bb8 esp_flash_chip_winbond + .rodata.spi_flash_chip_winbond_read.str1.1 + 0x3fc90c34 0x35 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .rodata.chip_name + 0x3fc90c34 0x8 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .rodata.TAG 0x3fc90c3c 0x8 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + *libzephyr.a:memspi_host_driver.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.esp_flash_gpspi_host + 0x3fc90c44 0x58 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .rodata.memspi_host_read_id_hs.str1.1 + 0x3fc90c9c 0x16 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .rodata.TAG 0x3fc90c9c 0x7 zephyr/libzephyr.a(memspi_host_driver.c.obj) + *libzephyr.a:flash_brownout_hook.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:spi_flash_wrap.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:spi_flash_hpm_enable.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:spi_flash_oct_flash_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc90ca3 0x1 + .rodata.opiflash_cmd_def_mxic$1 + 0x3fc90ca4 0x5c zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .rodata.opi_flash_func_mxic + 0x3fc90d00 0xc zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .rodata.s_probe_mxic_chip.str1.1 + 0x3fc90d0c 0x47 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .rodata.esp_opiflash_init.str1.1 + 0x3fc90d0c 0x5d zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + *libzephyr.a:flash_qio_mode.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:flash_ops.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:spi_flash_os_func_app.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:spi_flash_os_func_noos.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_flash_api.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + .rodata 0x3fc90d0c 0x2c2 zephyr/libzephyr.a(esp_flash_api.c.obj) + .rodata.io_mode_str + 0x3fc90fce 0xb4 zephyr/libzephyr.a(esp_flash_api.c.obj) + *libzephyr.a:esp_cache_utils.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_cache_msync.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.esp_cache_msync.str1.1 + 0x3fc91082 0x1d9 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .rodata.__FUNCTION__$1 + 0x3fc91082 0x10 zephyr/libzephyr.a(esp_cache_msync.c.obj) + *(SORT_BY_ALIGNMENT(.rodata.esp_cpu_stall)) + *(SORT_BY_ALIGNMENT(.rodata.esp_cpu_unstall)) + *(SORT_BY_ALIGNMENT(.rodata.esp_cpu_reset)) + *(SORT_BY_ALIGNMENT(.rodata.esp_cpu_wait_for_intr)) + *(SORT_BY_ALIGNMENT(.rodata.esp_cpu_compare_and_set)) + *(SORT_BY_ALIGNMENT(.rodata.esp_gpio_reserve_pins)) + *(SORT_BY_ALIGNMENT(.rodata.esp_gpio_is_pin_reserved)) + *(SORT_BY_ALIGNMENT(.rodata.rtc_vddsdio_get_config)) + *(SORT_BY_ALIGNMENT(.rodata.rtc_vddsdio_set_config)) + *libzephyr.a:esp_memory_utils.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:rtc_clk.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.str1.1 + 0x3fc91092 0x3f zephyr/libzephyr.a(rtc_clk.c.obj) + *libzephyr.a:rtc_clk_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:systimer.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:mspi_timing_config.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:mspi_timing_tuning.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc91092 0x2 + .rodata 0x3fc91094 0x24 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + *(SORT_BY_ALIGNMENT(.rodata.sar_periph_ctrl_power_enable)) + *(SORT_BY_ALIGNMENT(.rodata.GPIO_HOLD_MASK)) + *libzephyr.a:esp_rom_cache_esp32s2_esp32s3.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:cache_utils.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.str1.1 + 0x3fc910b8 0x4c zephyr/libzephyr.a(cache_utils.c.obj) + *libzephyr.a:esp_rom_spiflash.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_rom_sys.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_rom_systimer.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_rom_wdt.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_rom_efuse.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_err.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *(SORT_BY_ALIGNMENT(.rodata.esp_system_abort)) + *(SORT_BY_ALIGNMENT(.rodata.esp_restart_noos)) + *(SORT_BY_ALIGNMENT(.rodata.esp_system_reset_modules_on_exit)) + *libphy.a:(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + 0x3fc91104 . = ALIGN (0x4) + 0x3fc91104 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.jcr)) + *(SORT_BY_ALIGNMENT(.dram1) SORT_BY_ALIGNMENT(.dram1.*)) + .dram1.2 0x3fc910b8 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .dram1.1 0x3fc910bc 0x10 zephyr/libzephyr.a(esp_flash_api.c.obj) + .dram1.2 0x3fc910cc 0x24 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .dram1.1 0x3fc910f0 0x30 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .dram1.0 0x3fc91120 0x8 zephyr/libzephyr.a(flash_ops.c.obj) + 0x3fc91120 g_flash_guard_default_ops + .dram1.0 0x3fc91128 0x58 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .dram1.5 0x3fc91180 0x14 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x3fc91180 spi_flash_chip_generic_timeout + .dram1.4 0x3fc91194 0x18 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .dram1.3 0x3fc911ac 0x4 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x3fc911ac rom_flash_chip_dummy_hpm + .dram1.2 0x3fc911b0 0x4 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x3fc911b0 rom_flash_chip_dummy + .dram1.2 0x3fc911b4 0x28 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + 0x3fc911b4 esp_flash_noos_functions + .dram1.7 0x3fc911dc 0x28 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .dram1.6 0x3fc91204 0x14 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .dram1.2 0x3fc91218 0x4 zephyr/libzephyr.a(rtc_module.c.obj) + .dram1.1 0x3fc9121c 0x4 zephyr/libzephyr.a(rtc_module.c.obj) + .dram1.0 0x3fc91220 0x4 zephyr/libzephyr.a(rtc_module.c.obj) + .dram1.1 0x3fc91224 0x14 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .dram1.1 0x3fc91238 0x1c zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .dram1.0 0x3fc91254 0xa zephyr/libzephyr.a(esp_flash_api.c.obj) + .dram1.1 0x3fc9125e 0x6 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .dram1.0 0x3fc91264 0x6 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x3fc9126c . = ALIGN (0x4) + *fill* 0x3fc9126a 0x2 + +.loader.data 0x3fc9126c 0x22c load address 0x0000d278 + 0x3fc9126c . = ALIGN (0x4) + 0x3fc9126c _loader_data_start = ABSOLUTE (.) + *libzephyr.a:bootloader_clock_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:bootloader_wdt.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:bootloader_flash.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:bootloader_efuse.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:cpu_util.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:clk.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + .rodata 0x3fc9126c 0x4 zephyr/libzephyr.a(clk.c.obj) + *libzephyr.a:esp_clk.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:cpu_region_protect.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:spi_flash_hal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + .rodata.CSWTCH$18 + 0x3fc91270 0xc zephyr/libzephyr.a(spi_flash_hal.c.obj) + .rodata.get_flash_clock_divider.str1.1 + 0x3fc9127c 0x1f2 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x71 (size before relaxing) + *libzephyr.a:spi_flash_hal_common.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:esp_flash_spi_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + .rodata.esp_flash_init_default_chip.str1.1 + 0x3fc9146e 0x181 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .rodata.CSWTCH$55 + 0x3fc9146e 0x4 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .rodata.__FUNCTION__$1 + 0x3fc91472 0x1c zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .rodata.TAG 0x3fc9148e 0xa zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x3fc915f0 . = ALIGN (0x4) + 0x3fc91498 _loader_data_end = ABSOLUTE (.) + +sw_isr_table 0x3fc91498 0x100 load address 0x0000d4a4 + 0x3fc91498 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.sw_isr_table*)) + .gnu.linkonce.sw_isr_table + 0x3fc91498 0x100 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + 0x3fc91498 _sw_isr_table + +device_states 0x3fc91598 0x10 load address 0x0000d5a4 + 0x3fc91598 . = ALIGN (0x4) + 0x3fc91598 __device_states_start = . + *(SORT_BY_ALIGNMENT(.z_devstate)) + .z_devstate 0x3fc91598 0x2 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .z_devstate 0x3fc9159a 0x4 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .z_devstate 0x3fc9159e 0x2 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .z_devstate 0x3fc915a0 0x2 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .z_devstate 0x3fc915a2 0x2 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .z_devstate 0x3fc915a4 0x2 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + *(SORT_BY_ALIGNMENT(.z_devstate.*)) + 0x3fc915a6 __device_states_end = . + 0x3fc915a8 . = ALIGN (0x4) + *fill* 0x3fc915a6 0x2 + +log_mpsc_pbuf_area + 0x3fc915a8 0x40 load address 0x0000d5b4 + 0x3fc915a8 _log_mpsc_pbuf_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_mpsc_pbuf.static.*))) + ._log_mpsc_pbuf.static.log_buffer_ + 0x3fc915a8 0x40 zephyr/libzephyr.a(log_core.c.obj) + 0x3fc915e8 _log_mpsc_pbuf_list_end = . + +log_msg_ptr_area + 0x3fc915e8 0x4 load address 0x0000d5f4 + 0x3fc915e8 _log_msg_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_msg_ptr.static.*))) + ._log_msg_ptr.static.log_msg_ptr_ + 0x3fc915e8 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x3fc915ec _log_msg_ptr_list_end = . + +log_dynamic_area + 0x3fc915ec 0x0 load address 0x0000d5f8 + 0x3fc915ec _log_dynamic_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_dynamic.static.*))) + 0x3fc915ec _log_dynamic_list_end = . + +k_timer_area 0x3fc915f0 0x38 load address 0x0000d5fc + 0x3fc915f0 _k_timer_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_timer.static.*))) + ._k_timer.static.lora_timer_ + 0x3fc915f0 0x38 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x3fc915f0 lora_timer + 0x3fc91628 _k_timer_list_end = . + +k_mem_slab_area + 0x3fc91628 0x0 load address 0x0000d634 + 0x3fc91628 _k_mem_slab_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mem_slab.static.*))) + 0x3fc91628 _k_mem_slab_list_end = . + +k_heap_area 0x3fc91628 0x14 load address 0x0000d634 + 0x3fc91628 _k_heap_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_heap.static.*))) + ._k_heap.static._system_heap_ + 0x3fc91628 0x14 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x3fc91628 _system_heap + 0x3fc9163c _k_heap_list_end = . + +k_mutex_area 0x3fc9163c 0x28 load address 0x0000d648 + 0x3fc9163c _k_mutex_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mutex.static.*))) + ._k_mutex.static.g_params_mutex_ + 0x3fc9163c 0x14 app/libapp.a(lora_modem.c.obj) + ._k_mutex.static.uart_tx_mutex_ + 0x3fc91650 0x14 app/libapp.a(main.c.obj) + 0x3fc91664 _k_mutex_list_end = . + +k_stack_area 0x3fc91664 0x0 load address 0x0000d670 + 0x3fc91664 _k_stack_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_stack.static.*))) + 0x3fc91664 _k_stack_list_end = . + +k_msgq_area 0x3fc91664 0x0 load address 0x0000d670 + 0x3fc91664 _k_msgq_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_msgq.static.*))) + 0x3fc91664 _k_msgq_list_end = . + +k_mbox_area 0x3fc91664 0x0 load address 0x0000d670 + 0x3fc91664 _k_mbox_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mbox.static.*))) + 0x3fc91664 _k_mbox_list_end = . + +k_pipe_area 0x3fc91664 0x0 load address 0x0000d670 + 0x3fc91664 _k_pipe_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_pipe.static.*))) + 0x3fc91664 _k_pipe_list_end = . + +k_sem_area 0x3fc91664 0x18 load address 0x0000d670 + 0x3fc91664 _k_sem_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_sem.static.*))) + ._k_sem.static.log_process_thread_sem_ + 0x3fc91664 0x18 zephyr/libzephyr.a(log_core.c.obj) + 0x3fc91664 log_process_thread_sem + 0x3fc9167c _k_sem_list_end = . + +k_event_area 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _k_event_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_event.static.*))) + 0x3fc9167c _k_event_list_end = . + +k_queue_area 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _k_queue_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_queue.static.*))) + 0x3fc9167c _k_queue_list_end = . + +k_fifo_area 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _k_fifo_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_fifo.static.*))) + 0x3fc9167c _k_fifo_list_end = . + +k_lifo_area 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _k_lifo_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_lifo.static.*))) + 0x3fc9167c _k_lifo_list_end = . + +k_condvar_area 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _k_condvar_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_condvar.static.*))) + 0x3fc9167c _k_condvar_list_end = . + +sys_mem_blocks_ptr_area + 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _sys_mem_blocks_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sys_mem_blocks_ptr.static.*))) + 0x3fc9167c _sys_mem_blocks_ptr_list_end = . + +net_buf_pool_area + 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _net_buf_pool_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._net_buf_pool.static.*))) + 0x3fc9167c _net_buf_pool_list_end = . + +log_strings_area + 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _log_strings_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_strings.static.*))) + 0x3fc9167c _log_strings_list_end = . + +log_stmesp_ptr_area + 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _log_stmesp_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_stmesp_ptr.static.*))) + 0x3fc9167c _log_stmesp_ptr_list_end = . + +log_stmesp_str_area + 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _log_stmesp_str_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_stmesp_str.static.*))) + 0x3fc9167c _log_stmesp_str_list_end = . + +log_const_area 0x3fc9167c 0x80 load address 0x0000d688 + 0x3fc9167c _log_const_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_const.static.*))) + ._log_const.static.log_const_cbprintf_package_ + 0x3fc9167c 0x8 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x3fc9167c log_const_cbprintf_package + ._log_const.static.log_const_clock_control_ + 0x3fc91684 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x3fc91684 log_const_clock_control + ._log_const.static.log_const_esp32_spi_ + 0x3fc9168c 0x8 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x3fc9168c log_const_esp32_spi + ._log_const.static.log_const_gpio_esp32_ + 0x3fc91694 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x3fc91694 log_const_gpio_esp32 + ._log_const.static.log_const_intc_esp32_ + 0x3fc9169c 0x8 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x3fc9169c log_const_intc_esp32 + ._log_const.static.log_const_log_ + 0x3fc916a4 0x8 zephyr/libzephyr.a(log_core.c.obj) + 0x3fc916a4 log_const_log + ._log_const.static.log_const_log_mgmt_ + 0x3fc916ac 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + 0x3fc916ac log_const_log_mgmt + ._log_const.static.log_const_log_uart_ + 0x3fc916b4 0x8 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x3fc916b4 log_const_log_uart + ._log_const.static.log_const_lora_modem_ + 0x3fc916bc 0x8 app/libapp.a(lora_modem.c.obj) + 0x3fc916bc log_const_lora_modem + ._log_const.static.log_const_main_ + 0x3fc916c4 0x8 app/libapp.a(main.c.obj) + 0x3fc916c4 log_const_main + ._log_const.static.log_const_os_ + 0x3fc916cc 0x8 zephyr/kernel/libkernel.a(init.c.obj) + 0x3fc916cc log_const_os + ._log_const.static.log_const_os_heap_ + 0x3fc916d4 0x8 zephyr/libzephyr.a(heap.c.obj) + 0x3fc916d4 log_const_os_heap + ._log_const.static.log_const_sx126x_ + 0x3fc916dc 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3fc916dc log_const_sx126x + ._log_const.static.log_const_sx12xx_common_ + 0x3fc916e4 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x3fc916e4 log_const_sx12xx_common + ._log_const.static.log_const_sys_getopt_ + 0x3fc916ec 0x8 zephyr/libzephyr.a(getopt.c.obj) + 0x3fc916ec log_const_sys_getopt + ._log_const.static.log_const_uart_esp32_ + 0x3fc916f4 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x3fc916f4 log_const_uart_esp32 + 0x3fc916fc _log_const_list_end = . + +log_backend_area + 0x3fc916fc 0x10 load address 0x0000d708 + 0x3fc916fc _log_backend_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_backend.static.*))) + ._log_backend.static.log_backend_uart_ + 0x3fc916fc 0x10 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x3fc9170c _log_backend_list_end = . + +log_link_area 0x3fc9170c 0x0 load address 0x0000d718 + 0x3fc9170c _log_link_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_link.static.*))) + 0x3fc9170c _log_link_list_end = . + +.dram0.data_end + 0x3fc9170c 0x0 load address 0x0000d718 + 0x3fc9170c __data_end = ABSOLUTE (.) + 0x3fc9170c _data_end = ABSOLUTE (.) + +.dram0.noinit 0x3fc91710 0x3c44 load address 0x0000d718 + 0x3fc91710 . = ALIGN (0x4) + 0x3fc91710 __dram_noinit_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.noinit)) + *(SORT_BY_ALIGNMENT(.noinit.*)) + .noinit.CMAKE_SOURCE_DIR/src/main.c.1 + 0x3fc91710 0x800 app/libapp.a(main.c.obj) + 0x3fc91710 lora_rx_stack + .noinit.CMAKE_SOURCE_DIR/src/main.c.0 + 0x3fc91f10 0x800 app/libapp.a(main.c.obj) + 0x3fc91f10 kiss_rx_stack + .noinit.WEST_TOPDIR/zephyr/subsys/logging/log_core.c.0 + 0x3fc92710 0x400 zephyr/libzephyr.a(log_core.c.obj) + 0x3fc92710 logging_stack + .noinit.WEST_TOPDIR/zephyr/kernel/init.c.2 + 0x3fc92b10 0x800 zephyr/kernel/libkernel.a(init.c.obj) + 0x3fc92b10 z_interrupt_stacks + .noinit.WEST_TOPDIR/zephyr/kernel/init.c.1 + 0x3fc93310 0x400 zephyr/kernel/libkernel.a(init.c.obj) + .noinit.WEST_TOPDIR/zephyr/kernel/init.c.0 + 0x3fc93710 0x800 zephyr/kernel/libkernel.a(init.c.obj) + 0x3fc93710 z_main_stack + .noinit.WEST_TOPDIR/zephyr/kernel/system_work_q.c.0 + 0x3fc93f10 0x400 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .noinit.WEST_TOPDIR/zephyr/kernel/mempool.c.kheap_buf__system_heap + 0x3fc94310 0x1044 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x3fc94310 kheap__system_heap + 0x3fc95354 __dram_noinit_end = ABSOLUTE (.) + 0x3fc95354 . = ALIGN (0x4) + +.dram0.bss 0x3fc95360 0x1058 load address 0x0000d718 + 0x3fc95360 . = ALIGN (0x8) + 0x3fc95360 _bss_start = ABSOLUTE (.) + 0x3fc95360 __bss_start = ABSOLUTE (.) + 0x3fc95360 _btdm_bss_start = ABSOLUTE (.) + *libbtdm_app.a:(SORT_BY_ALIGNMENT(.bss) SORT_BY_ALIGNMENT(.bss.*) SORT_BY_ALIGNMENT(COMMON)) + 0x3fc95360 . = ALIGN (0x4) + 0x3fc95360 _btdm_bss_end = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.dynsbss)) + *(SORT_BY_ALIGNMENT(.sbss)) + *(SORT_BY_ALIGNMENT(.sbss.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.sb.*)) + *(SORT_BY_ALIGNMENT(.scommon)) + *(SORT_BY_ALIGNMENT(.sbss2)) + *(SORT_BY_ALIGNMENT(.sbss2.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.sb2.*)) + *(SORT_BY_ALIGNMENT(.dynbss)) + *(SORT_BY_ALIGNMENT(.bss)) + *(SORT_BY_ALIGNMENT(.bss.*)) + .bss.buf32 0x3fc95360 0x400 zephyr/libzephyr.a(log_core.c.obj) + .bss.lora_rx_thread + 0x3fc95760 0x68 app/libapp.a(main.c.obj) + .bss.kiss_rx_thread + 0x3fc957c8 0x68 app/libapp.a(main.c.obj) + .bss.logging_thread + 0x3fc95830 0x68 zephyr/libzephyr.a(log_core.c.obj) + 0x3fc95830 logging_thread + .bss.last_failure_report + 0x3fc95898 0x8 zephyr/libzephyr.a(log_core.c.obj) + .bss.log_process_thread_timer + 0x3fc958a0 0x38 zephyr/libzephyr.a(log_core.c.obj) + .bss.serial_esp32_usb_data_0 + 0x3fc958d8 0x10 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .bss.z_idle_threads + 0x3fc958e8 0x68 zephyr/kernel/libkernel.a(init.c.obj) + 0x3fc958e8 z_idle_threads + .bss.z_main_thread + 0x3fc95950 0x68 zephyr/kernel/libkernel.a(init.c.obj) + 0x3fc95950 z_main_thread + .bss._thread_dummy + 0x3fc959b8 0x68 zephyr/kernel/libkernel.a(sched.c.obj) + 0x3fc959b8 _thread_dummy + .bss.slice_timeouts + 0x3fc95a20 0x18 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.curr_tick + 0x3fc95a38 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss.k_sys_work_q + 0x3fc95a40 0x88 zephyr/kernel/libkernel.a(system_work_q.c.obj) + 0x3fc95a40 k_sys_work_q + .bss.g_params 0x3fc95ac8 0xc app/libapp.a(lora_modem.c.obj) + .bss.bootloader_image_hdr + 0x3fc95ad4 0x18 zephyr/libzephyr.a(loader.c.obj) + 0x3fc95ad4 bootloader_image_hdr + .bss.curr_log_buffer + 0x3fc95aec 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.proc_tid 0x3fc95af0 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.dropped_cnt + 0x3fc95af4 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.buffered_cnt + 0x3fc95af8 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.initialized + 0x3fc95afc 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.timestamp_div + 0x3fc95b00 0x4 zephyr/libzephyr.a(log_output.c.obj) + .bss.freq 0x3fc95b04 0x4 zephyr/libzephyr.a(log_output.c.obj) + .bss.lbu_data 0x3fc95b08 0x20 zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss.lbu_output_control_block + 0x3fc95b28 0xc zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss.s_chip_func + 0x3fc95b34 0x4 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .bss.s_chip_id + 0x3fc95b38 0x4 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .bss.esp_flash_default_chip + 0x3fc95b3c 0x4 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x3fc95b3c esp_flash_default_chip + .bss.s_flash_guard_ops + 0x3fc95b40 0x4 zephyr/libzephyr.a(flash_ops.c.obj) + .bss.s_intr_saved_state + 0x3fc95b44 0x4 zephyr/libzephyr.a(cache_utils.c.obj) + .bss.rtc_spinlock + 0x3fc95b48 0x4 zephyr/libzephyr.a(rtc_io.c.obj) + .bss.rcc_lock_counter + 0x3fc95b4c 0x4 zephyr/libzephyr.a(periph_ctrl.c.obj) + .bss.periph_spinlock + 0x3fc95b50 0x4 zephyr/libzephyr.a(periph_ctrl.c.obj) + .bss.s_bbpll_digi_consumers_ref_count + 0x3fc95b54 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .bss.s_apb_freq + 0x3fc95b58 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .bss.s_cur_pll_freq + 0x3fc95b5c 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .bss.s_calibrated_freq + 0x3fc95b60 0x8 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .bss.s_i2c_saradc_enable_cnt + 0x3fc95b68 0x4 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .bss.regi2c_lock_counter + 0x3fc95b6c 0x4 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .bss.regi2c_lock + 0x3fc95b70 0x4 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .bss.s_spinlock + 0x3fc95b74 0x4 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .bss.s_mmu_ctx + 0x3fc95b78 0x40 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .bss._putc2 0x3fc95bb8 0x4 zephyr/libzephyr.a(esp_rom_sys.c.obj) + 0x3fc95bb8 _putc2 + .bss.s_reset_reason + 0x3fc95bbc 0x4 zephyr/libzephyr.a(reset_reason.c.obj) + .bss.systimer_hal + 0x3fc95bc0 0xc zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .bss._stdout_hook + 0x3fc95bcc 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss.z_malloc_heap + 0x3fc95bd0 0xc zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .bss.non_iram_int_disabled + 0x3fc95bdc 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .bss.non_iram_int_mask + 0x3fc95be0 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .bss.vector_desc_head + 0x3fc95be4 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .bss.gpio_data_1 + 0x3fc95be8 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .bss.gpio_data_0 + 0x3fc95bf4 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .bss.dev_data 0x3fc95c00 0x24 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .bss.saved_time + 0x3fc95c24 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .bss.dev_data 0x3fc95c28 0x6c zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .bss.TimerListHead + 0x3fc95c94 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .bss.FrequencyError + 0x3fc95c98 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3fc95c98 FrequencyError + .bss.LoRaHeaderType + 0x3fc95c9c 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .bss.PacketType + 0x3fc95ca0 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .bss.RxTimeoutTimer + 0x3fc95ca4 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc95ca4 RxTimeoutTimer + .bss.TxTimeoutTimer + 0x3fc95cbc 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc95cbc TxTimeoutTimer + .bss.SX126x 0x3fc95cd4 0x170 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc95cd4 SX126x + .bss.RadioEvents + 0x3fc95e44 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .bss.RadioPktStatus + 0x3fc95e48 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc95e48 RadioPktStatus + .bss.RxTimeout + 0x3fc95e5c 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc95e5c RxTimeout + .bss.TxTimeout + 0x3fc95e60 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc95e60 TxTimeout + .bss.last_count + 0x3fc95e64 0x4 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .bss._kernel 0x3fc95e68 0x20 zephyr/kernel/libkernel.a(init.c.obj) + 0x3fc95e68 _kernel + .bss.pending_cancels + 0x3fc95e88 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .bss.slice_max_prio + 0x3fc95e90 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.announce_remaining + 0x3fc95e94 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss.dec_buf$0 + 0x3fc95e98 0xff app/libapp.a(main.c.obj) + .bss.kiss_tx_buf + 0x3fc95f97 0x202 app/libapp.a(main.c.obj) + .bss.lora_rx_buf + 0x3fc96199 0xff app/libapp.a(main.c.obj) + .bss.backend_attached + 0x3fc96298 0x1 zephyr/libzephyr.a(log_core.c.obj) + .bss.panic_mode + 0x3fc96299 0x1 zephyr/libzephyr.a(log_core.c.obj) + .bss.lbu_buffer + 0x3fc9629a 0x1 zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss.ref_counts + 0x3fc9629b 0xc zephyr/libzephyr.a(periph_ctrl.c.obj) + .bss.ctx 0x3fc962a7 0x4 zephyr/libzephyr.a(cache_hal.c.obj) + .bss.s_ctx 0x3fc962ab 0x1 zephyr/libzephyr.a(mmu_hal.c.obj) + .bss.non_iram_int_disabled_flag + 0x3fc962ac 0x1 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .bss.clock_init_done + 0x3fc962ad 0x1 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .bss.isr_connected$0 + 0x3fc962ae 0x1 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .bss.ImageCalibrated + 0x3fc962af 0x1 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .bss.RadioPublicNetwork + 0x3fc962b0 0x2 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .bss.IrqFired 0x3fc962b2 0x1 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc962b2 IrqFired + .bss.RadioRxPayload + 0x3fc962b3 0xff zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc962b3 RadioRxPayload + .bss.RxContinuous + 0x3fc963b2 0x1 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc963b2 RxContinuous + .bss.z_sys_post_kernel + 0x3fc963b3 0x1 zephyr/kernel/libkernel.a(init.c.obj) + 0x3fc963b3 z_sys_post_kernel + .bss.lock 0x3fc963b4 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .bss.lock 0x3fc963b4 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .bss.lock 0x3fc963b4 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .bss.slice_expired + 0x3fc963b4 0x1 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.lock 0x3fc963b5 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + *(SORT_BY_ALIGNMENT(.share.mem)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.b.*)) + *(SORT_BY_ALIGNMENT(COMMON)) + 0x3fc963b8 . = ALIGN (0x8) + *fill* 0x3fc963b5 0x3 + 0x3fc963b8 _bss_end = ABSOLUTE (.) + 0x3fc963b8 __bss_end = ABSOLUTE (.) + 0x3fc84000 _image_ram_start = (_init_start - 0x6f0000) + +.last_ram_section + 0x3fc963b8 0x0 load address 0x0000d718 + 0x3fc963b8 _image_ram_end = . + 0x000123b8 _image_ram_size = (_image_ram_end - _image_ram_start) + 0x3fc963b8 _end = . + 0x3fc963b8 z_mapped_end = . + 0x00000001 ASSERT (((_end - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) + 0x00010000 _image_irom_start = LOADADDR (.text) + 0x0000862e _image_irom_size = ((LOADADDR (.text) + SIZEOF (.text)) - _image_irom_start) + 0x42000000 _image_irom_vaddr = ADDR (.text) + +.text_dummy 0x0000d718 0x28e8 + 0x00010000 . = ALIGN (0x10000) + *fill* 0x0000d718 0x28e8 + +.text 0x42000000 0x862e load address 0x00010000 + 0x42000000 _stext = . + 0x42000000 _instruction_reserved_start = ABSOLUTE (.) + 0x42000000 _text_start = ABSOLUTE (.) + 0x42000000 __text_region_start = ABSOLUTE (.) + 0x42000000 __rom_region_start = ABSOLUTE (.) + *libnet80211.a:(SORT_BY_ALIGNMENT(.wifi0iram) SORT_BY_ALIGNMENT(.wifi0iram.*) SORT_BY_ALIGNMENT(.wifislpiram) SORT_BY_ALIGNMENT(.wifislpiram.*) SORT_BY_ALIGNMENT(.wifiextrairam) SORT_BY_ALIGNMENT(.wifiextrairam.*)) + *libpp.a:(SORT_BY_ALIGNMENT(.wifi0iram) SORT_BY_ALIGNMENT(.wifi0iram.*) SORT_BY_ALIGNMENT(.wifislpiram) SORT_BY_ALIGNMENT(.wifislpiram.*) SORT_BY_ALIGNMENT(.wifiorslpiram) SORT_BY_ALIGNMENT(.wifiorslpiram.*) SORT_BY_ALIGNMENT(.wifiextrairam) SORT_BY_ALIGNMENT(.wifiextrairam.*)) + *libcoexist.a:(SORT_BY_ALIGNMENT(.wifi_slp_iram) SORT_BY_ALIGNMENT(.wifi_slp_iram.*) SORT_BY_ALIGNMENT(.coexiram) SORT_BY_ALIGNMENT(.coexiram.*) SORT_BY_ALIGNMENT(.coexsleepiram) SORT_BY_ALIGNMENT(.coexsleepiram.*)) + *libnet80211.a:(SORT_BY_ALIGNMENT(.wifirxiram) SORT_BY_ALIGNMENT(.wifirxiram.*) SORT_BY_ALIGNMENT(.wifislprxiram) SORT_BY_ALIGNMENT(.wifislprxiram.*)) + *libpp.a:(SORT_BY_ALIGNMENT(.wifirxiram) SORT_BY_ALIGNMENT(.wifirxiram.*) SORT_BY_ALIGNMENT(.wifislprxiram) SORT_BY_ALIGNMENT(.wifislprxiram.*)) + *(SORT_BY_ALIGNMENT(.stub) SORT_BY_ALIGNMENT(.gnu.warning) SORT_BY_ALIGNMENT(.gnu.linkonce.literal.*) SORT_BY_ALIGNMENT(.gnu.linkonce.t.*.literal) SORT_BY_ALIGNMENT(.gnu.linkonce.t.*)) + *(SORT_BY_ALIGNMENT(.irom0.text)) + *(SORT_BY_ALIGNMENT(.fini.literal)) + *(.fini) + *(SORT_BY_ALIGNMENT(.gnu.version)) + *(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + .literal.uart_write_bytes$constprop$0 + 0x42000000 0x8 app/libapp.a(main.c.obj) + .literal.send_hw_response$constprop$0 + 0x42000008 0xc app/libapp.a(main.c.obj) + 0x18 (size before relaxing) + .literal.lora_rx_fn + 0x42000014 0x1c app/libapp.a(main.c.obj) + 0x3c (size before relaxing) + .literal.kiss_rx_fn + 0x42000030 0x40 app/libapp.a(main.c.obj) + 0x94 (size before relaxing) + .literal.main 0x42000070 0x30 app/libapp.a(main.c.obj) + 0x48 (size before relaxing) + .literal.kiss_encode + 0x420000a0 0x0 app/libapp.a(kiss.c.obj) + 0x4 (size before relaxing) + .literal.lora_config$constprop$0 + 0x420000a0 0x4 app/libapp.a(lora_modem.c.obj) + .literal.k_mutex_lock$constprop$0$isra$0 + 0x420000a4 0x4 app/libapp.a(lora_modem.c.obj) + 0x8 (size before relaxing) + .literal.k_mutex_unlock$constprop$0$isra$0 + 0x420000a8 0x0 app/libapp.a(lora_modem.c.obj) + 0x8 (size before relaxing) + .literal.lora_modem_init + 0x420000a8 0x1c app/libapp.a(lora_modem.c.obj) + 0x2c (size before relaxing) + .literal.lora_modem_get_params + 0x420000c4 0x0 app/libapp.a(lora_modem.c.obj) + 0xc (size before relaxing) + .literal.lora_modem_set_params + 0x420000c4 0x8 app/libapp.a(lora_modem.c.obj) + 0x1c (size before relaxing) + .literal.lora_modem_set_freq + 0x420000cc 0x4 app/libapp.a(lora_modem.c.obj) + 0x18 (size before relaxing) + .literal.lora_modem_send + 0x420000d0 0x8 app/libapp.a(lora_modem.c.obj) + 0x28 (size before relaxing) + .literal.lora_modem_recv + 0x420000d8 0x4 app/libapp.a(lora_modem.c.obj) + 0x24 (size before relaxing) + .literal.chunk_size + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.set_chunk_size + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.undersized_chunk + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.free_list_remove_bidx + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x10 (size before relaxing) + .literal.free_list_remove + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x10 (size before relaxing) + .literal.alloc_chunk + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x10 (size before relaxing) + .literal.split_chunks + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x18 (size before relaxing) + .literal.merge_chunks + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x14 (size before relaxing) + .literal.free_list_add + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x24 (size before relaxing) + .literal.sys_heap_free + 0x420000dc 0x10 zephyr/libzephyr.a(heap.c.obj) + 0x4c (size before relaxing) + .literal.sys_heap_alloc + 0x420000ec 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x14 (size before relaxing) + .literal.sys_heap_noalign_alloc + 0x420000ec 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.sys_heap_init + 0x420000ec 0x4 zephyr/libzephyr.a(heap.c.obj) + 0x2c (size before relaxing) + .literal.__printk_hook_install + 0x420000f0 0x4 zephyr/libzephyr.a(printk.c.obj) + .literal.z_thread_entry + 0x420000f4 0x8 zephyr/libzephyr.a(thread_entry.c.obj) + .literal.get_usage + 0x420000fc 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x4 (size before relaxing) + .literal.rd_idx_inc + 0x420000fc 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x4 (size before relaxing) + .literal.add_skip_item + 0x420000fc 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x8 (size before relaxing) + .literal.drop_item_locked + 0x420000fc 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x18 (size before relaxing) + .literal.post_drop_action + 0x420000fc 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x8 (size before relaxing) + .literal.max_utilization_update + 0x420000fc 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x4 (size before relaxing) + .literal.mpsc_pbuf_init + 0x420000fc 0x4 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x8 (size before relaxing) + .literal.mpsc_pbuf_alloc + 0x42000100 0x8 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x1c (size before relaxing) + .literal.mpsc_pbuf_commit + 0x42000108 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x8 (size before relaxing) + .literal.mpsc_pbuf_claim + 0x42000108 0x4 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x10 (size before relaxing) + .literal.mpsc_pbuf_free + 0x4200010c 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0xc (size before relaxing) + .literal.log_source_name_get + 0x4200010c 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.log_backend_enable + 0x42000114 0x4 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.uart_hal_set_hw_flow_ctrl + 0x42000118 0x8 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_set_txfifo_empty_thr + 0x42000120 0x4 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_set_mode + 0x42000124 0x4 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_inverse_signal + 0x42000128 0x4 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_set_rx_timeout + 0x4200012c 0x8 zephyr/libzephyr.a(uart_hal.c.obj) + 0xc (size before relaxing) + .literal.uart_hal_txfifo_rst + 0x42000134 0x4 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .literal.uart_hal_rxfifo_rst + 0x42000138 0x4 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .literal.spi_hal_init + 0x4200013c 0x18 zephyr/libzephyr.a(spi_hal.c.obj) + 0x20 (size before relaxing) + .literal.spi_hal_setup_device + 0x42000154 0xc zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x20 (size before relaxing) + .literal.spi_hal_cal_timing + 0x42000160 0xc zephyr/libzephyr.a(spi_hal_iram.c.obj) + .literal.spi_hal_cal_clock_conf + 0x4200016c 0x8 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_hal_setup_trans + 0x42000174 0x10 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x20 (size before relaxing) + .literal.spi_hal_enable_data_line + 0x42000184 0x8 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .literal.spi_hal_fetch_result + 0x4200018c 0x0 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.rtc_gpio_is_valid_gpio + 0x4200018c 0x4 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_pullup_en + 0x42000190 0x18 zephyr/libzephyr.a(rtc_io.c.obj) + 0x20 (size before relaxing) + .literal.rtc_gpio_pullup_dis + 0x420001a8 0x8 zephyr/libzephyr.a(rtc_io.c.obj) + 0x24 (size before relaxing) + .literal.rtc_gpio_pulldown_en + 0x420001b0 0x4 zephyr/libzephyr.a(rtc_io.c.obj) + 0x20 (size before relaxing) + .literal.rtc_gpio_pulldown_dis + 0x420001b4 0x4 zephyr/libzephyr.a(rtc_io.c.obj) + 0x20 (size before relaxing) + .literal.clk_hal_lp_slow_get_freq_hz + 0x420001b8 0xc zephyr/libzephyr.a(clk_tree_hal.c.obj) + .literal.clk_hal_xtal_get_freq_mhz + 0x420001c4 0xc zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x10 (size before relaxing) + .literal.clk_hal_soc_root_get_freq_mhz + 0x420001d0 0x4 zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x8 (size before relaxing) + .literal.clk_hal_cpu_get_freq_hz + 0x420001d4 0x8 zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x18 (size before relaxing) + .literal.clk_hal_apb_get_freq_hz + 0x420001dc 0x4 zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0xc (size before relaxing) + .literal.esp_clk_slowclk_cal_set + 0x420001e0 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .literal.periph_ll_enable_clk_clear_rst + 0x420001e4 0x20 zephyr/libzephyr.a(periph_ctrl.c.obj) + .literal.periph_ll_disable_clk_set_rst + 0x42000204 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x20 (size before relaxing) + .literal.periph_rcc_acquire_enter + 0x42000204 0x8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .literal.periph_rcc_acquire_exit + 0x4200020c 0x4 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x8 (size before relaxing) + .literal.periph_module_enable + 0x42000210 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x14 (size before relaxing) + .literal.periph_module_disable + 0x42000210 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x14 (size before relaxing) + .literal.non_shared_periph_module_enable + 0x42000210 0x18 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x34 (size before relaxing) + .literal.non_shared_periph_module_disable + 0x42000228 0x4 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x2c (size before relaxing) + .literal.esp_clk_tree_src_get_freq_hz + 0x4200022c 0x20 zephyr/libzephyr.a(esp_clk_tree.c.obj) + 0x50 (size before relaxing) + .literal.esp_cpu_intr_get_desc + 0x4200024c 0x4 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + 0x8 (size before relaxing) + .literal.get_rtc_dbias_by_efuse$constprop$0 + 0x42000250 0x4 zephyr/libzephyr.a(rtc_init.c.obj) + .literal.rtc_init + 0x42000254 0xbc zephyr/libzephyr.a(rtc_init.c.obj) + 0x120 (size before relaxing) + .literal.sar_periph_ctrl_init + 0x42000310 0x8 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.esp_clk_tree_rc_fast_d256_get_freq_hz + 0x42000318 0x8 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x18 (size before relaxing) + .literal.esp_clk_tree_xtal32k_get_freq_hz + 0x42000320 0x0 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x14 (size before relaxing) + .literal.esp_clk_tree_lp_slow_get_freq_hz + 0x42000320 0x0 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x14 (size before relaxing) + .literal.esp_clk_tree_rc_fast_get_freq_hz + 0x42000320 0x4 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x8 (size before relaxing) + .literal.esp_clk_tree_lp_fast_get_freq_hz + 0x42000324 0x0 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0xc (size before relaxing) + .literal.esp_sleep_sub_mode_config + 0x42000324 0x14 zephyr/libzephyr.a(sleep_modes.c.obj) + 0x18 (size before relaxing) + .literal.esp_sleep_sub_mode_force_disable + 0x42000338 0x0 zephyr/libzephyr.a(sleep_modes.c.obj) + 0x8 (size before relaxing) + .literal.esp_sleep_sub_mode_dump_config + 0x42000338 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + 0x18 (size before relaxing) + .literal 0x42000344 0x10 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .literal.esp_rtc_init + 0x42000354 0x8 zephyr/libzephyr.a(clk.c.obj) + 0x10 (size before relaxing) + .literal.esp_perip_clk_init + 0x4200035c 0x18 zephyr/libzephyr.a(clk.c.obj) + 0x34 (size before relaxing) + .literal.esp_reset_reason_get_hint + 0x42000374 0x4 zephyr/libzephyr.a(reset_reason.c.obj) + .literal.esp_reset_reason_init + 0x42000378 0x8 zephyr/libzephyr.a(reset_reason.c.obj) + 0x14 (size before relaxing) + .literal.esp_timer_impl_early_init + 0x42000380 0x20 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + 0x34 (size before relaxing) + .literal.esp_timer_early_init + 0x420003a0 0x0 zephyr/libzephyr.a(esp_timer_init.c.obj) + 0x4 (size before relaxing) + .literal.__assert_no_args + 0x420003a0 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + 0x4 (size before relaxing) + .literal.cbvprintf + 0x420003a0 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + 0xc (size before relaxing) + .literal.z_impl_zephyr_fputc + 0x420003a4 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .literal.picolibc_put + 0x420003a8 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x4 (size before relaxing) + .literal.__stdout_hook_install + 0x420003a8 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x8 (size before relaxing) + .literal.abort + 0x420003ac 0x4 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + 0xc (size before relaxing) + .literal.malloc_prepare + 0x420003b0 0xc zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + 0x10 (size before relaxing) + .literal.find_desc_for_int + 0x420003bc 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .literal.is_vect_desc_usable + 0x420003c0 0x8 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x10 (size before relaxing) + .literal.get_desc_for_int + 0x420003c8 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x10 (size before relaxing) + .literal.esp_intr_alloc_intrstatus + 0x420003cc 0x30 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x78 (size before relaxing) + .literal.esp_intr_alloc + 0x420003fc 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x4 (size before relaxing) + .literal.clock_control_esp32_get_status + 0x420003fc 0x4 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x10 (size before relaxing) + .literal.clock_control_esp32_get_rate + 0x42000400 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0xc (size before relaxing) + .literal.clock_control_esp32_off + 0x42000400 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0xc (size before relaxing) + .literal.clock_control_esp32_on + 0x42000400 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0xc (size before relaxing) + .literal.esp32_select_rtc_slow_clk + 0x42000400 0x1c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x30 (size before relaxing) + .literal.esp32_cpu_clock_configure + 0x4200041c 0x2c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x48 (size before relaxing) + .literal.clock_control_esp32_configure + 0x42000448 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x1c (size before relaxing) + .literal.clock_control_esp32_init + 0x42000450 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x30 (size before relaxing) + .literal.uart_console_init + 0x42000458 0x4 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + 0x14 (size before relaxing) + .literal.gpio_esp32_pin_interrupt_configure + 0x4200045c 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .literal.gpio_esp32_init + 0x42000464 0x10 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x18 (size before relaxing) + .literal.sx126x_set_tx_enable + 0x42000474 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.sx126x_dio1_irq_work_handler$part$0 + 0x42000478 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xc (size before relaxing) + .literal.sx126x_dio1_irq_work_handler + 0x42000480 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + .literal.sx126x_lora_init + 0x42000488 0x1c zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x40 (size before relaxing) + .literal.SX126xGetOperatingMode + 0x420004a4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetOperatingMode + 0x420004a4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xc (size before relaxing) + .literal.SX126xIoIrqInit + 0x420004a4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xIoRfSwitchInit + 0x420004a4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xReset + 0x420004a4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetRfTxPower + 0x420004a4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xWaitOnBusy + 0x420004a4 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xc (size before relaxing) + .literal.sx126x_spi_transceive$isra$0 + 0x420004a8 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x1c (size before relaxing) + .literal.SX126xWriteBuffer + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xReadBuffer + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xWriteCommand + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xReadCommand + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xWriteRegisters + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xWriteRegister + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xReadRegisters + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xReadRegister + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xWakeup + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x20 (size before relaxing) + .literal.SX126xGetDio1PinState + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.timer_work_handler + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x4 (size before relaxing) + .literal.timer_callback + 0x420004b4 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .literal.k_uptime_get_32 + 0x420004bc 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x8 (size before relaxing) + .literal.RtcGetTimerValue + 0x420004c0 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x4 (size before relaxing) + .literal.RtcGetTimerElapsedTime + 0x420004c0 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x8 (size before relaxing) + .literal.RtcStopAlarm + 0x420004c4 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .literal.RtcSetAlarm + 0x420004cc 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x8 (size before relaxing) + .literal.RtcSetTimerContext + 0x420004d0 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x8 (size before relaxing) + .literal.RtcGetTimerContext + 0x420004d0 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x4 (size before relaxing) + .literal.DelayMsMcu + 0x420004d0 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x4 (size before relaxing) + .literal.modem_release$constprop$0 + 0x420004d0 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0xc (size before relaxing) + .literal.sx12xx_ev_tx_done + 0x420004d8 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0xc (size before relaxing) + .literal.sx12xx_ev_tx_timed_out + 0x420004dc 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x4 (size before relaxing) + .literal.sx12xx_ev_rx_error + 0x420004dc 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x10 (size before relaxing) + .literal.sx12xx_ev_rx_done + 0x420004dc 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x14 (size before relaxing) + .literal.__sx12xx_configure_pin + 0x420004dc 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x24 (size before relaxing) + .literal.sx12xx_airtime + 0x420004f0 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x8 (size before relaxing) + .literal.sx12xx_lora_send_async + 0x420004f0 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0xc (size before relaxing) + .literal.sx12xx_lora_send + 0x420004f0 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x28 (size before relaxing) + .literal.sx12xx_lora_recv + 0x420004f8 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x30 (size before relaxing) + .literal.sx12xx_lora_recv_async + 0x42000500 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x10 (size before relaxing) + .literal.sx12xx_lora_config + 0x42000500 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x20 (size before relaxing) + .literal.sx12xx_lora_test_cw + 0x42000508 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x8 (size before relaxing) + .literal.sx12xx_init + 0x42000508 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x20 (size before relaxing) + .literal.gpio_pin_configure_dt + 0x4200051c 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x8 (size before relaxing) + .literal.sx126x_dio1_irq_callback + 0x42000520 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x4 (size before relaxing) + .literal.z_impl_gpio_pin_interrupt_configure$isra$0 + 0x42000520 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .literal.sx126x_reset + 0x42000524 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x14 (size before relaxing) + .literal.sx126x_is_busy + 0x42000524 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x8 (size before relaxing) + .literal.sx126x_get_dio1_pin_state + 0x42000524 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x8 (size before relaxing) + .literal.sx126x_dio1_irq_enable + 0x42000524 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x8 (size before relaxing) + .literal.sx126x_dio1_irq_disable + 0x42000524 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x8 (size before relaxing) + .literal.sx126x_set_tx_params + 0x42000524 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x4 (size before relaxing) + .literal.sx126x_variant_init + 0x42000524 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x30 (size before relaxing) + .literal.TimerSetTimeout + 0x4200053c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x10 (size before relaxing) + .literal.TimerInsertNewHeadTimer + 0x4200053c 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x8 (size before relaxing) + .literal.TimerStart + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x18 (size before relaxing) + .literal.TimerIrqHandler + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x14 (size before relaxing) + .literal.TimerStop + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x14 (size before relaxing) + .literal.TimerSetValue + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0xc (size before relaxing) + .literal.TimerGetCurrentTime + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x8 (size before relaxing) + .literal.TimerGetElapsedTime + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0xc (size before relaxing) + .literal.DelayMs + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + 0x4 (size before relaxing) + .literal.SX126xCheckDeviceReady + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x14 (size before relaxing) + .literal.SX126xSetPayload + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetSyncWord + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetCrcSeed + 0x42000540 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetCrcPolynomial + 0x42000544 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetWhiteningSeed + 0x42000544 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + .literal.SX126xSetSleep + 0x42000544 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + .literal.SX126xSetStandby + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xInit + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x20 (size before relaxing) + .literal.SX126xSetTx + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSendPayload + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetRx + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xc (size before relaxing) + .literal.SX126xGetRandom + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x24 (size before relaxing) + .literal.SX126xSetRxBoosted + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xc (size before relaxing) + .literal.SX126xSetRxDutyCycle + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetCad + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetTxContinuousWave + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetStopRxTimerOnPreambleDetect + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetLoRaSymbNumTimeout + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetRegulatorMode + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xCalibrateImage + 0x42000548 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x18 (size before relaxing) + .literal.SX126xSetPaConfig + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetDioIrqParams + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xGetIrqStatus + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetDio2AsRfSwitchCtrl + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetRfFrequency + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + .literal.SX126xSetPacketType + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xGetPacketType + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetTxParams + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x1c (size before relaxing) + .literal.SX126xSetModulationParams + 0x4200055c 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x14 (size before relaxing) + .literal.SX126xSetPacketParams + 0x42000560 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x24 (size before relaxing) + .literal.SX126xSetBufferBaseAddress + 0x42000564 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xGetRssiInst + 0x42000564 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xGetRxBufferStatus + 0x42000564 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + .literal.SX126xGetPayload + 0x42000564 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xGetPacketStatus + 0x42000564 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + .literal.SX126xClearIrqStatus + 0x42000568 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.RadioOnTxTimeoutIrq + 0x42000568 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .literal.RadioOnRxTimeoutIrq + 0x4200056c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioOnDioIrq + 0x4200056c 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .literal.RadioStandby + 0x42000570 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioGetStatus + 0x42000570 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x8 (size before relaxing) + .literal.RadioSetChannel + 0x42000574 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioRead + 0x42000574 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioWrite + 0x42000574 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioSend + 0x42000574 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x24 (size before relaxing) + .literal.RadioSleep + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x8 (size before relaxing) + .literal.RadioSetRxDutyCycle + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioReadBuffer + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioWriteBuffer + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioStartCad + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x8 (size before relaxing) + .literal.RadioSetTxContinuousWave + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x18 (size before relaxing) + .literal.RadioRssi + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioGetWakeupTime + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioIrqProcess + 0x42000580 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x84 (size before relaxing) + .literal.RadioGetFskBandwidthRegValue + 0x42000590 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .literal.RadioSetMaxPayloadLength + 0x42000594 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xc (size before relaxing) + .literal.RadioRx + 0x4200059c 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x1c (size before relaxing) + .literal.RadioRxBoosted + 0x420005a0 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x1c (size before relaxing) + .literal.RadioTimeOnAir + 0x420005a0 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .literal.RadioSetPublicNetwork + 0x420005a8 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x14 (size before relaxing) + .literal.RadioSetModem$part$0 + 0x420005ac 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xc (size before relaxing) + .literal.RadioSetModem + 0x420005ac 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xc (size before relaxing) + .literal.RadioSetRxConfig + 0x420005ac 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x64 (size before relaxing) + .literal.RadioSetTxConfig + 0x420005b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x58 (size before relaxing) + .literal.RadioIsChannelFree + 0x420005b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x24 (size before relaxing) + .literal.RadioRandom + 0x420005b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xc (size before relaxing) + .literal.RadioAddRegisterToRetentionList + 0x420005b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x8 (size before relaxing) + .literal.RadioInit + 0x420005b4 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x44 (size before relaxing) + .literal.pinctrl_configure_pins + 0x420005c0 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + 0x34 (size before relaxing) + .literal.serial_esp32_usb_poll_in + 0x420005e0 0x4 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .literal.serial_esp32_usb_fifo_fill + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_irq_tx_enable + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_irq_tx_ready + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_irq_rx_disable + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_irq_tx_complete + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_irq_rx_ready + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_irq_is_pending + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x8 (size before relaxing) + .literal.serial_esp32_usb_irq_update + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_init + 0x420005e4 0x4 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x10 (size before relaxing) + .literal.serial_esp32_usb_irq_tx_disable + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_irq_rx_enable + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_poll_out + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x24 (size before relaxing) + .literal.serial_esp32_usb_fifo_read + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.uart_esp32_irq_is_pending + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x8 (size before relaxing) + .literal.uart_esp32_fifo_read + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x4 (size before relaxing) + .literal.uart_esp32_poll_in + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x4 (size before relaxing) + .literal.uart_esp32_fifo_fill + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x4 (size before relaxing) + .literal.uart_esp32_poll_out + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x4 (size before relaxing) + .literal.uart_esp32_config_get + 0x420005e8 0x10 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x30 (size before relaxing) + .literal.uart_esp32_configure + 0x420005f8 0xc zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x48 (size before relaxing) + .literal.uart_esp32_init + 0x42000604 0x14 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x34 (size before relaxing) + .literal.z_log_msg_simple_create_0 + 0x42000618 0x0 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x4 (size before relaxing) + .literal._spi_context_cs_control + 0x42000618 0x4 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x10 (size before relaxing) + .literal.spi_context_unlock_unconditionally + 0x4200061c 0x0 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x8 (size before relaxing) + .literal.spi_esp32_release + 0x4200061c 0x0 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x4 (size before relaxing) + .literal.spi_esp32_gdma_config$isra$0 + 0x4200061c 0x10 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x28 (size before relaxing) + .literal.spi_esp32_transceive + 0x4200062c 0x14 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x4c (size before relaxing) + .literal.spi_esp32_init + 0x42000640 0x20 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x64 (size before relaxing) + .literal.fprintf + 0x42000660 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + 0x4 (size before relaxing) + .literal.snprintf + 0x42000660 0x4 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + 0xc (size before relaxing) + .literal.__l_vfprintf + 0x42000664 0x14 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + 0x1c (size before relaxing) + .text.uart_write_bytes$constprop$0 + 0x42000678 0x21 app/libapp.a(main.c.obj) + *fill* 0x42000699 0x3 + .text.send_hw_response$constprop$0 + 0x4200069c 0x30 app/libapp.a(main.c.obj) + 0x38 (size before relaxing) + .text.lora_rx_fn + 0x420006cc 0x8c app/libapp.a(main.c.obj) + 0x94 (size before relaxing) + .text.kiss_rx_fn + 0x42000758 0x21d app/libapp.a(main.c.obj) + 0x241 (size before relaxing) + *fill* 0x42000975 0x3 + .text.main 0x42000978 0x98 app/libapp.a(main.c.obj) + 0x9c (size before relaxing) + 0x42000978 main + .text.kiss_encode + 0x42000a10 0x14 app/libapp.a(kiss.c.obj) + 0x18 (size before relaxing) + 0x42000a10 kiss_encode + .text.lora_config$constprop$0 + 0x42000a24 0x14 app/libapp.a(lora_modem.c.obj) + .text.k_mutex_lock$constprop$0$isra$0 + 0x42000a38 0x12 app/libapp.a(lora_modem.c.obj) + *fill* 0x42000a4a 0x2 + .text.k_mutex_unlock$constprop$0$isra$0 + 0x42000a4c 0xe app/libapp.a(lora_modem.c.obj) + *fill* 0x42000a5a 0x2 + .text.lora_modem_init + 0x42000a5c 0x8d app/libapp.a(lora_modem.c.obj) + 0x91 (size before relaxing) + 0x42000a5c lora_modem_init + *fill* 0x42000ae9 0x3 + .text.lora_modem_get_params + 0x42000aec 0x20 app/libapp.a(lora_modem.c.obj) + 0x24 (size before relaxing) + 0x42000aec lora_modem_get_params + .text.lora_modem_set_params + 0x42000b0c 0xef app/libapp.a(lora_modem.c.obj) + 0xf7 (size before relaxing) + 0x42000b0c lora_modem_set_params + *fill* 0x42000bfb 0x1 + .text.lora_modem_set_freq + 0x42000bfc 0x2c app/libapp.a(lora_modem.c.obj) + 0x34 (size before relaxing) + 0x42000bfc lora_modem_set_freq + .text.lora_modem_send + 0x42000c28 0x63 app/libapp.a(lora_modem.c.obj) + 0x6f (size before relaxing) + 0x42000c28 lora_modem_send + *fill* 0x42000c8b 0x1 + .text.lora_modem_recv + 0x42000c8c 0x8a app/libapp.a(lora_modem.c.obj) + 0x96 (size before relaxing) + 0x42000c8c lora_modem_recv + *fill* 0x42000d16 0x2 + .text.chunk_size + 0x42000d18 0x11 zephyr/libzephyr.a(heap.c.obj) + 0x15 (size before relaxing) + *fill* 0x42000d29 0x3 + .text.set_chunk_size + 0x42000d2c 0x13 zephyr/libzephyr.a(heap.c.obj) + *fill* 0x42000d3f 0x1 + .text.undersized_chunk + 0x42000d40 0x28 zephyr/libzephyr.a(heap.c.obj) + .text.free_list_remove_bidx + 0x42000d68 0x56 zephyr/libzephyr.a(heap.c.obj) + 0x62 (size before relaxing) + *fill* 0x42000dbe 0x2 + .text.free_list_remove + 0x42000dc0 0x26 zephyr/libzephyr.a(heap.c.obj) + 0x32 (size before relaxing) + *fill* 0x42000de6 0x2 + .text.alloc_chunk + 0x42000de8 0x83 zephyr/libzephyr.a(heap.c.obj) + 0x87 (size before relaxing) + *fill* 0x42000e6b 0x1 + .text.split_chunks + 0x42000e6c 0x46 zephyr/libzephyr.a(heap.c.obj) + 0x56 (size before relaxing) + *fill* 0x42000eb2 0x2 + .text.merge_chunks + 0x42000eb4 0x32 zephyr/libzephyr.a(heap.c.obj) + 0x42 (size before relaxing) + *fill* 0x42000ee6 0x2 + .text.free_list_add + 0x42000ee8 0x86 zephyr/libzephyr.a(heap.c.obj) + 0x9e (size before relaxing) + *fill* 0x42000f6e 0x2 + .text.sys_heap_free + 0x42000f70 0xe0 zephyr/libzephyr.a(heap.c.obj) + 0x10c (size before relaxing) + 0x42000f70 sys_heap_free + .text.sys_heap_alloc + 0x42001050 0x76 zephyr/libzephyr.a(heap.c.obj) + 0x82 (size before relaxing) + 0x42001050 sys_heap_alloc + *fill* 0x420010c6 0x2 + .text.sys_heap_noalign_alloc + 0x420010c8 0x11 zephyr/libzephyr.a(heap.c.obj) + 0x420010c8 sys_heap_noalign_alloc + *fill* 0x420010d9 0x3 + .text.sys_heap_init + 0x420010dc 0xa8 zephyr/libzephyr.a(heap.c.obj) + 0xc8 (size before relaxing) + 0x420010dc sys_heap_init + .text.__printk_hook_install + 0x42001184 0xa zephyr/libzephyr.a(printk.c.obj) + 0x42001184 __printk_hook_install + *fill* 0x4200118e 0x2 + .text.z_thread_entry + 0x42001190 0x18 zephyr/libzephyr.a(thread_entry.c.obj) + 0x42001190 z_thread_entry + .text.get_usage + 0x420011a8 0x24 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.rd_idx_inc + 0x420011cc 0x19 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x1d (size before relaxing) + *fill* 0x420011e5 0x3 + .text.add_skip_item + 0x420011e8 0x3c zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x40 (size before relaxing) + .text.drop_item_locked + 0x42001224 0xdc zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0xe8 (size before relaxing) + .text.post_drop_action + 0x42001300 0x40 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x44 (size before relaxing) + .text.max_utilization_update + 0x42001340 0x17 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x1b (size before relaxing) + *fill* 0x42001357 0x1 + .text.mpsc_pbuf_init + 0x42001358 0x46 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x42001358 mpsc_pbuf_init + *fill* 0x4200139e 0x2 + .text.mpsc_pbuf_alloc + 0x420013a0 0xeb zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0xf3 (size before relaxing) + 0x420013a0 mpsc_pbuf_alloc + *fill* 0x4200148b 0x1 + .text.mpsc_pbuf_commit + 0x4200148c 0x30 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x34 (size before relaxing) + 0x4200148c mpsc_pbuf_commit + .text.mpsc_pbuf_claim + 0x420014bc 0xaa zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0xae (size before relaxing) + 0x420014bc mpsc_pbuf_claim + *fill* 0x42001566 0x2 + .text.mpsc_pbuf_free + 0x42001568 0x6e zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x42001568 mpsc_pbuf_free + *fill* 0x420015d6 0x2 + .text.log_source_name_get + 0x420015d8 0x1b zephyr/libzephyr.a(log_mgmt.c.obj) + 0x420015d8 log_source_name_get + *fill* 0x420015f3 0x1 + .text.log_backend_enable + 0x420015f4 0x1b zephyr/libzephyr.a(log_mgmt.c.obj) + 0x420015f4 log_backend_enable + *fill* 0x4200160f 0x1 + .text.uart_hal_set_hw_flow_ctrl + 0x42001610 0x67 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42001610 uart_hal_set_hw_flow_ctrl + *fill* 0x42001677 0x1 + .text.uart_hal_set_txfifo_empty_thr + 0x42001678 0x20 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42001678 uart_hal_set_txfifo_empty_thr + .text.uart_hal_set_mode + 0x42001698 0x193 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42001698 uart_hal_set_mode + *fill* 0x4200182b 0x1 + .text.uart_hal_inverse_signal + 0x4200182c 0x59 zephyr/libzephyr.a(uart_hal.c.obj) + 0x4200182c uart_hal_inverse_signal + *fill* 0x42001885 0x3 + .text.uart_hal_set_rx_timeout + 0x42001888 0x52 zephyr/libzephyr.a(uart_hal.c.obj) + 0x56 (size before relaxing) + 0x42001888 uart_hal_set_rx_timeout + *fill* 0x420018da 0x2 + .text.uart_hal_txfifo_rst + 0x420018dc 0x29 zephyr/libzephyr.a(uart_hal_iram.c.obj) + 0x420018dc uart_hal_txfifo_rst + *fill* 0x42001905 0x3 + .text.uart_hal_rxfifo_rst + 0x42001908 0x29 zephyr/libzephyr.a(uart_hal_iram.c.obj) + 0x42001908 uart_hal_rxfifo_rst + *fill* 0x42001931 0x3 + .text.spi_hal_init + 0x42001934 0x121 zephyr/libzephyr.a(spi_hal.c.obj) + 0x42001934 spi_hal_init + *fill* 0x42001a55 0x3 + .text.spi_hal_setup_device + 0x42001a58 0x2ab zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x42001a58 spi_hal_setup_device + *fill* 0x42001d03 0x1 + .text.spi_hal_cal_timing + 0x42001d04 0x54 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x42001d04 spi_hal_cal_timing + .text.spi_hal_cal_clock_conf + 0x42001d58 0x180 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x184 (size before relaxing) + 0x42001d58 spi_hal_cal_clock_conf + .text.spi_hal_setup_trans + 0x42001ed8 0x382 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x42001ed8 spi_hal_setup_trans + *fill* 0x4200225a 0x2 + .text.spi_hal_enable_data_line + 0x4200225c 0x37 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x4200225c spi_hal_enable_data_line + *fill* 0x42002293 0x1 + .text.spi_hal_fetch_result + 0x42002294 0x49 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x42002294 spi_hal_fetch_result + *fill* 0x420022dd 0x3 + .text.rtc_gpio_is_valid_gpio + 0x420022e0 0x1e zephyr/libzephyr.a(rtc_io.c.obj) + 0x420022e0 rtc_gpio_is_valid_gpio + *fill* 0x420022fe 0x2 + .text.rtc_gpio_pullup_en + 0x42002300 0x5e zephyr/libzephyr.a(rtc_io.c.obj) + 0x62 (size before relaxing) + 0x42002300 rtc_gpio_pullup_en + *fill* 0x4200235e 0x2 + .text.rtc_gpio_pullup_dis + 0x42002360 0x8c zephyr/libzephyr.a(rtc_io.c.obj) + 0x90 (size before relaxing) + 0x42002360 rtc_gpio_pullup_dis + .text.rtc_gpio_pulldown_en + 0x420023ec 0x5e zephyr/libzephyr.a(rtc_io.c.obj) + 0x62 (size before relaxing) + 0x420023ec rtc_gpio_pulldown_en + *fill* 0x4200244a 0x2 + .text.rtc_gpio_pulldown_dis + 0x4200244c 0x5e zephyr/libzephyr.a(rtc_io.c.obj) + 0x62 (size before relaxing) + 0x4200244c rtc_gpio_pulldown_dis + *fill* 0x420024aa 0x2 + .text.clk_hal_lp_slow_get_freq_hz + 0x420024ac 0x22 zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x420024ac clk_hal_lp_slow_get_freq_hz + *fill* 0x420024ce 0x2 + .text.clk_hal_xtal_get_freq_mhz + 0x420024d0 0x34 zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x420024d0 clk_hal_xtal_get_freq_mhz + .text.clk_hal_soc_root_get_freq_mhz + 0x42002504 0x2b zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x2f (size before relaxing) + 0x42002504 clk_hal_soc_root_get_freq_mhz + *fill* 0x4200252f 0x1 + .text.clk_hal_cpu_get_freq_hz + 0x42002530 0x86 zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x42002530 clk_hal_cpu_get_freq_hz + *fill* 0x420025b6 0x2 + .text.clk_hal_apb_get_freq_hz + 0x420025b8 0x1e zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x420025b8 clk_hal_apb_get_freq_hz + *fill* 0x420025d6 0x2 + .text.esp_clk_slowclk_cal_set + 0x420025d8 0xd zephyr/libzephyr.a(esp_clk.c.obj) + 0x420025d8 esp_clk_slowclk_cal_set + *fill* 0x420025e5 0x3 + .text.periph_ll_enable_clk_clear_rst + 0x420025e8 0x95 zephyr/libzephyr.a(periph_ctrl.c.obj) + *fill* 0x4200267d 0x3 + .text.periph_ll_disable_clk_set_rst + 0x42002680 0x96 zephyr/libzephyr.a(periph_ctrl.c.obj) + *fill* 0x42002716 0x2 + .text.periph_rcc_acquire_enter + 0x42002718 0x13 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x42002718 periph_rcc_acquire_enter + *fill* 0x4200272b 0x1 + .text.periph_rcc_acquire_exit + 0x4200272c 0x16 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x4200272c periph_rcc_acquire_exit + *fill* 0x42002742 0x2 + .text.periph_module_enable + 0x42002744 0x32 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x36 (size before relaxing) + 0x42002744 periph_module_enable + *fill* 0x42002776 0x2 + .text.periph_module_disable + 0x42002778 0x34 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x38 (size before relaxing) + 0x42002778 periph_module_disable + .text.non_shared_periph_module_enable + 0x420027ac 0x44d zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x420027ac non_shared_periph_module_enable + *fill* 0x42002bf9 0x3 + .text.non_shared_periph_module_disable + 0x42002bfc 0x17c zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x42002bfc non_shared_periph_module_disable + .text.esp_clk_tree_src_get_freq_hz + 0x42002d78 0xee zephyr/libzephyr.a(esp_clk_tree.c.obj) + 0xfa (size before relaxing) + 0x42002d78 esp_clk_tree_src_get_freq_hz + *fill* 0x42002e66 0x2 + .text.esp_cpu_intr_get_desc + 0x42002e68 0x32 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + 0x42002e68 esp_cpu_intr_get_desc + *fill* 0x42002e9a 0x2 + .text.get_rtc_dbias_by_efuse$constprop$0 + 0x42002e9c 0xaa zephyr/libzephyr.a(rtc_init.c.obj) + *fill* 0x42002f46 0x2 + .text.rtc_init + 0x42002f48 0x6af zephyr/libzephyr.a(rtc_init.c.obj) + 0x6bf (size before relaxing) + 0x42002f48 rtc_init + *fill* 0x420035f7 0x1 + .text.sar_periph_ctrl_init + 0x420035f8 0x2c zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + 0x420035f8 sar_periph_ctrl_init + .text.esp_clk_tree_rc_fast_d256_get_freq_hz + 0x42003624 0x4b zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x42003624 esp_clk_tree_rc_fast_d256_get_freq_hz + *fill* 0x4200366f 0x1 + .text.esp_clk_tree_xtal32k_get_freq_hz + 0x42003670 0x4f zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x42003670 esp_clk_tree_xtal32k_get_freq_hz + *fill* 0x420036bf 0x1 + .text.esp_clk_tree_lp_slow_get_freq_hz + 0x420036c0 0x42 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x420036c0 esp_clk_tree_lp_slow_get_freq_hz + *fill* 0x42003702 0x2 + .text.esp_clk_tree_rc_fast_get_freq_hz + 0x42003704 0x13 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x16 (size before relaxing) + 0x42003704 esp_clk_tree_rc_fast_get_freq_hz + *fill* 0x42003717 0x1 + .text.esp_clk_tree_lp_fast_get_freq_hz + 0x42003718 0x39 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x3d (size before relaxing) + 0x42003718 esp_clk_tree_lp_fast_get_freq_hz + *fill* 0x42003751 0x3 + .text.esp_sleep_sub_mode_config + 0x42003754 0x52 zephyr/libzephyr.a(sleep_modes.c.obj) + 0x42003754 esp_sleep_sub_mode_config + *fill* 0x420037a6 0x2 + .text.esp_sleep_sub_mode_force_disable + 0x420037a8 0x2a zephyr/libzephyr.a(sleep_modes.c.obj) + 0x420037a8 esp_sleep_sub_mode_force_disable + *fill* 0x420037d2 0x2 + .text.esp_sleep_sub_mode_dump_config + 0x420037d4 0x32 zephyr/libzephyr.a(sleep_modes.c.obj) + 0x36 (size before relaxing) + 0x420037d4 esp_sleep_sub_mode_dump_config + *fill* 0x42003806 0x2 + .text 0x42003808 0x56 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + 0x42003808 cache_writeback_items_freeze + *fill* 0x4200385e 0x2 + .text.esp_rtc_init + 0x42003860 0x2c zephyr/libzephyr.a(clk.c.obj) + 0x42003860 esp_rtc_init + .text.esp_perip_clk_init + 0x4200388c 0x148 zephyr/libzephyr.a(clk.c.obj) + 0x4200388c esp_perip_clk_init + .text.esp_reset_reason_get_hint + 0x420039d4 0x1c zephyr/libzephyr.a(reset_reason.c.obj) + 0x420039d4 esp_reset_reason_get_hint + .text.esp_reset_reason_init + 0x420039f0 0x7a zephyr/libzephyr.a(reset_reason.c.obj) + 0x7e (size before relaxing) + 0x420039f0 esp_reset_reason_init + *fill* 0x42003a6a 0x2 + .text.esp_timer_impl_early_init + 0x42003a6c 0xa8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + 0xac (size before relaxing) + 0x42003a6c esp_timer_impl_early_init + .text.esp_timer_early_init + 0x42003b14 0xa zephyr/libzephyr.a(esp_timer_init.c.obj) + 0xd (size before relaxing) + 0x42003b14 esp_timer_early_init + *fill* 0x42003b1e 0x2 + .text.__assert_no_args + 0x42003b20 0x6 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + 0x9 (size before relaxing) + 0x42003b20 __assert_no_args + *fill* 0x42003b26 0x2 + .text.cbvprintf + 0x42003b28 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + 0x32 (size before relaxing) + 0x42003b28 cbvprintf + *fill* 0x42003b56 0x2 + .text.z_impl_zephyr_fputc + 0x42003b58 0x12 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x42003b58 z_impl_zephyr_fputc + *fill* 0x42003b6a 0x2 + .text.picolibc_put + 0x42003b6c 0x12 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + *fill* 0x42003b7e 0x2 + .text.__stdout_hook_install + 0x42003b80 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x42003b80 __stdout_hook_install + .text.abort 0x42003b98 0x14 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + 0x42003b98 abort + .text.malloc_prepare + 0x42003bac 0x21 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + *fill* 0x42003bcd 0x3 + .text.find_desc_for_int + 0x42003bd0 0x23 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + *fill* 0x42003bf3 0x1 + .text.is_vect_desc_usable + 0x42003bf4 0x8c zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text.get_desc_for_int + 0x42003c80 0x8a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + *fill* 0x42003d0a 0x2 + .text.esp_intr_alloc_intrstatus + 0x42003d0c 0x38e zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x39a (size before relaxing) + 0x42003d0c esp_intr_alloc_intrstatus + *fill* 0x4200409a 0x2 + .text.esp_intr_alloc + 0x4200409c 0x18 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x1c (size before relaxing) + 0x4200409c esp_intr_alloc + .text.clock_control_esp32_get_status + 0x420040b4 0x46 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + *fill* 0x420040fa 0x2 + .text.clock_control_esp32_get_rate + 0x420040fc 0x46 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x4a (size before relaxing) + *fill* 0x42004142 0x2 + .text.clock_control_esp32_off + 0x42004144 0x26 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x2a (size before relaxing) + *fill* 0x4200416a 0x2 + .text.clock_control_esp32_on + 0x4200416c 0x2c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x30 (size before relaxing) + .text.esp32_select_rtc_slow_clk + 0x42004198 0xc9 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + *fill* 0x42004261 0x3 + .text.esp32_cpu_clock_configure + 0x42004264 0xfa zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + *fill* 0x4200435e 0x2 + .text.clock_control_esp32_configure + 0x42004360 0x74 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x78 (size before relaxing) + .text.clock_control_esp32_init + 0x420043d4 0xa0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0xa4 (size before relaxing) + .text.uart_console_init + 0x42004474 0x24 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + 0x28 (size before relaxing) + .text.gpio_esp32_pin_interrupt_configure + 0x42004498 0x12e zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x420045c6 0x2 + .text.gpio_esp32_init + 0x420045c8 0x3d zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x42004605 0x3 + .text.sx126x_set_tx_enable + 0x42004608 0x27 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + *fill* 0x4200462f 0x1 + .text.sx126x_dio1_irq_work_handler$part$0 + 0x42004630 0x13 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + *fill* 0x42004643 0x1 + .text.sx126x_dio1_irq_work_handler + 0x42004644 0x2e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x32 (size before relaxing) + *fill* 0x42004672 0x2 + .text.sx126x_lora_init + 0x42004674 0x8c zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x98 (size before relaxing) + .text.SX126xGetOperatingMode + 0x42004700 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42004700 SX126xGetOperatingMode + *fill* 0x4200470a 0x2 + .text.SX126xSetOperatingMode + 0x4200470c 0x23 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x27 (size before relaxing) + 0x4200470c SX126xSetOperatingMode + *fill* 0x4200472f 0x1 + .text.SX126xIoIrqInit + 0x42004730 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42004730 SX126xIoIrqInit + *fill* 0x4200473a 0x2 + .text.SX126xIoRfSwitchInit + 0x4200473c 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xe (size before relaxing) + 0x4200473c SX126xIoRfSwitchInit + *fill* 0x42004746 0x2 + .text.SX126xReset + 0x42004748 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42004748 SX126xReset + .text.SX126xSetRfTxPower + 0x4200475c 0xd zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + 0x4200475c SX126xSetRfTxPower + *fill* 0x42004769 0x3 + .text.SX126xWaitOnBusy + 0x4200476c 0x1e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4200476c SX126xWaitOnBusy + *fill* 0x4200478a 0x2 + .text.sx126x_spi_transceive$isra$0 + 0x4200478c 0x6a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x6e (size before relaxing) + *fill* 0x420047f6 0x2 + .text.SX126xWriteBuffer + 0x420047f8 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x420047f8 SX126xWriteBuffer + .text.SX126xReadBuffer + 0x42004818 0x22 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x26 (size before relaxing) + 0x42004818 SX126xReadBuffer + *fill* 0x4200483a 0x2 + .text.SX126xWriteCommand + 0x4200483c 0x1b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4200483c SX126xWriteCommand + *fill* 0x42004857 0x1 + .text.SX126xReadCommand + 0x42004858 0x21 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x25 (size before relaxing) + 0x42004858 SX126xReadCommand + *fill* 0x42004879 0x3 + .text.SX126xWriteRegisters + 0x4200487c 0x26 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4200487c SX126xWriteRegisters + *fill* 0x420048a2 0x2 + .text.SX126xWriteRegister + 0x420048a4 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x16 (size before relaxing) + 0x420048a4 SX126xWriteRegister + *fill* 0x420048b6 0x2 + .text.SX126xReadRegisters + 0x420048b8 0x2b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x420048b8 SX126xReadRegisters + *fill* 0x420048e3 0x1 + .text.SX126xReadRegister + 0x420048e4 0x15 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x420048e4 SX126xReadRegister + *fill* 0x420048f9 0x3 + .text.SX126xWakeup + 0x420048fc 0x53 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x56 (size before relaxing) + 0x420048fc SX126xWakeup + *fill* 0x4200494f 0x1 + .text.SX126xGetDio1PinState + 0x42004950 0xd zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + 0x42004950 SX126xGetDio1PinState + *fill* 0x4200495d 0x3 + .text.timer_work_handler + 0x42004960 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0xb (size before relaxing) + *fill* 0x42004968 0x0 + .text.timer_callback + 0x42004968 0xe zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + *fill* 0x42004976 0x2 + .text.k_uptime_get_32 + 0x42004978 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .text.RtcGetTimerValue + 0x42004990 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0xd (size before relaxing) + 0x42004990 RtcGetTimerValue + *fill* 0x4200499a 0x2 + .text.RtcGetTimerElapsedTime + 0x4200499c 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x13 (size before relaxing) + 0x4200499c RtcGetTimerElapsedTime + *fill* 0x420049ac 0x0 + .text.RtcStopAlarm + 0x420049ac 0xe zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x420049ac RtcStopAlarm + *fill* 0x420049ba 0x2 + .text.RtcSetAlarm + 0x420049bc 0x1a zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x420049bc RtcSetAlarm + *fill* 0x420049d6 0x2 + .text.RtcSetTimerContext + 0x420049d8 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x420049d8 RtcSetTimerContext + *fill* 0x420049ea 0x2 + .text.RtcGetTimerContext + 0x420049ec 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x420049ec RtcGetTimerContext + *fill* 0x420049f6 0x2 + .text.DelayMsMcu + 0x420049f8 0x13 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x420049f8 DelayMsMcu + *fill* 0x42004a0b 0x1 + .text.modem_release$constprop$0 + 0x42004a0c 0x3e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + *fill* 0x42004a4a 0x2 + .text.sx12xx_ev_tx_done + 0x42004a4c 0x1e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + *fill* 0x42004a6a 0x2 + .text.sx12xx_ev_tx_timed_out + 0x42004a6c 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0xb (size before relaxing) + *fill* 0x42004a74 0x0 + .text.sx12xx_ev_rx_error + 0x42004a74 0x30 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .text.sx12xx_ev_rx_done + 0x42004aa4 0xa4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .text.__sx12xx_configure_pin + 0x42004b48 0xd6 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x42004b48 __sx12xx_configure_pin + *fill* 0x42004c1e 0x2 + .text.sx12xx_airtime + 0x42004c20 0x46 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x42004c20 sx12xx_airtime + *fill* 0x42004c66 0x2 + .text.sx12xx_lora_send_async + 0x42004c68 0x36 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x42004c68 sx12xx_lora_send_async + *fill* 0x42004c9e 0x2 + .text.sx12xx_lora_send + 0x42004ca0 0x84 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x8c (size before relaxing) + 0x42004ca0 sx12xx_lora_send + .text.sx12xx_lora_recv + 0x42004d24 0xc0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0xc4 (size before relaxing) + 0x42004d24 sx12xx_lora_recv + .text.sx12xx_lora_recv_async + 0x42004de4 0x42 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x46 (size before relaxing) + 0x42004de4 sx12xx_lora_recv_async + *fill* 0x42004e26 0x2 + .text.sx12xx_lora_config + 0x42004e28 0xe0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0xe4 (size before relaxing) + 0x42004e28 sx12xx_lora_config + .text.sx12xx_lora_test_cw + 0x42004f08 0x2b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x42004f08 sx12xx_lora_test_cw + *fill* 0x42004f33 0x1 + .text.sx12xx_init + 0x42004f34 0x4a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x42004f34 sx12xx_init + *fill* 0x42004f7e 0x2 + .text.gpio_pin_configure_dt + 0x42004f80 0x48 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .text.sx126x_dio1_irq_callback + 0x42004fc8 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .text.z_impl_gpio_pin_interrupt_configure$isra$0 + 0x42004fd8 0x33 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + *fill* 0x4200500b 0x1 + .text.sx126x_reset + 0x4200500c 0x32 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x36 (size before relaxing) + 0x4200500c sx126x_reset + *fill* 0x4200503e 0x2 + .text.sx126x_is_busy + 0x42005040 0x15 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x42005040 sx126x_is_busy + *fill* 0x42005055 0x3 + .text.sx126x_get_dio1_pin_state + 0x42005058 0x15 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x42005058 sx126x_get_dio1_pin_state + *fill* 0x4200506d 0x3 + .text.sx126x_dio1_irq_enable + 0x42005070 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x16 (size before relaxing) + 0x42005070 sx126x_dio1_irq_enable + *fill* 0x42005082 0x2 + .text.sx126x_dio1_irq_disable + 0x42005084 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x16 (size before relaxing) + 0x42005084 sx126x_dio1_irq_disable + *fill* 0x42005096 0x2 + .text.sx126x_set_tx_params + 0x42005098 0xd zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x10 (size before relaxing) + 0x42005098 sx126x_set_tx_params + *fill* 0x420050a5 0x3 + .text.sx126x_variant_init + 0x420050a8 0x6d zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x75 (size before relaxing) + 0x420050a8 sx126x_variant_init + *fill* 0x42005115 0x3 + .text.TimerSetTimeout + 0x42005118 0x27 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x32 (size before relaxing) + *fill* 0x4200513f 0x1 + .text.TimerInsertNewHeadTimer + 0x42005140 0x1e zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + *fill* 0x4200515e 0x2 + .text.TimerStart + 0x42005160 0x73 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x7f (size before relaxing) + 0x42005160 TimerStart + *fill* 0x420051d3 0x1 + .text.TimerIrqHandler + 0x420051d4 0x7f zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x8a (size before relaxing) + 0x420051d4 TimerIrqHandler + *fill* 0x42005253 0x1 + .text.TimerStop + 0x42005254 0x62 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x6e (size before relaxing) + 0x42005254 TimerStop + *fill* 0x420052b6 0x2 + .text.TimerSetValue + 0x420052b8 0x1b zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x27 (size before relaxing) + 0x420052b8 TimerSetValue + *fill* 0x420052d3 0x1 + .text.TimerGetCurrentTime + 0x420052d4 0xf zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x13 (size before relaxing) + 0x420052d4 TimerGetCurrentTime + *fill* 0x420052e3 0x1 + .text.TimerGetElapsedTime + 0x420052e4 0x1a zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x26 (size before relaxing) + 0x420052e4 TimerGetElapsedTime + *fill* 0x420052fe 0x2 + .text.DelayMs 0x42005300 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + 0xe (size before relaxing) + 0x42005300 DelayMs + *fill* 0x4200530a 0x2 + .text.SX126xCheckDeviceReady + 0x4200530c 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x2e (size before relaxing) + 0x4200530c SX126xCheckDeviceReady + *fill* 0x4200532c 0x0 + .text.SX126xSetPayload + 0x4200532c 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4200532c SX126xSetPayload + *fill* 0x4200533e 0x2 + .text.SX126xSetSyncWord + 0x42005340 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42005340 SX126xSetSyncWord + .text.SX126xSetCrcSeed + 0x42005354 0x22 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42005354 SX126xSetCrcSeed + *fill* 0x42005376 0x2 + .text.SX126xSetCrcPolynomial + 0x42005378 0x22 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42005378 SX126xSetCrcPolynomial + *fill* 0x4200539a 0x2 + .text.SX126xSetWhiteningSeed + 0x4200539c 0x34 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3b (size before relaxing) + 0x4200539c SX126xSetWhiteningSeed + *fill* 0x420053d0 0x0 + .text.SX126xSetSleep + 0x420053d0 0x40 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x44 (size before relaxing) + 0x420053d0 SX126xSetSleep + .text.SX126xSetStandby + 0x42005410 0x1d zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x24 (size before relaxing) + 0x42005410 SX126xSetStandby + *fill* 0x4200542d 0x3 + .text.SX126xInit + 0x42005430 0x2a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3e (size before relaxing) + 0x42005430 SX126xInit + *fill* 0x4200545a 0x2 + .text.SX126xSetTx + 0x4200545c 0x26 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x2a (size before relaxing) + 0x4200545c SX126xSetTx + *fill* 0x42005482 0x2 + .text.SX126xSendPayload + 0x42005484 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x18 (size before relaxing) + 0x42005484 SX126xSendPayload + .text.SX126xSetRx + 0x42005498 0x32 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3a (size before relaxing) + 0x42005498 SX126xSetRx + *fill* 0x420054ca 0x2 + .text.SX126xGetRandom + 0x420054cc 0x60 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x7c (size before relaxing) + 0x420054cc SX126xGetRandom + .text.SX126xSetRxBoosted + 0x4200552c 0x32 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3a (size before relaxing) + 0x4200552c SX126xSetRxBoosted + *fill* 0x4200555e 0x2 + .text.SX126xSetRxDutyCycle + 0x42005560 0x34 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x38 (size before relaxing) + 0x42005560 SX126xSetRxDutyCycle + .text.SX126xSetCad + 0x42005594 0x16 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x1a (size before relaxing) + 0x42005594 SX126xSetCad + *fill* 0x420055aa 0x2 + .text.SX126xSetTxContinuousWave + 0x420055ac 0x16 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x1a (size before relaxing) + 0x420055ac SX126xSetTxContinuousWave + *fill* 0x420055c2 0x2 + .text.SX126xSetStopRxTimerOnPreambleDetect + 0x420055c4 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x16 (size before relaxing) + 0x420055c4 SX126xSetStopRxTimerOnPreambleDetect + *fill* 0x420055d6 0x2 + .text.SX126xSetLoRaSymbNumTimeout + 0x420055d8 0x50 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x54 (size before relaxing) + 0x420055d8 SX126xSetLoRaSymbNumTimeout + .text.SX126xSetRegulatorMode + 0x42005628 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42005628 SX126xSetRegulatorMode + .text.SX126xCalibrateImage + 0x4200563c 0x6e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x72 (size before relaxing) + 0x4200563c SX126xCalibrateImage + *fill* 0x420056aa 0x2 + .text.SX126xSetPaConfig + 0x420056ac 0x1e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x420056ac SX126xSetPaConfig + *fill* 0x420056ca 0x2 + .text.SX126xSetDioIrqParams + 0x420056cc 0x32 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x36 (size before relaxing) + 0x420056cc SX126xSetDioIrqParams + *fill* 0x420056fe 0x2 + .text.SX126xGetIrqStatus + 0x42005700 0x1d zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x21 (size before relaxing) + 0x42005700 SX126xGetIrqStatus + *fill* 0x4200571d 0x3 + .text.SX126xSetDio2AsRfSwitchCtrl + 0x42005720 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x16 (size before relaxing) + 0x42005720 SX126xSetDio2AsRfSwitchCtrl + *fill* 0x42005732 0x2 + .text.SX126xSetRfFrequency + 0x42005734 0x68 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x6c (size before relaxing) + 0x42005734 SX126xSetRfFrequency + .text.SX126xSetPacketType + 0x4200579c 0x16 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x1a (size before relaxing) + 0x4200579c SX126xSetPacketType + *fill* 0x420057b2 0x2 + .text.SX126xGetPacketType + 0x420057b4 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x420057b4 SX126xGetPacketType + *fill* 0x420057be 0x2 + .text.SX126xSetTxParams + 0x420057c0 0x7c zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8c (size before relaxing) + 0x420057c0 SX126xSetTxParams + .text.SX126xSetModulationParams + 0x4200583c 0xb0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4200583c SX126xSetModulationParams + .text.SX126xSetPacketParams + 0x420058ec 0xd4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xe0 (size before relaxing) + 0x420058ec SX126xSetPacketParams + .text.SX126xSetBufferBaseAddress + 0x420059c0 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x420059c0 SX126xSetBufferBaseAddress + .text.SX126xGetRssiInst + 0x420059d8 0x17 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x1b (size before relaxing) + 0x420059d8 SX126xGetRssiInst + *fill* 0x420059ef 0x1 + .text.SX126xGetRxBufferStatus + 0x420059f0 0x3a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3e (size before relaxing) + 0x420059f0 SX126xGetRxBufferStatus + *fill* 0x42005a2a 0x2 + .text.SX126xGetPayload + 0x42005a2c 0x26 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x2a (size before relaxing) + 0x42005a2c SX126xGetPayload + *fill* 0x42005a52 0x2 + .text.SX126xGetPacketStatus + 0x42005a54 0x86 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8a (size before relaxing) + 0x42005a54 SX126xGetPacketStatus + *fill* 0x42005ada 0x2 + .text.SX126xClearIrqStatus + 0x42005adc 0x1a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42005adc SX126xClearIrqStatus + *fill* 0x42005af6 0x2 + .text.RadioOnTxTimeoutIrq + 0x42005af8 0x13 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x42005af8 RadioOnTxTimeoutIrq + *fill* 0x42005b0b 0x1 + .text.RadioOnRxTimeoutIrq + 0x42005b0c 0x13 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x42005b0c RadioOnRxTimeoutIrq + *fill* 0x42005b1f 0x1 + .text.RadioOnDioIrq + 0x42005b20 0xd zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x42005b20 RadioOnDioIrq + *fill* 0x42005b2d 0x3 + .text.RadioStandby + 0x42005b30 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xe (size before relaxing) + 0x42005b30 RadioStandby + *fill* 0x42005b3a 0x2 + .text.RadioGetStatus + 0x42005b3c 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x1b (size before relaxing) + 0x42005b3c RadioGetStatus + *fill* 0x42005b54 0x0 + .text.RadioSetChannel + 0x42005b54 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xe (size before relaxing) + 0x42005b54 RadioSetChannel + *fill* 0x42005b5e 0x2 + .text.RadioRead + 0x42005b60 0xd zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x10 (size before relaxing) + 0x42005b60 RadioRead + *fill* 0x42005b6d 0x3 + .text.RadioWrite + 0x42005b70 0xe zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x11 (size before relaxing) + 0x42005b70 RadioWrite + *fill* 0x42005b7e 0x2 + .text.RadioSend + 0x42005b80 0x4a zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x5a (size before relaxing) + 0x42005b80 RadioSend + *fill* 0x42005bca 0x2 + .text.RadioSleep + 0x42005bcc 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x16 (size before relaxing) + 0x42005bcc RadioSleep + *fill* 0x42005bde 0x2 + .text.RadioSetRxDutyCycle + 0x42005be0 0xf zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x42005be0 RadioSetRxDutyCycle + *fill* 0x42005bef 0x1 + .text.RadioReadBuffer + 0x42005bf0 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x13 (size before relaxing) + 0x42005bf0 RadioReadBuffer + *fill* 0x42005c00 0x0 + .text.RadioWriteBuffer + 0x42005c00 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x13 (size before relaxing) + 0x42005c00 RadioWriteBuffer + *fill* 0x42005c10 0x0 + .text.RadioStartCad + 0x42005c10 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x1c (size before relaxing) + 0x42005c10 RadioStartCad + .text.RadioSetTxContinuousWave + 0x42005c28 0x32 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x42 (size before relaxing) + 0x42005c28 RadioSetTxContinuousWave + *fill* 0x42005c5a 0x2 + .text.RadioRssi + 0x42005c5c 0xb zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xe (size before relaxing) + 0x42005c5c RadioRssi + *fill* 0x42005c67 0x1 + .text.RadioGetWakeupTime + 0x42005c68 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xd (size before relaxing) + 0x42005c68 RadioGetWakeupTime + *fill* 0x42005c72 0x2 + .text.RadioIrqProcess + 0x42005c74 0x168 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x1b0 (size before relaxing) + 0x42005c74 RadioIrqProcess + .text.RadioGetFskBandwidthRegValue + 0x42005ddc 0x30 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .text.RadioSetMaxPayloadLength + 0x42005e0c 0x33 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x36 (size before relaxing) + 0x42005e0c RadioSetMaxPayloadLength + *fill* 0x42005e3f 0x1 + .text.RadioRx 0x42005e40 0x3d zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x48 (size before relaxing) + 0x42005e40 RadioRx + *fill* 0x42005e7d 0x3 + .text.RadioRxBoosted + 0x42005e80 0x3d zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x48 (size before relaxing) + 0x42005e80 RadioRxBoosted + *fill* 0x42005ebd 0x3 + .text.RadioTimeOnAir + 0x42005ec0 0xe7 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x42005ec0 RadioTimeOnAir + *fill* 0x42005fa7 0x1 + .text.RadioSetPublicNetwork + 0x42005fa8 0x3a zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x42 (size before relaxing) + 0x42005fa8 RadioSetPublicNetwork + *fill* 0x42005fe2 0x2 + .text.RadioSetModem$part$0 + 0x42005fe4 0x1c zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x23 (size before relaxing) + *fill* 0x42006000 0x0 + .text.RadioSetModem + 0x42006000 0x1e zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x21 (size before relaxing) + 0x42006000 RadioSetModem + *fill* 0x4200601e 0x2 + .text.RadioSetRxConfig + 0x42006020 0x1af zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x1e3 (size before relaxing) + 0x42006020 RadioSetRxConfig + *fill* 0x420061cf 0x1 + .text.RadioSetTxConfig + 0x420061d0 0x167 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x197 (size before relaxing) + 0x420061d0 RadioSetTxConfig + *fill* 0x42006337 0x1 + .text.RadioIsChannelFree + 0x42006338 0x67 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x82 (size before relaxing) + 0x42006338 RadioIsChannelFree + *fill* 0x4200639f 0x1 + .text.RadioRandom + 0x420063a0 0x1a zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x22 (size before relaxing) + 0x420063a0 RadioRandom + *fill* 0x420063ba 0x2 + .text.RadioAddRegisterToRetentionList + 0x420063bc 0x5b zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x420063bc RadioAddRegisterToRetentionList + *fill* 0x42006417 0x1 + .text.RadioInit + 0x42006418 0x62 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x82 (size before relaxing) + 0x42006418 RadioInit + *fill* 0x4200647a 0x2 + .text.pinctrl_configure_pins + 0x4200647c 0x38d zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + 0x4200647c pinctrl_configure_pins + *fill* 0x42006809 0x3 + .text.serial_esp32_usb_poll_in + 0x4200680c 0x24 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_fifo_fill + 0x42006830 0x35 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x42006865 0x3 + .text.serial_esp32_usb_irq_tx_enable + 0x42006868 0x34 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_irq_tx_ready + 0x4200689c 0x1a zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x420068b6 0x2 + .text.serial_esp32_usb_irq_rx_disable + 0x420068b8 0x17 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x420068cf 0x1 + .text.serial_esp32_usb_irq_tx_complete + 0x420068d0 0x10 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_irq_rx_ready + 0x420068e0 0x10 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_irq_is_pending + 0x420068f0 0x1c zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_irq_update + 0x4200690c 0x18 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_init + 0x42006924 0x7c zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_irq_tx_disable + 0x420069a0 0x17 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x420069b7 0x1 + .text.serial_esp32_usb_irq_rx_enable + 0x420069b8 0x1c zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_poll_out + 0x420069d4 0xb0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_fifo_read + 0x42006a84 0x26 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x42006aaa 0x2 + .text.uart_esp32_irq_is_pending + 0x42006aac 0x1a zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x1e (size before relaxing) + *fill* 0x42006ac6 0x2 + .text.uart_esp32_fifo_read + 0x42006ac8 0x26 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x42006aee 0x2 + .text.uart_esp32_poll_in + 0x42006af0 0x24 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x28 (size before relaxing) + .text.uart_esp32_fifo_fill + 0x42006b14 0x20 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .text.uart_esp32_poll_out + 0x42006b34 0x28 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .text.uart_esp32_config_get + 0x42006b5c 0x124 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x130 (size before relaxing) + .text.uart_esp32_configure + 0x42006c80 0x1bd zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x1dd (size before relaxing) + *fill* 0x42006e3d 0x3 + .text.uart_esp32_init + 0x42006e40 0xca zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0xda (size before relaxing) + *fill* 0x42006f0a 0x2 + .text.z_log_msg_simple_create_0 + 0x42006f0c 0x12 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + *fill* 0x42006f1e 0x2 + .text._spi_context_cs_control + 0x42006f20 0x42 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x46 (size before relaxing) + *fill* 0x42006f62 0x2 + .text.spi_context_unlock_unconditionally + 0x42006f64 0x1e zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x22 (size before relaxing) + *fill* 0x42006f82 0x2 + .text.spi_esp32_release + 0x42006f84 0xf zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + *fill* 0x42006f93 0x1 + .text.spi_esp32_gdma_config$isra$0 + 0x42006f94 0xd3 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0xd7 (size before relaxing) + *fill* 0x42007067 0x1 + .text.spi_esp32_transceive + 0x42007068 0x253 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x25b (size before relaxing) + *fill* 0x420072bb 0x1 + .text.spi_esp32_init + 0x420072bc 0x1ae zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x1c2 (size before relaxing) + *fill* 0x4200746a 0x2 + .text.fprintf 0x4200746c 0x29 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + 0x4200746c fprintf + *fill* 0x42007495 0x3 + .text.snprintf + 0x42007498 0x5e /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + 0x42007498 snprintf + *fill* 0x420074f6 0x2 + .text.__l_vfprintf + 0x420074f8 0x588 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + 0x420074f8 __l_vfprintf + .text._OffsetAbsSyms + 0x42007a80 0x5 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + 0x42007a80 _OffsetAbsSyms + *fill* 0x42007a85 0x0 + *fill* 0x42007a85 0x0 + *fill* 0x42007a85 0x3 + .text.kiss_encode_cmd + 0x42007a88 0x6a app/libapp.a(kiss.c.obj) + 0x42007a88 kiss_encode_cmd + *fill* 0x42007af2 0x2 + .text.kiss_decoder_init + 0x42007af4 0xf app/libapp.a(kiss.c.obj) + 0x42007af4 kiss_decoder_init + *fill* 0x42007b03 0x1 + .text.kiss_decoder_feed + 0x42007b04 0x8b app/libapp.a(kiss.c.obj) + 0x42007b04 kiss_decoder_feed + *fill* 0x42007b8f 0x1 + .text.params_to_cfg + 0x42007b90 0xbf app/libapp.a(lora_modem.c.obj) + *fill* 0x42007c4f 0x0 + *fill* 0x42007c4f 0x0 + *fill* 0x42007c4f 0x0 + *fill* 0x42007c4f 0x0 + *fill* 0x42007c4f 0x0 + *fill* 0x42007c4f 0x0 + *fill* 0x42007c4f 0x1 + .text.chunk_field + 0x42007c50 0x24 zephyr/libzephyr.a(heap.c.obj) + .text.chunk_set + 0x42007c74 0x24 zephyr/libzephyr.a(heap.c.obj) + *fill* 0x42007c98 0x0 + .text.set_chunk_used + 0x42007c98 0x3b zephyr/libzephyr.a(heap.c.obj) + *fill* 0x42007cd3 0x0 + *fill* 0x42007cd3 0x1 + .text.mem_to_chunkid + 0x42007cd4 0x1c zephyr/libzephyr.a(heap.c.obj) + .text.bucket_idx + 0x42007cf0 0x22 zephyr/libzephyr.a(heap.c.obj) + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x2 + .text.free_space + 0x42007d14 0x28 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.idx_inc 0x42007d3c 0x20 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + *fill* 0x42007d5c 0x0 + *fill* 0x42007d5c 0x0 + *fill* 0x42007d5c 0x0 + *fill* 0x42007d5c 0x0 + *fill* 0x42007d5c 0x0 + *fill* 0x42007d5c 0x0 + .text.mpsc_pbuf_is_pending + 0x42007d5c 0x27 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x42007d5c mpsc_pbuf_is_pending + *fill* 0x42007d83 0x1 + .text._ConfigAbsSyms + 0x42007d84 0x5 zephyr/libzephyr.a(configs.c.obj) + 0x42007d84 _ConfigAbsSyms + *fill* 0x42007d89 0x0 + *fill* 0x42007d89 0x0 + *fill* 0x42007d89 0x3 + .text.spi_flash_chip_list_check + 0x42007d8c 0x5 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + 0x42007d8c spi_flash_chip_list_check + *fill* 0x42007d91 0x3 + .text.uart_hal_get_sclk + 0x42007d94 0x1e zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007d94 uart_hal_get_sclk + *fill* 0x42007db2 0x2 + .text.uart_hal_get_baudrate + 0x42007db4 0x38 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007db4 uart_hal_get_baudrate + .text.uart_hal_set_stop_bits + 0x42007dec 0x20 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007dec uart_hal_set_stop_bits + .text.uart_hal_get_stop_bits + 0x42007e0c 0x11 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007e0c uart_hal_get_stop_bits + *fill* 0x42007e1d 0x3 + .text.uart_hal_set_data_bit_num + 0x42007e20 0x1f zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007e20 uart_hal_set_data_bit_num + *fill* 0x42007e3f 0x1 + .text.uart_hal_get_data_bit_num + 0x42007e40 0x11 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007e40 uart_hal_get_data_bit_num + *fill* 0x42007e51 0x3 + .text.uart_hal_set_parity + 0x42007e54 0x35 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007e54 uart_hal_set_parity + *fill* 0x42007e89 0x3 + .text.uart_hal_get_parity + 0x42007e8c 0x20 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007e8c uart_hal_get_parity + *fill* 0x42007eac 0x0 + .text.uart_hal_get_hw_flow_ctrl + 0x42007eac 0x24 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007eac uart_hal_get_hw_flow_ctrl + .text.uart_hal_set_rxfifo_full_thr + 0x42007ed0 0x1d zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007ed0 uart_hal_set_rxfifo_full_thr + *fill* 0x42007eed 0x0 + *fill* 0x42007eed 0x0 + *fill* 0x42007eed 0x3 + .text.uart_hal_get_symb_len + 0x42007ef0 0x43 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007ef0 uart_hal_get_symb_len + *fill* 0x42007f33 0x0 + *fill* 0x42007f33 0x0 + *fill* 0x42007f33 0x0 + *fill* 0x42007f33 0x1 + .text.uart_hal_write_txfifo + 0x42007f34 0x3a zephyr/libzephyr.a(uart_hal_iram.c.obj) + 0x42007f34 uart_hal_write_txfifo + *fill* 0x42007f6e 0x2 + .text.uart_hal_read_rxfifo + 0x42007f70 0x2d zephyr/libzephyr.a(uart_hal_iram.c.obj) + 0x42007f70 uart_hal_read_rxfifo + *fill* 0x42007f9d 0x0 + *fill* 0x42007f9d 0x0 + *fill* 0x42007f9d 0x0 + *fill* 0x42007f9d 0x0 + *fill* 0x42007f9d 0x3 + .text.spi_hal_user_start + 0x42007fa0 0x36 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x42007fa0 spi_hal_user_start + *fill* 0x42007fd6 0x2 + .text.spi_hal_usr_is_done + 0x42007fd8 0xf zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x42007fd8 spi_hal_usr_is_done + *fill* 0x42007fe7 0x1 + .text.spi_hal_push_tx_buffer + 0x42007fe8 0x46 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x42007fe8 spi_hal_push_tx_buffer + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x2 + .text.cbputc 0x42008030 0x11 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + *fill* 0x42008041 0x0 + *fill* 0x42008041 0x0 + *fill* 0x42008041 0x0 + *fill* 0x42008041 0x0 + *fill* 0x42008041 0x3 + .text.z_xt_ints_off + 0x42008044 0x14 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + *fill* 0x42008058 0x0 + *fill* 0x42008058 0x0 + *fill* 0x42008058 0x0 + *fill* 0x42008058 0x0 + *fill* 0x42008058 0x0 + *fill* 0x42008058 0x0 + *fill* 0x42008058 0x0 + *fill* 0x42008058 0x0 + .text.gpio_esp32_port_get_raw + 0x42008058 0x26 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x4200807e 0x2 + .text.gpio_esp32_port_set_masked_raw + 0x42008080 0x58 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .text.gpio_esp32_port_set_bits_raw + 0x420080d8 0x2e zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x42008106 0x2 + .text.gpio_esp32_port_clear_bits_raw + 0x42008108 0x2e zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x42008136 0x2 + .text.gpio_esp32_port_toggle_bits + 0x42008138 0x48 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x42008180 0x0 + .text.gpio_esp32_manage_callback + 0x42008180 0x58 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .text.gpio_esp32_get_pending_int + 0x420081d8 0x26 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x420081fe 0x2 + .text.gpio_esp32_sys_init + 0x42008200 0x7 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x42008207 0x0 + *fill* 0x42008207 0x0 + *fill* 0x42008207 0x0 + *fill* 0x42008207 0x0 + *fill* 0x42008207 0x1 + .text.SX126xAntSwOn + 0x42008208 0x5 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42008208 SX126xAntSwOn + *fill* 0x4200820d 0x3 + .text.SX126xAntSwOff + 0x42008210 0x5 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42008210 SX126xAntSwOff + *fill* 0x42008215 0x0 + *fill* 0x42008215 0x0 + *fill* 0x42008215 0x3 + .text.SX126xGetBoardTcxoWakeupTime + 0x42008218 0x7 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42008218 SX126xGetBoardTcxoWakeupTime + *fill* 0x4200821f 0x1 + .text.SX126xGetDeviceId + 0x42008220 0x7 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42008220 SX126xGetDeviceId + *fill* 0x42008227 0x0 + *fill* 0x42008227 0x1 + .text.SX126xIoTcxoInit + 0x42008228 0x5 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42008228 SX126xIoTcxoInit + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x3 + .text.RtcGetMinimumTimeout + 0x42008230 0x7 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x42008230 RtcGetMinimumTimeout + *fill* 0x42008237 0x0 + *fill* 0x42008237 0x0 + *fill* 0x42008237 0x0 + *fill* 0x42008237 0x0 + *fill* 0x42008237 0x0 + *fill* 0x42008237 0x1 + .text.RtcMs2Tick + 0x42008238 0x5 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x42008238 RtcMs2Tick + *fill* 0x4200823d 0x3 + .text.RtcTick2Ms + 0x42008240 0x5 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x42008240 RtcTick2Ms + *fill* 0x42008245 0x3 + .text.BoardCriticalSectionBegin + 0x42008248 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x42008248 BoardCriticalSectionBegin + *fill* 0x42008252 0x2 + .text.BoardCriticalSectionEnd + 0x42008254 0xd zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x42008254 BoardCriticalSectionEnd + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x3 + .text.gpio_pin_get + 0x42008264 0x2b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + *fill* 0x4200828f 0x1 + .text.gpio_pin_set$isra$0 + 0x42008290 0x2a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x2 + .text.TimerInit + 0x420082bc 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x420082bc TimerInit + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + .text.RadioCheckRfFrequency + 0x420082d0 0x7 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x420082d0 RadioCheckRfFrequency + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x1 + .text.pinctrl_lookup_state + 0x420082d8 0x2d zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + 0x420082d8 pinctrl_lookup_state + *fill* 0x42008305 0x0 + *fill* 0x42008305 0x3 + .text.serial_esp32_usb_err_check + 0x42008308 0x7 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x4200830f 0x0 + *fill* 0x4200830f 0x0 + *fill* 0x4200830f 0x0 + *fill* 0x4200830f 0x1 + .text.serial_esp32_usb_irq_err_enable + 0x42008310 0x5 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x42008315 0x3 + .text.serial_esp32_usb_irq_callback_set + 0x42008318 0xb zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x42008323 0x1 + .text.serial_esp32_usb_irq_err_disable + 0x42008324 0x5 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x42008329 0x0 + *fill* 0x42008329 0x0 + *fill* 0x42008329 0x3 + .text.uart_esp32_err_check + 0x4200832c 0x13 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x4200833f 0x1 + .text.uart_esp32_irq_tx_enable + 0x42008340 0x1f zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x4200835f 0x1 + .text.uart_esp32_irq_tx_disable + 0x42008360 0x18 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .text.uart_esp32_irq_tx_ready + 0x42008378 0x1e zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x42008396 0x2 + .text.uart_esp32_irq_rx_disable + 0x42008398 0x2a zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x420083c2 0x2 + .text.uart_esp32_irq_tx_complete + 0x420083c4 0x23 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x420083e7 0x1 + .text.uart_esp32_irq_rx_ready + 0x420083e8 0x16 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x420083fe 0x2 + .text.uart_esp32_irq_err_enable + 0x42008400 0x29 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x42008429 0x3 + .text.uart_esp32_irq_err_disable + 0x4200842c 0x29 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x42008455 0x0 + *fill* 0x42008455 0x3 + .text.uart_esp32_irq_update + 0x42008458 0x25 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x4200847d 0x3 + .text.uart_esp32_irq_callback_set + 0x42008480 0xb zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x4200848b 0x1 + .text.uart_esp32_irq_rx_enable + 0x4200848c 0x38 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x420084c4 0x0 + *fill* 0x420084c4 0x0 + *fill* 0x420084c4 0x0 + .text.spi_context_get_next_buf + 0x420084c4 0x2e zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + *fill* 0x420084f2 0x0 + *fill* 0x420084f2 0x2 + .text.gpio_pin_set_dt$isra$0 + 0x420084f4 0x2e zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x2 + .text.__ultoa_invert + 0x42008524 0xe4 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .text.__file_str_put + 0x42008608 0x16 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + 0x42008608 __file_str_put + 0x4200862e . = (. + 0x10) + *fill* 0x4200861e 0x10 + 0x4200862e _text_end = ABSOLUTE (.) + 0x4200862e _instruction_reserved_end = ABSOLUTE (.) + 0x4200862e __text_region_end = ABSOLUTE (.) + 0x4200862e __rom_region_end = ABSOLUTE (.) + 0x4200862e _etext = . + +.flash.rodata_dummy + 0x3c000000 0x10000 + 0x3c000000 _flash_rodata_dummy_start = ABSOLUTE (.) + 0x3c00862e . = (. + SIZEOF (.text)) + *fill* 0x3c000000 0x862e + 0x3c010000 . = ALIGN (0x10000) + *fill* 0x3c00862e 0x79d2 + 0x00020000 _image_drom_start = LOADADDR (.flash.rodata) + 0x00001e60 _image_drom_size = ((LOADADDR (.flash.rodata_end) + SIZEOF (.flash.rodata_end)) - _image_drom_start) + 0x3c010000 _image_drom_vaddr = ADDR (.flash.rodata) + +.flash.rodata 0x3c010000 0x1c24 load address 0x00020000 + 0x3c010000 _image_rodata_start = ABSOLUTE (.) + 0x3c010000 _rodata_reserved_start = ABSOLUTE (.) + 0x3c010000 _rodata_start = ABSOLUTE (.) + 0x3c010000 __rodata_region_start = ABSOLUTE (.) + 0x3c010000 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.irom1.text)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.r.*)) + *(SORT_BY_ALIGNMENT(.rodata)) + .rodata 0x3c010000 0x8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .rodata 0x3c010008 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + *(SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.kiss_rx_fn + 0x3c010010 0x1c app/libapp.a(main.c.obj) + .rodata.cbvprintf_package + 0x3c01002c 0xbc zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .rodata.rtc_io_desc + 0x3c0100e8 0x4d0 zephyr/libzephyr.a(rtc_io_periph.c.obj) + 0x3c0100e8 rtc_io_desc + .rodata.non_shared_periph_module_enable + 0x3c0105b8 0x74 zephyr/libzephyr.a(periph_ctrl.c.obj) + .rodata.non_shared_periph_module_disable + 0x3c01062c 0x74 zephyr/libzephyr.a(periph_ctrl.c.obj) + .rodata.CSWTCH$8 + 0x3c0106a0 0x2c zephyr/libzephyr.a(periph_ctrl.c.obj) + .rodata.CSWTCH$6 + 0x3c0106cc 0x2c zephyr/libzephyr.a(periph_ctrl.c.obj) + .rodata.esp_clk_tree_src_get_freq_hz + 0x3c0106f8 0x2c zephyr/libzephyr.a(esp_clk_tree.c.obj) + .rodata.intr_desc_table + 0x3c010724 0x200 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .rodata.s_submode2str + 0x3c010924 0x24 zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.g_mmu_mem_regions + 0x3c010948 0x18 zephyr/libzephyr.a(ext_mem_layout.c.obj) + 0x3c010948 g_mmu_mem_regions + .rodata.esp_reset_reason_init + 0x3c010960 0x58 zephyr/libzephyr.a(reset_reason.c.obj) + .rodata.GPIO_PIN_MUX_REG + 0x3c0109b8 0xc4 zephyr/libzephyr.a(gpio_periph.c.obj) + 0x3c0109b8 GPIO_PIN_MUX_REG + .rodata.CSWTCH$695 + 0x3c010a7c 0x2c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .rodata.esp32_clock_config0 + 0x3c010aa8 0x14 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .rodata.dev_config + 0x3c010abc 0x28 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .rodata.sx126x_gpio_dio1 + 0x3c010ae4 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .rodata.sx126x_gpio_busy + 0x3c010aec 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .rodata.sx126x_gpio_reset + 0x3c010af4 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .rodata.CSWTCH$50 + 0x3c010afc 0x2c zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .rodata.Bandwidths + 0x3c010b28 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3c010b28 Bandwidths + .rodata.FskBandwidths + 0x3c010b34 0xb0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3c010b34 FskBandwidths + .rodata.Radio 0x3c010be4 0x6c zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3c010be4 Radio + .rodata.esp32_gpio_ports_addrs + 0x3c010c50 0x8 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .rodata.spi_config_0 + 0x3c010c58 0x44 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.__compound_literal$0 + 0x3c010c9c 0x8 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.__pinctrl_dev_config__device_dts_ord_103 + 0x3c010ca4 0x8 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.__pinctrl_states__device_dts_ord_103 + 0x3c010cac 0x8 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.__pinctrl_state_pins_0__device_dts_ord_103 + 0x3c010cb4 0x18 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.cfg$0 0x3c010ccc 0xc zephyr/kernel/libkernel.a(system_work_q.c.obj) + .rodata.__l_vfprintf + 0x3c010cd8 0x90 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .rodata.lora_rx_fn.str1.1 + 0x3c010d68 0xd6c app/libapp.a(main.c.obj) + 0x47 (size before relaxing) + .rodata.kiss_rx_fn.str1.1 + 0x3c011ad4 0x132 app/libapp.a(main.c.obj) + .rodata.main.str1.1 + 0x3c011ad4 0x44 app/libapp.a(main.c.obj) + .rodata.str1.1 + 0x3c011ad4 0x5 app/libapp.a(main.c.obj) + .rodata.lora_modem_init.str1.1 + 0x3c011ad4 0x42 app/libapp.a(lora_modem.c.obj) + .rodata.lora_modem_set_params.str1.1 + 0x3c011ad4 0x31 app/libapp.a(lora_modem.c.obj) + .rodata.lora_modem_set_freq.str1.1 + 0x3c011ad4 0x17 app/libapp.a(lora_modem.c.obj) + .rodata.lora_modem_send.str1.1 + 0x3c011ad4 0x30 app/libapp.a(lora_modem.c.obj) + .rodata.lora_modem_recv.str1.1 + 0x3c011ad4 0x1b app/libapp.a(lora_modem.c.obj) + .rodata.str1.1 + 0x3c011ad4 0xb app/libapp.a(lora_modem.c.obj) + .rodata.inplace_realloc$isra$0.str1.1 + 0x3c011ad4 0x4d zephyr/libzephyr.a(heap.c.obj) + .rodata.sys_heap_free.str1.1 + 0x3c011ad4 0x25 zephyr/libzephyr.a(heap.c.obj) + .rodata.str1.1 + 0x3c011ad4 0x8 zephyr/libzephyr.a(heap.c.obj) + .rodata.cbprintf_package_convert.str1.1 + 0x3c011ad4 0xa3 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .rodata.str1.1 + 0x3c011ad4 0x11 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .rodata.str1.1 + 0x3c011ad4 0xb zephyr/libzephyr.a(getopt.c.obj) + .rodata.str1.1 + 0x3c011ad4 0x9 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.z_impl_z_log_msg_static_create.str1.1 + 0x3c011ad4 0x3f zephyr/libzephyr.a(log_msg.c.obj) + .rodata.z_log_msg_runtime_vcreate.str1.1 + 0x3c011ad4 0x38 zephyr/libzephyr.a(log_msg.c.obj) + .rodata.rtc_gpio_init.str1.1 + 0x3c011ad4 0x2a zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6 + 0x3c011ad4 0x16 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$7 + 0x3c011aea 0x15 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8 + 0x3c011aff 0x14 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$9 + 0x3c011b13 0x13 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.clk_hal_xtal_get_freq_mhz.str1.1 + 0x3c011b26 0x3f zephyr/libzephyr.a(clk_tree_hal.c.obj) + .rodata.clk_hal_cpu_get_freq_hz.str1.1 + 0x3c011b26 0x1c zephyr/libzephyr.a(clk_tree_hal.c.obj) + .rodata.rtc_io_num_map + 0x3c011b26 0x31 zephyr/libzephyr.a(rtc_io_periph.c.obj) + 0x3c011b26 rtc_io_num_map + .rodata.esp_clk_tree_src_get_freq_hz.str1.1 + 0x3c011b57 0xa8 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .rodata.__FUNCTION__$0 + 0x3c011b57 0x1d zephyr/libzephyr.a(esp_clk_tree.c.obj) + .rodata.rtc_init.str1.1 + 0x3c011b74 0x2a zephyr/libzephyr.a(rtc_init.c.obj) + .rodata.s_sleep_hook_register.str1.1 + 0x3c011b74 0x45 zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.str1.1 + 0x3c011b74 0x13d zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_sub_mode_config.str1.1 + 0x3c011b74 0x6c zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_sub_mode_dump_config.str1.1 + 0x3c011b74 0x25 zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.abort.str1.1 + 0x3c011b74 0x9 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .rodata.CSWTCH$263 + 0x3c011b74 0x6 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .rodata.str1.1 + 0x3c011b7a 0xb zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .rodata.esp32_select_rtc_slow_clk.str1.1 + 0x3c011b7a 0x16 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .rodata.esp32_cpu_clock_configure.str1.1 + 0x3c011b7a 0x1c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .rodata.clock_control_esp32_configure.str1.1 + 0x3c011b7a 0x19 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .rodata.clock_control_esp32_init.str1.1 + 0x3c011b7a 0x3c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .rodata.str1.1 + 0x3c011b7a 0x14 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .rodata.gpio_esp32_init.str1.1 + 0x3c011b7a 0x26 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .rodata.str1.1 + 0x3c011b7a 0x92 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .rodata.sx126x_dio1_irq_work_handler$part$0.str1.1 + 0x3c011b7a 0x2f zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .rodata.sx126x_lora_init.str1.1 + 0x3c011b7a 0x56 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .rodata.sx126x_spi_transceive$isra$0.str1.1 + 0x3c011b7a 0x1b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .rodata.str1.1 + 0x3c011b7a 0xe zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .rodata.__sx12xx_configure_pin.str1.1 + 0x3c011b7a 0x39 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .rodata.sx12xx_lora_send.str1.1 + 0x3c011b7a 0x1c zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .rodata.sx12xx_lora_recv.str1.1 + 0x3c011b7a 0x1e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .rodata.sx12xx_lora_config.str1.1 + 0x3c011b7a 0x1a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .rodata.str1.1 + 0x3c011b7a 0xe zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .rodata.sx126x_variant_init.str1.1 + 0x3c011b7a 0x4b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .rodata.CSWTCH$59 + 0x3c011b7a 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .rodata.str1.1 + 0x3c011b7e 0xe zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .rodata.spi_esp32_gdma_config$isra$0.str1.1 + 0x3c011b7e 0x5f zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.str1.1 + 0x3c011b7e 0x9e zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.spi_esp32_transceive.str1.1 + 0x3c011b7e 0x7c zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.spi_esp32_init.str1.1 + 0x3c011b7e 0xd6 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.boot_banner.str1.1 + 0x3c011b7e 0x3d zephyr/kernel/libkernel.a(banner.c.obj) + .rodata.str1.1 + 0x3c011b7e 0x9 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .rodata.__l_vfprintf.str1.1 + 0x3c011b7e 0xf /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + *(SORT_BY_ALIGNMENT(.rodata1)) + 0x3c011b7e __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.xt_except_table)) + *(SORT_BY_ALIGNMENT(.gcc_except_table) SORT_BY_ALIGNMENT(.gcc_except_table.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.e.*)) + *(SORT_BY_ALIGNMENT(.gnu.version_r)) + 0x3c011cb4 . = ((. + 0x3) & 0xfffffffffffffffc) + *fill* 0x3c011b7e 0x2 + 0x3c011b80 __eh_frame = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.eh_frame)) + .eh_frame 0x3c011b80 0x28 /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/libgcc.a(_divdi3.o) + .eh_frame 0x3c011ba8 0x28 /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/libgcc.a(_moddi3.o) + .eh_frame 0x3c011bd0 0x28 /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/libgcc.a(_udivdi3.o) + .eh_frame 0x3c011bf8 0x28 /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/libgcc.a(_umoddi3.o) + 0x3c011c24 . = ((. + 0x7) & 0xfffffffffffffffc) + *fill* 0x3c011c20 0x4 + 0x3c011c24 __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.xt_except_desc)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.h.*)) + 0x3c011c24 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.xt_except_desc_end)) + *(SORT_BY_ALIGNMENT(.dynamic)) + *(SORT_BY_ALIGNMENT(.gnu.version_d)) + 0x3c011c24 . = ALIGN (0x4) + 0x3c011c24 __rodata_region_end = ABSOLUTE (.) + 0x3c011c24 _lit4_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(*.lit4)) + *(SORT_BY_ALIGNMENT(.lit4.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.lit4.*)) + 0x3c011c24 _lit4_end = ABSOLUTE (.) + 0x3c011c24 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.rodata_wlog)) + *(SORT_BY_ALIGNMENT(.rodata_wlog*)) + 0x3c011c24 . = ALIGN (0x4) + [!provide] PROVIDE (__eh_frame_start = 0x0) + [!provide] PROVIDE (__eh_frame_end = 0x0) + [!provide] PROVIDE (__eh_frame_hdr_start = 0x0) + [!provide] PROVIDE (__eh_frame_hdr_end = 0x0) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.eh_frame)) + +init_array 0x3c011c24 0x0 load address 0x00021c24 + 0x3c011c24 __zephyr_init_array_start = . + *(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)) + *(SORT_BY_ALIGNMENT(.init_array) SORT_BY_ALIGNMENT(.ctors)) + 0x3c011c24 __zephyr_init_array_end = . + 0x00000001 ASSERT ((__zephyr_init_array_start == __zephyr_init_array_end), GNU-style constructors required but STATIC_INIT_GNU not enabled) + +initlevel 0x3c011c24 0x70 load address 0x00021c24 + 0x3c011c24 __init_start = . + 0x3c011c24 __init_EARLY_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY_P_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY_P_???_*))) + 0x3c011c24 __init_PRE_KERNEL_1_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1_P_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1_P_??_*))) + .z_init_PRE_KERNEL_1_P_30_SUB_00034_ + 0x3c011c24 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .z_init_PRE_KERNEL_1_P_30_SUB_0_ + 0x3c011c2c 0x8 zephyr/kernel/libkernel.a(kheap.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00015_ + 0x3c011c34 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00094_ + 0x3c011c3c 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .z_init_PRE_KERNEL_1_P_50_SUB_00064_ + 0x3c011c44 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .z_init_PRE_KERNEL_1_P_50_SUB_00067_ + 0x3c011c4c 0x8 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .z_init_PRE_KERNEL_1_P_60_SUB_0_ + 0x3c011c54 0x8 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1_P_???_*))) + 0x3c011c5c __init_PRE_KERNEL_2_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2_P_?_*))) + .z_init_PRE_KERNEL_2_P_0_SUB_0_ + 0x3c011c5c 0x8 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2_P_???_*))) + 0x3c011c64 __init_POST_KERNEL_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL_P_?_*))) + .z_init_POST_KERNEL_P_0_SUB_0_ + 0x3c011c64 0x8 zephyr/libzephyr.a(log_core.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL_P_??_*))) + .z_init_POST_KERNEL_P_35_SUB_0_ + 0x3c011c6c 0x8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .z_init_POST_KERNEL_P_40_SUB_0_ + 0x3c011c74 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .z_init_POST_KERNEL_P_40_SUB_0_ + 0x3c011c7c 0x8 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .z_init_POST_KERNEL_P_50_SUB_00103_ + 0x3c011c84 0x8 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .z_init_POST_KERNEL_P_90_SUB_00104_ + 0x3c011c8c 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL_P_???_*))) + 0x3c011c94 __init_APPLICATION_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION_P_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION_P_???_*))) + 0x3c011c94 __init_SMP_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP_P_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP_P_???_*))) + 0x3c011c94 __init_end = . + +device_area 0x3c011c94 0xc4 load address 0x00021c94 + 0x3c011c94 _device_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_??_*))) + ._device.static.1_30_ + 0x3c011c94 0x1c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x3c011c94 __device_dts_ord_34 + ._device.static.1_40_ + 0x3c011cb0 0x38 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x3c011cb0 __device_dts_ord_94 + 0x3c011ccc __device_dts_ord_15 + ._device.static.1_50_ + 0x3c011ce8 0x1c zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x3c011ce8 __device_dts_ord_67 + ._device.static.1_50_ + 0x3c011d04 0x1c zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x3c011d04 __device_dts_ord_64 + ._device.static.3_50_ + 0x3c011d20 0x1c zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x3c011d20 __device_dts_ord_103 + ._device.static.3_90_ + 0x3c011d3c 0x1c zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3c011d3c __device_dts_ord_104 + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_???_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_????_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_?????_*))) + 0x3c011d58 _device_list_end = . + +initlevel_error + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_*))) + 0x00000001 ASSERT ((SIZEOF (initlevel_error) == 0x0), Undefined initialization levels used.) + +app_shmem_regions + 0x3c011d58 0x0 load address 0x00021d58 + 0x3c011d58 __app_shmem_regions_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.app_regions.*))) + 0x3c011d58 __app_shmem_regions_end = . + +k_p4wq_initparam_area + 0x3c011d58 0x0 load address 0x00021d58 + 0x3c011d58 _k_p4wq_initparam_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_p4wq_initparam.static.*))) + 0x3c011d58 _k_p4wq_initparam_list_end = . + +_static_thread_data_area + 0x3c011d58 0x0 load address 0x00021d58 + 0x3c011d58 __static_thread_data_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.__static_thread_data.static.*))) + 0x3c011d58 __static_thread_data_list_end = . + +device_deps 0x3c011d58 0x0 load address 0x00021d58 + 0x3c011d58 __device_deps_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.__device_deps_pass2*))) + 0x3c011d58 __device_deps_end = . + +gpio_driver_api_area + 0x3c011d58 0x24 load address 0x00021d58 + 0x3c011d58 _gpio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._gpio_driver_api.static.*))) + ._gpio_driver_api.static.gpio_esp32_driver_api_ + 0x3c011d58 0x24 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x3c011d7c _gpio_driver_api_list_end = . + +spi_driver_api_area + 0x3c011d7c 0x8 load address 0x00021d7c + 0x3c011d7c _spi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._spi_driver_api.static.*))) + ._spi_driver_api.static.spi_api_ + 0x3c011d7c 0x8 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x3c011d84 _spi_driver_api_list_end = . + +shared_irq_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _shared_irq_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shared_irq_driver_api.static.*))) + 0x3c011d84 _shared_irq_driver_api_list_end = . + +crypto_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _crypto_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._crypto_driver_api.static.*))) + 0x3c011d84 _crypto_driver_api_list_end = . + +adc_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _adc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._adc_driver_api.static.*))) + 0x3c011d84 _adc_driver_api_list_end = . + +auxdisplay_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _auxdisplay_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._auxdisplay_driver_api.static.*))) + 0x3c011d84 _auxdisplay_driver_api_list_end = . + +bbram_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _bbram_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bbram_driver_api.static.*))) + 0x3c011d84 _bbram_driver_api_list_end = . + +biometric_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _biometric_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._biometric_driver_api.static.*))) + 0x3c011d84 _biometric_driver_api_list_end = . + +bt_hci_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _bt_hci_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_hci_driver_api.static.*))) + 0x3c011d84 _bt_hci_driver_api_list_end = . + +can_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _can_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._can_driver_api.static.*))) + 0x3c011d84 _can_driver_api_list_end = . + +cellular_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _cellular_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._cellular_driver_api.static.*))) + 0x3c011d84 _cellular_driver_api_list_end = . + +charger_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _charger_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._charger_driver_api.static.*))) + 0x3c011d84 _charger_driver_api_list_end = . + +clock_control_driver_api_area + 0x3c011d84 0x1c load address 0x00021d84 + 0x3c011d84 _clock_control_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._clock_control_driver_api.static.*))) + ._clock_control_driver_api.static.clock_control_esp32_api_ + 0x3c011d84 0x1c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x3c011da0 _clock_control_driver_api_list_end = . + +comparator_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _comparator_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._comparator_driver_api.static.*))) + 0x3c011da0 _comparator_driver_api_list_end = . + +coredump_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _coredump_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._coredump_driver_api.static.*))) + 0x3c011da0 _coredump_driver_api_list_end = . + +counter_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _counter_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._counter_driver_api.static.*))) + 0x3c011da0 _counter_driver_api_list_end = . + +crc_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _crc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._crc_driver_api.static.*))) + 0x3c011da0 _crc_driver_api_list_end = . + +dac_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _dac_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dac_driver_api.static.*))) + 0x3c011da0 _dac_driver_api_list_end = . + +dai_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _dai_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dai_driver_api.static.*))) + 0x3c011da0 _dai_driver_api_list_end = . + +display_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _display_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._display_driver_api.static.*))) + 0x3c011da0 _display_driver_api_list_end = . + +dma_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _dma_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dma_driver_api.static.*))) + 0x3c011da0 _dma_driver_api_list_end = . + +edac_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _edac_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._edac_driver_api.static.*))) + 0x3c011da0 _edac_driver_api_list_end = . + +eeprom_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _eeprom_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._eeprom_driver_api.static.*))) + 0x3c011da0 _eeprom_driver_api_list_end = . + +emul_bbram_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _emul_bbram_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._emul_bbram_driver_api.static.*))) + 0x3c011da0 _emul_bbram_driver_api_list_end = . + +fuel_gauge_emul_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _fuel_gauge_emul_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fuel_gauge_emul_driver_api.static.*))) + 0x3c011da0 _fuel_gauge_emul_driver_api_list_end = . + +emul_sensor_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _emul_sensor_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._emul_sensor_driver_api.static.*))) + 0x3c011da0 _emul_sensor_driver_api_list_end = . + +entropy_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _entropy_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._entropy_driver_api.static.*))) + 0x3c011da0 _entropy_driver_api_list_end = . + +espi_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _espi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._espi_driver_api.static.*))) + 0x3c011da0 _espi_driver_api_list_end = . + +espi_saf_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _espi_saf_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._espi_saf_driver_api.static.*))) + 0x3c011da0 _espi_saf_driver_api_list_end = . + +flash_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _flash_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._flash_driver_api.static.*))) + 0x3c011da0 _flash_driver_api_list_end = . + +fpga_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _fpga_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fpga_driver_api.static.*))) + 0x3c011da0 _fpga_driver_api_list_end = . + +fuel_gauge_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _fuel_gauge_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fuel_gauge_driver_api.static.*))) + 0x3c011da0 _fuel_gauge_driver_api_list_end = . + +gnss_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _gnss_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._gnss_driver_api.static.*))) + 0x3c011da0 _gnss_driver_api_list_end = . + +haptics_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _haptics_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._haptics_driver_api.static.*))) + 0x3c011da0 _haptics_driver_api_list_end = . + +hwspinlock_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _hwspinlock_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._hwspinlock_driver_api.static.*))) + 0x3c011da0 _hwspinlock_driver_api_list_end = . + +i2c_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _i2c_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2c_driver_api.static.*))) + 0x3c011da0 _i2c_driver_api_list_end = . + +i2c_target_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _i2c_target_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2c_target_driver_api.static.*))) + 0x3c011da0 _i2c_target_driver_api_list_end = . + +i2s_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _i2s_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2s_driver_api.static.*))) + 0x3c011da0 _i2s_driver_api_list_end = . + +i3c_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _i3c_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i3c_driver_api.static.*))) + 0x3c011da0 _i3c_driver_api_list_end = . + +ipm_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _ipm_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ipm_driver_api.static.*))) + 0x3c011da0 _ipm_driver_api_list_end = . + +led_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _led_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._led_driver_api.static.*))) + 0x3c011da0 _led_driver_api_list_end = . + +led_strip_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _led_strip_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._led_strip_driver_api.static.*))) + 0x3c011da0 _led_strip_driver_api_list_end = . + +lora_driver_api_area + 0x3c011da0 0x28 load address 0x00021da0 + 0x3c011da0 _lora_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._lora_driver_api.static.*))) + ._lora_driver_api.static.sx126x_lora_api_ + 0x3c011da0 0x28 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3c011dc8 _lora_driver_api_list_end = . + +mbox_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _mbox_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mbox_driver_api.static.*))) + 0x3c011dc8 _mbox_driver_api_list_end = . + +mdio_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _mdio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mdio_driver_api.static.*))) + 0x3c011dc8 _mdio_driver_api_list_end = . + +mipi_dbi_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _mipi_dbi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mipi_dbi_driver_api.static.*))) + 0x3c011dc8 _mipi_dbi_driver_api_list_end = . + +mipi_dsi_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _mipi_dsi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mipi_dsi_driver_api.static.*))) + 0x3c011dc8 _mipi_dsi_driver_api_list_end = . + +mspi_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _mspi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mspi_driver_api.static.*))) + 0x3c011dc8 _mspi_driver_api_list_end = . + +opamp_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _opamp_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._opamp_driver_api.static.*))) + 0x3c011dc8 _opamp_driver_api_list_end = . + +otp_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _otp_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._otp_driver_api.static.*))) + 0x3c011dc8 _otp_driver_api_list_end = . + +peci_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _peci_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._peci_driver_api.static.*))) + 0x3c011dc8 _peci_driver_api_list_end = . + +ps2_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _ps2_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ps2_driver_api.static.*))) + 0x3c011dc8 _ps2_driver_api_list_end = . + +ptp_clock_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _ptp_clock_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ptp_clock_driver_api.static.*))) + 0x3c011dc8 _ptp_clock_driver_api_list_end = . + +pwm_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _pwm_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pwm_driver_api.static.*))) + 0x3c011dc8 _pwm_driver_api_list_end = . + +regulator_parent_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _regulator_parent_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._regulator_parent_driver_api.static.*))) + 0x3c011dc8 _regulator_parent_driver_api_list_end = . + +regulator_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _regulator_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._regulator_driver_api.static.*))) + 0x3c011dc8 _regulator_driver_api_list_end = . + +reset_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _reset_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._reset_driver_api.static.*))) + 0x3c011dc8 _reset_driver_api_list_end = . + +retained_mem_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _retained_mem_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._retained_mem_driver_api.static.*))) + 0x3c011dc8 _retained_mem_driver_api_list_end = . + +rtc_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _rtc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._rtc_driver_api.static.*))) + 0x3c011dc8 _rtc_driver_api_list_end = . + +sdhc_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _sdhc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sdhc_driver_api.static.*))) + 0x3c011dc8 _sdhc_driver_api_list_end = . + +sensor_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _sensor_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sensor_driver_api.static.*))) + 0x3c011dc8 _sensor_driver_api_list_end = . + +smbus_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _smbus_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._smbus_driver_api.static.*))) + 0x3c011dc8 _smbus_driver_api_list_end = . + +syscon_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _syscon_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._syscon_driver_api.static.*))) + 0x3c011dc8 _syscon_driver_api_list_end = . + +tee_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _tee_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tee_driver_api.static.*))) + 0x3c011dc8 _tee_driver_api_list_end = . + +uaol_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _uaol_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._uaol_driver_api.static.*))) + 0x3c011dc8 _uaol_driver_api_list_end = . + +video_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _video_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._video_driver_api.static.*))) + 0x3c011dc8 _video_driver_api_list_end = . + +virtio_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _virtio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._virtio_driver_api.static.*))) + 0x3c011dc8 _virtio_driver_api_list_end = . + +w1_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _w1_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._w1_driver_api.static.*))) + 0x3c011dc8 _w1_driver_api_list_end = . + +wdt_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _wdt_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._wdt_driver_api.static.*))) + 0x3c011dc8 _wdt_driver_api_list_end = . + +wuc_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _wuc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._wuc_driver_api.static.*))) + 0x3c011dc8 _wuc_driver_api_list_end = . + +can_transceiver_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _can_transceiver_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._can_transceiver_driver_api.static.*))) + 0x3c011dc8 _can_transceiver_driver_api_list_end = . + +nrf_clock_control_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _nrf_clock_control_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._nrf_clock_control_driver_api.static.*))) + 0x3c011dc8 _nrf_clock_control_driver_api_list_end = . + +i3c_target_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _i3c_target_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i3c_target_driver_api.static.*))) + 0x3c011dc8 _i3c_target_driver_api_list_end = . + +its_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _its_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._its_driver_api.static.*))) + 0x3c011dc8 _its_driver_api_list_end = . + +vtd_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _vtd_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._vtd_driver_api.static.*))) + 0x3c011dc8 _vtd_driver_api_list_end = . + +renesas_elc_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _renesas_elc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._renesas_elc_driver_api.static.*))) + 0x3c011dc8 _renesas_elc_driver_api_list_end = . + +tgpio_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _tgpio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tgpio_driver_api.static.*))) + 0x3c011dc8 _tgpio_driver_api_list_end = . + +pcie_ctrl_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _pcie_ctrl_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pcie_ctrl_driver_api.static.*))) + 0x3c011dc8 _pcie_ctrl_driver_api_list_end = . + +pcie_ep_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _pcie_ep_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pcie_ep_driver_api.static.*))) + 0x3c011dc8 _pcie_ep_driver_api_list_end = . + +psi5_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _psi5_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._psi5_driver_api.static.*))) + 0x3c011dc8 _psi5_driver_api_list_end = . + +sent_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _sent_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sent_driver_api.static.*))) + 0x3c011dc8 _sent_driver_api_list_end = . + +svc_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _svc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._svc_driver_api.static.*))) + 0x3c011dc8 _svc_driver_api_list_end = . + +stepper_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _stepper_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._stepper_driver_api.static.*))) + 0x3c011dc8 _stepper_driver_api_list_end = . + +stepper_ctrl_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _stepper_ctrl_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._stepper_ctrl_driver_api.static.*))) + 0x3c011dc8 _stepper_ctrl_driver_api_list_end = . + +uart_driver_api_area + 0x3c011dc8 0x98 load address 0x00021dc8 + 0x3c011dc8 _uart_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._uart_driver_api.static.*))) + ._uart_driver_api.static.serial_esp32_usb_api_ + 0x3c011dc8 0x4c zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + ._uart_driver_api.static.uart_esp32_api_ + 0x3c011e14 0x4c zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x3c011e60 _uart_driver_api_list_end = . + +bc12_emul_driver_api_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _bc12_emul_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bc12_emul_driver_api.static.*))) + 0x3c011e60 _bc12_emul_driver_api_list_end = . + +bc12_driver_api_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _bc12_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bc12_driver_api.static.*))) + 0x3c011e60 _bc12_driver_api_list_end = . + +usbc_ppc_driver_api_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _usbc_ppc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usbc_ppc_driver_api.static.*))) + 0x3c011e60 _usbc_ppc_driver_api_list_end = . + +tcpc_driver_api_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _tcpc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tcpc_driver_api.static.*))) + 0x3c011e60 _tcpc_driver_api_list_end = . + +usbc_vbus_driver_api_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _usbc_vbus_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usbc_vbus_driver_api.static.*))) + 0x3c011e60 _usbc_vbus_driver_api_list_end = . + +ivshmem_driver_api_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _ivshmem_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ivshmem_driver_api.static.*))) + 0x3c011e60 _ivshmem_driver_api_list_end = . + +ethphy_driver_api_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _ethphy_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ethphy_driver_api.static.*))) + 0x3c011e60 _ethphy_driver_api_list_end = . + +ztest 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _ztest_expected_result_entry_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_expected_result_entry.static.*))) + 0x3c011e60 _ztest_expected_result_entry_list_end = . + 0x3c011e60 _ztest_suite_node_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_suite_node.static.*))) + 0x3c011e60 _ztest_suite_node_list_end = . + 0x3c011e60 _ztest_unit_test_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_unit_test.static.*))) + 0x3c011e60 _ztest_unit_test_list_end = . + 0x3c011e60 _ztest_test_rule_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_test_rule.static.*))) + 0x3c011e60 _ztest_test_rule_list_end = . + +bt_l2cap_fixed_chan_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _bt_l2cap_fixed_chan_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_l2cap_fixed_chan.static.*))) + 0x3c011e60 _bt_l2cap_fixed_chan_list_end = . + +bt_gatt_service_static_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _bt_gatt_service_static_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_gatt_service_static.static.*))) + 0x3c011e60 _bt_gatt_service_static_list_end = . + +tracing_backend_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _tracing_backend_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tracing_backend.static.*))) + 0x3c011e60 _tracing_backend_list_end = . + +zephyr_dbg_info + *(SORT_BY_ALIGNMENT(.dbg_thread_info)) + +symbol_to_keep 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 __symbol_to_keep_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.symbol_to_keep*))) + 0x3c011e60 __symbol_to_keep_end = . + +shell_area 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _shell_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell.static.*))) + 0x3c011e60 _shell_list_end = . + +shell_root_cmds_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _shell_root_cmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_root_cmds.static.*))) + 0x3c011e60 _shell_root_cmds_list_end = . + +shell_subcmds_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _shell_subcmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_subcmds.static.*))) + 0x3c011e60 _shell_subcmds_list_end = . + +shell_dynamic_subcmds_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _shell_dynamic_subcmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_dynamic_subcmds.static.*))) + 0x3c011e60 _shell_dynamic_subcmds_list_end = . + +cfb_font_area 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _cfb_font_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._cfb_font.static.*))) + 0x3c011e60 _cfb_font_list_end = . + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.irq_info*)) + *(SORT_BY_ALIGNMENT(.intList*)) + +.flash.rodata_end + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 . = ALIGN (0x4) + 0x3c011e60 _rodata_reserved_end = ABSOLUTE (.) + 0x3c011e60 _image_rodata_end = ABSOLUTE (.) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.irq_info*)) + *(SORT_BY_ALIGNMENT(.intList*)) + +.stab + *(SORT_BY_ALIGNMENT(.stab)) + +.stabstr + *(SORT_BY_ALIGNMENT(.stabstr)) + +.stab.excl + *(SORT_BY_ALIGNMENT(.stab.excl)) + +.stab.exclstr + *(SORT_BY_ALIGNMENT(.stab.exclstr)) + +.stab.index + *(SORT_BY_ALIGNMENT(.stab.index)) + +.stab.indexstr + *(SORT_BY_ALIGNMENT(.stab.indexstr)) + +.gnu.build.attributes + *(SORT_BY_ALIGNMENT(.gnu.build.attributes) SORT_BY_ALIGNMENT(.gnu.build.attributes.*)) + +.comment 0x00000000 0x1f + *(SORT_BY_ALIGNMENT(.comment)) + .comment 0x00000000 0x1f zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + 0x20 (size before relaxing) + .comment 0x0000001f 0x20 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .comment 0x0000001f 0x20 app/libapp.a(main.c.obj) + .comment 0x0000001f 0x20 app/libapp.a(kiss.c.obj) + .comment 0x0000001f 0x20 app/libapp.a(lora_modem.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(heap.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(printk.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(thread_entry.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(getopt.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(configs.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(soc.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(loader.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(hw_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(log_core.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(log_msg.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(log_output.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(log_backend_uart.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_flash_api.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(flash_mmap.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(flash_ops.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(cache_utils.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(uart_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(console_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(soc_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(systimer_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_clk.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(periph_ctrl.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(rtc_clk.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(rtc_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(rtc_sleep.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(rtc_time.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(systimer.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(rtc_module.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(sleep_modes.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(ext_mem_layout.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(clk.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(reset_reason.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_timer_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(efuse_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(cache_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(efuse_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(mmu_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(gpio_periph.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(flash_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(bootloader_flash.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(soc_flash_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(soc_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(soc_random.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/common/libarch__common.a(init.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .comment 0x0000001f 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .comment 0x0000001f 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .comment 0x0000001f 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .comment 0x0000001f 0x20 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .comment 0x0000001f 0x20 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(device.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(fatal.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(init.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(idle.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(mutex.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(sem.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(work.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(thread.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(sched.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(timeout.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(timer.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(poll.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(mempool.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(banner.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(kheap.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug + *(SORT_BY_ALIGNMENT(.debug)) + +.line + *(SORT_BY_ALIGNMENT(.line)) + +.debug_srcinfo + *(SORT_BY_ALIGNMENT(.debug_srcinfo)) + +.debug_sfnames + *(SORT_BY_ALIGNMENT(.debug_sfnames)) + +.debug_aranges 0x00000000 0x3808 + *(SORT_BY_ALIGNMENT(.debug_aranges)) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_aranges + 0x00000020 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .debug_aranges + 0x00000040 0x70 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .debug_aranges + 0x000000b0 0x18 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_aranges + 0x000000c8 0x20 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .debug_aranges + 0x000000e8 0x40 app/libapp.a(main.c.obj) + .debug_aranges + 0x00000128 0x38 app/libapp.a(kiss.c.obj) + .debug_aranges + 0x00000160 0x68 app/libapp.a(lora_modem.c.obj) + .debug_aranges + 0x000001c8 0xd0 zephyr/libzephyr.a(heap.c.obj) + .debug_aranges + 0x00000298 0x40 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_aranges + 0x000002d8 0x48 zephyr/libzephyr.a(printk.c.obj) + .debug_aranges + 0x00000320 0x20 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_aranges + 0x00000340 0xb0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_aranges + 0x000003f0 0x28 zephyr/libzephyr.a(getopt.c.obj) + .debug_aranges + 0x00000418 0x20 zephyr/libzephyr.a(configs.c.obj) + .debug_aranges + 0x00000438 0x38 zephyr/libzephyr.a(soc.c.obj) + .debug_aranges + 0x00000470 0x28 zephyr/libzephyr.a(loader.c.obj) + .debug_aranges + 0x00000498 0x20 zephyr/libzephyr.a(hw_init.c.obj) + .debug_aranges + 0x000004b8 0x178 zephyr/libzephyr.a(log_core.c.obj) + .debug_aranges + 0x00000630 0xb8 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_aranges + 0x000006e8 0x60 zephyr/libzephyr.a(log_msg.c.obj) + .debug_aranges + 0x00000748 0x70 zephyr/libzephyr.a(log_output.c.obj) + .debug_aranges + 0x000007b8 0x48 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_aranges + 0x00000800 0x48 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_aranges + 0x00000848 0x38 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_aranges + 0x00000880 0xb8 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_aranges + 0x00000938 0x60 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_aranges + 0x00000998 0x40 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_aranges + 0x000009d8 0x120 zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_aranges + 0x00000af8 0x48 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_aranges + 0x00000b40 0x58 zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_aranges + 0x00000b98 0x58 zephyr/libzephyr.a(flash_ops.c.obj) + .debug_aranges + 0x00000bf0 0x78 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_aranges + 0x00000c68 0x28 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_aranges + 0x00000c90 0x20 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .debug_aranges + 0x00000cb0 0x48 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_aranges + 0x00000cf8 0x110 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_aranges + 0x00000e08 0x38 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_aranges + 0x00000e40 0x30 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_aranges + 0x00000e70 0x90 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_aranges + 0x00000f00 0x28 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_aranges + 0x00000f28 0x50 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_aranges + 0x00000f78 0x40 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_aranges + 0x00000fb8 0x90 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_aranges + 0x00001048 0x88 zephyr/libzephyr.a(cache_utils.c.obj) + .debug_aranges + 0x000010d0 0xf0 zephyr/libzephyr.a(uart_hal.c.obj) + .debug_aranges + 0x000011c0 0x40 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_aranges + 0x00001200 0x48 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_aranges + 0x00001248 0x98 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_aranges + 0x000012e0 0x28 zephyr/libzephyr.a(console_init.c.obj) + .debug_aranges + 0x00001308 0x38 zephyr/libzephyr.a(soc_init.c.obj) + .debug_aranges + 0x00001340 0xd0 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_aranges + 0x00001410 0x50 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_aranges + 0x00001460 0x18 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .debug_aranges + 0x00001478 0x90 zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_aranges + 0x00001508 0x70 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_aranges + 0x00001578 0x68 zephyr/libzephyr.a(esp_clk.c.obj) + .debug_aranges + 0x000015e0 0x68 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_aranges + 0x00001648 0x28 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_aranges + 0x00001670 0xb8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_aranges + 0x00001728 0x40 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_aranges + 0x00001768 0x20 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_aranges + 0x00001788 0x120 zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_aranges + 0x000018a8 0x38 zephyr/libzephyr.a(rtc_init.c.obj) + .debug_aranges + 0x000018e0 0x40 zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_aranges + 0x00001920 0x58 zephyr/libzephyr.a(rtc_time.c.obj) + .debug_aranges + 0x00001978 0x88 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_aranges + 0x00001a00 0x28 zephyr/libzephyr.a(systimer.c.obj) + .debug_aranges + 0x00001a28 0x40 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_aranges + 0x00001a68 0x68 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_aranges + 0x00001ad0 0x40 zephyr/libzephyr.a(rtc_module.c.obj) + .debug_aranges + 0x00001b10 0x1f8 zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_aranges + 0x00001d08 0x40 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_aranges + 0x00001d48 0x48 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_aranges + 0x00001d90 0xa0 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_aranges + 0x00001e30 0x18 zephyr/libzephyr.a(ext_mem_layout.c.obj) + .debug_aranges + 0x00001e48 0x48 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_aranges + 0x00001e90 0x20 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_aranges + 0x00001eb0 0x20 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .debug_aranges + 0x00001ed0 0x30 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .debug_aranges + 0x00001f00 0x40 zephyr/libzephyr.a(clk.c.obj) + .debug_aranges + 0x00001f40 0x38 zephyr/libzephyr.a(reset_reason.c.obj) + .debug_aranges + 0x00001f78 0x68 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_aranges + 0x00001fe0 0x30 zephyr/libzephyr.a(esp_timer_init.c.obj) + .debug_aranges + 0x00002010 0x58 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_aranges + 0x00002068 0x88 zephyr/libzephyr.a(cache_hal.c.obj) + .debug_aranges + 0x000020f0 0x50 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_aranges + 0x00002140 0x68 zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_aranges + 0x000021a8 0x18 zephyr/libzephyr.a(gpio_periph.c.obj) + .debug_aranges + 0x000021c0 0x30 zephyr/libzephyr.a(flash_init.c.obj) + .debug_aranges + 0x000021f0 0xe8 zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_aranges + 0x000022d8 0x48 zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_aranges + 0x00002320 0x68 zephyr/libzephyr.a(soc_init.c.obj) + .debug_aranges + 0x00002388 0x28 zephyr/libzephyr.a(soc_random.c.obj) + .debug_aranges + 0x000023b0 0x20 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_aranges + 0x000023d0 0x28 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_aranges + 0x000023f8 0x30 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_aranges + 0x00002428 0x28 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .debug_aranges + 0x00002450 0x30 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_aranges + 0x00002480 0x38 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_aranges + 0x000024b8 0x28 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_aranges + 0x000024e0 0x90 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_aranges + 0x00002570 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .debug_aranges + 0x00002590 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_aranges + 0x000025b0 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_aranges + 0x000025d8 0x38 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_aranges + 0x00002610 0x20 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_aranges + 0x00002630 0x60 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_aranges + 0x00002690 0xa0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_aranges + 0x00002730 0x58 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_aranges + 0x00002788 0x30 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_aranges + 0x000027b8 0x80 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_aranges + 0x00002838 0xf0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_aranges + 0x00002928 0xa8 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_aranges + 0x000029d0 0x88 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_aranges + 0x00002a58 0x78 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_aranges + 0x00002ad0 0x88 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_aranges + 0x00002b58 0x28 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_aranges + 0x00002b80 0x188 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_aranges + 0x00002d08 0x120 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_aranges + 0x00002e28 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_aranges + 0x00002e48 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_aranges + 0x00002e68 0xb0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_aranges + 0x00002f18 0xc0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_aranges + 0x00002fd8 0x68 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_aranges + 0x00003040 0x48 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_aranges + 0x00003088 0x20 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_aranges + 0x000030a8 0x48 zephyr/kernel/libkernel.a(device.c.obj) + .debug_aranges + 0x000030f0 0x38 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_aranges + 0x00003128 0x40 zephyr/kernel/libkernel.a(init.c.obj) + .debug_aranges + 0x00003168 0x28 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_aranges + 0x00003190 0x38 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_aranges + 0x000031c8 0x38 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_aranges + 0x00003200 0x120 zephyr/kernel/libkernel.a(work.c.obj) + .debug_aranges + 0x00003320 0x90 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_aranges + 0x000033b0 0x190 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_aranges + 0x00003540 0x40 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_aranges + 0x00003580 0x98 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_aranges + 0x00003618 0x48 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_aranges + 0x00003660 0xa0 zephyr/kernel/libkernel.a(poll.c.obj) + .debug_aranges + 0x00003700 0x68 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_aranges + 0x00003768 0x20 zephyr/kernel/libkernel.a(banner.c.obj) + .debug_aranges + 0x00003788 0x60 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_aranges + 0x000037e8 0x20 zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_pubnames + *(SORT_BY_ALIGNMENT(.debug_pubnames)) + +.debug_info 0x00000000 0x171226 + *(SORT_BY_ALIGNMENT(.debug_info) SORT_BY_ALIGNMENT(.gnu.linkonce.wi.*)) + .debug_info 0x00000000 0x10c zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_info 0x0000010c 0xdc zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .debug_info 0x000001e8 0xb0cd app/libapp.a(main.c.obj) + .debug_info 0x0000b2b5 0x34f app/libapp.a(kiss.c.obj) + .debug_info 0x0000b604 0x6acb app/libapp.a(lora_modem.c.obj) + .debug_info 0x000120cf 0x8d28 zephyr/libzephyr.a(heap.c.obj) + .debug_info 0x0001adf7 0x2278 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_info 0x0001d06f 0x469 zephyr/libzephyr.a(printk.c.obj) + .debug_info 0x0001d4d8 0x637 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_info 0x0001db0f 0x1f07 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_info 0x0001fa16 0x1854 zephyr/libzephyr.a(getopt.c.obj) + .debug_info 0x0002126a 0x38 zephyr/libzephyr.a(configs.c.obj) + .debug_info 0x000212a2 0x224 zephyr/libzephyr.a(soc.c.obj) + .debug_info 0x000214c6 0x12d9 zephyr/libzephyr.a(loader.c.obj) + .debug_info 0x0002279f 0x5c2 zephyr/libzephyr.a(hw_init.c.obj) + .debug_info 0x00022d61 0x4557 zephyr/libzephyr.a(log_core.c.obj) + .debug_info 0x000272b8 0x21d9 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_info 0x00029491 0x2777 zephyr/libzephyr.a(log_msg.c.obj) + .debug_info 0x0002bc08 0x208c zephyr/libzephyr.a(log_output.c.obj) + .debug_info 0x0002dc94 0x1b5f zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_info 0x0002f7f3 0x44f zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_info 0x0002fc42 0x5120 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_info 0x00034d62 0x6917 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_info 0x0003b679 0x5808 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_info 0x00040e81 0x1128 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_info 0x00041fa9 0x482b zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_info 0x000467d4 0x73b4 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_info 0x0004db88 0xf03 zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_info 0x0004ea8b 0x570 zephyr/libzephyr.a(flash_ops.c.obj) + .debug_info 0x0004effb 0x56ef zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_info 0x000546ea 0xf1a zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_info 0x00055604 0xcd9 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .debug_info 0x000562dd 0x1195 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_info 0x00057472 0x2bdf zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_info 0x0005a051 0x103e zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_info 0x0005b08f 0x11ee zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_info 0x0005c27d 0x1c1b zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_info 0x0005de98 0xf1a zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_info 0x0005edb2 0x1632 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_info 0x000603e4 0x9cd zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_info 0x00060db1 0x1151 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_info 0x00061f02 0x12c1 zephyr/libzephyr.a(cache_utils.c.obj) + .debug_info 0x000631c3 0x2fa8 zephyr/libzephyr.a(uart_hal.c.obj) + .debug_info 0x0006616b 0x1c8e zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_info 0x00067df9 0x2235 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_info 0x0006a02e 0x38d0 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_info 0x0006d8fe 0x16d zephyr/libzephyr.a(console_init.c.obj) + .debug_info 0x0006da6b 0x8927 zephyr/libzephyr.a(soc_init.c.obj) + .debug_info 0x00076392 0x3e38 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_info 0x0007a1ca 0xaab zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_info 0x0007ac75 0x1ce zephyr/libzephyr.a(rtc_io_periph.c.obj) + .debug_info 0x0007ae43 0x1980 zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_info 0x0007c7c3 0x5c10 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_info 0x000823d3 0xaee zephyr/libzephyr.a(esp_clk.c.obj) + .debug_info 0x00082ec1 0x614 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_info 0x000834d5 0x46d zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_info 0x00083942 0x85df zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_info 0x0008bf21 0x855 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_info 0x0008c776 0x1da zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_info 0x0008c950 0x399d zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_info 0x000902ed 0x4a57 zephyr/libzephyr.a(rtc_init.c.obj) + .debug_info 0x00094d44 0x4479 zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_info 0x000991bd 0x1409 zephyr/libzephyr.a(rtc_time.c.obj) + .debug_info 0x0009a5c6 0x7393 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_info 0x000a1959 0xdd zephyr/libzephyr.a(systimer.c.obj) + .debug_info 0x000a1a36 0x525 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_info 0x000a1f5b 0xc72 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_info 0x000a2bcd 0x46e0 zephyr/libzephyr.a(rtc_module.c.obj) + .debug_info 0x000a72ad 0xaf13 zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_info 0x000b21c0 0x89c zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_info 0x000b2a5c 0x4a0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_info 0x000b2efc 0x2c57 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_info 0x000b5b53 0x1ba zephyr/libzephyr.a(ext_mem_layout.c.obj) + .debug_info 0x000b5d0d 0x56a zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_info 0x000b6277 0x30 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_info 0x000b62a7 0x37a zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_info 0x000b6621 0x2e3 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .debug_info 0x000b6904 0x1b4 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .debug_info 0x000b6ab8 0xd8b zephyr/libzephyr.a(clk.c.obj) + .debug_info 0x000b7843 0x44b zephyr/libzephyr.a(reset_reason.c.obj) + .debug_info 0x000b7c8e 0x6bc8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_info 0x000be856 0x14e zephyr/libzephyr.a(esp_timer_init.c.obj) + .debug_info 0x000be9a4 0x3f31 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_info 0x000c28d5 0x16bf zephyr/libzephyr.a(cache_hal.c.obj) + .debug_info 0x000c3f94 0x3a6c zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_info 0x000c7a00 0xdd2 zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_info 0x000c87d2 0xd1 zephyr/libzephyr.a(gpio_periph.c.obj) + .debug_info 0x000c88a3 0x3d77 zephyr/libzephyr.a(flash_init.c.obj) + .debug_info 0x000cc61a 0x8e24 zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_info 0x000d543e 0x8b0 zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_info 0x000d5cee 0x4629 zephyr/libzephyr.a(soc_init.c.obj) + .debug_info 0x000da317 0x8f1b zephyr/libzephyr.a(soc_random.c.obj) + .debug_info 0x000e3232 0xba zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_info 0x000e32ec 0x1e4 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_info 0x000e34d0 0x1d7 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_info 0x000e36a7 0xb8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .debug_info 0x000e375f 0x351 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_info 0x000e3ab0 0x24 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .debug_info 0x000e3ad4 0x22 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .debug_info 0x000e3af6 0x1118 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_info 0x000e4c0e 0x9b7 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_info 0x000e55c5 0xdc4a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_info 0x000f320f 0x5f7 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .debug_info 0x000f3806 0xa5 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_info 0x000f38ab 0x317 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_info 0x000f3bc2 0x3c3 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_info 0x000f3f85 0x121 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_info 0x000f40a6 0xe05 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_info 0x000f4eab 0x2e5b zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_info 0x000f7d06 0xaa89 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_info 0x0010278f 0x977 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_info 0x00103106 0x68da zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_info 0x001099e0 0x11d8b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_info 0x0011b76b 0xd9f zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_info 0x0011c50a 0x6626 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_info 0x00122b30 0x2a38 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_info 0x00125568 0x830 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_info 0x00125d98 0x13a zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_info 0x00125ed2 0x22a2 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_info 0x00128174 0x313a zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_info 0x0012b2ae 0x1b2 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_info 0x0012b460 0x2580 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_info 0x0012d9e0 0x2217 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_info 0x0012fbf7 0x5c6c zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_info 0x00135863 0x14207 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_info 0x00149a6a 0x9de zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_info 0x0014a448 0x1ab zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_info 0x0014a5f3 0x3f7 zephyr/kernel/libkernel.a(device.c.obj) + .debug_info 0x0014a9ea 0x29df zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_info 0x0014d3c9 0x16c8 zephyr/kernel/libkernel.a(init.c.obj) + .debug_info 0x0014ea91 0x246 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_info 0x0014ecd7 0x7e8b zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_info 0x00156b62 0x1232 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_info 0x00157d94 0x51e7 zephyr/kernel/libkernel.a(work.c.obj) + .debug_info 0x0015cf7b 0x2aef zephyr/kernel/libkernel.a(thread.c.obj) + .debug_info 0x0015fa6a 0x8c10 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_info 0x0016867a 0xcfd zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_info 0x00169377 0x1564 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_info 0x0016a8db 0x1355 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_info 0x0016bc30 0x2dad zephyr/kernel/libkernel.a(poll.c.obj) + .debug_info 0x0016e9dd 0xf45 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_info 0x0016f922 0xc5 zephyr/kernel/libkernel.a(banner.c.obj) + .debug_info 0x0016f9e7 0xf79 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_info 0x00170960 0x8c6 zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_abbrev 0x00000000 0x1f96a + *(SORT_BY_ALIGNMENT(.debug_abbrev)) + .debug_abbrev 0x00000000 0xc3 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_abbrev 0x000000c3 0x62 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .debug_abbrev 0x00000125 0x650 app/libapp.a(main.c.obj) + .debug_abbrev 0x00000775 0x1bf app/libapp.a(kiss.c.obj) + .debug_abbrev 0x00000934 0x561 app/libapp.a(lora_modem.c.obj) + .debug_abbrev 0x00000e95 0x595 zephyr/libzephyr.a(heap.c.obj) + .debug_abbrev 0x0000142a 0x563 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_abbrev 0x0000198d 0x277 zephyr/libzephyr.a(printk.c.obj) + .debug_abbrev 0x00001c04 0x236 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_abbrev 0x00001e3a 0x593 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_abbrev 0x000023cd 0x2aa zephyr/libzephyr.a(getopt.c.obj) + .debug_abbrev 0x00002677 0x2e zephyr/libzephyr.a(configs.c.obj) + .debug_abbrev 0x000026a5 0x14a zephyr/libzephyr.a(soc.c.obj) + .debug_abbrev 0x000027ef 0x3f9 zephyr/libzephyr.a(loader.c.obj) + .debug_abbrev 0x00002be8 0x19e zephyr/libzephyr.a(hw_init.c.obj) + .debug_abbrev 0x00002d86 0x8fc zephyr/libzephyr.a(log_core.c.obj) + .debug_abbrev 0x00003682 0x642 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_abbrev 0x00003cc4 0x5bc zephyr/libzephyr.a(log_msg.c.obj) + .debug_abbrev 0x00004280 0x5d9 zephyr/libzephyr.a(log_output.c.obj) + .debug_abbrev 0x00004859 0x44e zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_abbrev 0x00004ca7 0x1e6 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_abbrev 0x00004e8d 0x46f zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_abbrev 0x000052fc 0x543 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_abbrev 0x0000583f 0x527 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_abbrev 0x00005d66 0x40f zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_abbrev 0x00006175 0x5b1 zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_abbrev 0x00006726 0x649 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_abbrev 0x00006d6f 0x4a4 zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_abbrev 0x00007213 0x289 zephyr/libzephyr.a(flash_ops.c.obj) + .debug_abbrev 0x0000749c 0x451 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_abbrev 0x000078ed 0x1ea zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_abbrev 0x00007ad7 0x192 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .debug_abbrev 0x00007c69 0x330 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_abbrev 0x00007f99 0x542 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_abbrev 0x000084db 0x266 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_abbrev 0x00008741 0x220 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_abbrev 0x00008961 0x42b zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_abbrev 0x00008d8c 0x1ea zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_abbrev 0x00008f76 0x377 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_abbrev 0x000092ed 0x202 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_abbrev 0x000094ef 0x42f zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_abbrev 0x0000991e 0x49b zephyr/libzephyr.a(cache_utils.c.obj) + .debug_abbrev 0x00009db9 0x3fc zephyr/libzephyr.a(uart_hal.c.obj) + .debug_abbrev 0x0000a1b5 0x2c6 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_abbrev 0x0000a47b 0x3a0 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_abbrev 0x0000a81b 0x506 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_abbrev 0x0000ad21 0xc1 zephyr/libzephyr.a(console_init.c.obj) + .debug_abbrev 0x0000ade2 0x3c5 zephyr/libzephyr.a(soc_init.c.obj) + .debug_abbrev 0x0000b1a7 0x4d1 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_abbrev 0x0000b678 0x2ac zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_abbrev 0x0000b924 0xa1 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .debug_abbrev 0x0000b9c5 0x3c1 zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_abbrev 0x0000bd86 0x407 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_abbrev 0x0000c18d 0x354 zephyr/libzephyr.a(esp_clk.c.obj) + .debug_abbrev 0x0000c4e1 0x2d0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_abbrev 0x0000c7b1 0x1a4 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_abbrev 0x0000c955 0x4d1 zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_abbrev 0x0000ce26 0x1d7 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_abbrev 0x0000cffd 0x10a zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_abbrev 0x0000d107 0x64a zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_abbrev 0x0000d751 0x4f2 zephyr/libzephyr.a(rtc_init.c.obj) + .debug_abbrev 0x0000dc43 0x3b9 zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_abbrev 0x0000dffc 0x400 zephyr/libzephyr.a(rtc_time.c.obj) + .debug_abbrev 0x0000e3fc 0x3eb zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_abbrev 0x0000e7e7 0x9b zephyr/libzephyr.a(systimer.c.obj) + .debug_abbrev 0x0000e882 0x28a zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_abbrev 0x0000eb0c 0x2e2 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_abbrev 0x0000edee 0x4cc zephyr/libzephyr.a(rtc_module.c.obj) + .debug_abbrev 0x0000f2ba 0x826 zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_abbrev 0x0000fae0 0x341 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_abbrev 0x0000fe21 0x224 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_abbrev 0x00010045 0x5df zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_abbrev 0x00010624 0xbd zephyr/libzephyr.a(ext_mem_layout.c.obj) + .debug_abbrev 0x000106e1 0x259 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_abbrev 0x0001093a 0x28 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_abbrev 0x00010962 0xef zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_abbrev 0x00010a51 0x16c zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .debug_abbrev 0x00010bbd 0x114 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .debug_abbrev 0x00010cd1 0x367 zephyr/libzephyr.a(clk.c.obj) + .debug_abbrev 0x00011038 0x1bf zephyr/libzephyr.a(reset_reason.c.obj) + .debug_abbrev 0x000111f7 0x51f zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_abbrev 0x00011716 0xfd zephyr/libzephyr.a(esp_timer_init.c.obj) + .debug_abbrev 0x00011813 0x3c2 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_abbrev 0x00011bd5 0x408 zephyr/libzephyr.a(cache_hal.c.obj) + .debug_abbrev 0x00011fdd 0x210 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_abbrev 0x000121ed 0x36e zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_abbrev 0x0001255b 0x70 zephyr/libzephyr.a(gpio_periph.c.obj) + .debug_abbrev 0x000125cb 0x30a zephyr/libzephyr.a(flash_init.c.obj) + .debug_abbrev 0x000128d5 0x6df zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_abbrev 0x00012fb4 0x332 zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_abbrev 0x000132e6 0x3e3 zephyr/libzephyr.a(soc_init.c.obj) + .debug_abbrev 0x000136c9 0x3bd zephyr/libzephyr.a(soc_random.c.obj) + .debug_abbrev 0x00013a86 0x6b zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_abbrev 0x00013af1 0x136 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_abbrev 0x00013c27 0xe2 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_abbrev 0x00013d09 0x71 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .debug_abbrev 0x00013d7a 0x20a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_abbrev 0x00013f84 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .debug_abbrev 0x00013f98 0x12 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .debug_abbrev 0x00013faa 0x322 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_abbrev 0x000142cc 0x2a2 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_abbrev 0x0001456e 0x61a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_abbrev 0x00014b88 0x1ac zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .debug_abbrev 0x00014d34 0x68 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_abbrev 0x00014d9c 0x1a9 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_abbrev 0x00014f45 0x203 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_abbrev 0x00015148 0xba zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_abbrev 0x00015202 0x493 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_abbrev 0x00015695 0x618 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_abbrev 0x00015cad 0x6e1 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_abbrev 0x0001638e 0x359 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_abbrev 0x000166e7 0x6b7 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_abbrev 0x00016d9e 0x741 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_abbrev 0x000174df 0x463 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_abbrev 0x00017942 0x6f9 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_abbrev 0x0001803b 0x62a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_abbrev 0x00018665 0x34c zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_abbrev 0x000189b1 0xf6 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_abbrev 0x00018aa7 0x479 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_abbrev 0x00018f20 0x4c6 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_abbrev 0x000193e6 0xd0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_abbrev 0x000194b6 0x3c8 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_abbrev 0x0001987e 0x54b zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_abbrev 0x00019dc9 0x705 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_abbrev 0x0001a4ce 0x78a zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_abbrev 0x0001ac58 0x378 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_abbrev 0x0001afd0 0x11f zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_abbrev 0x0001b0ef 0x1c2 zephyr/kernel/libkernel.a(device.c.obj) + .debug_abbrev 0x0001b2b1 0x488 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_abbrev 0x0001b739 0x655 zephyr/kernel/libkernel.a(init.c.obj) + .debug_abbrev 0x0001bd8e 0x18c zephyr/kernel/libkernel.a(idle.c.obj) + .debug_abbrev 0x0001bf1a 0x4a4 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_abbrev 0x0001c3be 0x427 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_abbrev 0x0001c7e5 0x665 zephyr/kernel/libkernel.a(work.c.obj) + .debug_abbrev 0x0001ce4a 0x5bc zephyr/kernel/libkernel.a(thread.c.obj) + .debug_abbrev 0x0001d406 0x68a zephyr/kernel/libkernel.a(sched.c.obj) + .debug_abbrev 0x0001da90 0x3d0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_abbrev 0x0001de60 0x4b8 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_abbrev 0x0001e318 0x4b0 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_abbrev 0x0001e7c8 0x656 zephyr/kernel/libkernel.a(poll.c.obj) + .debug_abbrev 0x0001ee1e 0x433 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_abbrev 0x0001f251 0x8c zephyr/kernel/libkernel.a(banner.c.obj) + .debug_abbrev 0x0001f2dd 0x458 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_abbrev 0x0001f735 0x235 zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_line 0x00000000 0x9d8ec + *(SORT_BY_ALIGNMENT(.debug_line) SORT_BY_ALIGNMENT(.debug_line.*) SORT_BY_ALIGNMENT(.debug_line_end)) + .debug_line 0x00000000 0xa7 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_line 0x000000a7 0x28a zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .debug_line 0x00000331 0x201d app/libapp.a(main.c.obj) + .debug_line 0x0000234e 0x6a5 app/libapp.a(kiss.c.obj) + .debug_line 0x000029f3 0x2c60 app/libapp.a(lora_modem.c.obj) + .debug_line 0x00005653 0x3f6a zephyr/libzephyr.a(heap.c.obj) + .debug_line 0x000095bd 0x2a51 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_line 0x0000c00e 0x545 zephyr/libzephyr.a(printk.c.obj) + .debug_line 0x0000c553 0x4cc zephyr/libzephyr.a(thread_entry.c.obj) + .debug_line 0x0000ca1f 0x267a zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_line 0x0000f099 0x819 zephyr/libzephyr.a(getopt.c.obj) + .debug_line 0x0000f8b2 0x1237 zephyr/libzephyr.a(configs.c.obj) + .debug_line 0x00010ae9 0x5a7 zephyr/libzephyr.a(soc.c.obj) + .debug_line 0x00011090 0x1197 zephyr/libzephyr.a(loader.c.obj) + .debug_line 0x00012227 0x6e5 zephyr/libzephyr.a(hw_init.c.obj) + .debug_line 0x0001290c 0x28aa zephyr/libzephyr.a(log_core.c.obj) + .debug_line 0x000151b6 0x15a4 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_line 0x0001675a 0x175a zephyr/libzephyr.a(log_msg.c.obj) + .debug_line 0x00017eb4 0x134f zephyr/libzephyr.a(log_output.c.obj) + .debug_line 0x00019203 0x93f zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_line 0x00019b42 0x5ec zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_line 0x0001a12e 0xba4 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_line 0x0001acd2 0x2812 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_line 0x0001d4e4 0x1693 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_line 0x0001eb77 0x8c7 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_line 0x0001f43e 0x3cad zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_line 0x000230eb 0x1bd9 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_line 0x00024cc4 0x126a zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_line 0x00025f2e 0x9fd zephyr/libzephyr.a(flash_ops.c.obj) + .debug_line 0x0002692b 0xfc3 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_line 0x000278ee 0x520 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_line 0x00027e0e 0x51e zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .debug_line 0x0002832c 0x7b3 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_line 0x00028adf 0x271e zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_line 0x0002b1fd 0x5ed zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_line 0x0002b7ea 0x671 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_line 0x0002be5b 0x1560 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_line 0x0002d3bb 0x51e zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_line 0x0002d8d9 0xea8 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_line 0x0002e781 0x643 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_line 0x0002edc4 0xe48 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_line 0x0002fc0c 0xe15 zephyr/libzephyr.a(cache_utils.c.obj) + .debug_line 0x00030a21 0x163b zephyr/libzephyr.a(uart_hal.c.obj) + .debug_line 0x0003205c 0x6b0 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_line 0x0003270c 0xed7 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_line 0x000335e3 0x2671 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_line 0x00035c54 0x26a zephyr/libzephyr.a(console_init.c.obj) + .debug_line 0x00035ebe 0xa10 zephyr/libzephyr.a(soc_init.c.obj) + .debug_line 0x000368ce 0x2390 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_line 0x00038c5e 0xa40 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_line 0x0003969e 0x220 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .debug_line 0x000398be 0xe58 zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_line 0x0003a716 0x16c4 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_line 0x0003bdda 0xa5a zephyr/libzephyr.a(esp_clk.c.obj) + .debug_line 0x0003c834 0x857 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_line 0x0003d08b 0x63f zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_line 0x0003d6ca 0x2e97 zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_line 0x00040561 0x936 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_line 0x00040e97 0x338 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_line 0x000411cf 0x21f3 zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_line 0x000433c2 0x193c zephyr/libzephyr.a(rtc_init.c.obj) + .debug_line 0x00044cfe 0x1270 zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_line 0x00045f6e 0xf39 zephyr/libzephyr.a(rtc_time.c.obj) + .debug_line 0x00046ea7 0xbc8 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_line 0x00047a6f 0x20b zephyr/libzephyr.a(systimer.c.obj) + .debug_line 0x00047c7a 0x93c zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_line 0x000485b6 0xa82 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_line 0x00049038 0xcd0 zephyr/libzephyr.a(rtc_module.c.obj) + .debug_line 0x00049d08 0x4a06 zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_line 0x0004e70e 0xc72 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_line 0x0004f380 0x637 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_line 0x0004f9b7 0x2c88 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_line 0x0005263f 0x32c zephyr/libzephyr.a(ext_mem_layout.c.obj) + .debug_line 0x0005296b 0x76d zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_line 0x000530d8 0x16e zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_line 0x00053246 0x272 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_line 0x000534b8 0x3e4 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .debug_line 0x0005389c 0x2dd zephyr/libzephyr.a(esp_rom_sys.c.obj) + .debug_line 0x00053b79 0xc8c zephyr/libzephyr.a(clk.c.obj) + .debug_line 0x00054805 0x69e zephyr/libzephyr.a(reset_reason.c.obj) + .debug_line 0x00054ea3 0x105b zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_line 0x00055efe 0x36a zephyr/libzephyr.a(esp_timer_init.c.obj) + .debug_line 0x00056268 0xa58 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_line 0x00056cc0 0x1180 zephyr/libzephyr.a(cache_hal.c.obj) + .debug_line 0x00057e40 0x59c zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_line 0x000583dc 0xdb6 zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_line 0x00059192 0x20a zephyr/libzephyr.a(gpio_periph.c.obj) + .debug_line 0x0005939c 0x819 zephyr/libzephyr.a(flash_init.c.obj) + .debug_line 0x00059bb5 0x2479 zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_line 0x0005c02e 0xac4 zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_line 0x0005caf2 0xcd1 zephyr/libzephyr.a(soc_init.c.obj) + .debug_line 0x0005d7c3 0xeec zephyr/libzephyr.a(soc_random.c.obj) + .debug_line 0x0005e6af 0xa2 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_line 0x0005e751 0x2d6 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_line 0x0005ea27 0x273 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_line 0x0005ec9a 0xaf zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .debug_line 0x0005ed49 0x3d7 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_line 0x0005f120 0x227 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .debug_line 0x0005f347 0x35d zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .debug_line 0x0005f6a4 0xdae zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_line 0x00060452 0x6ba zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_line 0x00060b0c 0x7a74 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_line 0x00068580 0x3b8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .debug_line 0x00068938 0xfe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_line 0x00068a36 0x305 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_line 0x00068d3b 0x424 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_line 0x0006915f 0x1ef zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_line 0x0006934e 0x9a1 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_line 0x00069cef 0x2860 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_line 0x0006c54f 0x1c49 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_line 0x0006e198 0x5a9 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_line 0x0006e741 0x2999 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_line 0x000710da 0x1b61 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_line 0x00072c3b 0x967 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_line 0x000735a2 0x2dee zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_line 0x00076390 0x12da zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_line 0x0007766a 0xb95 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_line 0x000781ff 0x275 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_line 0x00078474 0x1ee7 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_line 0x0007a35b 0x1db9 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_line 0x0007c114 0x2b8 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_line 0x0007c3cc 0x1029 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_line 0x0007d3f5 0x1256 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_line 0x0007e64b 0x21ba zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_line 0x00080805 0x4434 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_line 0x00084c39 0x908 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_line 0x00085541 0x36f zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_line 0x000858b0 0x688 zephyr/kernel/libkernel.a(device.c.obj) + .debug_line 0x00085f38 0x1c37 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_line 0x00087b6f 0xecc zephyr/kernel/libkernel.a(init.c.obj) + .debug_line 0x00088a3b 0x384 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_line 0x00088dbf 0x1006 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_line 0x00089dc5 0xf34 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_line 0x0008acf9 0x42b6 zephyr/kernel/libkernel.a(work.c.obj) + .debug_line 0x0008efaf 0x1202 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_line 0x000901b1 0x628c zephyr/kernel/libkernel.a(sched.c.obj) + .debug_line 0x0009643d 0x8a0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_line 0x00096cdd 0x1879 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_line 0x00098556 0x115c zephyr/kernel/libkernel.a(timer.c.obj) + .debug_line 0x000996b2 0x24f2 zephyr/kernel/libkernel.a(poll.c.obj) + .debug_line 0x0009bba4 0xb2a zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_line 0x0009c6ce 0xbb zephyr/kernel/libkernel.a(banner.c.obj) + .debug_line 0x0009c789 0xd63 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_line 0x0009d4ec 0x400 zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_frame 0x00000000 0x884c + *(SORT_BY_ALIGNMENT(.debug_frame)) + .debug_frame 0x00000000 0x28 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .debug_frame 0x00000028 0x88 app/libapp.a(main.c.obj) + .debug_frame 0x000000b0 0x70 app/libapp.a(kiss.c.obj) + .debug_frame 0x00000120 0x100 app/libapp.a(lora_modem.c.obj) + .debug_frame 0x00000220 0x238 zephyr/libzephyr.a(heap.c.obj) + .debug_frame 0x00000458 0x8c zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_frame 0x000004e4 0xa0 zephyr/libzephyr.a(printk.c.obj) + .debug_frame 0x00000584 0x28 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_frame 0x000005ac 0x1d8 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_frame 0x00000784 0x40 zephyr/libzephyr.a(getopt.c.obj) + .debug_frame 0x000007c4 0x28 zephyr/libzephyr.a(configs.c.obj) + .debug_frame 0x000007ec 0x70 zephyr/libzephyr.a(soc.c.obj) + .debug_frame 0x0000085c 0x40 zephyr/libzephyr.a(loader.c.obj) + .debug_frame 0x0000089c 0x28 zephyr/libzephyr.a(hw_init.c.obj) + .debug_frame 0x000008c4 0x430 zephyr/libzephyr.a(log_core.c.obj) + .debug_frame 0x00000cf4 0x1f0 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_frame 0x00000ee4 0xe8 zephyr/libzephyr.a(log_msg.c.obj) + .debug_frame 0x00000fcc 0x118 zephyr/libzephyr.a(log_output.c.obj) + .debug_frame 0x000010e4 0xa0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_frame 0x00001184 0xa0 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_frame 0x00001224 0x70 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_frame 0x00001294 0x1f0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_frame 0x00001484 0xe8 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_frame 0x0000156c 0x88 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_frame 0x000015f4 0x328 zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_frame 0x0000191c 0xa0 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_frame 0x000019bc 0xd0 zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_frame 0x00001a8c 0xd0 zephyr/libzephyr.a(flash_ops.c.obj) + .debug_frame 0x00001b5c 0x130 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_frame 0x00001c8c 0x40 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_frame 0x00001ccc 0x28 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .debug_frame 0x00001cf4 0xa0 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_frame 0x00001d94 0x2f8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_frame 0x0000208c 0x70 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_frame 0x000020fc 0x58 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_frame 0x00002154 0x178 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_frame 0x000022cc 0x40 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_frame 0x0000230c 0xb8 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_frame 0x000023c4 0x88 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_frame 0x0000244c 0x178 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_frame 0x000025c4 0x160 zephyr/libzephyr.a(cache_utils.c.obj) + .debug_frame 0x00002724 0x298 zephyr/libzephyr.a(uart_hal.c.obj) + .debug_frame 0x000029bc 0x88 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_frame 0x00002a44 0xa0 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_frame 0x00002ae4 0x190 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_frame 0x00002c74 0x40 zephyr/libzephyr.a(console_init.c.obj) + .debug_frame 0x00002cb4 0x70 zephyr/libzephyr.a(soc_init.c.obj) + .debug_frame 0x00002d24 0x238 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_frame 0x00002f5c 0xb8 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_frame 0x00003014 0x178 zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_frame 0x0000318c 0x118 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_frame 0x000032a4 0x100 zephyr/libzephyr.a(esp_clk.c.obj) + .debug_frame 0x000033a4 0x100 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_frame 0x000034a4 0x40 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_frame 0x000034e4 0x1f0 zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_frame 0x000036d4 0x88 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_frame 0x0000375c 0x28 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_frame 0x00003784 0x328 zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_frame 0x00003aac 0x70 zephyr/libzephyr.a(rtc_init.c.obj) + .debug_frame 0x00003b1c 0x88 zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_frame 0x00003ba4 0xd0 zephyr/libzephyr.a(rtc_time.c.obj) + .debug_frame 0x00003c74 0x160 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_frame 0x00003dd4 0x40 zephyr/libzephyr.a(systimer.c.obj) + .debug_frame 0x00003e14 0x88 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_frame 0x00003e9c 0x100 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_frame 0x00003f9c 0x88 zephyr/libzephyr.a(rtc_module.c.obj) + .debug_frame 0x00004024 0x5b0 zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_frame 0x000045d4 0x88 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_frame 0x0000465c 0xa0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_frame 0x000046fc 0x1a8 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_frame 0x000048a4 0xa0 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_frame 0x00004944 0x28 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_frame 0x0000496c 0x28 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .debug_frame 0x00004994 0x58 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .debug_frame 0x000049ec 0x88 zephyr/libzephyr.a(clk.c.obj) + .debug_frame 0x00004a74 0x70 zephyr/libzephyr.a(reset_reason.c.obj) + .debug_frame 0x00004ae4 0x100 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_frame 0x00004be4 0x58 zephyr/libzephyr.a(esp_timer_init.c.obj) + .debug_frame 0x00004c3c 0xd0 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_frame 0x00004d0c 0x160 zephyr/libzephyr.a(cache_hal.c.obj) + .debug_frame 0x00004e6c 0xb8 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_frame 0x00004f24 0x100 zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_frame 0x00005024 0x58 zephyr/libzephyr.a(flash_init.c.obj) + .debug_frame 0x0000507c 0x280 zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_frame 0x000052fc 0xa0 zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_frame 0x0000539c 0x100 zephyr/libzephyr.a(soc_init.c.obj) + .debug_frame 0x0000549c 0x40 zephyr/libzephyr.a(soc_random.c.obj) + .debug_frame 0x000054dc 0x28 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_frame 0x00005504 0x40 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_frame 0x00005544 0x58 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_frame 0x0000559c 0x40 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .debug_frame 0x000055dc 0x58 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_frame 0x00005634 0x70 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_frame 0x000056a4 0x40 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_frame 0x000056e4 0x178 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_frame 0x0000585c 0x28 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .debug_frame 0x00005884 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_frame 0x000058ac 0x40 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_frame 0x000058ec 0x70 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_frame 0x0000595c 0x28 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_frame 0x00005984 0xe8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_frame 0x00005a6c 0x1a8 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_frame 0x00005c14 0xd0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_frame 0x00005ce4 0x58 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_frame 0x00005d3c 0x148 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_frame 0x00005e84 0x298 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_frame 0x0000611c 0x1c0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_frame 0x000062dc 0x160 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_frame 0x0000643c 0x130 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_frame 0x0000656c 0x160 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_frame 0x000066cc 0x40 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_frame 0x0000670c 0x460 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_frame 0x00006b6c 0x328 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_frame 0x00006e94 0x28 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_frame 0x00006ebc 0x28 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_frame 0x00006ee4 0x1d8 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_frame 0x000070bc 0x208 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_frame 0x000072c4 0x100 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_frame 0x000073c4 0xa0 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_frame 0x00007464 0x28 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_frame 0x0000748c 0xa0 zephyr/kernel/libkernel.a(device.c.obj) + .debug_frame 0x0000752c 0x70 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_frame 0x0000759c 0x88 zephyr/kernel/libkernel.a(init.c.obj) + .debug_frame 0x00007624 0x40 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_frame 0x00007664 0x70 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_frame 0x000076d4 0x70 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_frame 0x00007744 0x328 zephyr/kernel/libkernel.a(work.c.obj) + .debug_frame 0x00007a6c 0x178 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_frame 0x00007be4 0x478 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_frame 0x0000805c 0x88 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_frame 0x000080e4 0x190 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_frame 0x00008274 0xa0 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_frame 0x00008314 0x1a8 zephyr/kernel/libkernel.a(poll.c.obj) + .debug_frame 0x000084bc 0x100 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_frame 0x000085bc 0x28 zephyr/kernel/libkernel.a(banner.c.obj) + .debug_frame 0x000085e4 0xe8 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_frame 0x000086cc 0x28 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_frame 0x000086f4 0x28 /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/libgcc.a(_divdi3.o) + .debug_frame 0x0000871c 0x28 /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/libgcc.a(_moddi3.o) + .debug_frame 0x00008744 0x28 /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/libgcc.a(_udivdi3.o) + .debug_frame 0x0000876c 0x28 /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/libgcc.a(_umoddi3.o) + .debug_frame 0x00008794 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + .debug_frame 0x000087bc 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + .debug_frame 0x000087e4 0x40 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .debug_frame 0x00008824 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + +.debug_str 0x00000000 0x2b1f2 + *(SORT_BY_ALIGNMENT(.debug_str)) + .debug_str 0x00000000 0x2b1f2 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + 0x263 (size before relaxing) + .debug_str 0x0002b1f2 0x347 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .debug_str 0x0002b1f2 0x1108 app/libapp.a(main.c.obj) + .debug_str 0x0002b1f2 0x303 app/libapp.a(kiss.c.obj) + .debug_str 0x0002b1f2 0x114e app/libapp.a(lora_modem.c.obj) + .debug_str 0x0002b1f2 0xe33 zephyr/libzephyr.a(heap.c.obj) + .debug_str 0x0002b1f2 0xc21 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_str 0x0002b1f2 0x506 zephyr/libzephyr.a(printk.c.obj) + .debug_str 0x0002b1f2 0x561 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_str 0x0002b1f2 0x766 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_str 0x0002b1f2 0x8f2 zephyr/libzephyr.a(getopt.c.obj) + .debug_str 0x0002b1f2 0x1b5 zephyr/libzephyr.a(configs.c.obj) + .debug_str 0x0002b1f2 0x38f zephyr/libzephyr.a(soc.c.obj) + .debug_str 0x0002b1f2 0x1988 zephyr/libzephyr.a(loader.c.obj) + .debug_str 0x0002b1f2 0xf49 zephyr/libzephyr.a(hw_init.c.obj) + .debug_str 0x0002b1f2 0x1bec zephyr/libzephyr.a(log_core.c.obj) + .debug_str 0x0002b1f2 0xee9 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_str 0x0002b1f2 0xbb8 zephyr/libzephyr.a(log_msg.c.obj) + .debug_str 0x0002b1f2 0xc28 zephyr/libzephyr.a(log_output.c.obj) + .debug_str 0x0002b1f2 0xe5a zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_str 0x0002b1f2 0x51d zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_str 0x0002b1f2 0x36e3 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_str 0x0002b1f2 0x3210 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_str 0x0002b1f2 0x2da9 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_str 0x0002b1f2 0x160d zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_str 0x0002b1f2 0x2869 zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_str 0x0002b1f2 0x4813 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_str 0x0002b1f2 0x84c zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_str 0x0002b1f2 0x777 zephyr/libzephyr.a(flash_ops.c.obj) + .debug_str 0x0002b1f2 0x3ae9 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_str 0x0002b1f2 0xc4d zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_str 0x0002b1f2 0xa06 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .debug_str 0x0002b1f2 0xd24 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_str 0x0002b1f2 0x1f0e zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_str 0x0002b1f2 0xcee zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_str 0x0002b1f2 0x1754 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_str 0x0002b1f2 0x1960 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_str 0x0002b1f2 0xc45 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_str 0x0002b1f2 0xd69 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_str 0x0002b1f2 0x773 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_str 0x0002b1f2 0xb4c zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_str 0x0002b1f2 0x1982 zephyr/libzephyr.a(cache_utils.c.obj) + .debug_str 0x0002b1f2 0x1cba zephyr/libzephyr.a(uart_hal.c.obj) + .debug_str 0x0002b1f2 0x128e zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_str 0x0002b1f2 0x11b7 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_str 0x0002b1f2 0x1a3f zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_str 0x0002b1f2 0x2ee zephyr/libzephyr.a(console_init.c.obj) + .debug_str 0x0002b1f2 0x65bb zephyr/libzephyr.a(soc_init.c.obj) + .debug_str 0x0002b1f2 0x29a9 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_str 0x0002b1f2 0x1638 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_str 0x0002b1f2 0x2e5 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .debug_str 0x0002b1f2 0xe7f zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_str 0x0002b1f2 0x3649 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_str 0x0002b1f2 0x1699 zephyr/libzephyr.a(esp_clk.c.obj) + .debug_str 0x0002b1f2 0x7c3 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_str 0x0002b1f2 0x460 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_str 0x0002b1f2 0x6729 zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_str 0x0002b1f2 0x155c zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_str 0x0002b1f2 0x353 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_str 0x0002b1f2 0x310c zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_str 0x0002b1f2 0x3caa zephyr/libzephyr.a(rtc_init.c.obj) + .debug_str 0x0002b1f2 0x385e zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_str 0x0002b1f2 0xdb5 zephyr/libzephyr.a(rtc_time.c.obj) + .debug_str 0x0002b1f2 0x5e01 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_str 0x0002b1f2 0x286 zephyr/libzephyr.a(systimer.c.obj) + .debug_str 0x0002b1f2 0x66a zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_str 0x0002b1f2 0x119b zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_str 0x0002b1f2 0x382c zephyr/libzephyr.a(rtc_module.c.obj) + .debug_str 0x0002b1f2 0x7b45 zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_str 0x0002b1f2 0x6ed zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_str 0x0002b1f2 0x639 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_str 0x0002b1f2 0x1116 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_str 0x0002b1f2 0x3a2 zephyr/libzephyr.a(ext_mem_layout.c.obj) + .debug_str 0x0002b1f2 0x4d8 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_str 0x0002b1f2 0xc8 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_str 0x0002b1f2 0x555 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_str 0x0002b1f2 0x57d zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .debug_str 0x0002b1f2 0x328 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .debug_str 0x0002b1f2 0x19e0 zephyr/libzephyr.a(clk.c.obj) + .debug_str 0x0002b1f2 0x8db zephyr/libzephyr.a(reset_reason.c.obj) + .debug_str 0x0002b1f2 0x5c6e zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_str 0x0002b1f2 0x32d zephyr/libzephyr.a(esp_timer_init.c.obj) + .debug_str 0x0002b1f2 0x2cf1 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_str 0x0002b1f2 0xa6a zephyr/libzephyr.a(cache_hal.c.obj) + .debug_str 0x0002b1f2 0x2b1a zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_str 0x0002b1f2 0x6c0 zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_str 0x0002b1f2 0x275 zephyr/libzephyr.a(gpio_periph.c.obj) + .debug_str 0x0002b1f2 0x35bf zephyr/libzephyr.a(flash_init.c.obj) + .debug_str 0x0002b1f2 0x615b zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_str 0x0002b1f2 0x95a zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_str 0x0002b1f2 0x3b11 zephyr/libzephyr.a(soc_init.c.obj) + .debug_str 0x0002b1f2 0x596c zephyr/libzephyr.a(soc_random.c.obj) + .debug_str 0x0002b1f2 0x255 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_str 0x0002b1f2 0x2d4 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_str 0x0002b1f2 0x293 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_str 0x0002b1f2 0x257 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .debug_str 0x0002b1f2 0x40b zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_str 0x0002b1f2 0x81 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .debug_str 0x0002b1f2 0x83 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .debug_str 0x0002b1f2 0x9c8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_str 0x0002b1f2 0x700 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_str 0x0002b1f2 0x1054 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_str 0x0002b1f2 0x540 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .debug_str 0x0002b1f2 0x253 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_str 0x0002b1f2 0x309 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_str 0x0002b1f2 0x4bc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_str 0x0002b1f2 0x2f9 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_str 0x0002b1f2 0x808 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_str 0x0002b1f2 0xe93 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_str 0x0002b1f2 0x6c3e zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_str 0x0002b1f2 0x6a0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_str 0x0002b1f2 0x290d zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_str 0x0002b1f2 0x2039 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_str 0x0002b1f2 0x9ee zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_str 0x0002b1f2 0x16d6 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_str 0x0002b1f2 0x12ea zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_str 0x0002b1f2 0x53c zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_str 0x0002b1f2 0x259 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_str 0x0002b1f2 0x17f5 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_str 0x0002b1f2 0x1a9d zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_str 0x0002b1f2 0x2e8 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_str 0x0002b1f2 0x17c1 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_str 0x0002b1f2 0x17fd zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_str 0x0002b1f2 0x2d6f zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_str 0x0002b1f2 0x412e zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_str 0x0002b1f2 0x59e zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_str 0x0002b1f2 0x2d8 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_str 0x0002b1f2 0x38d zephyr/kernel/libkernel.a(device.c.obj) + .debug_str 0x0002b1f2 0xcfb zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_str 0x0002b1f2 0xe70 zephyr/kernel/libkernel.a(init.c.obj) + .debug_str 0x0002b1f2 0x32a zephyr/kernel/libkernel.a(idle.c.obj) + .debug_str 0x0002b1f2 0xc96 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_str 0x0002b1f2 0x900 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_str 0x0002b1f2 0x1155 zephyr/kernel/libkernel.a(work.c.obj) + .debug_str 0x0002b1f2 0xd80 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_str 0x0002b1f2 0x1628 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_str 0x0002b1f2 0x943 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_str 0x0002b1f2 0x811 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_str 0x0002b1f2 0x9a5 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_str 0x0002b1f2 0xfe5 zephyr/kernel/libkernel.a(poll.c.obj) + .debug_str 0x0002b1f2 0x8d9 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_str 0x0002b1f2 0x23b zephyr/kernel/libkernel.a(banner.c.obj) + .debug_str 0x0002b1f2 0x7dc zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_str 0x0002b1f2 0x7da zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_loc 0x00000000 0x3e0aa + *(SORT_BY_ALIGNMENT(.debug_loc)) + .debug_loc 0x00000000 0x114f app/libapp.a(main.c.obj) + .debug_loc 0x0000114f 0x246 app/libapp.a(kiss.c.obj) + .debug_loc 0x00001395 0xf65 app/libapp.a(lora_modem.c.obj) + .debug_loc 0x000022fa 0x2923 zephyr/libzephyr.a(heap.c.obj) + .debug_loc 0x00004c1d 0x1f85 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_loc 0x00006ba2 0xf8 zephyr/libzephyr.a(printk.c.obj) + .debug_loc 0x00006c9a 0x15 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_loc 0x00006caf 0xaee zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_loc 0x0000779d 0xd3 zephyr/libzephyr.a(getopt.c.obj) + .debug_loc 0x00007870 0x2b zephyr/libzephyr.a(soc.c.obj) + .debug_loc 0x0000789b 0x393 zephyr/libzephyr.a(loader.c.obj) + .debug_loc 0x00007c2e 0x23 zephyr/libzephyr.a(hw_init.c.obj) + .debug_loc 0x00007c51 0xf5b zephyr/libzephyr.a(log_core.c.obj) + .debug_loc 0x00008bac 0xba0 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_loc 0x0000974c 0xc6b zephyr/libzephyr.a(log_msg.c.obj) + .debug_loc 0x0000a3b7 0xfc9 zephyr/libzephyr.a(log_output.c.obj) + .debug_loc 0x0000b380 0x332 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_loc 0x0000b6b2 0x158 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_loc 0x0000b80a 0x36c zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_loc 0x0000bb76 0x15a4 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_loc 0x0000d11a 0xbd3 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_loc 0x0000dced 0x15e zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_loc 0x0000de4b 0x1695 zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_loc 0x0000f4e0 0x89c zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_loc 0x0000fd7c 0xae8 zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_loc 0x00010864 0x1ad zephyr/libzephyr.a(flash_ops.c.obj) + .debug_loc 0x00010a11 0x5a2 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_loc 0x00010fb3 0xd5 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_loc 0x00011088 0x2a1 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_loc 0x00011329 0x1079 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_loc 0x000123a2 0x140 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_loc 0x000124e2 0x14f zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_loc 0x00012631 0x79c zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_loc 0x00012dcd 0xd5 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_loc 0x00012ea2 0x524 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_loc 0x000133c6 0xd7 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_loc 0x0001349d 0x48f zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_loc 0x0001392c 0x2ea zephyr/libzephyr.a(cache_utils.c.obj) + .debug_loc 0x00013c16 0xc25 zephyr/libzephyr.a(uart_hal.c.obj) + .debug_loc 0x0001483b 0x24d zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_loc 0x00014a88 0x561 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_loc 0x00014fe9 0x15bd zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_loc 0x000165a6 0x119 zephyr/libzephyr.a(soc_init.c.obj) + .debug_loc 0x000166bf 0xca5 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_loc 0x00017364 0x207 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_loc 0x0001756b 0xa52 zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_loc 0x00017fbd 0xa02 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_loc 0x000189bf 0x187 zephyr/libzephyr.a(esp_clk.c.obj) + .debug_loc 0x00018b46 0x16 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_loc 0x00018b5c 0x305 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_loc 0x00018e61 0xc48 zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_loc 0x00019aa9 0x202 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_loc 0x00019cab 0x2b zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_loc 0x00019cd6 0x80a zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_loc 0x0001a4e0 0x787 zephyr/libzephyr.a(rtc_init.c.obj) + .debug_loc 0x0001ac67 0x99 zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_loc 0x0001ad00 0x50c zephyr/libzephyr.a(rtc_time.c.obj) + .debug_loc 0x0001b20c 0x151 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_loc 0x0001b35d 0x58 zephyr/libzephyr.a(systimer.c.obj) + .debug_loc 0x0001b3b5 0x1f3 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_loc 0x0001b5a8 0x3a8 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_loc 0x0001b950 0x27b zephyr/libzephyr.a(rtc_module.c.obj) + .debug_loc 0x0001bbcb 0x131f zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_loc 0x0001ceea 0x540 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_loc 0x0001d42a 0xae zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_loc 0x0001d4d8 0x2385 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_loc 0x0001f85d 0x3a1 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_loc 0x0001fbfe 0x15 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_loc 0x0001fc13 0x385 zephyr/libzephyr.a(clk.c.obj) + .debug_loc 0x0001ff98 0x116 zephyr/libzephyr.a(reset_reason.c.obj) + .debug_loc 0x000200ae 0x374 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_loc 0x00020422 0x227 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_loc 0x00020649 0xca1 zephyr/libzephyr.a(cache_hal.c.obj) + .debug_loc 0x000212ea 0x38 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_loc 0x00021322 0xafe zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_loc 0x00021e20 0x2f zephyr/libzephyr.a(flash_init.c.obj) + .debug_loc 0x00021e4f 0x120d zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_loc 0x0002305c 0x1df zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_loc 0x0002323b 0x253 zephyr/libzephyr.a(soc_init.c.obj) + .debug_loc 0x0002348e 0x3e3 zephyr/libzephyr.a(soc_random.c.obj) + .debug_loc 0x00023871 0x15 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_loc 0x00023886 0x15 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_loc 0x0002389b 0x77 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_loc 0x00023912 0x255 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_loc 0x00023b67 0x126 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_loc 0x00023c8d 0x3940 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_loc 0x000275cd 0x6b zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_loc 0x00027638 0xa4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_loc 0x000276dc 0x2e4 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_loc 0x000279c0 0x1362 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_loc 0x00028d22 0x923 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_loc 0x00029645 0x56 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_loc 0x0002969b 0x140b zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_loc 0x0002aaa6 0xb08 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_loc 0x0002b5ae 0xa4 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_loc 0x0002b652 0x16cc zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_loc 0x0002cd1e 0x97b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_loc 0x0002d699 0x390 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_loc 0x0002da29 0x24 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_loc 0x0002da4d 0x571 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_loc 0x0002dfbe 0xbce zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_loc 0x0002eb8c 0x4e zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_loc 0x0002ebda 0x721 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_loc 0x0002f2fb 0x544 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_loc 0x0002f83f 0xf96 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_loc 0x000307d5 0x24af zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_loc 0x00032c84 0x2ba zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_loc 0x00032f3e 0x3f zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_loc 0x00032f7d 0x183 zephyr/kernel/libkernel.a(device.c.obj) + .debug_loc 0x00033100 0x655 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_loc 0x00033755 0x394 zephyr/kernel/libkernel.a(init.c.obj) + .debug_loc 0x00033ae9 0x3f zephyr/kernel/libkernel.a(idle.c.obj) + .debug_loc 0x00033b28 0x65e zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_loc 0x00034186 0x662 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_loc 0x000347e8 0x2a67 zephyr/kernel/libkernel.a(work.c.obj) + .debug_loc 0x0003724f 0x8d4 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_loc 0x00037b23 0x34d1 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_loc 0x0003aff4 0x1d5 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_loc 0x0003b1c9 0xbec zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_loc 0x0003bdb5 0x591 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_loc 0x0003c346 0x1217 zephyr/kernel/libkernel.a(poll.c.obj) + .debug_loc 0x0003d55d 0x654 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_loc 0x0003dbb1 0x4f9 zephyr/kernel/libkernel.a(kheap.c.obj) + +.debug_macinfo + *(SORT_BY_ALIGNMENT(.debug_macinfo)) + +.debug_weaknames + *(SORT_BY_ALIGNMENT(.debug_weaknames)) + +.debug_funcnames + *(SORT_BY_ALIGNMENT(.debug_funcnames)) + +.debug_typenames + *(SORT_BY_ALIGNMENT(.debug_typenames)) + +.debug_varnames + *(SORT_BY_ALIGNMENT(.debug_varnames)) + +.debug_pubtypes + *(SORT_BY_ALIGNMENT(.debug_pubtypes)) + +.debug_ranges 0x00000000 0xafa0 + *(SORT_BY_ALIGNMENT(.debug_ranges)) + .debug_ranges 0x00000000 0x68 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .debug_ranges 0x00000068 0x10 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .debug_ranges 0x00000078 0x188 app/libapp.a(main.c.obj) + .debug_ranges 0x00000200 0x40 app/libapp.a(kiss.c.obj) + .debug_ranges 0x00000240 0x5b0 app/libapp.a(lora_modem.c.obj) + .debug_ranges 0x000007f0 0x4e0 zephyr/libzephyr.a(heap.c.obj) + .debug_ranges 0x00000cd0 0x3e8 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_ranges 0x000010b8 0x50 zephyr/libzephyr.a(printk.c.obj) + .debug_ranges 0x00001108 0x10 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_ranges 0x00001118 0x1b8 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_ranges 0x000012d0 0x18 zephyr/libzephyr.a(getopt.c.obj) + .debug_ranges 0x000012e8 0x10 zephyr/libzephyr.a(configs.c.obj) + .debug_ranges 0x000012f8 0x28 zephyr/libzephyr.a(soc.c.obj) + .debug_ranges 0x00001320 0x30 zephyr/libzephyr.a(loader.c.obj) + .debug_ranges 0x00001350 0x10 zephyr/libzephyr.a(hw_init.c.obj) + .debug_ranges 0x00001360 0x410 zephyr/libzephyr.a(log_core.c.obj) + .debug_ranges 0x00001770 0x480 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_ranges 0x00001bf0 0x270 zephyr/libzephyr.a(log_msg.c.obj) + .debug_ranges 0x00001e60 0x160 zephyr/libzephyr.a(log_output.c.obj) + .debug_ranges 0x00001fc0 0x98 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_ranges 0x00002058 0x70 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_ranges 0x000020c8 0x78 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_ranges 0x00002140 0x4e8 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_ranges 0x00002628 0x1e0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_ranges 0x00002808 0x58 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_ranges 0x00002860 0x2d0 zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_ranges 0x00002b30 0x180 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_ranges 0x00002cb0 0x108 zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_ranges 0x00002db8 0x60 zephyr/libzephyr.a(flash_ops.c.obj) + .debug_ranges 0x00002e18 0x80 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_ranges 0x00002e98 0x18 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_ranges 0x00002eb0 0x10 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .debug_ranges 0x00002ec0 0x50 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_ranges 0x00002f10 0x160 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_ranges 0x00003070 0x28 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_ranges 0x00003098 0x20 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_ranges 0x000030b8 0xc8 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_ranges 0x00003180 0x18 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_ranges 0x00003198 0x88 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_ranges 0x00003220 0x30 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_ranges 0x00003250 0x80 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_ranges 0x000032d0 0x90 zephyr/libzephyr.a(cache_utils.c.obj) + .debug_ranges 0x00003360 0x1b8 zephyr/libzephyr.a(uart_hal.c.obj) + .debug_ranges 0x00003518 0x60 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_ranges 0x00003578 0x68 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_ranges 0x000035e0 0x270 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_ranges 0x00003850 0x18 zephyr/libzephyr.a(console_init.c.obj) + .debug_ranges 0x00003868 0x60 zephyr/libzephyr.a(soc_init.c.obj) + .debug_ranges 0x000038c8 0x380 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_ranges 0x00003c48 0xa0 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_ranges 0x00003ce8 0x110 zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_ranges 0x00003df8 0x180 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_ranges 0x00003f78 0x88 zephyr/libzephyr.a(esp_clk.c.obj) + .debug_ranges 0x00004000 0x58 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_ranges 0x00004058 0x30 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_ranges 0x00004088 0x2c8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_ranges 0x00004350 0x30 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_ranges 0x00004380 0x10 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_ranges 0x00004390 0x220 zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_ranges 0x000045b0 0x120 zephyr/libzephyr.a(rtc_init.c.obj) + .debug_ranges 0x000046d0 0x78 zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_ranges 0x00004748 0xb0 zephyr/libzephyr.a(rtc_time.c.obj) + .debug_ranges 0x000047f8 0xf8 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_ranges 0x000048f0 0x18 zephyr/libzephyr.a(systimer.c.obj) + .debug_ranges 0x00004908 0x50 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_ranges 0x00004958 0xd0 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_ranges 0x00004a28 0xd8 zephyr/libzephyr.a(rtc_module.c.obj) + .debug_ranges 0x00004b00 0x3e0 zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_ranges 0x00004ee0 0x78 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_ranges 0x00004f58 0x50 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_ranges 0x00004fa8 0x2f8 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_ranges 0x000052a0 0x68 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_ranges 0x00005308 0x10 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_ranges 0x00005318 0x10 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .debug_ranges 0x00005328 0x20 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .debug_ranges 0x00005348 0x60 zephyr/libzephyr.a(clk.c.obj) + .debug_ranges 0x000053a8 0x40 zephyr/libzephyr.a(reset_reason.c.obj) + .debug_ranges 0x000053e8 0x170 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_ranges 0x00005558 0x20 zephyr/libzephyr.a(esp_timer_init.c.obj) + .debug_ranges 0x00005578 0x160 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_ranges 0x000056d8 0x2a8 zephyr/libzephyr.a(cache_hal.c.obj) + .debug_ranges 0x00005980 0x90 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_ranges 0x00005a10 0x1f0 zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_ranges 0x00005c00 0x38 zephyr/libzephyr.a(flash_init.c.obj) + .debug_ranges 0x00005c38 0x2b0 zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_ranges 0x00005ee8 0x38 zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_ranges 0x00005f20 0x88 zephyr/libzephyr.a(soc_init.c.obj) + .debug_ranges 0x00005fa8 0x238 zephyr/libzephyr.a(soc_random.c.obj) + .debug_ranges 0x000061e0 0x10 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_ranges 0x000061f0 0x18 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_ranges 0x00006208 0x20 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_ranges 0x00006228 0x18 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .debug_ranges 0x00006240 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_ranges 0x00006260 0xf8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_ranges 0x00006358 0x18 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_ranges 0x00006370 0x1250 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_ranges 0x000075c0 0x10 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .debug_ranges 0x000075d0 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_ranges 0x000075e0 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_ranges 0x000075f8 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_ranges 0x00007620 0x10 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_ranges 0x00007630 0x68 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_ranges 0x00007698 0x1d0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_ranges 0x00007868 0x1b8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_ranges 0x00007a20 0x38 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_ranges 0x00007a58 0x2c8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_ranges 0x00007d20 0x1e0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_ranges 0x00007f00 0xb0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_ranges 0x00007fb0 0x498 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_ranges 0x00008448 0x108 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_ranges 0x00008550 0x78 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_ranges 0x000085c8 0x30 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_ranges 0x000085f8 0x1d8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_ranges 0x000087d0 0x140 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_ranges 0x00008910 0x10 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_ranges 0x00008920 0xd8 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_ranges 0x000089f8 0x178 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_ranges 0x00008b70 0x2d8 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_ranges 0x00008e48 0x480 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_ranges 0x000092c8 0x50 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_ranges 0x00009318 0x30 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_ranges 0x00009348 0x70 zephyr/kernel/libkernel.a(device.c.obj) + .debug_ranges 0x000093b8 0x370 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_ranges 0x00009728 0x78 zephyr/kernel/libkernel.a(init.c.obj) + .debug_ranges 0x000097a0 0x18 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_ranges 0x000097b8 0xf0 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_ranges 0x000098a8 0x190 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_ranges 0x00009a38 0x458 zephyr/kernel/libkernel.a(work.c.obj) + .debug_ranges 0x00009e90 0x180 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_ranges 0x0000a010 0x938 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_ranges 0x0000a948 0x30 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_ranges 0x0000a978 0x1f0 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_ranges 0x0000ab68 0xf8 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_ranges 0x0000ac60 0x1c8 zephyr/kernel/libkernel.a(poll.c.obj) + .debug_ranges 0x0000ae28 0x58 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_ranges 0x0000ae80 0x10 zephyr/kernel/libkernel.a(banner.c.obj) + .debug_ranges 0x0000ae90 0x100 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_ranges 0x0000af90 0x10 zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_addr + *(SORT_BY_ALIGNMENT(.debug_addr)) + +.debug_line_str + *(SORT_BY_ALIGNMENT(.debug_line_str)) + +.debug_loclists + *(SORT_BY_ALIGNMENT(.debug_loclists)) + +.debug_macro + *(SORT_BY_ALIGNMENT(.debug_macro)) + +.debug_names + *(SORT_BY_ALIGNMENT(.debug_names)) + +.debug_rnglists + *(SORT_BY_ALIGNMENT(.debug_rnglists)) + +.debug_str_offsets + *(SORT_BY_ALIGNMENT(.debug_str_offsets)) + +.debug_sup + *(SORT_BY_ALIGNMENT(.debug_sup)) + +.xtensa.info 0x00000000 0x38 + *(SORT_BY_ALIGNMENT(.xtensa.info)) + .xtensa.info 0x00000000 0x38 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .xtensa.info 0x00000038 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .xtensa.info 0x00000038 0x0 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .xtensa.info 0x00000038 0x0 app/libapp.a(main.c.obj) + .xtensa.info 0x00000038 0x0 app/libapp.a(kiss.c.obj) + .xtensa.info 0x00000038 0x0 app/libapp.a(lora_modem.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(validate_libc.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(heap.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(clock.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(printk.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(sem.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(assert.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(dec.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(hex.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rb.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(set.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(bitmask.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(getopt.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(getopt_common.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(configs.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(soc.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(loader.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(hw_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(log_core.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(log_mgmt.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(log_cache.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(log_msg.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(log_output.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(flash_encrypt.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(flash_mmap.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(flash_ops.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(cache_utils.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(uart_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(lldesc.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(mpu_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(console_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_io.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(systimer_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(cpu.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_clk.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(hw_random.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(mac_addr.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(io_mux.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_sleep.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_time.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(systimer.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_module.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(sleep_modes.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(ext_mem_layout.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_print.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_err.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(clk.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(reset_reason.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(system_internal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_timer.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_timer_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(mmu_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(gpio_periph.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_restart.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(flash_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(soc_flash_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(soc_random.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(errno.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(banner.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_ashldi3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_ashrdi3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_lshrdi3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_bswapsi2.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_bswapdi2.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_divsf3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_addsubdf3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_muldf3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_divdf3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_fixdfdi.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_floatsidf.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_floatdidf.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_truncdfsf2.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_extendsfdf2.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_popcountsi2.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_divdi3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_moddi3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_udivdi3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_umoddi3.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memcpy.S.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memset.S.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + +.xt.insn + *(SORT_BY_ALIGNMENT(.xt.insn)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.x.*)) + +.xt.prop 0x00000000 0x10a7c + *(SORT_BY_ALIGNMENT(.xt.prop)) + .xt.prop 0x00000000 0x24 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .xt.prop 0x00000024 0x330 app/libapp.a(main.c.obj) + .xt.prop 0x00000354 0x18c app/libapp.a(kiss.c.obj) + 0x198 (size before relaxing) + .xt.prop 0x000004e0 0x2f4 app/libapp.a(lora_modem.c.obj) + 0x30c (size before relaxing) + .xt.prop 0x000007d4 0x408 zephyr/libzephyr.a(heap.c.obj) + 0x750 (size before relaxing) + .xt.prop 0x00000bdc 0x684 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x6c0 (size before relaxing) + .xt.prop 0x00001260 0x0 zephyr/libzephyr.a(clock.c.obj) + 0x324 (size before relaxing) + .xt.prop 0x00001260 0x60 zephyr/libzephyr.a(printk.c.obj) + 0x138 (size before relaxing) + .xt.prop 0x000012c0 0x0 zephyr/libzephyr.a(sem.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x000012c0 0x24 zephyr/libzephyr.a(thread_entry.c.obj) + .xt.prop 0x000012e4 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + 0x900 (size before relaxing) + .xt.prop 0x000012e4 0x0 zephyr/libzephyr.a(assert.c.obj) + 0x54 (size before relaxing) + .xt.prop 0x000012e4 0x420 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x654 (size before relaxing) + .xt.prop 0x00001704 0x0 zephyr/libzephyr.a(dec.c.obj) + 0x78 (size before relaxing) + .xt.prop 0x00001704 0x0 zephyr/libzephyr.a(hex.c.obj) + 0x18c (size before relaxing) + .xt.prop 0x00001704 0x0 zephyr/libzephyr.a(rb.c.obj) + 0x5b8 (size before relaxing) + .xt.prop 0x00001704 0x0 zephyr/libzephyr.a(set.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x00001704 0x0 zephyr/libzephyr.a(timeutil.c.obj) + 0x3f0 (size before relaxing) + .xt.prop 0x00001704 0x0 zephyr/libzephyr.a(bitarray.c.obj) + 0x6d8 (size before relaxing) + .xt.prop 0x00001704 0x0 zephyr/libzephyr.a(bitmask.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x00001704 0xc zephyr/libzephyr.a(getopt.c.obj) + 0x180 (size before relaxing) + .xt.prop 0x00001710 0x0 zephyr/libzephyr.a(getopt_common.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x00001710 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + 0x24c (size before relaxing) + .xt.prop 0x00001710 0x24 zephyr/libzephyr.a(configs.c.obj) + .xt.prop 0x00001734 0x60 zephyr/libzephyr.a(soc.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x00001794 0x1e0 zephyr/libzephyr.a(loader.c.obj) + 0x1ec (size before relaxing) + .xt.prop 0x00001974 0x60 zephyr/libzephyr.a(hw_init.c.obj) + .xt.prop 0x000019d4 0x7c8 zephyr/libzephyr.a(log_core.c.obj) + 0xbb8 (size before relaxing) + .xt.prop 0x0000219c 0x78 zephyr/libzephyr.a(log_mgmt.c.obj) + 0x4e0 (size before relaxing) + .xt.prop 0x00002214 0x0 zephyr/libzephyr.a(log_cache.c.obj) + 0x198 (size before relaxing) + .xt.prop 0x00002214 0x1d4 zephyr/libzephyr.a(log_msg.c.obj) + 0x240 (size before relaxing) + .xt.prop 0x000023e8 0x360 zephyr/libzephyr.a(log_output.c.obj) + 0x3c0 (size before relaxing) + .xt.prop 0x00002748 0x168 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x18c (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + 0xb4 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_efuse_api.c.obj) + 0x5c4 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + 0x180 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + 0x5c4 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_efuse_table.c.obj) + 0x1530 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + 0xd8 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + 0x2b8 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + 0x7d4 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(flash_encrypt.c.obj) + 0x210 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x000028b0 0x120 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x12c (size before relaxing) + .xt.prop 0x000029d0 0x168 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x174 (size before relaxing) + .xt.prop 0x00002b38 0x498 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x57c (size before relaxing) + .xt.prop 0x00002fd0 0x2ac zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x2d0 (size before relaxing) + .xt.prop 0x0000327c 0x150 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0x180 (size before relaxing) + .xt.prop 0x000033cc 0x3d8 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0xf9c (size before relaxing) + .xt.prop 0x000037a4 0xf0 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x36c (size before relaxing) + .xt.prop 0x00003894 0x6c zephyr/libzephyr.a(flash_mmap.c.obj) + 0x348 (size before relaxing) + .xt.prop 0x00003900 0xd8 zephyr/libzephyr.a(flash_ops.c.obj) + 0x264 (size before relaxing) + .xt.prop 0x000039d8 0x2c4 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x348 (size before relaxing) + .xt.prop 0x00003c9c 0x60 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .xt.prop 0x00003cfc 0x3c zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .xt.prop 0x00003d38 0x138 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x144 (size before relaxing) + .xt.prop 0x00003e70 0x930 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0xa20 (size before relaxing) + .xt.prop 0x000047a0 0xc0 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x00004860 0xa8 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .xt.prop 0x00004908 0x3c0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x420 (size before relaxing) + .xt.prop 0x00004cc8 0x60 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .xt.prop 0x00004d28 0x240 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x270 (size before relaxing) + .xt.prop 0x00004f68 0x0 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x00004f68 0x78 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x00004fe0 0x180 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x378 (size before relaxing) + .xt.prop 0x00005160 0x0 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + 0x21c (size before relaxing) + .xt.prop 0x00005160 0xe4 zephyr/libzephyr.a(cache_utils.c.obj) + 0x2c4 (size before relaxing) + .xt.prop 0x00005244 0x360 zephyr/libzephyr.a(uart_hal.c.obj) + 0x558 (size before relaxing) + .xt.prop 0x000055a4 0xe4 zephyr/libzephyr.a(uart_hal_iram.c.obj) + 0x120 (size before relaxing) + .xt.prop 0x00005688 0x6c zephyr/libzephyr.a(spi_hal.c.obj) + 0x198 (size before relaxing) + .xt.prop 0x000056f4 0x2f4 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x690 (size before relaxing) + .xt.prop 0x000059e8 0x0 zephyr/libzephyr.a(lldesc.c.obj) + 0xb4 (size before relaxing) + .xt.prop 0x000059e8 0x0 zephyr/libzephyr.a(gdma_hal_top.c.obj) + 0x270 (size before relaxing) + .xt.prop 0x000059e8 0x0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + 0x480 (size before relaxing) + .xt.prop 0x000059e8 0x0 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x000059e8 0x0 zephyr/libzephyr.a(mpu_hal.c.obj) + 0x78 (size before relaxing) + .xt.prop 0x000059e8 0x0 zephyr/libzephyr.a(flash_qio_mode.c.obj) + 0x270 (size before relaxing) + .xt.prop 0x000059e8 0x0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + 0x1ec (size before relaxing) + .xt.prop 0x000059e8 0x30 zephyr/libzephyr.a(console_init.c.obj) + 0x54 (size before relaxing) + .xt.prop 0x00005a18 0x108 zephyr/libzephyr.a(soc_init.c.obj) + .xt.prop 0x00005b20 0x174 zephyr/libzephyr.a(rtc_io.c.obj) + 0x6fc (size before relaxing) + .xt.prop 0x00005c94 0x0 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + 0xc (size before relaxing) + .xt.prop 0x00005c94 0x0 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + 0x168 (size before relaxing) + .xt.prop 0x00005c94 0x15c zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x240 (size before relaxing) + .xt.prop 0x00005df0 0xc zephyr/libzephyr.a(rtc_io_periph.c.obj) + .xt.prop 0x00005dfc 0x0 zephyr/libzephyr.a(rtc_io_hal.c.obj) + 0x2f4 (size before relaxing) + .xt.prop 0x00005dfc 0x12c zephyr/libzephyr.a(systimer_hal.c.obj) + 0x2ac (size before relaxing) + .xt.prop 0x00005f28 0xfc zephyr/libzephyr.a(wdt_hal_iram.c.obj) + 0x3a8 (size before relaxing) + .xt.prop 0x00006024 0x0 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x00006024 0x0 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + 0x2dc (size before relaxing) + .xt.prop 0x00006024 0x0 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x00006024 0x0 zephyr/libzephyr.a(cpu.c.obj) + 0x1f8 (size before relaxing) + .xt.prop 0x00006024 0x30 zephyr/libzephyr.a(esp_clk.c.obj) + 0x228 (size before relaxing) + .xt.prop 0x00006054 0x0 zephyr/libzephyr.a(hw_random.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x00006054 0x0 zephyr/libzephyr.a(mac_addr.c.obj) + 0x4b0 (size before relaxing) + .xt.prop 0x00006054 0x120 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x1bc (size before relaxing) + .xt.prop 0x00006174 0x78 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .xt.prop 0x000061ec 0x81c zephyr/libzephyr.a(periph_ctrl.c.obj) + 0xac8 (size before relaxing) + .xt.prop 0x00006a08 0x0 zephyr/libzephyr.a(cpu_region_protect.c.obj) + 0x48 (size before relaxing) + .xt.prop 0x00006a08 0x198 zephyr/libzephyr.a(esp_clk_tree.c.obj) + 0x228 (size before relaxing) + .xt.prop 0x00006ba0 0x54 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .xt.prop 0x00006bf4 0x0 zephyr/libzephyr.a(io_mux.c.obj) + 0xfc (size before relaxing) + .xt.prop 0x00006bf4 0x6cc zephyr/libzephyr.a(rtc_clk.c.obj) + 0xa20 (size before relaxing) + .xt.prop 0x000072c0 0x0 zephyr/libzephyr.a(rtc_clk_init.c.obj) + 0x54 (size before relaxing) + .xt.prop 0x000072c0 0x168 zephyr/libzephyr.a(rtc_init.c.obj) + 0x1e0 (size before relaxing) + .xt.prop 0x00007428 0x60 zephyr/libzephyr.a(rtc_sleep.c.obj) + 0x294 (size before relaxing) + .xt.prop 0x00007488 0x27c zephyr/libzephyr.a(rtc_time.c.obj) + 0x33c (size before relaxing) + .xt.prop 0x00007704 0x30 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + 0x2a0 (size before relaxing) + .xt.prop 0x00007734 0x48 zephyr/libzephyr.a(systimer.c.obj) + .xt.prop 0x0000777c 0x180 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x1a4 (size before relaxing) + .xt.prop 0x000078fc 0x198 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x258 (size before relaxing) + .xt.prop 0x00007a94 0x90 zephyr/libzephyr.a(rtc_module.c.obj) + 0x1ec (size before relaxing) + .xt.prop 0x00007b24 0x0 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + 0xe4 (size before relaxing) + .xt.prop 0x00007b24 0xe4 zephyr/libzephyr.a(sleep_modes.c.obj) + 0x12b4 (size before relaxing) + .xt.prop 0x00007c08 0x18c zephyr/libzephyr.a(esp_cache_msync.c.obj) + 0x258 (size before relaxing) + .xt.prop 0x00007d94 0x90 zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x12c (size before relaxing) + .xt.prop 0x00007e24 0x15c zephyr/libzephyr.a(esp_mmu_map.c.obj) + 0x918 (size before relaxing) + .xt.prop 0x00007f80 0xc zephyr/libzephyr.a(ext_mem_layout.c.obj) + .xt.prop 0x00007f8c 0x174 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x1b0 (size before relaxing) + .xt.prop 0x00008100 0x54 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .xt.prop 0x00008154 0x0 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + 0x48 (size before relaxing) + .xt.prop 0x00008154 0x0 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + 0x3c (size before relaxing) + .xt.prop 0x00008154 0x0 zephyr/libzephyr.a(esp_rom_print.c.obj) + 0x630 (size before relaxing) + .xt.prop 0x00008154 0x30 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .xt.prop 0x00008184 0x54 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .xt.prop 0x000081d8 0x78 zephyr/libzephyr.a(esp_rom_sys.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x00008250 0x0 zephyr/libzephyr.a(esp_err.c.obj) + 0x54 (size before relaxing) + .xt.prop 0x00008250 0x90 zephyr/libzephyr.a(clk.c.obj) + 0x1a4 (size before relaxing) + .xt.prop 0x000082e0 0x150 zephyr/libzephyr.a(reset_reason.c.obj) + 0x1bc (size before relaxing) + .xt.prop 0x00008430 0x0 zephyr/libzephyr.a(system_internal.c.obj) + 0xc0 (size before relaxing) + .xt.prop 0x00008430 0x0 zephyr/libzephyr.a(esp_timer.c.obj) + 0x9c0 (size before relaxing) + .xt.prop 0x00008430 0x0 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x00008430 0x48 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + 0x270 (size before relaxing) + .xt.prop 0x00008478 0x24 zephyr/libzephyr.a(esp_timer_init.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x0000849c 0x0 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + 0x18c (size before relaxing) + .xt.prop 0x0000849c 0x84 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x210 (size before relaxing) + .xt.prop 0x00008520 0x2b8 zephyr/libzephyr.a(cache_hal.c.obj) + 0x3c0 (size before relaxing) + .xt.prop 0x000087d8 0x24 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x168 (size before relaxing) + .xt.prop 0x000087fc 0x138 zephyr/libzephyr.a(mmu_hal.c.obj) + 0x27c (size before relaxing) + .xt.prop 0x00008934 0xc zephyr/libzephyr.a(gpio_periph.c.obj) + 0x18 (size before relaxing) + .xt.prop 0x00008940 0x0 zephyr/libzephyr.a(esp_restart.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x00008940 0x60 zephyr/libzephyr.a(flash_init.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x000089a0 0x354 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x810 (size before relaxing) + .xt.prop 0x00008cf4 0x0 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + 0x588 (size before relaxing) + .xt.prop 0x00008cf4 0x234 zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x24c (size before relaxing) + .xt.prop 0x00008f28 0x1ec zephyr/libzephyr.a(soc_init.c.obj) + 0x228 (size before relaxing) + .xt.prop 0x00009114 0x60 zephyr/libzephyr.a(soc_random.c.obj) + .xt.prop 0x00009174 0x24 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .xt.prop 0x00009198 0x48 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + 0x60 (size before relaxing) + .xt.prop 0x000091e0 0x54 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x00009234 0x24 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + 0x48 (size before relaxing) + .xt.prop 0x00009258 0x6c zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x000092c4 0xa8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + 0xe4 (size before relaxing) + .xt.prop 0x0000936c 0x318 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .xt.prop 0x00009684 0x30 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x000096b4 0x54 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .xt.prop 0x00009708 0x318 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x3a8 (size before relaxing) + .xt.prop 0x00009a20 0x18 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + 0x24 (size before relaxing) + .xt.prop 0x00009a38 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + 0x24 (size before relaxing) + .xt.prop 0x00009a50 0x54 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .xt.prop 0x00009aa4 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + 0x24 (size before relaxing) + .xt.prop 0x00009aa4 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x00009aa4 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x00009aa4 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + 0x1ec (size before relaxing) + .xt.prop 0x00009aa4 0x9c zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0xfc (size before relaxing) + .xt.prop 0x00009b40 0x24 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .xt.prop 0x00009b64 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + 0x3c (size before relaxing) + .xt.prop 0x00009b64 0x48 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + 0x234 (size before relaxing) + .xt.prop 0x00009bac 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + 0x504 (size before relaxing) + .xt.prop 0x00009bac 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x00009bac 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x00009bac 0x618 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x8c4 (size before relaxing) + .xt.prop 0x0000a1c4 0x3d8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x3fc (size before relaxing) + .xt.prop 0x0000a59c 0x78 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x0000a614 0x66c zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .xt.prop 0x0000ac80 0x57c zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x63c (size before relaxing) + .xt.prop 0x0000b1fc 0x27c zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x354 (size before relaxing) + .xt.prop 0x0000b478 0x408 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x45c (size before relaxing) + .xt.prop 0x0000b880 0x2a0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x2f4 (size before relaxing) + .xt.prop 0x0000bb20 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + 0x294 (size before relaxing) + .xt.prop 0x0000bb20 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + 0x2d0 (size before relaxing) + .xt.prop 0x0000bb20 0x360 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x48c (size before relaxing) + .xt.prop 0x0000be80 0x24 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + 0x60 (size before relaxing) + .xt.prop 0x0000bea4 0x7bc zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xae0 (size before relaxing) + .xt.prop 0x0000c660 0x8ac zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x99c (size before relaxing) + .xt.prop 0x0000cf0c 0x54 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .xt.prop 0x0000cf60 0x294 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .xt.prop 0x0000d1f4 0x3cc zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x45c (size before relaxing) + .xt.prop 0x0000d5c0 0x690 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x6cc (size before relaxing) + .xt.prop 0x0000dc50 0x78c zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x7b0 (size before relaxing) + .xt.prop 0x0000e3dc 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + 0x48 (size before relaxing) + .xt.prop 0x0000e3dc 0x108 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x144 (size before relaxing) + .xt.prop 0x0000e4e4 0x30 zephyr/kernel/libkernel.a(busy_wait.c.obj) + 0x3c (size before relaxing) + .xt.prop 0x0000e514 0x78 zephyr/kernel/libkernel.a(device.c.obj) + 0x180 (size before relaxing) + .xt.prop 0x0000e58c 0x0 zephyr/kernel/libkernel.a(errno.c.obj) + 0x3c (size before relaxing) + .xt.prop 0x0000e58c 0x90 zephyr/kernel/libkernel.a(fatal.c.obj) + 0xb4 (size before relaxing) + .xt.prop 0x0000e61c 0x18c zephyr/kernel/libkernel.a(init.c.obj) + 0x1ec (size before relaxing) + .xt.prop 0x0000e7a8 0x24 zephyr/kernel/libkernel.a(idle.c.obj) + 0x54 (size before relaxing) + .xt.prop 0x0000e7cc 0x1bc zephyr/kernel/libkernel.a(mutex.c.obj) + 0x1d4 (size before relaxing) + .xt.prop 0x0000e988 0xf0 zephyr/kernel/libkernel.a(sem.c.obj) + 0x15c (size before relaxing) + .xt.prop 0x0000ea78 0x318 zephyr/kernel/libkernel.a(work.c.obj) + 0x93c (size before relaxing) + .xt.prop 0x0000ed90 0x108 zephyr/kernel/libkernel.a(thread.c.obj) + 0x2f4 (size before relaxing) + .xt.prop 0x0000ee98 0x828 zephyr/kernel/libkernel.a(sched.c.obj) + 0xdbc (size before relaxing) + .xt.prop 0x0000f6c0 0xfc zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x138 (size before relaxing) + .xt.prop 0x0000f7bc 0x324 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x54c (size before relaxing) + .xt.prop 0x0000fae0 0x174 zephyr/kernel/libkernel.a(timer.c.obj) + 0x1e0 (size before relaxing) + .xt.prop 0x0000fc54 0x390 zephyr/kernel/libkernel.a(poll.c.obj) + 0x5f4 (size before relaxing) + .xt.prop 0x0000ffe4 0x12c zephyr/kernel/libkernel.a(mempool.c.obj) + 0x2b8 (size before relaxing) + .xt.prop 0x00010110 0x30 zephyr/kernel/libkernel.a(banner.c.obj) + .xt.prop 0x00010140 0xcc zephyr/kernel/libkernel.a(kheap.c.obj) + 0x234 (size before relaxing) + .xt.prop 0x0001020c 0x60 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_ashldi3.o) + 0x3c (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_ashrdi3.o) + 0x3c (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_lshrdi3.o) + 0x3c (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_bswapsi2.o) + 0x24 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_bswapdi2.o) + 0x24 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_divsf3.o) + 0x24 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_addsubdf3.o) + 0x420 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_muldf3.o) + 0x228 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_divdf3.o) + 0x264 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_fixdfdi.o) + 0xa8 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_floatsidf.o) + 0x54 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_floatdidf.o) + 0x9c (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_truncdfsf2.o) + 0xb4 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_extendsfdf2.o) + 0x6c (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_popcountsi2.o) + 0x30 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_divdi3.o) + 0x18c (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_moddi3.o) + 0x168 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_udivdi3.o) + 0x174 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_umoddi3.o) + 0x144 (size before relaxing) + .xt.prop 0x0001026c 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memcpy.S.o) + 0x15c (size before relaxing) + .xt.prop 0x0001026c 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memset.S.o) + 0xd8 (size before relaxing) + .xt.prop 0x0001026c 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + 0x120 (size before relaxing) + .xt.prop 0x0001026c 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + 0xc0 (size before relaxing) + .xt.prop 0x0001026c 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + 0x54 (size before relaxing) + .xt.prop 0x0001026c 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + 0x54 (size before relaxing) + .xt.prop 0x0001026c 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + 0x48 (size before relaxing) + .xt.prop 0x0001026c 0x24 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + 0x30 (size before relaxing) + .xt.prop 0x00010290 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + 0x3c (size before relaxing) + .xt.prop 0x00010290 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + 0x60 (size before relaxing) + .xt.prop 0x00010290 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + 0x30 (size before relaxing) + .xt.prop 0x00010290 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + 0x78 (size before relaxing) + .xt.prop 0x00010290 0x60 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + .xt.prop 0x000102f0 0x75c /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + 0x768 (size before relaxing) + .xt.prop 0x00010a4c 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + 0x540 (size before relaxing) + .xt.prop 0x00010a4c 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + 0x60 (size before relaxing) + .xt.prop 0x00010a4c 0x30 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + .xt.prop 0x00010a7c 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + 0x54 (size before relaxing) + *(SORT_BY_ALIGNMENT(.xt.prop.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.prop.*)) + +.xt.lit 0x00000000 0xa48 + *(SORT_BY_ALIGNMENT(.xt.lit)) + .xt.lit 0x00000000 0x28 app/libapp.a(main.c.obj) + .xt.lit 0x00000028 0x0 app/libapp.a(kiss.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000028 0x38 app/libapp.a(lora_modem.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000060 0x10 zephyr/libzephyr.a(heap.c.obj) + 0x90 (size before relaxing) + .xt.lit 0x00000070 0x10 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000080 0x0 zephyr/libzephyr.a(clock.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000080 0x8 zephyr/libzephyr.a(printk.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000088 0x0 zephyr/libzephyr.a(sem.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000088 0x8 zephyr/libzephyr.a(thread_entry.c.obj) + .xt.lit 0x00000090 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000090 0x0 zephyr/libzephyr.a(assert.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000090 0x18 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(dec.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(hex.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(rb.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(set.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(timeutil.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(bitarray.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(getopt.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(getopt_common.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x000000a8 0x10 zephyr/libzephyr.a(soc.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000000b8 0x10 zephyr/libzephyr.a(loader.c.obj) + .xt.lit 0x000000c8 0x8 zephyr/libzephyr.a(hw_init.c.obj) + .xt.lit 0x000000d0 0x88 zephyr/libzephyr.a(log_core.c.obj) + 0x128 (size before relaxing) + .xt.lit 0x00000158 0x10 zephyr/libzephyr.a(log_mgmt.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x00000168 0x18 zephyr/libzephyr.a(log_msg.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000180 0x28 zephyr/libzephyr.a(log_output.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(esp_efuse_api.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(flash_encrypt.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000001a8 0x20 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000001c8 0x18 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000001e0 0x18 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x000001f8 0x10 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000208 0x20 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000228 0x18 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0xf0 (size before relaxing) + .xt.lit 0x00000240 0x10 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000250 0x8 zephyr/libzephyr.a(flash_mmap.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000258 0x10 zephyr/libzephyr.a(flash_ops.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000268 0x10 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000278 0x10 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000288 0x20 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x000002a8 0x8 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000002b0 0x10 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x000002c0 0x8 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000002c8 0x0 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000002c8 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000002c8 0x8 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x000002d0 0x0 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x000002d0 0x18 zephyr/libzephyr.a(cache_utils.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x000002e8 0x28 zephyr/libzephyr.a(uart_hal.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00000310 0x10 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .xt.lit 0x00000320 0x8 zephyr/libzephyr.a(spi_hal.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000328 0x28 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000350 0x0 zephyr/libzephyr.a(lldesc.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000350 0x0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000350 0x0 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000350 0x0 zephyr/libzephyr.a(flash_qio_mode.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00000350 0x0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000350 0x8 zephyr/libzephyr.a(console_init.c.obj) + .xt.lit 0x00000358 0x20 zephyr/libzephyr.a(soc_init.c.obj) + .xt.lit 0x00000378 0x28 zephyr/libzephyr.a(rtc_io.c.obj) + 0xb8 (size before relaxing) + .xt.lit 0x000003a0 0x0 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000003a0 0x28 zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x000003c8 0x0 zephyr/libzephyr.a(rtc_io_hal.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x000003c8 0x8 zephyr/libzephyr.a(systimer_hal.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000003d0 0x8 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000003d8 0x0 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000003d8 0x0 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x000003d8 0x0 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000003d8 0x0 zephyr/libzephyr.a(cpu.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000003d8 0x8 zephyr/libzephyr.a(esp_clk.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x000003e0 0x0 zephyr/libzephyr.a(hw_random.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000003e0 0x0 zephyr/libzephyr.a(mac_addr.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x000003e0 0x8 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000003e8 0x10 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .xt.lit 0x000003f8 0x30 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0xa0 (size before relaxing) + .xt.lit 0x00000428 0x0 zephyr/libzephyr.a(cpu_region_protect.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000428 0x8 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .xt.lit 0x00000430 0x8 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .xt.lit 0x00000438 0x0 zephyr/libzephyr.a(io_mux.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000438 0x60 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x108 (size before relaxing) + .xt.lit 0x00000498 0x0 zephyr/libzephyr.a(rtc_clk_init.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000498 0x10 zephyr/libzephyr.a(rtc_init.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000004a8 0x8 zephyr/libzephyr.a(rtc_sleep.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000004b0 0x18 zephyr/libzephyr.a(rtc_time.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x000004c8 0x8 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x000004d0 0x10 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000004e0 0x28 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000508 0x8 zephyr/libzephyr.a(rtc_module.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000510 0x0 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000510 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + 0x1c0 (size before relaxing) + .xt.lit 0x00000520 0x10 zephyr/libzephyr.a(esp_cache_msync.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000530 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000530 0x10 zephyr/libzephyr.a(esp_mmu_map.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x00000540 0x28 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000568 0x8 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .xt.lit 0x00000570 0x0 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000570 0x0 zephyr/libzephyr.a(esp_rom_print.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000570 0x8 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .xt.lit 0x00000578 0x8 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .xt.lit 0x00000580 0x8 zephyr/libzephyr.a(esp_rom_sys.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000588 0x0 zephyr/libzephyr.a(esp_err.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000588 0x10 zephyr/libzephyr.a(clk.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000598 0x10 zephyr/libzephyr.a(reset_reason.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000005a8 0x0 zephyr/libzephyr.a(system_internal.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000005a8 0x0 zephyr/libzephyr.a(esp_timer.c.obj) + 0xd8 (size before relaxing) + .xt.lit 0x000005a8 0x0 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000005a8 0x8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x000005b0 0x0 zephyr/libzephyr.a(esp_timer_init.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000005b0 0x0 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000005b0 0x8 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x000005b8 0x38 zephyr/libzephyr.a(cache_hal.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x000005f0 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x000005f0 0x18 zephyr/libzephyr.a(mmu_hal.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000608 0x0 zephyr/libzephyr.a(esp_restart.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000608 0x8 zephyr/libzephyr.a(flash_init.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000610 0x28 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x00000638 0x0 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + 0x90 (size before relaxing) + .xt.lit 0x00000638 0x20 zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000658 0x38 zephyr/libzephyr.a(soc_init.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000690 0x10 zephyr/libzephyr.a(soc_random.c.obj) + .xt.lit 0x000006a0 0x0 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000006a0 0x8 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000006a8 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000006b0 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .xt.lit 0x000006b8 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000006c0 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .xt.lit 0x000006c8 0x28 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x000006f0 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000006f0 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000006f0 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .xt.lit 0x000006f8 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000006f8 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000006f8 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000006f8 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x000006f8 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000708 0x8 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .xt.lit 0x00000710 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000710 0x8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000718 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000718 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000718 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000718 0x30 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00000748 0x28 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000770 0x10 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .xt.lit 0x00000780 0x20 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .xt.lit 0x000007a0 0x30 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xb0 (size before relaxing) + .xt.lit 0x000007d0 0x28 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x000007f8 0x38 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x00000830 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000848 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000848 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000848 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00000850 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000850 0x30 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x170 (size before relaxing) + .xt.lit 0x00000880 0x60 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x100 (size before relaxing) + .xt.lit 0x000008e0 0x8 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .xt.lit 0x000008e8 0x18 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x00000900 0x18 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000918 0x28 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000940 0x10 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000950 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000950 0x0 zephyr/kernel/libkernel.a(device.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000950 0x0 zephyr/kernel/libkernel.a(errno.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000950 0x10 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000960 0x20 zephyr/kernel/libkernel.a(init.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000980 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000980 0x8 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000988 0x8 zephyr/kernel/libkernel.a(sem.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000990 0x18 zephyr/kernel/libkernel.a(work.c.obj) + 0xf0 (size before relaxing) + .xt.lit 0x000009a8 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x000009a8 0x10 zephyr/kernel/libkernel.a(sched.c.obj) + 0x160 (size before relaxing) + .xt.lit 0x000009b8 0x18 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000009d0 0x18 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x000009e8 0x8 zephyr/kernel/libkernel.a(timer.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000009f0 0x18 zephyr/kernel/libkernel.a(poll.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x00000a08 0x8 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000a10 0x8 zephyr/kernel/libkernel.a(banner.c.obj) + .xt.lit 0x00000a18 0x18 zephyr/kernel/libkernel.a(kheap.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000a30 0x8 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .xt.lit 0x00000a38 0x0 /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/libgcc.a(_addsubdf3.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /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/libgcc.a(_muldf3.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /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/libgcc.a(_divdf3.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /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/libgcc.a(_fixdfdi.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /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/libgcc.a(_truncdfsf2.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /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/libgcc.a(_extendsfdf2.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /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/libgcc.a(_popcountsi2.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x8 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + .xt.lit 0x00000a40 0x8 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .xt.lit 0x00000a48 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + 0x18 (size before relaxing) + *(SORT_BY_ALIGNMENT(.xt.lit.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.p.*)) + +.xt.profile_range + *(SORT_BY_ALIGNMENT(.xt.profile_range)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.profile_range.*)) + +.xt.profile_ranges + *(SORT_BY_ALIGNMENT(.xt.profile_ranges)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.xt.profile_ranges.*)) + +.xt.profile_files + *(SORT_BY_ALIGNMENT(.xt.profile_files)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.xt.profile_files.*)) + 0x00000001 ASSERT (((_iram_end - ORIGIN (iram0_0_seg)) <= LENGTH (iram0_0_seg)), IRAM0 segment data does not fit.) + 0x00000001 ASSERT (((_end - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) + [!provide] PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char) + [!provide] PROVIDE (esp_rom_uart_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_uart_attach = uartAttach) + [!provide] PROVIDE (esp_rom_uart_tx_wait_idle = uart_tx_wait_idle) + [!provide] PROVIDE (esp_rom_intr_matrix_set = intr_matrix_set) + 0x40001a94 PROVIDE (esp_rom_gpio_matrix_in = rom_gpio_matrix_in) + 0x40001aa0 PROVIDE (esp_rom_gpio_matrix_out = rom_gpio_matrix_out) + [!provide] PROVIDE (esp_rom_ets_set_appcpu_boot_addr = ets_set_appcpu_boot_addr) + [!provide] PROVIDE (esp_rom_i2c_readReg = rom_i2c_readReg) + [!provide] PROVIDE (esp_rom_i2c_writeReg = rom_i2c_writeReg) + [!provide] PROVIDE (esp_rom_ets_printf = ets_printf) + [!provide] PROVIDE (esp_rom_ets_delay_us = ets_delay_us) + [!provide] PROVIDE (esp_rom_Cache_Disable_ICache = Cache_Disable_ICache) + [!provide] PROVIDE (esp_rom_Cache_Disable_DCache = Cache_Disable_DCache) + [!provide] PROVIDE (esp_rom_Cache_Allocate_SRAM = Cache_Allocate_SRAM) + [!provide] PROVIDE (esp_rom_Cache_Suspend_ICache = Cache_Suspend_ICache) + [!provide] PROVIDE (esp_rom_Cache_Dbus_MMU_Set = Cache_Dbus_MMU_Set) + [!provide] PROVIDE (esp_rom_Cache_Ibus_MMU_Set = Cache_Ibus_MMU_Set) + [!provide] PROVIDE (esp_rom_Cache_Set_ICache_Mode = Cache_Set_ICache_Mode) + [!provide] PROVIDE (esp_rom_Cache_Invalidate_ICache_All = Cache_Invalidate_ICache_All) + [!provide] PROVIDE (esp_rom_Cache_Resume_ICache = Cache_Resume_ICache) + [!provide] PROVIDE (esp_rom_Cache_Invalidate_Addr = Cache_Invalidate_Addr) + [!provide] PROVIDE (esp_rom_Cache_Set_DCache_Mode = Cache_Set_DCache_Mode) + [!provide] PROVIDE (esp_rom_Cache_Invalidate_DCache_All = Cache_Invalidate_DCache_All) + [!provide] PROVIDE (esp_rom_Cache_Enable_DCache = Cache_Enable_DCache) + [!provide] PROVIDE (esp_rom_Cache_Set_DCache_Mode = Cache_Set_DCache_Mode) + 0x4000057c rtc_get_reset_reason = 0x4000057c + 0x40000588 analog_super_wdt_reset_happened = 0x40000588 + 0x40000594 jtag_cpu_reset_happened = 0x40000594 + 0x400005a0 rtc_get_wakeup_cause = 0x400005a0 + 0x400005ac rtc_select_apb_bridge = 0x400005ac + 0x400005b8 rtc_unhold_all_pads = 0x400005b8 + 0x400005c4 ets_is_print_boot = 0x400005c4 + 0x400005d0 ets_printf = 0x400005d0 + 0x400005dc ets_install_putc1 = 0x400005dc + 0x400005e8 ets_install_uart_printf = 0x400005e8 + 0x400005f4 ets_install_putc2 = 0x400005f4 + 0x40000600 PROVIDE (ets_delay_us = 0x40000600) + 0x4000060c ets_get_stack_info = 0x4000060c + 0x40000618 ets_install_lock = 0x40000618 + 0x40000624 ets_backup_dma_copy = 0x40000624 + 0x40000630 ets_apb_backup_init_lock_func = 0x40000630 + 0x4000063c UartRxString = 0x4000063c + 0x40000648 uart_tx_one_char = 0x40000648 + 0x40000654 uart_tx_one_char2 = 0x40000654 + 0x40000660 uart_rx_one_char = 0x40000660 + 0x4000066c uart_rx_one_char_block = 0x4000066c + 0x40000678 uart_rx_readbuff = 0x40000678 + 0x40000684 uartAttach = 0x40000684 + 0x40000690 uart_tx_flush = 0x40000690 + 0x4000069c uart_tx_wait_idle = 0x4000069c + 0x400006a8 uart_div_modify = 0x400006a8 + 0x400006b4 ets_write_char_uart = 0x400006b4 + 0x400006c0 uart_tx_switch = 0x400006c0 + 0x400006cc multofup = 0x400006cc + 0x400006d8 software_reset = 0x400006d8 + 0x400006e4 software_reset_cpu = 0x400006e4 + 0x400006f0 assist_debug_clock_enable = 0x400006f0 + 0x400006fc assist_debug_record_enable = 0x400006fc + 0x40000708 clear_super_wdt_reset_flag = 0x40000708 + 0x40000714 disable_default_watchdog = 0x40000714 + 0x40000720 ets_set_appcpu_boot_addr = 0x40000720 + 0x4000072c esp_rom_set_rtc_wake_addr = 0x4000072c + 0x40000738 esp_rom_get_rtc_wake_addr = 0x40000738 + 0x40000744 send_packet = 0x40000744 + 0x40000750 recv_packet = 0x40000750 + 0x4000075c GetUartDevice = 0x4000075c + 0x40000768 UartDwnLdProc = 0x40000768 + 0x40000774 Uart_Init = 0x40000774 + 0x40000780 ets_set_user_start = 0x40000780 + 0x3ff1fffc ets_rom_layout_p = 0x3ff1fffc + 0x3fcefffc ets_ops_table_ptr = 0x3fcefffc + 0x4000078c mz_adler32 = 0x4000078c + 0x40000798 mz_crc32 = 0x40000798 + 0x400007a4 mz_free = 0x400007a4 + 0x400007b0 tdefl_compress = 0x400007b0 + 0x400007bc tdefl_compress_buffer = 0x400007bc + 0x400007c8 tdefl_compress_mem_to_heap = 0x400007c8 + 0x400007d4 tdefl_compress_mem_to_mem = 0x400007d4 + 0x400007e0 tdefl_compress_mem_to_output = 0x400007e0 + 0x400007ec tdefl_get_adler32 = 0x400007ec + 0x400007f8 tdefl_get_prev_return_status = 0x400007f8 + 0x40000804 tdefl_init = 0x40000804 + 0x40000810 tdefl_write_image_to_png_file_in_memory = 0x40000810 + 0x4000081c tdefl_write_image_to_png_file_in_memory_ex = 0x4000081c + 0x40000828 tinfl_decompress = 0x40000828 + 0x40000834 tinfl_decompress_mem_to_callback = 0x40000834 + 0x40000840 tinfl_decompress_mem_to_heap = 0x40000840 + 0x4000084c tinfl_decompress_mem_to_mem = 0x4000084c + [!provide] PROVIDE (jd_prepare = 0x40000858) + [!provide] PROVIDE (jd_decomp = 0x40000864) + 0x3fcefff8 dsps_fft2r_w_table_fc32_1024 = 0x3fcefff8 + [!provide] PROVIDE (opi_flash_set_lock_func = 0x40000870) + [!provide] PROVIDE (esp_rom_spi_cmd_config = 0x4000087c) + [!provide] PROVIDE (esp_rom_spi_cmd_start = 0x40000888) + 0x40000894 PROVIDE (esp_rom_opiflash_pin_config = 0x40000894) + 0x400008a0 PROVIDE (esp_rom_spi_set_op_mode = 0x400008a0) + [!provide] PROVIDE (esp_rom_opiflash_mode_reset = 0x400008ac) + 0x400008b8 PROVIDE (esp_rom_opiflash_exec_cmd = 0x400008b8) + [!provide] PROVIDE (esp_rom_opiflash_soft_reset = 0x400008c4) + [!provide] PROVIDE (esp_rom_opiflash_read_id = 0x400008d0) + [!provide] PROVIDE (esp_rom_opiflash_rdsr = 0x400008dc) + 0x400008e8 PROVIDE (esp_rom_opiflash_wait_idle = 0x400008e8) + 0x400008f4 PROVIDE (esp_rom_opiflash_wren = 0x400008f4) + 0x40000900 PROVIDE (esp_rom_opiflash_erase_sector = 0x40000900) + 0x4000090c PROVIDE (esp_rom_opiflash_erase_block_64k = 0x4000090c) + 0x40000918 PROVIDE (esp_rom_opiflash_erase_area = 0x40000918) + 0x40000924 PROVIDE (esp_rom_opiflash_read = 0x40000924) + 0x40000930 PROVIDE (esp_rom_opiflash_write = 0x40000930) + 0x4000093c PROVIDE (esp_rom_spi_set_dtr_swap_mode = 0x4000093c) + [!provide] PROVIDE (esp_rom_opiflash_exit_continuous_read_mode = 0x40000948) + 0x40000954 PROVIDE (esp_rom_opiflash_legacy_driver_init = 0x40000954) + [!provide] PROVIDE (esp_rom_opiflash_read_raw = 0x4004d9d4) + 0x3fcefff4 PROVIDE (rom_opiflash_cmd_def = 0x3fcefff4) + [!provide] PROVIDE (rom_spi_usr_cmd_legacy_funcs = 0x3fcefff0) + 0x40000960 PROVIDE (esp_rom_spiflash_wait_idle = 0x40000960) + 0x4000096c PROVIDE (esp_rom_spiflash_write_encrypted = 0x4000096c) + [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_dest = 0x40000978) + [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_enable = 0x40000984) + [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_disable = 0x40000990) + [!provide] PROVIDE (esp_rom_spiflash_erase_chip = 0x4000099c) + [!provide] PROVIDE (_esp_rom_spiflash_erase_sector = 0x400009a8) + [!provide] PROVIDE (_esp_rom_spiflash_erase_block = 0x400009b4) + [!provide] PROVIDE (_esp_rom_spiflash_write = 0x400009c0) + [!provide] PROVIDE (_esp_rom_spiflash_read = 0x400009cc) + [!provide] PROVIDE (_esp_rom_spiflash_unlock = 0x400009d8) + [!provide] PROVIDE (_SPIEraseArea = 0x400009e4) + [!provide] PROVIDE (_SPI_write_enable = 0x400009f0) + 0x400009fc PROVIDE (esp_rom_spiflash_erase_sector = 0x400009fc) + 0x40000a08 PROVIDE (esp_rom_spiflash_erase_block = 0x40000a08) + 0x40000a14 PROVIDE (esp_rom_spiflash_write = 0x40000a14) + 0x40000a20 PROVIDE (esp_rom_spiflash_read = 0x40000a20) + [!provide] PROVIDE (esp_rom_spiflash_unlock = 0x40000a2c) + [!provide] PROVIDE (SPIEraseArea = 0x40000a38) + 0x40000a44 PROVIDE (SPI_write_enable = 0x40000a44) + 0x40000a50 PROVIDE (esp_rom_spiflash_config_param = 0x40000a50) + [!provide] PROVIDE (esp_rom_spiflash_read_user_cmd = 0x40000a5c) + 0x40000a68 PROVIDE (esp_rom_spiflash_select_qio_pins = 0x40000a68) + [!provide] PROVIDE (esp_rom_spi_flash_auto_sus_res = 0x40000a74) + [!provide] PROVIDE (esp_rom_spi_flash_send_resume = 0x40000a80) + [!provide] PROVIDE (esp_rom_spi_flash_update_id = 0x40000a8c) + 0x40000a98 PROVIDE (esp_rom_spiflash_config_clk = 0x40000a98) + 0x40000aa4 PROVIDE (esp_rom_spiflash_config_readmode = 0x40000aa4) + [!provide] PROVIDE (esp_rom_spiflash_read_status = 0x40000ab0) + [!provide] PROVIDE (esp_rom_spiflash_read_statushigh = 0x40000abc) + [!provide] PROVIDE (esp_rom_spiflash_write_status = 0x40000ac8) + [!provide] PROVIDE (esp_rom_opiflash_cache_mode_config = 0x40000ad4) + [!provide] PROVIDE (esp_rom_spiflash_auto_wait_idle = 0x40000ae0) + [!provide] PROVIDE (spi_flash_attach = 0x40000aec) + [!provide] PROVIDE (spi_flash_get_chip_size = 0x40000af8) + [!provide] PROVIDE (spi_flash_guard_set = 0x40000b04) + [!provide] PROVIDE (spi_flash_guard_get = 0x40000b10) + [!provide] PROVIDE (spi_flash_write_config_set = 0x40000b1c) + [!provide] PROVIDE (spi_flash_write_config_get = 0x40000b28) + [!provide] PROVIDE (spi_flash_safe_write_address_func_set = 0x40000b34) + [!provide] PROVIDE (spi_flash_unlock = 0x40000b40) + [!provide] PROVIDE (spi_flash_erase_range = 0x40000b4c) + [!provide] PROVIDE (spi_flash_erase_sector = 0x40000b58) + [!provide] PROVIDE (spi_flash_write = 0x40000b64) + [!provide] PROVIDE (spi_flash_read = 0x40000b70) + [!provide] PROVIDE (spi_flash_write_encrypted = 0x40000b7c) + [!provide] PROVIDE (spi_flash_read_encrypted = 0x40000b88) + [!provide] PROVIDE (spi_flash_mmap_os_func_set = 0x40000b94) + [!provide] PROVIDE (spi_flash_mmap_page_num_init = 0x40000ba0) + [!provide] PROVIDE (spi_flash_mmap = 0x40000bac) + [!provide] PROVIDE (spi_flash_mmap_pages = 0x40000bb8) + [!provide] PROVIDE (spi_flash_munmap = 0x40000bc4) + [!provide] PROVIDE (spi_flash_mmap_dump = 0x40000bd0) + [!provide] PROVIDE (spi_flash_check_and_flush_cache = 0x40000bdc) + [!provide] PROVIDE (spi_flash_mmap_get_free_pages = 0x40000be8) + [!provide] PROVIDE (spi_flash_cache2phys = 0x40000bf4) + [!provide] PROVIDE (spi_flash_phys2cache = 0x40000c00) + [!provide] PROVIDE (spi_flash_disable_cache = 0x40000c0c) + [!provide] PROVIDE (spi_flash_restore_cache = 0x40000c18) + [!provide] PROVIDE (spi_flash_cache_enabled = 0x40000c24) + [!provide] PROVIDE (spi_flash_enable_cache = 0x40000c30) + [!provide] PROVIDE (spi_cache_mode_switch = 0x40000c3c) + [!provide] PROVIDE (spi_common_set_dummy_output = 0x40000c48) + [!provide] PROVIDE (spi_common_set_flash_cs_timing = 0x40000c54) + 0x40000c60 PROVIDE (esp_rom_spi_set_address_bit_len = 0x40000c60) + [!provide] PROVIDE (esp_enable_cache_flash_wrap = 0x40000c6c) + [!provide] PROVIDE (SPILock = 0x40000c78) + [!provide] PROVIDE (SPIMasterReadModeCnfig = 0x40000c84) + [!provide] PROVIDE (SPI_Common_Command = 0x40000c90) + [!provide] PROVIDE (SPI_WakeUp = 0x40000c9c) + [!provide] PROVIDE (SPI_block_erase = 0x40000ca8) + [!provide] PROVIDE (SPI_chip_erase = 0x40000cb4) + [!provide] PROVIDE (SPI_init = 0x40000cc0) + [!provide] PROVIDE (SPI_page_program = 0x40000ccc) + [!provide] PROVIDE (SPI_read_data = 0x40000cd8) + [!provide] PROVIDE (SPI_sector_erase = 0x40000ce4) + [!provide] PROVIDE (SelectSpiFunction = 0x40000cf0) + [!provide] PROVIDE (SetSpiDrvs = 0x40000cfc) + [!provide] PROVIDE (Wait_SPI_Idle = 0x40000d08) + [!provide] PROVIDE (spi_dummy_len_fix = 0x40000d14) + [!provide] PROVIDE (Disable_QMode = 0x40000d20) + [!provide] PROVIDE (Enable_QMode = 0x40000d2c) + 0x3fceffe8 PROVIDE (rom_spiflash_legacy_funcs = 0x3fceffe8) + 0x3fceffe4 PROVIDE (rom_spiflash_legacy_data = 0x3fceffe4) + [!provide] PROVIDE (g_flash_guard_ops = 0x3fceffec) + [!provide] PROVIDE (spi_flash_hal_poll_cmd_done = 0x40000d38) + [!provide] PROVIDE (spi_flash_hal_device_config = 0x40000d44) + [!provide] PROVIDE (spi_flash_hal_configure_host_io_mode = 0x40000d50) + [!provide] PROVIDE (spi_flash_hal_common_command = 0x40000d5c) + [!provide] PROVIDE (spi_flash_hal_read = 0x40000d68) + [!provide] PROVIDE (spi_flash_hal_erase_chip = 0x40000d74) + [!provide] PROVIDE (spi_flash_hal_erase_sector = 0x40000d80) + [!provide] PROVIDE (spi_flash_hal_erase_block = 0x40000d8c) + [!provide] PROVIDE (spi_flash_hal_program_page = 0x40000d98) + [!provide] PROVIDE (spi_flash_hal_set_write_protect = 0x40000da4) + [!provide] PROVIDE (spi_flash_hal_host_idle = 0x40000db0) + [!provide] PROVIDE (spi_flash_chip_generic_probe = 0x40000ed0) + [!provide] PROVIDE (spi_flash_chip_generic_detect_size = 0x40000edc) + [!provide] PROVIDE (spi_flash_chip_generic_write = 0x40000ee8) + [!provide] PROVIDE (spi_flash_chip_generic_write_encrypted = 0x40000ef4) + [!provide] PROVIDE (spi_flash_chip_generic_set_write_protect = 0x40000f00) + [!provide] PROVIDE (spi_flash_common_write_status_16b_wrsr = 0x40000f0c) + [!provide] PROVIDE (spi_flash_chip_generic_reset = 0x40000f18) + [!provide] PROVIDE (spi_flash_chip_generic_erase_chip = 0x40000f24) + [!provide] PROVIDE (spi_flash_chip_generic_erase_sector = 0x40000f30) + [!provide] PROVIDE (spi_flash_chip_generic_erase_block = 0x40000f3c) + [!provide] PROVIDE (spi_flash_chip_generic_page_program = 0x40000f48) + [!provide] PROVIDE (spi_flash_chip_generic_get_write_protect = 0x40000f54) + [!provide] PROVIDE (spi_flash_common_read_status_16b_rdsr_rdsr2 = 0x40000f60) + [!provide] PROVIDE (spi_flash_chip_generic_read_reg = 0x40000f6c) + [!provide] PROVIDE (spi_flash_chip_generic_yield = 0x40000f78) + [!provide] PROVIDE (spi_flash_generic_wait_host_idle = 0x40000f84) + [!provide] PROVIDE (spi_flash_chip_generic_wait_idle = 0x40000f90) + [!provide] PROVIDE (spi_flash_chip_generic_config_host_io_mode = 0x40000f9c) + [!provide] PROVIDE (spi_flash_chip_generic_read = 0x40000fa8) + [!provide] PROVIDE (spi_flash_common_read_status_8b_rdsr2 = 0x40000fb4) + [!provide] PROVIDE (spi_flash_chip_generic_get_io_mode = 0x40000fc0) + [!provide] PROVIDE (spi_flash_common_read_status_8b_rdsr = 0x40000fcc) + [!provide] PROVIDE (spi_flash_common_write_status_8b_wrsr = 0x40000fd8) + [!provide] PROVIDE (spi_flash_common_write_status_8b_wrsr2 = 0x40000fe4) + [!provide] PROVIDE (spi_flash_common_set_io_mode = 0x40000ff0) + [!provide] PROVIDE (spi_flash_chip_generic_set_io_mode = 0x40000ffc) + [!provide] PROVIDE (spi_flash_chip_gd_get_io_mode = 0x40001008) + [!provide] PROVIDE (spi_flash_chip_gd_probe = 0x40001014) + [!provide] PROVIDE (spi_flash_chip_gd_set_io_mode = 0x40001020) + [!provide] PROVIDE (spi_flash_chip_generic_config_data = 0x3fceffe0) + [!provide] PROVIDE (memspi_host_read_id_hs = 0x4000102c) + [!provide] PROVIDE (memspi_host_read_status_hs = 0x40001038) + [!provide] PROVIDE (memspi_host_flush_cache = 0x40001044) + [!provide] PROVIDE (memspi_host_erase_chip = 0x40001050) + [!provide] PROVIDE (memspi_host_erase_sector = 0x4000105c) + [!provide] PROVIDE (memspi_host_erase_block = 0x40001068) + [!provide] PROVIDE (memspi_host_program_page = 0x40001074) + [!provide] PROVIDE (memspi_host_read = 0x40001080) + [!provide] PROVIDE (memspi_host_set_write_protect = 0x4000108c) + [!provide] PROVIDE (memspi_host_set_max_read_len = 0x40001098) + [!provide] PROVIDE (memspi_host_read_data_slicer = 0x400010a4) + [!provide] PROVIDE (memspi_host_write_data_slicer = 0x400010b0) + [!provide] PROVIDE (esp_flash_chip_driver_initialized = 0x400010bc) + [!provide] PROVIDE (esp_flash_read_id = 0x400010c8) + [!provide] PROVIDE (esp_flash_get_size = 0x400010d4) + [!provide] PROVIDE (esp_flash_erase_chip = 0x400010e0) + [!provide] PROVIDE (rom_esp_flash_erase_region = 0x400010ec) + [!provide] PROVIDE (esp_flash_get_chip_write_protect = 0x400010f8) + [!provide] PROVIDE (esp_flash_set_chip_write_protect = 0x40001104) + [!provide] PROVIDE (esp_flash_get_protectable_regions = 0x40001110) + [!provide] PROVIDE (esp_flash_get_protected_region = 0x4000111c) + [!provide] PROVIDE (esp_flash_set_protected_region = 0x40001128) + [!provide] PROVIDE (esp_flash_read = 0x40001134) + [!provide] PROVIDE (rom_esp_flash_write = 0x40001140) + [!provide] PROVIDE (rom_esp_flash_write_encrypted = 0x4000114c) + [!provide] PROVIDE (esp_flash_read_encrypted = 0x40001158) + [!provide] PROVIDE (esp_flash_get_io_mode = 0x40001164) + [!provide] PROVIDE (esp_flash_set_io_mode = 0x40001170) + [!provide] PROVIDE (spi_flash_boot_attach = 0x4000117c) + [!provide] PROVIDE (spi_flash_dump_counters = 0x40001188) + [!provide] PROVIDE (spi_flash_get_counters = 0x40001194) + [!provide] PROVIDE (spi_flash_op_counters_config = 0x400011a0) + [!provide] PROVIDE (spi_flash_reset_counters = 0x400011ac) + [!provide] PROVIDE (esp_flash_read_chip_id = 0x400011b8) + [!provide] PROVIDE (detect_spi_flash_chip = 0x400011c4) + [!provide] PROVIDE (esp_rom_spiflash_write_disable = 0x400011d0) + [!provide] PROVIDE (esp_flash_default_chip = 0x3fceffdc) + [!provide] PROVIDE (esp_flash_api_funcs = 0x3fceffd8) + 0x400015fc PROVIDE (Cache_Get_ICache_Line_Size = 0x400015fc) + 0x40001608 PROVIDE (Cache_Get_DCache_Line_Size = 0x40001608) + [!provide] PROVIDE (Cache_Get_Mode = 0x40001614) + 0x40001620 PROVIDE (Cache_Set_ICache_Mode = 0x40001620) + 0x4000162c PROVIDE (Cache_Set_DCache_Mode = 0x4000162c) + [!provide] PROVIDE (Cache_Address_Through_ICache = 0x40001638) + [!provide] PROVIDE (Cache_Address_Through_DCache = 0x40001644) + [!provide] PROVIDE (Cache_Set_Default_Mode = 0x40001650) + [!provide] PROVIDE (Cache_Enable_Default_ICache_Mode = 0x4000165c) + 0x40001668 PROVIDE (ROM_Boot_Cache_Init = 0x40001668) + [!provide] PROVIDE (Cache_Invalidate_ICache_Items = 0x40001674) + [!provide] PROVIDE (Cache_Invalidate_DCache_Items = 0x40001680) + [!provide] PROVIDE (Cache_Clean_Items = 0x4000168c) + [!provide] PROVIDE (Cache_WriteBack_Items = 0x40001698) + [!provide] PROVIDE (Cache_Op_Addr = 0x400016a4) + 0x400016b0 PROVIDE (Cache_Invalidate_Addr = 0x400016b0) + [!provide] PROVIDE (Cache_Clean_Addr = 0x400016bc) + 0x400016c8 PROVIDE (rom_Cache_WriteBack_Addr = 0x400016c8) + 0x400016d4 PROVIDE (Cache_Invalidate_ICache_All = 0x400016d4) + 0x400016e0 PROVIDE (Cache_Invalidate_DCache_All = 0x400016e0) + [!provide] PROVIDE (Cache_Clean_All = 0x400016ec) + [!provide] PROVIDE (Cache_WriteBack_All = 0x400016f8) + [!provide] PROVIDE (Cache_Mask_All = 0x40001704) + [!provide] PROVIDE (Cache_UnMask_Dram0 = 0x40001710) + [!provide] PROVIDE (Cache_Suspend_ICache_Autoload = 0x4000171c) + [!provide] PROVIDE (Cache_Resume_ICache_Autoload = 0x40001728) + 0x40001734 PROVIDE (Cache_Suspend_DCache_Autoload = 0x40001734) + 0x40001740 PROVIDE (Cache_Resume_DCache_Autoload = 0x40001740) + [!provide] PROVIDE (Cache_Start_ICache_Preload = 0x4000174c) + [!provide] PROVIDE (Cache_ICache_Preload_Done = 0x40001758) + [!provide] PROVIDE (Cache_End_ICache_Preload = 0x40001764) + [!provide] PROVIDE (Cache_Start_DCache_Preload = 0x40001770) + [!provide] PROVIDE (Cache_DCache_Preload_Done = 0x4000177c) + [!provide] PROVIDE (Cache_End_DCache_Preload = 0x40001788) + [!provide] PROVIDE (Cache_Config_ICache_Autoload = 0x40001794) + [!provide] PROVIDE (Cache_Config_ICache_Region_Autoload = 0x400017a0) + [!provide] PROVIDE (Cache_Enable_ICache_Autoload = 0x400017ac) + [!provide] PROVIDE (Cache_Disable_ICache_Autoload = 0x400017b8) + [!provide] PROVIDE (Cache_Config_DCache_Autoload = 0x400017c4) + [!provide] PROVIDE (Cache_Config_DCache_Region_Autoload = 0x400017d0) + [!provide] PROVIDE (Cache_Enable_DCache_Autoload = 0x400017dc) + [!provide] PROVIDE (Cache_Disable_DCache_Autoload = 0x400017e8) + [!provide] PROVIDE (Cache_Enable_ICache_PreLock = 0x400017f4) + [!provide] PROVIDE (Cache_Disable_ICache_PreLock = 0x40001800) + [!provide] PROVIDE (Cache_Lock_ICache_Items = 0x4000180c) + [!provide] PROVIDE (Cache_Unlock_ICache_Items = 0x40001818) + [!provide] PROVIDE (Cache_Enable_DCache_PreLock = 0x40001824) + [!provide] PROVIDE (Cache_Disable_DCache_PreLock = 0x40001830) + [!provide] PROVIDE (Cache_Lock_DCache_Items = 0x4000183c) + [!provide] PROVIDE (Cache_Unlock_DCache_Items = 0x40001848) + [!provide] PROVIDE (Cache_Lock_Addr = 0x40001854) + [!provide] PROVIDE (Cache_Unlock_Addr = 0x40001860) + 0x4000186c PROVIDE (Cache_Disable_ICache = 0x4000186c) + 0x40001878 PROVIDE (Cache_Enable_ICache = 0x40001878) + 0x40001884 PROVIDE (Cache_Disable_DCache = 0x40001884) + 0x40001890 PROVIDE (Cache_Enable_DCache = 0x40001890) + 0x4000189c PROVIDE (rom_Cache_Suspend_ICache = 0x4000189c) + 0x400018a8 PROVIDE (Cache_Resume_ICache = 0x400018a8) + 0x400018b4 PROVIDE (rom_Cache_Suspend_DCache = 0x400018b4) + 0x400018c0 PROVIDE (Cache_Resume_DCache = 0x400018c0) + [!provide] PROVIDE (Cache_Occupy_Items = 0x400018cc) + [!provide] PROVIDE (Cache_Occupy_Addr = 0x400018d8) + 0x400018e4 PROVIDE (rom_Cache_Freeze_ICache_Enable = 0x400018e4) + 0x400018f0 PROVIDE (Cache_Freeze_ICache_Disable = 0x400018f0) + 0x400018fc PROVIDE (rom_Cache_Freeze_DCache_Enable = 0x400018fc) + 0x40001908 PROVIDE (Cache_Freeze_DCache_Disable = 0x40001908) + 0x40001914 PROVIDE (Cache_Set_IDROM_MMU_Size = 0x40001914) + [!provide] PROVIDE (flash2spiram_instruction_offset = 0x40001920) + [!provide] PROVIDE (flash2spiram_rodata_offset = 0x4000192c) + [!provide] PROVIDE (flash_instr_rodata_start_page = 0x40001938) + [!provide] PROVIDE (flash_instr_rodata_end_page = 0x40001944) + [!provide] PROVIDE (Cache_Set_IDROM_MMU_Info = 0x40001950) + [!provide] PROVIDE (Cache_Get_IROM_MMU_End = 0x4000195c) + [!provide] PROVIDE (Cache_Get_DROM_MMU_End = 0x40001968) + [!provide] PROVIDE (Cache_Owner_Init = 0x40001974) + 0x40001980 PROVIDE (Cache_Occupy_ICache_MEMORY = 0x40001980) + 0x4000198c PROVIDE (Cache_Occupy_DCache_MEMORY = 0x4000198c) + [!provide] PROVIDE (Cache_MMU_Init = 0x40001998) + [!provide] PROVIDE (Cache_Ibus_MMU_Set = 0x400019a4) + [!provide] PROVIDE (Cache_Dbus_MMU_Set = 0x400019b0) + 0x400019bc PROVIDE (rom_Cache_Count_Flash_Pages = 0x400019bc) + [!provide] PROVIDE (Cache_Flash_To_SPIRAM_Copy = 0x400019c8) + [!provide] PROVIDE (Cache_Travel_Tag_Memory = 0x400019d4) + [!provide] PROVIDE (Cache_Travel_Tag_Memory2 = 0x400019e0) + [!provide] PROVIDE (Cache_Get_Virtual_Addr = 0x400019ec) + [!provide] PROVIDE (Cache_Get_Memory_BaseAddr = 0x400019f8) + [!provide] PROVIDE (Cache_Get_Memory_Addr = 0x40001a04) + [!provide] PROVIDE (Cache_Get_Memory_value = 0x40001a10) + [!provide] PROVIDE (rom_config_instruction_cache_mode = 0x40001a1c) + [!provide] PROVIDE (rom_config_data_cache_mode = 0x40001a28) + [!provide] PROVIDE (rom_cache_op_cb = 0x3fceffc8) + [!provide] PROVIDE (rom_cache_internal_table_ptr = 0x3fceffc4) + 0x40001a34 ets_get_apb_freq = 0x40001a34 + 0x40001a40 ets_get_cpu_frequency = 0x40001a40 + 0x40001a4c ets_update_cpu_frequency = 0x40001a4c + 0x40001a58 ets_get_printf_channel = 0x40001a58 + 0x40001a64 ets_get_xtal_div = 0x40001a64 + 0x40001a70 ets_set_xtal_div = 0x40001a70 + 0x40001a7c ets_get_xtal_freq = 0x40001a7c + 0x40001a88 rom_gpio_input_get = 0x40001a88 + 0x40001a94 rom_gpio_matrix_in = 0x40001a94 + 0x40001aa0 rom_gpio_matrix_out = 0x40001aa0 + 0x40001aac rom_gpio_output_disable = 0x40001aac + 0x40001ab8 rom_gpio_output_enable = 0x40001ab8 + 0x40001ac4 rom_gpio_output_set = 0x40001ac4 + 0x40001ad0 rom_gpio_pad_hold = 0x40001ad0 + 0x40001adc rom_gpio_pad_input_disable = 0x40001adc + 0x40001ae8 rom_gpio_pad_input_enable = 0x40001ae8 + 0x40001af4 rom_gpio_pad_pulldown = 0x40001af4 + 0x40001b00 rom_gpio_pad_pullup = 0x40001b00 + 0x40001b0c rom_gpio_pad_select_gpio = 0x40001b0c + 0x40001b18 rom_gpio_pad_set_drv = 0x40001b18 + 0x40001b24 rom_gpio_pad_unhold = 0x40001b24 + 0x40001b30 rom_gpio_pin_wakeup_disable = 0x40001b30 + 0x40001b3c rom_gpio_pin_wakeup_enable = 0x40001b3c + 0x40001b48 rom_gpio_bypass_matrix_in = 0x40001b48 + 0x40001b54 intr_matrix_set = 0x40001b54 + 0x40001b60 ets_intr_lock = 0x40001b60 + 0x40001b6c ets_intr_unlock = 0x40001b6c + 0x40001b78 ets_isr_attach = 0x40001b78 + 0x40001b84 ets_isr_mask = 0x40001b84 + 0x40001b90 ets_isr_unmask = 0x40001b90 + 0x40001b9c xthal_bcopy = 0x40001b9c + 0x40001ba8 xthal_memcpy = 0x40001ba8 + 0x40001bb4 xthal_get_ccompare = 0x40001bb4 + 0x40001bc0 xthal_set_ccompare = 0x40001bc0 + 0x40001bcc xthal_get_ccount = 0x40001bcc + 0x40001bd8 xthal_get_interrupt = 0x40001bd8 + 0x40001be4 xthal_set_intclear = 0x40001be4 + 0x40001bf0 _xtos_ints_off = 0x40001bf0 + 0x40001bfc _xtos_ints_on = 0x40001bfc + 0x40001c08 _xtos_restore_intlevel = 0x40001c08 + 0x40001c14 _xtos_set_exception_handler = 0x40001c14 + 0x40001c20 _xtos_set_interrupt_handler = 0x40001c20 + 0x40001c2c _xtos_set_interrupt_handler_arg = 0x40001c2c + 0x40001c38 _xtos_set_intlevel = 0x40001c38 + 0x40001c44 _xtos_set_vpri = 0x40001c44 + 0x40001c50 md5_vector = 0x40001c50 + 0x40001c5c MD5Init = 0x40001c5c + 0x40001c68 MD5Update = 0x40001c68 + 0x40001c74 MD5Final = 0x40001c74 + 0x40001c98 crc32_le = 0x40001c98 + 0x40001ca4 crc32_be = 0x40001ca4 + 0x40001cb0 crc16_le = 0x40001cb0 + 0x40001cbc crc16_be = 0x40001cbc + 0x40001cc8 crc8_le = 0x40001cc8 + 0x40001cd4 crc8_be = 0x40001cd4 + 0x40001ce0 esp_crc8 = 0x40001ce0 + 0x40001cec ets_sha_enable = 0x40001cec + 0x40001cf8 ets_sha_disable = 0x40001cf8 + 0x40001d04 ets_sha_get_state = 0x40001d04 + 0x40001d10 ets_sha_init = 0x40001d10 + 0x40001d1c ets_sha_process = 0x40001d1c + 0x40001d28 ets_sha_starts = 0x40001d28 + 0x40001d34 ets_sha_update = 0x40001d34 + 0x40001d40 ets_sha_finish = 0x40001d40 + 0x40001d4c ets_sha_clone = 0x40001d4c + 0x40001d58 ets_hmac_enable = 0x40001d58 + 0x40001d64 ets_hmac_disable = 0x40001d64 + 0x40001d70 ets_hmac_calculate_message = 0x40001d70 + 0x40001d7c ets_hmac_calculate_downstream = 0x40001d7c + 0x40001d88 ets_hmac_invalidate_downstream = 0x40001d88 + 0x40001d94 ets_jtag_enable_temporarily = 0x40001d94 + 0x40001da0 ets_aes_enable = 0x40001da0 + 0x40001dac ets_aes_disable = 0x40001dac + 0x40001db8 ets_aes_setkey = 0x40001db8 + 0x40001dc4 ets_aes_block = 0x40001dc4 + 0x40001dd0 ets_bigint_enable = 0x40001dd0 + 0x40001ddc ets_bigint_disable = 0x40001ddc + 0x40001de8 ets_bigint_multiply = 0x40001de8 + 0x40001df4 ets_bigint_modmult = 0x40001df4 + 0x40001e00 ets_bigint_modexp = 0x40001e00 + 0x40001e0c ets_bigint_wait_finish = 0x40001e0c + 0x40001e18 ets_bigint_getz = 0x40001e18 + 0x40001e24 ets_ds_enable = 0x40001e24 + 0x40001e30 ets_ds_disable = 0x40001e30 + 0x40001e3c ets_ds_start_sign = 0x40001e3c + 0x40001e48 ets_ds_is_busy = 0x40001e48 + 0x40001e54 ets_ds_finish_sign = 0x40001e54 + 0x40001e60 ets_ds_encrypt_params = 0x40001e60 + 0x40001e6c ets_aes_setkey_dec = 0x40001e6c + 0x40001e78 ets_aes_setkey_enc = 0x40001e78 + 0x40001e84 ets_mgf1_sha256 = 0x40001e84 + 0x40001e90 ets_efuse_read = 0x40001e90 + 0x40001e9c ets_efuse_program = 0x40001e9c + 0x40001ea8 ets_efuse_clear_program_registers = 0x40001ea8 + 0x40001eb4 ets_efuse_write_key = 0x40001eb4 + 0x40001ec0 ets_efuse_get_read_register_address = 0x40001ec0 + 0x40001ecc ets_efuse_get_key_purpose = 0x40001ecc + 0x40001ed8 ets_efuse_key_block_unused = 0x40001ed8 + 0x40001ee4 ets_efuse_find_unused_key_block = 0x40001ee4 + 0x40001ef0 ets_efuse_rs_calculate = 0x40001ef0 + 0x40001efc ets_efuse_count_unused_key_blocks = 0x40001efc + 0x40001f08 ets_efuse_secure_boot_enabled = 0x40001f08 + 0x40001f14 ets_efuse_secure_boot_aggressive_revoke_enabled = 0x40001f14 + 0x40001f20 ets_efuse_cache_encryption_enabled = 0x40001f20 + 0x40001f2c ets_efuse_download_modes_disabled = 0x40001f2c + 0x40001f38 ets_efuse_find_purpose = 0x40001f38 + 0x40001f44 ets_efuse_flash_opi_5pads_power_sel_vddspi = 0x40001f44 + 0x40001f50 ets_efuse_force_send_resume = 0x40001f50 + 0x40001f5c ets_efuse_get_flash_delay_us = 0x40001f5c + 0x40001f68 ets_efuse_get_mac = 0x40001f68 + 0x40001f74 ets_efuse_get_spiconfig = 0x40001f74 + 0x40001f80 ets_efuse_usb_print_is_disabled = 0x40001f80 + 0x40001f8c ets_efuse_usb_serial_jtag_print_is_disabled = 0x40001f8c + 0x40001f98 ets_efuse_get_uart_print_control = 0x40001f98 + 0x40001fa4 ets_efuse_get_wp_pad = 0x40001fa4 + 0x40001fb0 ets_efuse_legacy_spi_boot_mode_disabled = 0x40001fb0 + 0x40001fbc ets_efuse_security_download_modes_enabled = 0x40001fbc + 0x40001fc8 ets_efuse_set_timing = 0x40001fc8 + 0x40001fd4 ets_efuse_jtag_disabled = 0x40001fd4 + 0x40001fe0 ets_efuse_usb_download_mode_disabled = 0x40001fe0 + 0x40001fec ets_efuse_usb_module_disabled = 0x40001fec + 0x40001ff8 ets_efuse_usb_device_disabled = 0x40001ff8 + 0x40002004 ets_efuse_flash_octal_mode = 0x40002004 + 0x40002010 ets_efuse_ecc_en = 0x40002010 + 0x4000201c ets_efuse_ecc_flash_page_size = 0x4000201c + 0x40002028 ets_efuse_ecc_16to17_mode = 0x40002028 + 0x40002034 ets_ecc_flash_enable = 0x40002034 + 0x40002040 ets_ecc_flash_enable_all = 0x40002040 + 0x4000204c ets_ecc_flash_disable = 0x4000204c + 0x40002058 ets_ecc_flash_disable_all = 0x40002058 + 0x40002064 ets_ecc_get_flash_page_size = 0x40002064 + 0x40002070 ets_ecc_set_flash_page_size = 0x40002070 + 0x4000207c ets_ecc_set_flash_byte_mode = 0x4000207c + 0x40002088 ets_ecc_get_flash_byte_mode = 0x40002088 + 0x40002094 ets_ecc_set_flash_range = 0x40002094 + 0x400020a0 ets_ecc_get_flash_range = 0x400020a0 + 0x400020ac ets_ecc_sram_enable = 0x400020ac + 0x400020b8 ets_ecc_sram_disable = 0x400020b8 + 0x400020c4 ets_ecc_sram_enable_all = 0x400020c4 + 0x400020d0 ets_ecc_sram_disable_all = 0x400020d0 + 0x400020dc ets_ecc_get_sram_page_size = 0x400020dc + 0x400020e8 ets_ecc_set_sram_page_size = 0x400020e8 + 0x400020f4 ets_ecc_get_sram_byte_mode = 0x400020f4 + 0x40002100 ets_ecc_set_sram_byte_mode = 0x40002100 + 0x4000210c ets_ecc_set_sram_range = 0x4000210c + 0x40002118 ets_ecc_get_sram_range = 0x40002118 + 0x3fceffc0 ets_ecc_table_ptr = 0x3fceffc0 + 0x40002124 ets_emsa_pss_verify = 0x40002124 + 0x40002130 ets_rsa_pss_verify = 0x40002130 + 0x4000213c ets_secure_boot_verify_bootloader_with_keys = 0x4000213c + 0x40002148 ets_secure_boot_verify_signature = 0x40002148 + 0x40002154 ets_secure_boot_read_key_digests = 0x40002154 + 0x40002160 ets_secure_boot_revoke_public_key_digest = 0x40002160 + [!provide] PROVIDE (usb_uart_otg_rx_one_char = 0x400025a4) + [!provide] PROVIDE (usb_uart_otg_rx_one_char_block = 0x400025b0) + [!provide] PROVIDE (usb_uart_otg_tx_flush = 0x400025bc) + [!provide] PROVIDE (usb_uart_otg_tx_one_char = 0x400025c8) + [!provide] PROVIDE (usb_uart_device_rx_one_char = 0x400025d4) + [!provide] PROVIDE (usb_uart_device_rx_one_char_block = 0x400025e0) + [!provide] PROVIDE (usb_uart_device_tx_flush = 0x400025ec) + [!provide] PROVIDE (usb_uart_device_tx_one_char = 0x400025f8) + [!provide] PROVIDE (Uart_Init_USB = 0x40002604) + [!provide] PROVIDE (uart_acm_dev = 0x3fceffbc) + 0x3fceffb9 PROVIDE (g_uart_print = 0x3fceffb9) + 0x3fceffb8 PROVIDE (g_usb_print = 0x3fceffb8) + 0x40002610 cdc_acm_class_handle_req = 0x40002610 + 0x4000261c cdc_acm_init = 0x4000261c + 0x40002628 cdc_acm_fifo_fill = 0x40002628 + 0x40002634 cdc_acm_rx_fifo_cnt = 0x40002634 + 0x40002640 cdc_acm_fifo_read = 0x40002640 + 0x4000264c cdc_acm_irq_tx_enable = 0x4000264c + 0x40002658 cdc_acm_irq_tx_disable = 0x40002658 + 0x40002664 cdc_acm_irq_state_enable = 0x40002664 + 0x40002670 cdc_acm_irq_state_disable = 0x40002670 + 0x4000267c cdc_acm_irq_tx_ready = 0x4000267c + 0x40002688 cdc_acm_irq_rx_enable = 0x40002688 + 0x40002694 cdc_acm_irq_rx_disable = 0x40002694 + 0x400026a0 cdc_acm_irq_rx_ready = 0x400026a0 + 0x400026ac cdc_acm_irq_is_pending = 0x400026ac + 0x400026b8 cdc_acm_irq_callback_set = 0x400026b8 + 0x400026c4 cdc_acm_line_ctrl_set = 0x400026c4 + 0x400026d0 cdc_acm_line_ctrl_get = 0x400026d0 + 0x400026dc cdc_acm_poll_out = 0x400026dc + 0x400026e8 chip_usb_dw_did_persist = 0x400026e8 + 0x400026f4 chip_usb_dw_init = 0x400026f4 + 0x40002700 chip_usb_detach = 0x40002700 + 0x4000270c chip_usb_dw_prepare_persist = 0x4000270c + 0x40002718 chip_usb_get_persist_flags = 0x40002718 + 0x40002724 chip_usb_set_persist_flags = 0x40002724 + 0x40002730 cpio_start = 0x40002730 + 0x4000273c cpio_feed = 0x4000273c + 0x40002748 cpio_done = 0x40002748 + 0x40002754 cpio_destroy = 0x40002754 + 0x40002760 dfu_flash_init = 0x40002760 + 0x4000276c dfu_flash_erase = 0x4000276c + 0x40002778 dfu_flash_program = 0x40002778 + 0x40002784 dfu_flash_read = 0x40002784 + 0x40002790 dfu_flash_attach = 0x40002790 + 0x4000279c dfu_cpio_callback = 0x4000279c + 0x400027a8 dfu_updater_get_err = 0x400027a8 + 0x400027b4 dfu_updater_clear_err = 0x400027b4 + 0x400027c0 dfu_updater_enable = 0x400027c0 + 0x400027cc dfu_updater_begin = 0x400027cc + 0x400027d8 dfu_updater_feed = 0x400027d8 + 0x400027e4 dfu_updater_end = 0x400027e4 + 0x400027f0 dfu_updater_set_raw_addr = 0x400027f0 + 0x400027fc dfu_updater_flash_read = 0x400027fc + 0x40002808 usb_dc_prepare_persist = 0x40002808 + 0x40002814 usb_dw_isr_handler = 0x40002814 + 0x40002820 usb_dc_attach = 0x40002820 + 0x4000282c usb_dc_detach = 0x4000282c + 0x40002838 usb_dc_reset = 0x40002838 + 0x40002844 usb_dc_set_address = 0x40002844 + 0x40002850 usb_dc_ep_check_cap = 0x40002850 + 0x4000285c usb_dc_ep_configure = 0x4000285c + 0x40002868 usb_dc_ep_set_stall = 0x40002868 + 0x40002874 usb_dc_ep_clear_stall = 0x40002874 + 0x40002880 usb_dc_ep_halt = 0x40002880 + 0x4000288c usb_dc_ep_is_stalled = 0x4000288c + 0x40002898 usb_dc_ep_enable = 0x40002898 + 0x400028a4 usb_dc_ep_disable = 0x400028a4 + 0x400028b0 usb_dc_ep_flush = 0x400028b0 + 0x400028bc usb_dc_ep_write_would_block = 0x400028bc + 0x400028c8 usb_dc_ep_write = 0x400028c8 + 0x400028d4 usb_dc_ep_read_wait = 0x400028d4 + 0x400028e0 usb_dc_ep_read_continue = 0x400028e0 + 0x400028ec usb_dc_ep_read = 0x400028ec + 0x400028f8 usb_dc_ep_set_callback = 0x400028f8 + 0x40002904 usb_dc_set_status_callback = 0x40002904 + 0x40002910 usb_dc_ep_mps = 0x40002910 + 0x4000291c usb_dc_check_poll_for_interrupts = 0x4000291c + 0x40002928 mac_addr_to_serial_str_desc = 0x40002928 + 0x40002934 usb_set_current_descriptor = 0x40002934 + 0x40002940 usb_get_descriptor = 0x40002940 + 0x4000294c usb_dev_resume = 0x4000294c + 0x40002958 usb_dev_get_configuration = 0x40002958 + 0x40002964 usb_set_config = 0x40002964 + 0x40002970 usb_deconfig = 0x40002970 + 0x4000297c usb_enable = 0x4000297c + 0x40002988 usb_disable = 0x40002988 + 0x40002994 usb_write_would_block = 0x40002994 + 0x400029a0 usb_write = 0x400029a0 + 0x400029ac usb_read = 0x400029ac + 0x400029b8 usb_ep_set_stall = 0x400029b8 + 0x400029c4 usb_ep_clear_stall = 0x400029c4 + 0x400029d0 usb_ep_read_wait = 0x400029d0 + 0x400029dc usb_ep_read_continue = 0x400029dc + 0x400029e8 usb_transfer_ep_callback = 0x400029e8 + 0x400029f4 usb_transfer = 0x400029f4 + 0x40002a00 usb_cancel_transfer = 0x40002a00 + 0x40002a0c usb_transfer_sync = 0x40002a0c + 0x40002a18 usb_dfu_set_detach_cb = 0x40002a18 + 0x40002a24 dfu_class_handle_req = 0x40002a24 + 0x40002a30 dfu_status_cb = 0x40002a30 + 0x40002a3c dfu_custom_handle_req = 0x40002a3c + 0x40002a48 usb_dfu_init = 0x40002a48 + 0x40002a54 usb_dfu_force_detach = 0x40002a54 + 0x40002a60 usb_dev_deinit = 0x40002a60 + 0x40002a6c usb_dw_ctrl_deinit = 0x40002a6c + 0x3fceffac rom_usb_osglue = 0x3fceffac + 0x3fceffa8 bt_rf_coex_cfg_p = 0x3fceffa8 + 0x3fceffa4 bt_rf_coex_hooks_p = 0x3fceffa4 + 0x3fceffa0 btdm_env_p = 0x3fceffa0 + 0x3fceff9c g_rw_controller_task_handle = 0x3fceff9c + 0x3fceff98 g_rw_init_sem = 0x3fceff98 + 0x3fceff94 g_rw_schd_queue = 0x3fceff94 + 0x3fceff90 lld_init_env = 0x3fceff90 + 0x3fceff8c lld_rpa_renew_env = 0x3fceff8c + 0x3fceff88 lld_scan_env = 0x3fceff88 + 0x3fceff84 lld_scan_sync_env = 0x3fceff84 + 0x3fceff80 lld_test_env = 0x3fceff80 + 0x3fceff7c p_ble_util_buf_env = 0x3fceff7c + 0x3fceff78 p_lld_env = 0x3fceff78 + 0x3fceff74 p_llm_env = 0x3fceff74 + 0x3fceff70 r_h4tl_eif_p = 0x3fceff70 + 0x3fceff6c r_hli_funcs_p = 0x3fceff6c + 0x3fceff68 r_ip_funcs_p = 0x3fceff68 + 0x3fceff64 r_modules_funcs_p = 0x3fceff64 + 0x3fceff60 r_osi_funcs_p = 0x3fceff60 + 0x3fceff5c r_plf_funcs_p = 0x3fceff5c + 0x3fceff58 vhci_env_p = 0x3fceff58 + 0x3fceff54 aa_gen = 0x3fceff54 + 0x3fceff48 aes_env = 0x3fceff48 + 0x3fcefef8 bt_rf_coex_cfg_cb = 0x3fcefef8 + 0x3fcefef4 btdm_pwr_state = 0x3fcefef4 + 0x3fcefef0 btdm_slp_err = 0x3fcefef0 + 0x3fcefee8 ecc_env = 0x3fcefee8 + 0x3fcefee0 esp_handler = 0x3fcefee0 + 0x3fcefed8 esp_vendor_cmd = 0x3fcefed8 + 0x3fcefed4 g_adv_delay_dis = 0x3fcefed4 + 0x3fcefed0 g_conflict_elt = 0x3fcefed0 + 0x3fcefec0 g_eif_api = 0x3fcefec0 + 0x3fcefeb4 g_event_empty = 0x3fcefeb4 + 0x3fcefeaa g_llc_state = 0x3fcefeaa + 0x3fcefea9 g_llm_state = 0x3fcefea9 + 0x3fcefea7 g_max_evt_env = 0x3fcefea7 + 0x3fcefea6 g_misc_state = 0x3fcefea6 + 0x3fcefe8a g_rma_rule_db = 0x3fcefe8a + 0x3fcefe6e g_rtp_rule_db = 0x3fcefe6e + 0x3fcefe6d g_scan_forever = 0x3fcefe6d + 0x3fcefe6c g_time_msb = 0x3fcefe6c + 0x3fcefe44 h4tl_env = 0x3fcefe44 + 0x3fcefe21 hci_env = 0x3fcefe21 + 0x3fcefe20 hci_ext_host = 0x3fcefe20 + 0x3fcefe18 hci_fc_env = 0x3fcefe18 + 0x3fcefdec hci_tl_env = 0x3fcefdec + 0x3fcefdbc ke_env = 0x3fcefdbc + 0x3fcefd7c ke_event_env = 0x3fcefd7c + 0x3fcefd00 ke_task_env = 0x3fcefd00 + 0x3fcefcd8 llc_env = 0x3fcefcd8 + 0x3fcefcb0 lld_adv_env = 0x3fcefcb0 + 0x3fcefc88 lld_con_env = 0x3fcefc88 + 0x3fcefc80 lld_exp_sync_pos_tab = 0x3fcefc80 + 0x3fcefc58 lld_per_adv_env = 0x3fcefc58 + 0x3fcefc30 lld_sync_env = 0x3fcefc30 + 0x3fcefc24 llm_le_adv_flow_env = 0x3fcefc24 + 0x3fcefc20 rw_sleep_enable = 0x3fcefc20 + 0x3fcefc18 rwble_env = 0x3fcefc18 + 0x3fcefbfc rwip_env = 0x3fcefbfc + 0x3fcefbf0 rwip_param = 0x3fcefbf0 + 0x3fcefbec rwip_prog_delay = 0x3fcefbec + 0x3fcefbb4 rwip_rf = 0x3fcefbb4 + 0x3fcefbac sch_alarm_env = 0x3fcefbac + 0x3fcefb98 sch_arb_env = 0x3fcefb98 + 0x3fcefb90 sch_plan_env = 0x3fcefb90 + 0x3fcefa8c sch_prog_env = 0x3fcefa8c + 0x3fcefa2c sch_slice_env = 0x3fcefa2c + 0x3fcefa24 sch_slice_params = 0x3fcefa24 + 0x3fcefa1c timer_env = 0x3fcefa1c + 0x3fcefa18 unloaded_area = 0x3fcefa18 + 0x3fcefa14 vshci_state = 0x3fcefa14 + 0x3fcefa08 TASK_DESC_LLC = 0x3fcefa08 + 0x3fcef9fc TASK_DESC_LLM = 0x3fcef9fc + 0x3fcef9f0 TASK_DESC_VSHCI = 0x3fcef9f0 + 0x3fcef9e8 co_default_bdaddr = 0x3fcef9e8 + 0x3fcef9e4 dbg_assert_block = 0x3fcef9e4 + 0x3fcef9e0 g_bt_plf_log_level = 0x3fcef9e0 + 0x3fcef9bc hci_cmd_desc_tab_vs_esp = 0x3fcef9bc + 0x3fcef9a4 hci_command_handler_tab_esp = 0x3fcef9a4 + 0x3fcef9a0 privacy_en = 0x3fcef9a0 + 0x3fcef958 sdk_cfg_priv_opts = 0x3fcef958 + 0x3ff1ffdc BasePoint_x_256 = 0x3ff1ffdc + 0x3ff1ffbc BasePoint_y_256 = 0x3ff1ffbc + 0x3ff1ff9c DebugE256PublicKey_x = 0x3ff1ff9c + 0x3ff1ff7c DebugE256PublicKey_y = 0x3ff1ff7c + 0x3ff1ff5c DebugE256SecretKey = 0x3ff1ff5c + 0x3ff1f7a0 ECC_4Win_Look_up_table = 0x3ff1f7a0 + 0x3ff1f79a LLM_AA_CT1 = 0x3ff1f79a + 0x3ff1f798 LLM_AA_CT2 = 0x3ff1f798 + 0x3ff1f790 RF_TX_PW_CONV_TBL = 0x3ff1f790 + 0x3ff1f784 TASK_DESC_MISC = 0x3ff1f784 + 0x3ff1f766 adv_evt_prop2type = 0x3ff1f766 + 0x3ff1f761 adv_evt_type2prop = 0x3ff1f761 + 0x3ff1f751 aes_cmac_zero = 0x3ff1f751 + 0x3ff1f741 aes_k2_salt = 0x3ff1f741 + 0x3ff1f73c aes_k3_id64 = 0x3ff1f73c + 0x3ff1f72c aes_k3_salt = 0x3ff1f72c + 0x3ff1f728 aes_k4_id6 = 0x3ff1f728 + 0x3ff1f718 aes_k4_salt = 0x3ff1f718 + 0x3ff1f6ec bigHexP256 = 0x3ff1f6ec + 0x3ff1f6e2 byte_tx_time = 0x3ff1f6e2 + 0x3ff1f6dc co_null_bdaddr = 0x3ff1f6dc + 0x3ff1f6d7 co_phy_mask_to_rate = 0x3ff1f6d7 + 0x3ff1f6d2 co_phy_mask_to_value = 0x3ff1f6d2 + 0x3ff1f6ce co_phy_to_rate = 0x3ff1f6ce + 0x3ff1f6ca co_phy_value_to_mask = 0x3ff1f6ca + 0x3ff1f6c5 co_rate_to_byte_dur_us = 0x3ff1f6c5 + 0x3ff1f6c0 co_rate_to_phy = 0x3ff1f6c0 + 0x3ff1f6bc co_rate_to_phy_mask = 0x3ff1f6bc + 0x3ff1f6ac co_sca2ppm = 0x3ff1f6ac + 0x3ff1f680 coef_B = 0x3ff1f680 + 0x3ff1f678 connect_req_dur_tab = 0x3ff1f678 + 0x3ff1f5f4 ecc_Jacobian_InfinityPoint256 = 0x3ff1f5f4 + 0x3ff1f526 em_base_reg_lut = 0x3ff1f526 + 0x3ff1f51e fixed_tx_time = 0x3ff1f51e + 0x3ff1f518 h4tl_msgtype2hdrlen = 0x3ff1f518 + 0x3ff1f4e8 hci_cmd_desc_root_tab = 0x3ff1f4e8 + 0x3ff1f47c hci_cmd_desc_tab_ctrl_bb = 0x3ff1f47c + 0x3ff1f44c hci_cmd_desc_tab_info_par = 0x3ff1f44c + 0x3ff1f0b0 hci_cmd_desc_tab_le = 0x3ff1f0b0 + 0x3ff1f098 hci_cmd_desc_tab_lk_ctrl = 0x3ff1f098 + 0x3ff1f08c hci_cmd_desc_tab_stat_par = 0x3ff1f08c + 0x3ff1f050 hci_cmd_desc_tab_vs = 0x3ff1f050 + 0x3ff1f008 hci_evt_desc_tab = 0x3ff1f008 + 0x3ff1ef68 hci_evt_le_desc_tab = 0x3ff1ef68 + 0x3ff1ef60 hci_evt_le_desc_tab_esp = 0x3ff1ef60 + 0x3ff1ef57 hci_rsvd_evt_msk = 0x3ff1ef57 + 0x3ff1ef54 lld_aux_phy_to_rate = 0x3ff1ef54 + 0x3ff1ef4c lld_init_max_aux_dur_tab = 0x3ff1ef4c + 0x3ff1ef44 lld_scan_map_legacy_pdu_to_evt_type = 0x3ff1ef44 + 0x3ff1ef3c lld_scan_max_aux_dur_tab = 0x3ff1ef3c + 0x3ff1ef34 lld_sync_max_aux_dur_tab = 0x3ff1ef34 + 0x3ff1ef2c llm_local_le_feats = 0x3ff1ef2c + 0x3ff1ef24 llm_local_le_states = 0x3ff1ef24 + 0x3ff1eefc llm_local_supp_cmds = 0x3ff1eefc + 0x3ff1eedc maxSecretKey_256 = 0x3ff1eedc + 0x3ff1eed4 max_data_tx_time = 0x3ff1eed4 + 0x3ff1eec3 one_bits = 0x3ff1eec3 + 0x3ff1eebe rwip_coex_cfg = 0x3ff1eebe + 0x3ff1eea8 rwip_priority = 0x3ff1eea8 + 0x3ff1ee5c veryBigHexP256 = 0x3ff1ee5c + 0x40005250 esp_pp_rom_version_get = 0x40005250 + 0x4000525c RC_GetBlockAckTime = 0x4000525c + 0x40005268 ebuf_list_remove = 0x40005268 + 0x40005298 GetAccess = 0x40005298 + 0x400052a4 hal_mac_is_low_rate_enabled = 0x400052a4 + 0x400052b0 hal_mac_tx_get_blockack = 0x400052b0 + 0x400052c8 ic_get_trc = 0x400052c8 + 0x400052ec ic_interface_enabled = 0x400052ec + 0x400052f8 is_lmac_idle = 0x400052f8 + 0x40005310 lmacDiscardAgedMSDU = 0x40005310 + 0x40005334 lmacIsIdle = 0x40005334 + 0x40005340 lmacIsLongFrame = 0x40005340 + 0x40005358 lmacPostTxComplete = 0x40005358 + 0x40005364 lmacProcessAllTxTimeout = 0x40005364 + 0x40005370 lmacProcessCollisions = 0x40005370 + 0x4000537c lmacProcessRxSucData = 0x4000537c + 0x40005388 lmacReachLongLimit = 0x40005388 + 0x40005394 lmacReachShortLimit = 0x40005394 + 0x400053a0 lmacRecycleMPDU = 0x400053a0 + 0x400053ac lmacRxDone = 0x400053ac + 0x400053dc mac_tx_set_duration = 0x400053dc + 0x400053f4 mac_tx_set_plcp0 = 0x400053f4 + 0x4000540c mac_tx_set_plcp2 = 0x4000540c + 0x40005424 pm_disable_dream_timer = 0x40005424 + 0x40005430 pm_disable_sleep_delay_timer = 0x40005430 + 0x40005448 pm_mac_wakeup = 0x40005448 + 0x40005454 pm_mac_sleep = 0x40005454 + 0x40005460 pm_enable_active_timer = 0x40005460 + 0x4000546c pm_enable_sleep_delay_timer = 0x4000546c + 0x40005478 pm_local_tsf_process = 0x40005478 + 0x40005484 //pm_set_beacon_filter = 0x40005484 + 0x4000549c pm_is_waked = 0x4000549c + 0x400054c0 pm_on_data_rx = 0x400054c0 + 0x400054cc pm_on_tbtt = 0x400054cc + 0x40005514 pm_sleep_for = 0x40005514 + 0x4000552c ppAMPDU2Normal = 0x4000552c + 0x40005544 ppCalFrameTimes = 0x40005544 + 0x40005550 ppCalSubFrameLength = 0x40005550 + 0x40005568 ppCheckTxAMPDUlength = 0x40005568 + 0x40005574 ppDequeueRxq_Locked = 0x40005574 + 0x40005580 ppDequeueTxQ = 0x40005580 + 0x4000558c ppEmptyDelimiterLength = 0x4000558c + 0x40005598 ppEnqueueRxq = 0x40005598 + 0x400055a4 ppEnqueueTxDone = 0x400055a4 + 0x400055b0 ppGetTxQFirstAvail_Locked = 0x400055b0 + 0x400055bc ppGetTxframe = 0x400055bc + 0x400055e0 ppProcessRxPktHdr = 0x400055e0 + 0x400055f8 ppRecordBarRRC = 0x400055f8 + 0x40005604 lmacRequestTxopQueue = 0x40005604 + 0x40005610 lmacReleaseTxopQueue = 0x40005610 + 0x4000561c ppRecycleAmpdu = 0x4000561c + 0x40005628 ppRecycleRxPkt = 0x40005628 + 0x40005634 ppResortTxAMPDU = 0x40005634 + 0x40005640 ppResumeTxAMPDU = 0x40005640 + 0x40005670 ppSearchTxQueue = 0x40005670 + 0x4000567c ppSearchTxframe = 0x4000567c + 0x40005688 ppSelectNextQueue = 0x40005688 + 0x40005694 ppSubFromAMPDU = 0x40005694 + 0x400056ac ppTxPkt = 0x400056ac + 0x400056b8 ppTxProtoProc = 0x400056b8 + 0x400056c4 ppTxqUpdateBitmap = 0x400056c4 + 0x400056dc pp_hdrsize = 0x400056dc + 0x400056e8 pp_post = 0x400056e8 + 0x400056f4 pp_process_hmac_waiting_txq = 0x400056f4 + 0x40005700 rcGetAmpduSched = 0x40005700 + 0x4000570c rcUpdateRxDone = 0x4000570c + 0x40005718 rc_get_trc = 0x40005718 + 0x40005724 rc_get_trc_by_index = 0x40005724 + 0x40005730 rcAmpduLowerRate = 0x40005730 + 0x4000573c rcampduuprate = 0x4000573c + 0x40005748 rcClearCurAMPDUSched = 0x40005748 + 0x40005754 rcClearCurSched = 0x40005754 + 0x40005760 rcClearCurStat = 0x40005760 + 0x40005778 rcLowerSched = 0x40005778 + 0x40005784 rcSetTxAmpduLimit = 0x40005784 + 0x4000579c rcUpdateAckSnr = 0x4000579c + 0x400057cc rcUpSched = 0x400057cc + 0x400057d8 rssi_margin = 0x400057d8 + 0x400057e4 rx11NRate2AMPDULimit = 0x400057e4 + 0x400057f0 TRC_AMPDU_PER_DOWN_THRESHOLD = 0x400057f0 + 0x400057fc TRC_AMPDU_PER_UP_THRESHOLD = 0x400057fc + 0x40005808 trc_calc_duration = 0x40005808 + 0x40005814 trc_isTxAmpduOperational = 0x40005814 + 0x40005820 trc_onAmpduOp = 0x40005820 + 0x4000582c TRC_PER_IS_GOOD = 0x4000582c + 0x40005838 trc_SetTxAmpduState = 0x40005838 + 0x40005844 trc_tid_isTxAmpduOperational = 0x40005844 + 0x40005850 trcAmpduSetState = 0x40005850 + 0x4000585c wDevCheckBlockError = 0x4000585c + 0x40005874 wDev_DiscardFrame = 0x40005874 + 0x40005880 wDev_GetNoiseFloor = 0x40005880 + 0x4000588c wDev_IndicateAmpdu = 0x4000588c + 0x400058a4 wdev_bank_store = 0x400058a4 + 0x400058b0 wdev_bank_load = 0x400058b0 + 0x400058bc wdev_mac_reg_load = 0x400058bc + 0x400058c8 wdev_mac_reg_store = 0x400058c8 + 0x400058d4 wdev_mac_special_reg_load = 0x400058d4 + 0x400058e0 wdev_mac_special_reg_store = 0x400058e0 + 0x400058ec wdev_mac_wakeup = 0x400058ec + 0x400058f8 wdev_mac_sleep = 0x400058f8 + 0x40005904 hal_mac_is_dma_enable = 0x40005904 + 0x40005928 wdevProcessRxSucDataAll = 0x40005928 + 0x40005934 wdev_csi_len_align = 0x40005934 + 0x40005940 ppDequeueTxDone_Locked = 0x40005940 + 0x40005964 config_is_cache_tx_buf_enabled = 0x40005964 + 0x40005970 //ppMapWaitTxq = 0x40005970 + 0x4000597c ppProcessWaitingQueue = 0x4000597c + 0x40005988 ppDisableQueue = 0x40005988 + 0x40005994 pm_allow_tx = 0x40005994 + 0x400059a0 wdev_is_data_in_rxlist = 0x400059a0 + 0x400059ac ppProcTxCallback = 0x400059ac + 0x3ff1ee58 our_instances_ptr = 0x3ff1ee58 + 0x3fcef954 pTxRx = 0x3fcef954 + 0x3fcef950 lmacConfMib_ptr = 0x3fcef950 + 0x3fcef94c our_wait_eb = 0x3fcef94c + 0x3fcef948 our_tx_eb = 0x3fcef948 + 0x3fcef944 pp_wdev_funcs = 0x3fcef944 + 0x3fcef940 g_osi_funcs_p = 0x3fcef940 + 0x3fcef93c wDevCtrl_ptr = 0x3fcef93c + 0x3ff1ee54 g_wdev_last_desc_reset_ptr = 0x3ff1ee54 + 0x3fcef938 wDevMacSleep_ptr = 0x3fcef938 + 0x3fcef934 g_lmac_cnt_ptr = 0x3fcef934 + 0x3ff1ee50 our_controls_ptr = 0x3ff1ee50 + 0x3fcef930 pp_sig_cnt_ptr = 0x3fcef930 + 0x3fcef92c g_eb_list_desc_ptr = 0x3fcef92c + 0x3fcef928 s_fragment_ptr = 0x3fcef928 + 0x3fcef924 if_ctrl_ptr = 0x3fcef924 + 0x3fcef920 g_intr_lock_mux = 0x3fcef920 + 0x3fcef91c g_wifi_global_lock = 0x3fcef91c + 0x3fcef918 s_wifi_queue = 0x3fcef918 + 0x3fcef914 pp_task_hdl = 0x3fcef914 + 0x3fcef910 s_pp_task_create_sem = 0x3fcef910 + 0x3fcef90c s_pp_task_del_sem = 0x3fcef90c + 0x3fcef908 g_wifi_menuconfig_ptr = 0x3fcef908 + 0x3fcef904 xphyQueue = 0x3fcef904 + 0x3fcef900 ap_no_lr_ptr = 0x3fcef900 + 0x3fcef8fc rc11BSchedTbl_ptr = 0x3fcef8fc + 0x3fcef8f8 rc11NSchedTbl_ptr = 0x3fcef8f8 + 0x3fcef8f4 rcLoRaSchedTbl_ptr = 0x3fcef8f4 + 0x3fcef8f0 BasicOFDMSched_ptr = 0x3fcef8f0 + 0x3fcef8ec trc_ctl_ptr = 0x3fcef8ec + 0x3fcef8e8 g_pm_cnt_ptr = 0x3fcef8e8 + 0x3fcef8e4 g_pm_ptr = 0x3fcef8e4 + 0x3fcef8e0 g_pm_cfg_ptr = 0x3fcef8e0 + 0x3fcef8dc g_esp_mesh_quick_funcs_ptr = 0x3fcef8dc + 0x3fcef8d8 g_txop_queue_status_ptr = 0x3fcef8d8 + 0x3fcef8d4 g_mac_sleep_en_ptr = 0x3fcef8d4 + 0x3fcef8d0 g_mesh_is_root_ptr = 0x3fcef8d0 + 0x3fcef8cc g_mesh_topology_ptr = 0x3fcef8cc + 0x3fcef8c8 g_mesh_init_ps_type_ptr = 0x3fcef8c8 + 0x3fcef8c4 g_mesh_is_started_ptr = 0x3fcef8c4 + 0x3fcef8c0 g_config_func = 0x3fcef8c0 + 0x3fcef8bc g_net80211_tx_func = 0x3fcef8bc + 0x3fcef8b8 g_timer_func = 0x3fcef8b8 + 0x3fcef8b4 s_michael_mic_failure_cb = 0x3fcef8b4 + 0x3fcef8b0 wifi_sta_rx_probe_req = 0x3fcef8b0 + 0x3fcef8ac g_tx_done_cb_func = 0x3fcef8ac + 0x3fcef860 g_per_conn_trc = 0x3fcef860 + 0x3fcef85c s_encap_amsdu_func = 0x3fcef85c + 0x400059b8 esp_net80211_rom_version_get = 0x400059b8 + 0x400059c4 ampdu_dispatch = 0x400059c4 + 0x400059d0 ampdu_dispatch_all = 0x400059d0 + 0x400059dc ampdu_dispatch_as_many_as_possible = 0x400059dc + 0x400059e8 ampdu_dispatch_movement = 0x400059e8 + 0x400059f4 ampdu_dispatch_upto = 0x400059f4 + 0x40005a00 chm_is_at_home_channel = 0x40005a00 + 0x40005a0c cnx_node_is_existing = 0x40005a0c + 0x40005a18 cnx_node_search = 0x40005a18 + 0x40005a24 ic_ebuf_recycle_rx = 0x40005a24 + 0x40005a30 ic_ebuf_recycle_tx = 0x40005a30 + 0x40005a3c ic_reset_rx_ba = 0x40005a3c + 0x40005a48 ieee80211_align_eb = 0x40005a48 + 0x40005a60 ieee80211_ampdu_start_age_timer = 0x40005a60 + 0x40005a78 ieee80211_is_tx_allowed = 0x40005a78 + 0x40005a84 ieee80211_output_pending_eb = 0x40005a84 + 0x40005a9c ieee80211_set_tx_desc = 0x40005a9c + 0x40005ab4 wifi_get_macaddr = 0x40005ab4 + 0x40005ac0 wifi_rf_phy_disable = 0x40005ac0 + 0x40005acc wifi_rf_phy_enable = 0x40005acc + 0x40005ad8 ic_ebuf_alloc = 0x40005ad8 + 0x40005af0 ieee80211_copy_eb_header = 0x40005af0 + 0x40005afc ieee80211_recycle_cache_eb = 0x40005afc + 0x40005b08 ieee80211_search_node = 0x40005b08 + 0x40005b14 roundup2 = 0x40005b14 + 0x40005b20 ieee80211_crypto_encap = 0x40005b20 + 0x40005b44 ieee80211_set_tx_pti = 0x40005b44 + 0x40005b50 wifi_is_started = 0x40005b50 + 0x40005b5c ieee80211_gettid = 0x40005b5c + 0x3fcef858 net80211_funcs = 0x3fcef858 + 0x3fcef854 g_scan = 0x3fcef854 + 0x3fcef850 g_chm = 0x3fcef850 + 0x3fcef84c g_ic_ptr = 0x3fcef84c + 0x3fcef848 g_hmac_cnt_ptr = 0x3fcef848 + 0x3fcef844 g_tx_cacheq_ptr = 0x3fcef844 + 0x3fcef840 s_netstack_free = 0x3fcef840 + 0x3fcef83c mesh_rxcb = 0x3fcef83c + 0x3fcef838 sta_rxcb = 0x3fcef838 + 0x40005b68 esp_coex_rom_version_get = 0x40005b68 + 0x40005b74 coex_bt_release = 0x40005b74 + 0x40005b80 coex_bt_request = 0x40005b80 + 0x40005b8c coex_core_ble_conn_dyn_prio_get = 0x40005b8c + 0x40005ba4 coex_core_pti_get = 0x40005ba4 + 0x40005bb0 coex_core_release = 0x40005bb0 + 0x40005bbc coex_core_request = 0x40005bbc + 0x40005bc8 coex_core_status_get = 0x40005bc8 + 0x40005be0 coex_event_duration_get = 0x40005be0 + 0x40005bec coex_hw_timer_disable = 0x40005bec + 0x40005bf8 coex_hw_timer_enable = 0x40005bf8 + 0x40005c04 coex_hw_timer_set = 0x40005c04 + 0x40005c10 coex_schm_interval_set = 0x40005c10 + 0x40005c1c coex_schm_lock = 0x40005c1c + 0x40005c28 coex_schm_unlock = 0x40005c28 + 0x40005c40 coex_wifi_release = 0x40005c40 + 0x40005c4c esp_coex_ble_conn_dynamic_prio_get = 0x40005c4c + 0x3fcef834 coex_env_ptr = 0x3fcef834 + 0x3fcef830 coex_pti_tab_ptr = 0x3fcef830 + 0x3fcef82c coex_schm_env_ptr = 0x3fcef82c + 0x3fcef828 coexist_funcs = 0x3fcef828 + 0x3fcef824 g_coa_funcs_p = 0x3fcef824 + 0x3fcef820 g_coex_param_ptr = 0x3fcef820 + 0x40005c58 phy_get_romfuncs = 0x40005c58 + 0x40005c64 rom_abs_temp = 0x40005c64 + 0x40005c70 rom_bb_bss_cbw40_dig = 0x40005c70 + 0x40005c7c rom_bb_wdg_test_en = 0x40005c7c + 0x40005c88 rom_bb_wdt_get_status = 0x40005c88 + 0x40005c94 rom_bb_wdt_int_enable = 0x40005c94 + 0x40005ca0 rom_bb_wdt_rst_enable = 0x40005ca0 + 0x40005cac rom_bb_wdt_timeout_clear = 0x40005cac + 0x40005cb8 rom_cbw2040_cfg = 0x40005cb8 + 0x40005cc4 rom_check_noise_floor = 0x40005cc4 + 0x40005cd0 rom_chip_i2c_readReg = 0x40005cd0 + 0x40005cdc rom_chip_i2c_writeReg = 0x40005cdc + 0x40005ce8 rom_dc_iq_est = 0x40005ce8 + 0x40005cf4 rom_disable_agc = 0x40005cf4 + 0x40005d00 rom_en_pwdet = 0x40005d00 + 0x40005d0c rom_enable_agc = 0x40005d0c + 0x40005d18 rom_get_bbgain_db = 0x40005d18 + 0x40005d24 rom_get_data_sat = 0x40005d24 + 0x40005d30 rom_get_i2c_read_mask = 0x40005d30 + 0x40005d3c rom_get_pwctrl_correct = 0x40005d3c + 0x40005d48 rom_i2c_readReg = 0x40005d48 + 0x40005d54 rom_i2c_readReg_Mask = 0x40005d54 + 0x40005d60 rom_i2c_writeReg = 0x40005d60 + 0x40005d6c rom_i2c_writeReg_Mask = 0x40005d6c + 0x40005d78 rom_index_to_txbbgain = 0x40005d78 + 0x40005d84 rom_iq_est_disable = 0x40005d84 + 0x40005d90 rom_iq_est_enable = 0x40005d90 + 0x40005d9c rom_linear_to_db = 0x40005d9c + 0x40005da8 rom_loopback_mode_en = 0x40005da8 + 0x40005db4 rom_mhz2ieee = 0x40005db4 + 0x40005dc0 rom_noise_floor_auto_set = 0x40005dc0 + 0x40005dcc rom_pbus_debugmode = 0x40005dcc + 0x40005dd8 rom_pbus_force_mode = 0x40005dd8 + 0x40005de4 rom_pbus_force_test = 0x40005de4 + 0x40005df0 rom_pbus_rd = 0x40005df0 + 0x40005dfc rom_pbus_rd_addr = 0x40005dfc + 0x40005e08 rom_pbus_rd_shift = 0x40005e08 + 0x40005e14 rom_pbus_set_dco = 0x40005e14 + 0x40005e20 rom_pbus_set_rxgain = 0x40005e20 + 0x40005e2c rom_pbus_workmode = 0x40005e2c + 0x40005e38 rom_pbus_xpd_rx_off = 0x40005e38 + 0x40005e44 rom_pbus_xpd_rx_on = 0x40005e44 + 0x40005e50 rom_pbus_xpd_tx_off = 0x40005e50 + 0x40005e5c rom_pbus_xpd_tx_on = 0x40005e5c + 0x40005e68 rom_phy_byte_to_word = 0x40005e68 + 0x40005e74 rom_phy_disable_cca = 0x40005e74 + 0x40005e80 rom_phy_enable_cca = 0x40005e80 + 0x40005e8c rom_phy_get_noisefloor = 0x40005e8c + 0x40005e98 rom_phy_get_rx_freq = 0x40005e98 + 0x40005ea4 rom_phy_set_bbfreq_init = 0x40005ea4 + 0x40005eb0 rom_pow_usr = 0x40005eb0 + 0x40005ebc rom_pwdet_sar2_init = 0x40005ebc + 0x40005ec8 rom_read_hw_noisefloor = 0x40005ec8 + 0x40005ed4 rom_read_sar_dout = 0x40005ed4 + 0x40005ee0 rom_set_cal_rxdc = 0x40005ee0 + 0x40005eec rom_set_chan_cal_interp = 0x40005eec + 0x40005ef8 rom_set_loopback_gain = 0x40005ef8 + 0x40005f04 rom_set_noise_floor = 0x40005f04 + 0x40005f10 rom_set_rxclk_en = 0x40005f10 + 0x40005f1c rom_set_tx_dig_gain = 0x40005f1c + 0x40005f28 rom_set_txcap_reg = 0x40005f28 + 0x40005f34 rom_set_txclk_en = 0x40005f34 + 0x40005f40 rom_spur_cal = 0x40005f40 + 0x40005f4c rom_spur_reg_write_one_tone = 0x40005f4c + 0x40005f58 rom_target_power_add_backoff = 0x40005f58 + 0x40005f64 rom_tx_pwctrl_bg_init = 0x40005f64 + 0x40005f70 rom_txbbgain_to_index = 0x40005f70 + 0x40005f7c rom_wifi_11g_rate_chg = 0x40005f7c + 0x40005f88 rom_write_gain_mem = 0x40005f88 + 0x40005f94 chip728_phyrom_version = 0x40005f94 + 0x40005fa0 rom_disable_wifi_agc = 0x40005fa0 + 0x40005fac rom_enable_wifi_agc = 0x40005fac + 0x40005fb8 rom_bt_index_to_bb = 0x40005fb8 + 0x40005fc4 rom_bt_bb_to_index = 0x40005fc4 + 0x40005fd0 rom_spur_coef_cfg = 0x40005fd0 + 0x40005fdc rom_bb_bss_cbw40 = 0x40005fdc + 0x40005fe8 rom_set_cca = 0x40005fe8 + 0x40005ff4 rom_tx_paon_set = 0x40005ff4 + 0x40006000 rom_i2cmst_reg_init = 0x40006000 + 0x4000600c rom_iq_corr_enable = 0x4000600c + 0x40006018 rom_fe_reg_init = 0x40006018 + 0x40006024 rom_agc_reg_init = 0x40006024 + 0x40006030 rom_bb_reg_init = 0x40006030 + 0x4000603c rom_mac_enable_bb = 0x4000603c + 0x40006048 rom_bb_wdg_cfg = 0x40006048 + 0x40006054 rom_force_txon = 0x40006054 + 0x40006060 rom_fe_txrx_reset = 0x40006060 + 0x4000606c rom_set_rx_comp = 0x4000606c + 0x40006078 rom_set_pbus_reg = 0x40006078 + 0x40006084 rom_write_chan_freq = 0x40006084 + 0x40006090 rom_phy_xpd_rf = 0x40006090 + 0x4000609c rom_set_xpd_sar = 0x4000609c + 0x400060a8 rom_get_target_power_offset = 0x400060a8 + 0x400060b4 rom_write_txrate_power_offset = 0x400060b4 + 0x400060c0 rom_get_rate_fcc_index = 0x400060c0 + 0x400060cc rom_get_rate_target_power = 0x400060cc + 0x400060d8 rom_pkdet_vol_start = 0x400060d8 + 0x400060e4 rom_read_sar2_code = 0x400060e4 + 0x400060f0 rom_get_sar2_vol = 0x400060f0 + 0x400060fc rom_get_pll_vol = 0x400060fc + 0x40006108 rom_get_phy_target_power = 0x40006108 + 0x40006114 rom_temp_to_power = 0x40006114 + 0x40006120 rom_phy_track_pll_cap = 0x40006120 + 0x4000612c rom_phy_pwdet_always_en = 0x4000612c + 0x40006138 rom_phy_pwdet_onetime_en = 0x40006138 + 0x40006144 rom_get_i2c_mst0_mask = 0x40006144 + 0x40006150 rom_get_i2c_hostid = 0x40006150 + 0x4000615c rom_enter_critical_phy = 0x4000615c + 0x40006168 rom_exit_critical_phy = 0x40006168 + 0x40006174 rom_chip_i2c_readReg_org = 0x40006174 + 0x40006180 rom_i2c_paral_set_mst0 = 0x40006180 + 0x4000618c rom_i2c_paral_set_read = 0x4000618c + 0x40006198 rom_i2c_paral_read = 0x40006198 + 0x400061a4 rom_i2c_paral_write = 0x400061a4 + 0x400061b0 rom_i2c_paral_write_num = 0x400061b0 + 0x400061bc rom_i2c_paral_write_mask = 0x400061bc + 0x400061c8 rom_bb_bss_cbw40_ana = 0x400061c8 + 0x400061d4 rom_chan_to_freq = 0x400061d4 + 0x400061e0 rom_open_i2c_xpd = 0x400061e0 + 0x400061ec rom_dac_rate_set = 0x400061ec + 0x400061f8 rom_tsens_read_init = 0x400061f8 + 0x40006204 rom_tsens_code_read = 0x40006204 + 0x40006210 rom_tsens_index_to_dac = 0x40006210 + 0x4000621c rom_tsens_index_to_offset = 0x4000621c + 0x40006228 rom_tsens_dac_cal = 0x40006228 + 0x40006234 rom_code_to_temp = 0x40006234 + 0x40006240 rom_write_pll_cap_mem = 0x40006240 + 0x4000624c rom_pll_correct_dcap = 0x4000624c + 0x40006258 rom_phy_en_hw_set_freq = 0x40006258 + 0x40006264 rom_phy_dis_hw_set_freq = 0x40006264 + 0x40006270 rom_pll_vol_cal = 0x40006270 + 0x4000627c rom_wrtie_pll_cap = 0x4000627c + 0x40006288 rom_set_tx_gain_mem = 0x40006288 + 0x40006294 rom_bt_tx_dig_gain = 0x40006294 + 0x400062a0 rom_bt_get_tx_gain = 0x400062a0 + 0x400062ac rom_get_chan_target_power = 0x400062ac + 0x400062b8 rom_get_tx_gain_value = 0x400062b8 + 0x400062c4 rom_wifi_tx_dig_gain = 0x400062c4 + 0x400062d0 rom_wifi_get_tx_gain = 0x400062d0 + 0x400062dc rom_fe_i2c_reg_renew = 0x400062dc + 0x400062e8 rom_wifi_agc_sat_gain = 0x400062e8 + 0x400062f4 rom_i2c_master_reset = 0x400062f4 + 0x40006300 rom_bt_filter_reg = 0x40006300 + 0x4000630c rom_phy_bbpll_cal = 0x4000630c + 0x40006318 rom_i2c_sar2_init_code = 0x40006318 + 0x40006324 rom_phy_param_addr = 0x40006324 + 0x40006330 rom_phy_reg_init = 0x40006330 + 0x4000633c rom_set_chan_reg = 0x4000633c + 0x40006348 rom_phy_wakeup_init = 0x40006348 + 0x40006354 rom_phy_i2c_init1 = 0x40006354 + 0x40006360 rom_tsens_temp_read = 0x40006360 + 0x4000636c rom_bt_track_pll_cap = 0x4000636c + 0x40006378 rom_wifi_track_pll_cap = 0x40006378 + 0x40006384 rom_wifi_set_tx_gain = 0x40006384 + 0x40006390 rom_txpwr_cal_track = 0x40006390 + 0x4000639c rom_tx_pwctrl_background = 0x4000639c + 0x400063a8 rom_bt_set_tx_gain = 0x400063a8 + 0x400063b4 rom_noise_check_loop = 0x400063b4 + 0x400063c0 rom_phy_close_rf = 0x400063c0 + 0x400063cc rom_phy_xpd_tsens = 0x400063cc + 0x400063d8 rom_phy_freq_mem_backup = 0x400063d8 + 0x400063e4 rom_phy_ant_init = 0x400063e4 + 0x400063f0 rom_bt_track_tx_power = 0x400063f0 + 0x400063fc rom_wifi_track_tx_power = 0x400063fc + 0x40006408 rom_phy_dig_reg_backup = 0x40006408 + 0x40006414 chip728_phyrom_version_num = 0x40006414 + 0x40006420 rom_mac_tx_chan_offset = 0x40006420 + 0x4000642c rom_rx_gain_force = 0x4000642c + 0x3fcef81c phy_param_rom = 0x3fcef81c + [!provide] PROVIDE (esp_rom_crc32_le = crc32_le) + [!provide] PROVIDE (esp_rom_crc16_le = crc16_le) + [!provide] PROVIDE (esp_rom_crc8_le = crc8_le) + [!provide] PROVIDE (esp_rom_crc32_be = crc32_be) + [!provide] PROVIDE (esp_rom_crc16_be = crc16_be) + [!provide] PROVIDE (esp_rom_crc8_be = crc8_be) + [!provide] PROVIDE (esp_rom_gpio_pad_select_gpio = rom_gpio_pad_select_gpio) + [!provide] PROVIDE (esp_rom_gpio_pad_pullup_only = rom_gpio_pad_pullup) + 0x40001b18 PROVIDE (esp_rom_gpio_pad_set_drv = rom_gpio_pad_set_drv) + [!provide] PROVIDE (esp_rom_gpio_pad_unhold = rom_gpio_pad_unhold) + 0x40001a94 PROVIDE (esp_rom_gpio_connect_in_signal = rom_gpio_matrix_in) + 0x40001aa0 PROVIDE (esp_rom_gpio_connect_out_signal = rom_gpio_matrix_out) + [!provide] PROVIDE (esp_rom_efuse_mac_address_crc8 = esp_crc8) + 0x40001f74 PROVIDE (esp_rom_efuse_get_flash_gpio_info = ets_efuse_get_spiconfig) + 0x40001fa4 PROVIDE (esp_rom_efuse_get_flash_wp_gpio = ets_efuse_get_wp_pad) + [!provide] PROVIDE (esp_rom_efuse_is_secure_boot_enabled = ets_efuse_secure_boot_enabled) + [!provide] PROVIDE (esp_rom_uart_flush_tx = uart_tx_flush) + [!provide] PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char) + [!provide] PROVIDE (esp_rom_uart_tx_wait_idle = uart_tx_wait_idle) + [!provide] PROVIDE (esp_rom_uart_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_uart_rx_string = UartRxString) + [!provide] PROVIDE (esp_rom_uart_set_as_console = uart_tx_switch) + [!provide] PROVIDE (esp_rom_uart_usb_acm_init = Uart_Init_USB) + [!provide] PROVIDE (esp_rom_uart_putc = ets_write_char_uart) + [!provide] PROVIDE (esp_rom_output_flush_tx = uart_tx_flush) + 0x40000648 PROVIDE (esp_rom_output_tx_one_char = uart_tx_one_char) + 0x4000069c PROVIDE (esp_rom_output_tx_wait_idle = uart_tx_wait_idle) + [!provide] PROVIDE (esp_rom_output_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_output_rx_string = UartRxString) + 0x400006c0 PROVIDE (esp_rom_output_set_as_console = uart_tx_switch) + [!provide] PROVIDE (esp_rom_output_usb_acm_init = Uart_Init_USB) + 0x400006b4 PROVIDE (esp_rom_output_putc = ets_write_char_uart) + [!provide] PROVIDE (esp_rom_md5_init = MD5Init) + [!provide] PROVIDE (esp_rom_md5_update = MD5Update) + [!provide] PROVIDE (esp_rom_md5_final = MD5Final) + 0x400006d8 PROVIDE (esp_rom_software_reset_system = software_reset) + 0x400006e4 PROVIDE (esp_rom_software_reset_cpu = software_reset_cpu) + 0x400005d0 PROVIDE (esp_rom_printf = ets_printf) + 0x40000600 PROVIDE (esp_rom_delay_us = ets_delay_us) + [!provide] PROVIDE (esp_rom_install_uart_printf = ets_install_uart_printf) + 0x4000057c PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason) + 0x40001b54 PROVIDE (esp_rom_route_intr_matrix = intr_matrix_set) + 0x40001a40 PROVIDE (esp_rom_get_cpu_ticks_per_us = ets_get_cpu_frequency) + 0x40001a4c PROVIDE (esp_rom_set_cpu_ticks_per_us = ets_update_cpu_frequency) + [!provide] PROVIDE (esp_rom_spiflash_attach = spi_flash_attach) + [!provide] PROVIDE (esp_rom_spiflash_clear_bp = esp_rom_spiflash_unlock) + 0x40000a44 PROVIDE (esp_rom_spiflash_write_enable = SPI_write_enable) + [!provide] PROVIDE (esp_rom_spiflash_erase_area = SPIEraseArea) + [!provide] PROVIDE (esp_rom_spiflash_fix_dummylen = spi_dummy_len_fix) + [!provide] PROVIDE (esp_rom_spiflash_set_drvs = SetSpiDrvs) + [!provide] PROVIDE (esp_rom_spiflash_select_padsfunc = SelectSpiFunction) + [!provide] PROVIDE (esp_rom_spiflash_common_cmd = SPI_Common_Command) + 0x40005d48 PROVIDE (esp_rom_regi2c_read = rom_i2c_readReg) + 0x40005d54 PROVIDE (esp_rom_regi2c_read_mask = rom_i2c_readReg_Mask) + 0x40005d60 PROVIDE (esp_rom_regi2c_write = rom_i2c_writeReg) + 0x40005d6c PROVIDE (esp_rom_regi2c_write_mask = rom_i2c_writeReg_Mask) + 0x4000216c __absvdi2 = 0x4000216c + 0x40002178 __absvsi2 = 0x40002178 + 0x40002184 __adddf3 = 0x40002184 + 0x40002190 __addsf3 = 0x40002190 + 0x4000219c __addvdi3 = 0x4000219c + 0x400021a8 __addvsi3 = 0x400021a8 + 0x400021b4 __ashldi3 = 0x400021b4 + 0x400021c0 __ashrdi3 = 0x400021c0 + 0x400021cc __bswapdi2 = 0x400021cc + 0x400021d8 __bswapsi2 = 0x400021d8 + 0x400021e4 __clear_cache = 0x400021e4 + 0x400021f0 __clrsbdi2 = 0x400021f0 + 0x400021fc __clrsbsi2 = 0x400021fc + 0x40002208 __clzdi2 = 0x40002208 + 0x40002214 __clzsi2 = 0x40002214 + 0x40002220 __cmpdi2 = 0x40002220 + 0x4000222c __ctzdi2 = 0x4000222c + 0x40002238 __ctzsi2 = 0x40002238 + 0x40002244 __divdc3 = 0x40002244 + 0x40002250 __divdf3 = 0x40002250 + 0x4000225c __divdi3 = 0x4000225c + 0x40002268 __divsc3 = 0x40002268 + 0x40002274 __divsf3 = 0x40002274 + 0x40002280 __divsi3 = 0x40002280 + 0x4000228c __eqdf2 = 0x4000228c + 0x40002298 __eqsf2 = 0x40002298 + 0x400022a4 __extendsfdf2 = 0x400022a4 + 0x400022b0 __ffsdi2 = 0x400022b0 + 0x400022bc __ffssi2 = 0x400022bc + 0x400022c8 __fixdfdi = 0x400022c8 + 0x400022d4 __fixdfsi = 0x400022d4 + 0x400022e0 __fixsfdi = 0x400022e0 + 0x400022ec __fixsfsi = 0x400022ec + 0x400022f8 __fixunsdfsi = 0x400022f8 + 0x40002304 __fixunssfdi = 0x40002304 + 0x40002310 __fixunssfsi = 0x40002310 + 0x4000231c __floatdidf = 0x4000231c + 0x40002328 __floatdisf = 0x40002328 + 0x40002334 __floatsidf = 0x40002334 + 0x40002340 __floatsisf = 0x40002340 + 0x4000234c __floatundidf = 0x4000234c + 0x40002358 __floatundisf = 0x40002358 + 0x40002364 __floatunsidf = 0x40002364 + 0x40002370 __floatunsisf = 0x40002370 + 0x4000237c __gcc_bcmp = 0x4000237c + 0x40002388 __gedf2 = 0x40002388 + 0x40002394 __gesf2 = 0x40002394 + 0x400023a0 __gtdf2 = 0x400023a0 + 0x400023ac __gtsf2 = 0x400023ac + 0x400023b8 __ledf2 = 0x400023b8 + 0x400023c4 __lesf2 = 0x400023c4 + 0x400023d0 __lshrdi3 = 0x400023d0 + 0x400023dc __ltdf2 = 0x400023dc + 0x400023e8 __ltsf2 = 0x400023e8 + 0x400023f4 __moddi3 = 0x400023f4 + 0x40002400 __modsi3 = 0x40002400 + 0x4000240c __muldc3 = 0x4000240c + 0x40002418 __muldf3 = 0x40002418 + 0x40002424 __muldi3 = 0x40002424 + 0x40002430 __mulsc3 = 0x40002430 + 0x4000243c __mulsf3 = 0x4000243c + 0x40002448 __mulsi3 = 0x40002448 + 0x40002454 __mulvdi3 = 0x40002454 + 0x40002460 __mulvsi3 = 0x40002460 + 0x4000246c __nedf2 = 0x4000246c + 0x40002478 __negdf2 = 0x40002478 + 0x40002484 __negdi2 = 0x40002484 + 0x40002490 __negsf2 = 0x40002490 + 0x4000249c __negvdi2 = 0x4000249c + 0x400024a8 __negvsi2 = 0x400024a8 + 0x400024b4 __nesf2 = 0x400024b4 + 0x400024c0 __paritysi2 = 0x400024c0 + 0x400024cc __popcountdi2 = 0x400024cc + 0x400024d8 __popcountsi2 = 0x400024d8 + 0x400024e4 __powidf2 = 0x400024e4 + 0x400024f0 __powisf2 = 0x400024f0 + 0x400024fc __subdf3 = 0x400024fc + 0x40002508 __subsf3 = 0x40002508 + 0x40002514 __subvdi3 = 0x40002514 + 0x40002520 __subvsi3 = 0x40002520 + 0x4000252c __truncdfsf2 = 0x4000252c + 0x40002538 __ucmpdi2 = 0x40002538 + 0x40002544 __udivdi3 = 0x40002544 + 0x40002550 __udivmoddi4 = 0x40002550 + 0x4000255c __udivsi3 = 0x4000255c + 0x40002568 __udiv_w_sdiv = 0x40002568 + 0x40002574 __umoddi3 = 0x40002574 + 0x40002580 __umodsi3 = 0x40002580 + 0x4000258c __unorddf2 = 0x4000258c + 0x40002598 __unordsf2 = 0x40002598 + [!provide] PROVIDE (atoi = 0x400014d0) + [!provide] PROVIDE (atol = 0x400014dc) + [!provide] PROVIDE (strdup = 0x40001380) + [!provide] PROVIDE (strndup = 0x400013ec) + [!provide] PROVIDE (rand_r = 0x40001494) + [!provide] PROVIDE (rand = 0x400014a0) + [!provide] PROVIDE (srand = 0x400014ac) + [!provide] PROVIDE (strtol = 0x400014e8) + [!provide] PROVIDE (strtoul = 0x400014f4) + [!provide] PROVIDE (longjmp = 0x40001440) + [!provide] PROVIDE (setjmp = 0x4000144c) + [!provide] PROVIDE (fflush = 0x40001500) + [!provide] PROVIDE (_fflush_r = 0x4000150c) + [!provide] PROVIDE (_fwalk = 0x40001518) + [!provide] PROVIDE (_fwalk_reent = 0x40001524) + [!provide] PROVIDE (__swbuf_r = 0x40001548) + 0x40001554 __swbuf = 0x40001554 + 0x40001314 toupper = 0x40001314 + 0x40001320 tolower = 0x40001320 + 0x40001284 isalnum = 0x40001284 + 0x40001290 isalpha = 0x40001290 + 0x400012c0 isdigit = 0x400012c0 + 0x400012cc islower = 0x400012cc + 0x400012fc isspace = 0x400012fc + 0x40001308 isupper = 0x40001308 + 0x4000135c strcasecmp = 0x4000135c + 0x400013a4 strcoll = 0x400013a4 + 0x400013c8 strlwr = 0x400013c8 + 0x400013d4 strncasecmp = 0x400013d4 + 0x40001434 strupr = 0x40001434 + 0x40001c80 hmac_md5_vector = 0x40001c80 + 0x40001c8c hmac_md5 = 0x40001c8c + 0x40000570 _rom_chip_id = 0x40000570 + 0x40000574 _rom_eco_version = 0x40000574 + 0x400011dc esp_rom_newlib_init_common_mutexes = 0x400011dc + 0x400011e8 memset = 0x400011e8 + 0x400011f4 memcpy = 0x400011f4 + 0x40001200 memmove = 0x40001200 + 0x4000120c memcmp = 0x4000120c + 0x40001218 strcpy = 0x40001218 + 0x40001224 strncpy = 0x40001224 + 0x40001230 strcmp = 0x40001230 + 0x4000123c strncmp = 0x4000123c + 0x40001248 strlen = 0x40001248 + 0x40001254 strstr = 0x40001254 + 0x40001260 bzero = 0x40001260 + 0x40001278 sbrk = 0x40001278 + 0x4000129c isascii = 0x4000129c + 0x400012a8 isblank = 0x400012a8 + 0x400012b4 iscntrl = 0x400012b4 + 0x400012d8 isgraph = 0x400012d8 + 0x400012e4 isprint = 0x400012e4 + 0x400012f0 ispunct = 0x400012f0 + 0x4000132c toascii = 0x4000132c + 0x40001338 memccpy = 0x40001338 + 0x40001344 memchr = 0x40001344 + 0x40001350 memrchr = 0x40001350 + 0x40001368 strcasestr = 0x40001368 + 0x40001374 strcat = 0x40001374 + 0x4000138c strchr = 0x4000138c + 0x40001398 strcspn = 0x40001398 + 0x400013b0 strlcat = 0x400013b0 + 0x400013bc strlcpy = 0x400013bc + 0x400013e0 strncat = 0x400013e0 + 0x400013f8 strnlen = 0x400013f8 + 0x40001404 strrchr = 0x40001404 + 0x40001410 strsep = 0x40001410 + 0x4000141c strspn = 0x4000141c + 0x40001428 strtok_r = 0x40001428 + 0x40001440 longjmp = 0x40001440 + 0x4000144c setjmp = 0x4000144c + 0x40001458 abs = 0x40001458 + 0x40001464 div = 0x40001464 + 0x40001470 labs = 0x40001470 + 0x4000147c ldiv = 0x4000147c + 0x40001488 qsort = 0x40001488 + 0x40001494 rand_r = 0x40001494 + 0x400014b8 utoa = 0x400014b8 + 0x400014c4 itoa = 0x400014c4 + 0x3fceffd4 syscall_table_ptr = 0x3fceffd4 + 0x3fceffd0 _global_impure_ptr = 0x3fceffd0 + 0x60000000 PROVIDE (UART0 = 0x60000000) + 0x60002000 PROVIDE (SPIMEM1 = 0x60002000) + 0x60003000 PROVIDE (SPIMEM0 = 0x60003000) + 0x60004000 PROVIDE (GPIO = 0x60004000) + [!provide] PROVIDE (SDM = 0x60004f00) + 0x60007000 PROVIDE (EFUSE = 0x60007000) + 0x60008000 PROVIDE (RTCCNTL = 0x60008000) + 0x60008400 PROVIDE (RTCIO = 0x60008400) + 0x60008800 PROVIDE (SENS = 0x60008800) + [!provide] PROVIDE (RTC_I2C = 0x60008c00) + [!provide] PROVIDE (HINF = 0x6000b000) + [!provide] PROVIDE (I2S0 = 0x6000f000) + [!provide] PROVIDE (I2S1 = 0x6002d000) + 0x60010000 PROVIDE (UART1 = 0x60010000) + [!provide] PROVIDE (I2C0 = 0x60013000) + [!provide] PROVIDE (UHCI0 = 0x60014000) + [!provide] PROVIDE (HOST = 0x60015000) + [!provide] PROVIDE (RMT = 0x60016000) + [!provide] PROVIDE (RMTMEM = 0x60016800) + [!provide] PROVIDE (PCNT = 0x60017000) + [!provide] PROVIDE (SLC = 0x60018000) + [!provide] PROVIDE (LEDC = 0x60019000) + [!provide] PROVIDE (MCPWM0 = 0x6001e000) + [!provide] PROVIDE (MCPWM1 = 0x6002c000) + [!provide] PROVIDE (MCP = 0x600c3000) + 0x6001f000 PROVIDE (TIMERG0 = 0x6001f000) + 0x60020000 PROVIDE (TIMERG1 = 0x60020000) + 0x60023000 PROVIDE (SYSTIMER = 0x60023000) + 0x60024000 PROVIDE (GPSPI2 = 0x60024000) + 0x60025000 PROVIDE (GPSPI3 = 0x60025000) + [!provide] PROVIDE (SYSCON = 0x60026000) + [!provide] PROVIDE (I2C1 = 0x60027000) + [!provide] PROVIDE (SDMMC = 0x60028000) + [!provide] PROVIDE (TWAI = 0x6002b000) + 0x6003f000 PROVIDE (GDMA = 0x6003f000) + 0x6002e000 PROVIDE (UART2 = 0x6002e000) + [!provide] PROVIDE (DMA = 0x6003f000) + 0x60040000 PROVIDE (APB_SARADC = 0x60040000) + [!provide] PROVIDE (LCD_CAM = 0x60041000) + 0x60038000 PROVIDE (USB_SERIAL_JTAG = 0x60038000) + [!provide] PROVIDE (USB0 = 0x60080000) + [!provide] PROVIDE (USB_DWC = 0x60080000) + [!provide] PROVIDE (USB_WRAP = 0x60039000) + [!provide] PROVIDE (WORLD_CONTROLLER = 0x600d0000) + 0x600c0000 PROVIDE (SYSTEM = 0x600c0000) +OUTPUT(zephyr/zephyr.elf elf32-xtensa-le) diff --git a/build/zephyr/zephyr.stat b/build/zephyr/zephyr.stat new file mode 100644 index 0000000..c1f43a9 --- /dev/null +++ b/build/zephyr/zephyr.stat @@ -0,0 +1,114 @@ +ELF Header: + Magic: 7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00 + Class: ELF32 + Data: 2's complement, little endian + Version: 1 (current) + OS/ABI: UNIX - System V + ABI Version: 0 + Type: EXEC (Executable file) + Machine: Tensilica Xtensa Processor + Version: 0x1 + Entry point address: 0x40379ce0 + Start of program headers: 52 (bytes into file) + Start of section headers: 3161892 (bytes into file) + Flags: 0x300 + Size of this header: 52 (bytes) + Size of program headers: 32 (bytes) + Number of program headers: 13 + Size of section headers: 40 (bytes) + Number of section headers: 54 + Section header string table index: 53 + +Section Headers: + [Nr] Name Type Addr Off Size ES Flg Lk Inf Al + [ 0] NULL 00000000 000000 000000 00 0 0 0 + [ 1] .rtc.text PROGBITS 600fe000 021e60 000000 00 W 0 0 1 + [ 2] .rtc.force_fast PROGBITS 600fe000 021e60 000000 00 W 0 0 1 + [ 3] .rtc.data PROGBITS 50000000 021e60 000000 00 W 0 0 1 + [ 4] .rtc_noinit PROGBITS 50000000 021e60 000000 00 W 0 0 1 + [ 5] .rtc.force_slow PROGBITS 50000000 0001d4 000024 00 WA 0 0 4 + [ 6] .iram0.vectors PROGBITS 40374000 0001f8 000400 00 AX 0 0 4 + [ 7] .iram0.text PROGBITS 40374400 0005f8 00ac6c 00 AX 0 0 4 + [ 8] .loader.text PROGBITS 4037f06c 00b264 00036c 00 AX 0 0 4 + [ 9] .iram0.text_end NOBITS 4037f3d8 00d44c 000010 00 WA 0 0 1 + [10] .iram0.data PROGBITS 4037f3e8 021e60 000000 00 W 0 0 1 + [11] .iram0.bss PROGBITS 4037f3e8 021e60 000000 00 W 0 0 1 + [12] .dram0.dummy NOBITS 3fc88000 021e60 0073f0 00 WA 0 0 1 + [13] .dram0.data PROGBITS 3fc8f3f0 00b5d0 001e7c 00 WA 0 0 8 + [14] .loader.data PROGBITS 3fc9126c 00d44c 00022c 00 A 0 0 4 + [15] sw_isr_table PROGBITS 3fc91498 00d678 000100 00 WA 0 0 4 + [16] device_states PROGBITS 3fc91598 00d778 000010 00 WA 0 0 1 + [17] log_mpsc_pbu[...] PROGBITS 3fc915a8 00d788 000040 00 WA 0 0 4 + [18] log_msg_ptr_area PROGBITS 3fc915e8 00d7c8 000004 00 WA 0 0 4 + [19] k_timer_area PROGBITS 3fc915f0 00d7d0 000038 00 WA 0 0 8 + [20] k_heap_area PROGBITS 3fc91628 00d808 000014 00 WA 0 0 4 + [21] k_mutex_area PROGBITS 3fc9163c 00d81c 000028 00 WA 0 0 4 + [22] k_sem_area PROGBITS 3fc91664 00d844 000018 00 WA 0 0 4 + [23] log_const_area PROGBITS 3fc9167c 00d85c 000080 00 A 0 0 4 + [24] log_backend_area PROGBITS 3fc916fc 00d8dc 000010 00 A 0 0 4 + [25] .dram0.noinit NOBITS 3fc91710 00d8f0 003c44 00 WA 0 0 16 + [26] .dram0.bss NOBITS 3fc95360 00d8f0 001058 00 WA 0 0 16 + [27] .text PROGBITS 42000000 00d8f0 00862e 00 WAX 0 0 16 + [28] .text_dummy NOBITS 0000d718 00d8ec 0028e8 00 WA 0 0 1 + [29] .flash.rodat[...] NOBITS 3c000000 021e60 010000 00 WA 0 0 1 + [30] .flash.rodata PROGBITS 3c010000 020000 001c24 00 A 0 0 65536 + [31] .flash.rodata_end PROGBITS 3c011e60 021e60 000000 00 W 0 0 16 + [32] initlevel PROGBITS 3c011c24 021c24 000070 00 A 0 0 4 + [33] device_area PROGBITS 3c011c94 021c94 0000c4 00 A 0 0 4 + [34] gpio_driver_[...] PROGBITS 3c011d58 021d58 000024 00 A 0 0 4 + [35] spi_driver_a[...] PROGBITS 3c011d7c 021d7c 000008 00 A 0 0 4 + [36] clock_contro[...] PROGBITS 3c011d84 021d84 00001c 00 A 0 0 4 + [37] lora_driver_[...] PROGBITS 3c011da0 021da0 000028 00 A 0 0 4 + [38] uart_driver_[...] PROGBITS 3c011dc8 021dc8 000098 00 A 0 0 4 + [39] .comment PROGBITS 00000000 021e60 00001f 01 MS 0 0 1 + [40] .debug_aranges PROGBITS 00000000 021e80 003808 00 0 0 8 + [41] .debug_info PROGBITS 00000000 025688 171226 00 0 0 1 + [42] .debug_abbrev PROGBITS 00000000 1968ae 01f96a 00 0 0 1 + [43] .debug_line PROGBITS 00000000 1b6218 09d8ec 00 0 0 1 + [44] .debug_frame PROGBITS 00000000 253b04 00884c 00 0 0 4 + [45] .debug_str PROGBITS 00000000 25c350 02b1f2 01 MS 0 0 1 + [46] .debug_loc PROGBITS 00000000 287542 03e0aa 00 0 0 1 + [47] .debug_ranges PROGBITS 00000000 2c55f0 00afa0 00 0 0 8 + [48] .xtensa.info NOTE 00000000 2d0590 000038 00 0 0 1 + [49] .xt.prop PROGBITS 00000000 2d05c8 010a7c 00 0 0 1 + [50] .xt.lit PROGBITS 00000000 2e1044 000a48 00 0 0 1 + [51] .symtab SYMTAB 00000000 2e1a8c 00ea50 10 52 749 4 + [52] .strtab STRTAB 00000000 2f04dc 01377a 00 0 0 1 + [53] .shstrtab STRTAB 00000000 303c56 0002cd 00 0 0 1 +Key to Flags: + W (write), A (alloc), X (execute), M (merge), S (strings), I (info), + L (link order), O (extra OS processing required), G (group), T (TLS), + C (compressed), x (unknown), o (OS specific), E (exclude), + D (mbind), p (processor specific) + +Program Headers: + Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align + LOAD 0x0001d4 0x50000000 0x00000000 0x00024 0x00024 RW 0x4 + LOAD 0x0001f8 0x40374000 0x00000024 0x0b3d8 0x0b3d8 R E 0x4 + LOAD 0x00b5d0 0x3fc8f3f0 0x0000b3fc 0x01e7c 0x01e7c RW 0x8 + LOAD 0x000000 0x4037f3d8 0x0000b3fc 0x00000 0x00010 RW 0x1 + LOAD 0x00d44c 0x3fc9126c 0x0000d278 0x004a0 0x004a0 RW 0x8 + LOAD 0x000000 0x0000d718 0x0000d718 0x00000 0x028e8 RW 0x1 + LOAD 0x000000 0x3fc91710 0x0000d718 0x00000 0x03c44 RW 0x10 + LOAD 0x000000 0x3fc95360 0x0000d718 0x00000 0x01058 RW 0x10 + LOAD 0x00d8f0 0x42000000 0x00010000 0x0862e 0x0862e RWE 0x10 + LOAD 0x020000 0x3c010000 0x00020000 0x01e60 0x01e60 R 0x10000 + LOAD 0x000000 0x3c000000 0x3c000000 0x00000 0x10000 RW 0x1 + LOAD 0x000000 0x3fc88000 0x3fc88000 0x00000 0x073f0 RW 0x1 + GNU_STACK 0x000000 0x00000000 0x00000000 0x00000 0x00000 RW 0x10 + + Section to Segment mapping: + Segment Sections... + 00 .rtc.force_slow + 01 .iram0.vectors .iram0.text .loader.text + 02 .dram0.data + 03 .iram0.text_end + 04 .loader.data sw_isr_table device_states log_mpsc_pbuf_area log_msg_ptr_area k_timer_area k_heap_area k_mutex_area k_sem_area log_const_area log_backend_area + 05 .text_dummy + 06 .dram0.noinit + 07 .dram0.bss + 08 .text + 09 .flash.rodata initlevel device_area gpio_driver_api_area spi_driver_api_area clock_control_driver_api_area lora_driver_api_area uart_driver_api_area + 10 .flash.rodata_dummy + 11 .dram0.dummy + 12 diff --git a/build/zephyr/zephyr_final.map b/build/zephyr/zephyr_final.map new file mode 100644 index 0000000..19105af --- /dev/null +++ b/build/zephyr/zephyr_final.map @@ -0,0 +1,18611 @@ +Archive member included to satisfy reference by file (symbol) + +app/libapp.a(main.c.obj) (--whole-archive) +app/libapp.a(kiss.c.obj) (--whole-archive) +app/libapp.a(lora_modem.c.obj) + (--whole-archive) +zephyr/libzephyr.a(validate_libc.c.obj) + (--whole-archive) +zephyr/libzephyr.a(heap.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cbprintf_packaged.c.obj) + (--whole-archive) +zephyr/libzephyr.a(clock.c.obj) + (--whole-archive) +zephyr/libzephyr.a(printk.c.obj) + (--whole-archive) +zephyr/libzephyr.a(sem.c.obj) + (--whole-archive) +zephyr/libzephyr.a(thread_entry.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cbprintf_complete.c.obj) + (--whole-archive) +zephyr/libzephyr.a(assert.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mpsc_pbuf.c.obj) + (--whole-archive) +zephyr/libzephyr.a(dec.c.obj) + (--whole-archive) +zephyr/libzephyr.a(hex.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rb.c.obj) (--whole-archive) +zephyr/libzephyr.a(set.c.obj) + (--whole-archive) +zephyr/libzephyr.a(timeutil.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bitarray.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bitmask.c.obj) + (--whole-archive) +zephyr/libzephyr.a(getopt.c.obj) + (--whole-archive) +zephyr/libzephyr.a(getopt_common.c.obj) + (--whole-archive) +zephyr/libzephyr.a(ring_buffer.c.obj) + (--whole-archive) +zephyr/libzephyr.a(configs.c.obj) + (--whole-archive) +zephyr/libzephyr.a(soc.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp32s3-mp.c.obj) + (--whole-archive) +zephyr/libzephyr.a(loader.c.obj) + (--whole-archive) +zephyr/libzephyr.a(hw_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_core.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_mgmt.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_cache.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_msg.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_output.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_backend_uart.c.obj) + (--whole-archive) +zephyr/libzephyr.a(tracing_none.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_efuse_api.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_efuse_fields.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_efuse_utility.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_efuse_table.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_efuse_fields.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_efuse_utility.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + (--whole-archive) +zephyr/libzephyr.a(flash_encrypt.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_flash_api.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(flash_mmap.c.obj) + (--whole-archive) +zephyr/libzephyr.a(flash_ops.c.obj) + (--whole-archive) +zephyr/libzephyr.a(memspi_host_driver.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_wrap.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cache_utils.c.obj) + (--whole-archive) +zephyr/libzephyr.a(uart_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(uart_hal_iram.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_hal_iram.c.obj) + (--whole-archive) +zephyr/libzephyr.a(lldesc.c.obj) + (--whole-archive) +zephyr/libzephyr.a(gdma_hal_top.c.obj) + (--whole-archive) +zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bootloader_clock_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mpu_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(flash_qio_mode.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + (--whole-archive) +zephyr/libzephyr.a(console_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(soc_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_io.c.obj) + (--whole-archive) +zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + (--whole-archive) +zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(clk_tree_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_io_periph.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_io_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(systimer_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(wdt_hal_iram.c.obj) + (--whole-archive) +zephyr/libzephyr.a(xt_wdt_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + (--whole-archive) +zephyr/libzephyr.a(clk_ctrl_os.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cpu.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_clk.c.obj) + (--whole-archive) +zephyr/libzephyr.a(hw_random.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mac_addr.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mspi_timing_config.c.obj) + (--whole-archive) +zephyr/libzephyr.a(periph_ctrl.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cpu_region_protect.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_clk_tree.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_cpu_intr.c.obj) + (--whole-archive) +zephyr/libzephyr.a(io_mux.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_clk.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_clk_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_sleep.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_time.c.obj) + (--whole-archive) +zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + (--whole-archive) +zephyr/libzephyr.a(systimer.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + (--whole-archive) +zephyr/libzephyr.a(regi2c_ctrl.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_module.c.obj) + (--whole-archive) +zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + (--whole-archive) +zephyr/libzephyr.a(sleep_modes.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_cache_msync.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_cache_utils.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_mmu_map.c.obj) + (--whole-archive) +zephyr/libzephyr.a(ext_mem_layout.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_crc.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_efuse.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_gpio.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_print.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_sys.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_err.c.obj) + (--whole-archive) +zephyr/libzephyr.a(clk.c.obj) + (--whole-archive) +zephyr/libzephyr.a(reset_reason.c.obj) + (--whole-archive) +zephyr/libzephyr.a(system_internal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_timer.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_timer_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(ets_timer_legacy.c.obj) + (--whole-archive) +zephyr/libzephyr.a(efuse_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cache_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(efuse_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mmu_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(gpio_periph.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_restart.c.obj) + (--whole-archive) +zephyr/libzephyr.a(flash_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bootloader_flash.c.obj) + (--whole-archive) +zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + (--whole-archive) +zephyr/libzephyr.a(soc_flash_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(soc_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(soc_random.c.obj) + (--whole-archive) +zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + (--whole-archive) +zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + (--whole-archive) +zephyr/arch/common/libarch__common.a(init.c.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + (--whole-archive) +zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + (--whole-archive) +zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + (--whole-archive) +zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + (--whole-archive) +zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + (--whole-archive) +zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + (--whole-archive) +zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + (--whole-archive) +zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + (--whole-archive) +zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + (--whole-archive) +zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + (--whole-archive) +zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + (--whole-archive) +zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + (--whole-archive) +zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + (--whole-archive) +zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + (--whole-archive) +zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + (--whole-archive) +zephyr/kernel/libkernel.a(busy_wait.c.obj) + zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) (z_impl_k_busy_wait) +zephyr/kernel/libkernel.a(device.c.obj) + app/libapp.a(lora_modem.c.obj) (z_impl_device_is_ready) +zephyr/kernel/libkernel.a(errno.c.obj) + zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) (z_impl_z_errno) +zephyr/kernel/libkernel.a(fatal.c.obj) + zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) (z_fatal_error) +zephyr/kernel/libkernel.a(init.c.obj) + zephyr/libzephyr.a(loader.c.obj) (_kernel) +zephyr/kernel/libkernel.a(idle.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (idle) +zephyr/kernel/libkernel.a(mutex.c.obj) + zephyr/libzephyr.a(esp_mmu_map.c.obj) (z_impl_k_mutex_init) +zephyr/kernel/libkernel.a(sem.c.obj) + zephyr/libzephyr.a(sem.c.obj) (z_impl_k_sem_init) +zephyr/kernel/libkernel.a(work.c.obj) + zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) (k_work_init) +zephyr/kernel/libkernel.a(thread.c.obj) + zephyr/libzephyr.a(mpsc_pbuf.c.obj) (k_is_in_isr) +zephyr/kernel/libkernel.a(sched.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_thread_timeout) +zephyr/kernel/libkernel.a(timeslicing.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_reset_time_slice) +zephyr/kernel/libkernel.a(timeout.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_add_timeout) +zephyr/kernel/libkernel.a(timer.c.obj) + zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) (z_timer_expiration_handler) +zephyr/kernel/libkernel.a(poll.c.obj) + zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) (z_impl_k_poll) +zephyr/kernel/libkernel.a(mempool.c.obj) + zephyr/libzephyr.a(flash_mmap.c.obj) (k_free) +zephyr/kernel/libkernel.a(banner.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (boot_banner) +zephyr/kernel/libkernel.a(kheap.c.obj) + zephyr/kernel/libkernel.a(mempool.c.obj) (k_heap_free) +zephyr/kernel/libkernel.a(system_work_q.c.obj) + zephyr/kernel/libkernel.a(work.c.obj) (k_sys_work_q) +/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/libgcc.a(_ashldi3.o) + zephyr/libzephyr.a(esp_efuse_fields.c.obj) (__ashldi3) +/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/libgcc.a(_ashrdi3.o) + zephyr/libzephyr.a(rtc_io.c.obj) (__ashrdi3) +/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/libgcc.a(_lshrdi3.o) + zephyr/libzephyr.a(esp_efuse_utility.c.obj) (__lshrdi3) +/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/libgcc.a(_bswapsi2.o) + app/libapp.a(main.c.obj) (__bswapsi2) +/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/libgcc.a(_bswapdi2.o) + zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) (__bswapdi2) +/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/libgcc.a(_divsf3.o) + zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) (__divsf3) +/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/libgcc.a(_addsubdf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__subdf3) +/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/libgcc.a(_muldf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__muldf3) +/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/libgcc.a(_divdf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__divdf3) +/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/libgcc.a(_fixdfdi.o) + zephyr/libzephyr.a(timeutil.c.obj) (__fixdfdi) +/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/libgcc.a(_floatsidf.o) + zephyr/libzephyr.a(timeutil.c.obj) (__floatunsidf) +/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/libgcc.a(_floatdidf.o) + zephyr/libzephyr.a(timeutil.c.obj) (__floatundidf) +/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/libgcc.a(_truncdfsf2.o) + zephyr/libzephyr.a(timeutil.c.obj) (__truncdfsf2) +/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/libgcc.a(_extendsfdf2.o) + zephyr/libzephyr.a(timeutil.c.obj) (__extendsfdf2) +/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/libgcc.a(_popcountsi2.o) + zephyr/libzephyr.a(bitarray.c.obj) (__popcountsi2) +/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/libgcc.a(_divdi3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__divdi3) +/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/libgcc.a(_moddi3.o) + zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) (__moddi3) +/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/libgcc.a(_udivdi3.o) + zephyr/libzephyr.a(clock.c.obj) (__udivdi3) +/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/libgcc.a(_umoddi3.o) + zephyr/libzephyr.a(clock.c.obj) (__umoddi3) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memcpy.S.o) + zephyr/libzephyr.a(heap.c.obj) (memcpy) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memset.S.o) + zephyr/libzephyr.a(heap.c.obj) (memset) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + zephyr/libzephyr.a(log_mgmt.c.obj) (strcmp) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + zephyr/libzephyr.a(cbprintf_packaged.c.obj) (strlen) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + zephyr/libzephyr.a(esp_efuse_utility.c.obj) (memcmp) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + zephyr/libzephyr.a(getopt.c.obj) (strchr) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + zephyr/libzephyr.a(cbprintf_complete.c.obj) (strnlen) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + zephyr/libzephyr.a(sleep_modes.c.obj) (fprintf) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + zephyr/libzephyr.a(esp_mmu_map.c.obj) (fputc) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + zephyr/libzephyr.a(esp_mmu_map.c.obj) (fputs) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + zephyr/libzephyr.a(heap_caps_zephyr.c.obj) (printf) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) (puts) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + zephyr/libzephyr.a(log_output.c.obj) (snprintf) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + (__l_vfprintf) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + (__l_vfscanf) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) (getc) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) (__file_str_put) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) (ungetc) + +Discarded input sections + + .text 0x00000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .data 0x00000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .bss 0x00000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .debug_line 0x00000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .debug_str 0x00000000 0x18f zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .comment 0x00000000 0x20 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .text 0x00000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .data 0x00000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .bss 0x00000000 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .text 0x00000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .data 0x00000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .bss 0x00000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .text 0x00000000 0x0 app/libapp.a(main.c.obj) + .data 0x00000000 0x0 app/libapp.a(main.c.obj) + .bss 0x00000000 0x0 app/libapp.a(main.c.obj) + .text 0x00000000 0x0 app/libapp.a(kiss.c.obj) + .data 0x00000000 0x0 app/libapp.a(kiss.c.obj) + .bss 0x00000000 0x0 app/libapp.a(kiss.c.obj) + .text 0x00000000 0x0 app/libapp.a(lora_modem.c.obj) + .data 0x00000000 0x0 app/libapp.a(lora_modem.c.obj) + .bss 0x00000000 0x0 app/libapp.a(lora_modem.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(validate_libc.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(validate_libc.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(validate_libc.c.obj) + .debug_info 0x00000000 0x79 zephyr/libzephyr.a(validate_libc.c.obj) + .debug_abbrev 0x00000000 0x26 zephyr/libzephyr.a(validate_libc.c.obj) + .debug_aranges + 0x00000000 0x18 zephyr/libzephyr.a(validate_libc.c.obj) + .debug_line 0x00000000 0x5e zephyr/libzephyr.a(validate_libc.c.obj) + .debug_str 0x00000000 0x231 zephyr/libzephyr.a(validate_libc.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(validate_libc.c.obj) + .literal.inplace_realloc$isra$0 + 0x00000000 0x60 zephyr/libzephyr.a(heap.c.obj) + .literal.sys_heap_usable_size + 0x00000000 0x8 zephyr/libzephyr.a(heap.c.obj) + .literal.sys_heap_aligned_alloc + 0x00000000 0x24 zephyr/libzephyr.a(heap.c.obj) + .literal.sys_heap_realloc + 0x00000000 0x1c zephyr/libzephyr.a(heap.c.obj) + .literal.sys_heap_aligned_realloc + 0x00000000 0x1c zephyr/libzephyr.a(heap.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .text.inplace_realloc$isra$0 + 0x00000000 0x194 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_usable_size + 0x00000000 0x3e zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_aligned_alloc + 0x00000000 0x10c zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_realloc + 0x00000000 0x76 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_aligned_realloc + 0x00000000 0x85 zephyr/libzephyr.a(heap.c.obj) + .literal.cbprintf_package + 0x00000000 0x4 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text.cbprintf_package + 0x00000000 0x2d zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .literal.timespec_add + 0x00000000 0x4 zephyr/libzephyr.a(clock.c.obj) + .literal.z_impl_sys_clock_getrtoffset + 0x00000000 0x4 zephyr/libzephyr.a(clock.c.obj) + .literal.sys_clock_gettime + 0x00000000 0x28 zephyr/libzephyr.a(clock.c.obj) + .literal.z_impl_sys_clock_settime + 0x00000000 0x20 zephyr/libzephyr.a(clock.c.obj) + .literal.z_impl_sys_clock_nanosleep + 0x00000000 0x54 zephyr/libzephyr.a(clock.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(clock.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(clock.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(clock.c.obj) + .text.timespec_compare + 0x00000000 0x48 zephyr/libzephyr.a(clock.c.obj) + .text.timespec_add + 0x00000000 0x78 zephyr/libzephyr.a(clock.c.obj) + .text.sys_clock_from_clockid + 0x00000000 0xa zephyr/libzephyr.a(clock.c.obj) + .text.z_impl_sys_clock_getrtoffset + 0x00000000 0x21 zephyr/libzephyr.a(clock.c.obj) + .rodata 0x00000000 0x20 zephyr/libzephyr.a(clock.c.obj) + .text.sys_clock_gettime + 0x00000000 0xb5 zephyr/libzephyr.a(clock.c.obj) + .text.z_impl_sys_clock_settime + 0x00000000 0x86 zephyr/libzephyr.a(clock.c.obj) + .text.z_impl_sys_clock_nanosleep + 0x00000000 0x1fc zephyr/libzephyr.a(clock.c.obj) + .bss.rt_clock_offset + 0x00000000 0x10 zephyr/libzephyr.a(clock.c.obj) + .debug_frame 0x00000000 0xb8 zephyr/libzephyr.a(clock.c.obj) + .debug_info 0x00000000 0xd48 zephyr/libzephyr.a(clock.c.obj) + .debug_abbrev 0x00000000 0x41f zephyr/libzephyr.a(clock.c.obj) + .debug_loc 0x00000000 0x5ab zephyr/libzephyr.a(clock.c.obj) + .debug_aranges + 0x00000000 0x50 zephyr/libzephyr.a(clock.c.obj) + .debug_ranges 0x00000000 0x140 zephyr/libzephyr.a(clock.c.obj) + .debug_line 0x00000000 0x1003 zephyr/libzephyr.a(clock.c.obj) + .debug_str 0x00000000 0x75f zephyr/libzephyr.a(clock.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(clock.c.obj) + .literal.__printk_get_hook + 0x00000000 0x4 zephyr/libzephyr.a(printk.c.obj) + .literal.vprintk + 0x00000000 0x4 zephyr/libzephyr.a(printk.c.obj) + .literal.z_impl_k_str_out + 0x00000000 0x4 zephyr/libzephyr.a(printk.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .text.arch_printk_char_out + 0x00000000 0x7 zephyr/libzephyr.a(printk.c.obj) + .text.__printk_get_hook + 0x00000000 0xa zephyr/libzephyr.a(printk.c.obj) + .text.vprintk 0x00000000 0x13 zephyr/libzephyr.a(printk.c.obj) + .text.z_impl_k_str_out + 0x00000000 0x1d zephyr/libzephyr.a(printk.c.obj) + .literal.sys_sem_init + 0x00000000 0x4 zephyr/libzephyr.a(sem.c.obj) + .literal.sys_sem_give + 0x00000000 0x4 zephyr/libzephyr.a(sem.c.obj) + .literal.sys_sem_take + 0x00000000 0x4 zephyr/libzephyr.a(sem.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_init + 0x00000000 0x14 zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_give + 0x00000000 0x10 zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_take + 0x00000000 0x2e zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_count_get + 0x00000000 0x7 zephyr/libzephyr.a(sem.c.obj) + .debug_frame 0x00000000 0x70 zephyr/libzephyr.a(sem.c.obj) + .debug_info 0x00000000 0x4de zephyr/libzephyr.a(sem.c.obj) + .debug_abbrev 0x00000000 0x23e zephyr/libzephyr.a(sem.c.obj) + .debug_loc 0x00000000 0x18b zephyr/libzephyr.a(sem.c.obj) + .debug_aranges + 0x00000000 0x38 zephyr/libzephyr.a(sem.c.obj) + .debug_ranges 0x00000000 0x60 zephyr/libzephyr.a(sem.c.obj) + .debug_line 0x00000000 0x4d5 zephyr/libzephyr.a(sem.c.obj) + .debug_str 0x00000000 0x399 zephyr/libzephyr.a(sem.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(sem.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .literal.encode_uint + 0x00000000 0x8 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .literal.z_cbvprintf_impl + 0x00000000 0x20 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text.encode_uint + 0x00000000 0xa6 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .rodata.z_cbvprintf_impl.str1.1 + 0x00000000 0x6 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text.z_cbvprintf_impl + 0x00000000 0x8e9 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .rodata.z_cbvprintf_impl + 0x00000000 0x58 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_info 0x00000000 0x10f4 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_abbrev 0x00000000 0x42d zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_loc 0x00000000 0x16ef zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_ranges 0x00000000 0x1e0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_line 0x00000000 0x1b49 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_str 0x00000000 0x674 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .literal.assert_post_action + 0x00000000 0x4 zephyr/libzephyr.a(assert.c.obj) + .literal.assert_print + 0x00000000 0x4 zephyr/libzephyr.a(assert.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .text.assert_post_action + 0x00000000 0xc zephyr/libzephyr.a(assert.c.obj) + .text.assert_print + 0x00000000 0x27 zephyr/libzephyr.a(assert.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(assert.c.obj) + .debug_info 0x00000000 0x1ba zephyr/libzephyr.a(assert.c.obj) + .debug_abbrev 0x00000000 0x12d zephyr/libzephyr.a(assert.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(assert.c.obj) + .debug_ranges 0x00000000 0x18 zephyr/libzephyr.a(assert.c.obj) + .debug_line 0x00000000 0x263 zephyr/libzephyr.a(assert.c.obj) + .debug_str 0x00000000 0x334 zephyr/libzephyr.a(assert.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(assert.c.obj) + .literal.mpsc_pbuf_put_word + 0x00000000 0x18 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .literal.mpsc_pbuf_put_word_ext + 0x00000000 0x1c zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .literal.mpsc_pbuf_put_data + 0x00000000 0x20 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .literal.mpsc_pbuf_get_utilization + 0x00000000 0x4 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_put_word + 0x00000000 0xa1 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_put_word_ext + 0x00000000 0xb9 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_put_data + 0x00000000 0xc5 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_get_utilization + 0x00000000 0x25 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_get_max_utilization + 0x00000000 0x21 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .literal.u8_to_dec + 0x00000000 0x4 zephyr/libzephyr.a(dec.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .text.u8_to_dec + 0x00000000 0x6a zephyr/libzephyr.a(dec.c.obj) + .debug_frame 0x00000000 0x28 zephyr/libzephyr.a(dec.c.obj) + .debug_info 0x00000000 0x12b zephyr/libzephyr.a(dec.c.obj) + .debug_abbrev 0x00000000 0x9c zephyr/libzephyr.a(dec.c.obj) + .debug_loc 0x00000000 0xdc zephyr/libzephyr.a(dec.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(dec.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/libzephyr.a(dec.c.obj) + .debug_line 0x00000000 0x30b zephyr/libzephyr.a(dec.c.obj) + .debug_str 0x00000000 0x264 zephyr/libzephyr.a(dec.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(dec.c.obj) + .literal.bin2hex + 0x00000000 0x8 zephyr/libzephyr.a(hex.c.obj) + .literal.hex2bin + 0x00000000 0xc zephyr/libzephyr.a(hex.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .text.char2hex + 0x00000000 0x3e zephyr/libzephyr.a(hex.c.obj) + .text.hex2char + 0x00000000 0x26 zephyr/libzephyr.a(hex.c.obj) + .text.bin2hex 0x00000000 0x45 zephyr/libzephyr.a(hex.c.obj) + .text.hex2bin 0x00000000 0x72 zephyr/libzephyr.a(hex.c.obj) + .debug_frame 0x00000000 0x70 zephyr/libzephyr.a(hex.c.obj) + .debug_info 0x00000000 0x2a1 zephyr/libzephyr.a(hex.c.obj) + .debug_abbrev 0x00000000 0x12a zephyr/libzephyr.a(hex.c.obj) + .debug_loc 0x00000000 0x30e zephyr/libzephyr.a(hex.c.obj) + .debug_aranges + 0x00000000 0x38 zephyr/libzephyr.a(hex.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/libzephyr.a(hex.c.obj) + .debug_line 0x00000000 0x5c9 zephyr/libzephyr.a(hex.c.obj) + .debug_str 0x00000000 0x26b zephyr/libzephyr.a(hex.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(hex.c.obj) + .literal.rotate + 0x00000000 0x10 zephyr/libzephyr.a(rb.c.obj) + .literal.rb_insert + 0x00000000 0x10 zephyr/libzephyr.a(rb.c.obj) + .literal.rb_remove + 0x00000000 0x24 zephyr/libzephyr.a(rb.c.obj) + .literal.z_rb_walk + 0x00000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .literal.z_rb_foreach_next + 0x00000000 0x4 zephyr/libzephyr.a(rb.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .text.find_and_stack + 0x00000000 0x36 zephyr/libzephyr.a(rb.c.obj) + .text.stack_left_limb + 0x00000000 0x4e zephyr/libzephyr.a(rb.c.obj) + .text.set_child + 0x00000000 0x16 zephyr/libzephyr.a(rb.c.obj) + .text.rotate 0x00000000 0x7a zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_get_minmax + 0x00000000 0x23 zephyr/libzephyr.a(rb.c.obj) + .text.rb_insert + 0x00000000 0x138 zephyr/libzephyr.a(rb.c.obj) + .text.rb_remove + 0x00000000 0x31d zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_walk + 0x00000000 0x23 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_child + 0x00000000 0x16 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_is_black + 0x00000000 0xa zephyr/libzephyr.a(rb.c.obj) + .text.rb_contains + 0x00000000 0x30 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_foreach_next + 0x00000000 0x64 zephyr/libzephyr.a(rb.c.obj) + .debug_frame 0x00000000 0x130 zephyr/libzephyr.a(rb.c.obj) + .debug_info 0x00000000 0x243d zephyr/libzephyr.a(rb.c.obj) + .debug_abbrev 0x00000000 0x4b8 zephyr/libzephyr.a(rb.c.obj) + .debug_loc 0x00000000 0x22bc zephyr/libzephyr.a(rb.c.obj) + .debug_aranges + 0x00000000 0x78 zephyr/libzephyr.a(rb.c.obj) + .debug_ranges 0x00000000 0x620 zephyr/libzephyr.a(rb.c.obj) + .debug_line 0x00000000 0x2857 zephyr/libzephyr.a(rb.c.obj) + .debug_str 0x00000000 0x45b zephyr/libzephyr.a(rb.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(rb.c.obj) + .literal.sys_set_union + 0x00000000 0x8 zephyr/libzephyr.a(set.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(set.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(set.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(set.c.obj) + .text.sys_set_find + 0x00000000 0x13 zephyr/libzephyr.a(set.c.obj) + .text.sys_set_union + 0x00000000 0x3b zephyr/libzephyr.a(set.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(set.c.obj) + .debug_info 0x00000000 0x170 zephyr/libzephyr.a(set.c.obj) + .debug_abbrev 0x00000000 0xf9 zephyr/libzephyr.a(set.c.obj) + .debug_loc 0x00000000 0x6e zephyr/libzephyr.a(set.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(set.c.obj) + .debug_ranges 0x00000000 0x18 zephyr/libzephyr.a(set.c.obj) + .debug_line 0x00000000 0x30c zephyr/libzephyr.a(set.c.obj) + .debug_str 0x00000000 0x276 zephyr/libzephyr.a(set.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(set.c.obj) + .literal.timeutil_timegm64 + 0x00000000 0x14 zephyr/libzephyr.a(timeutil.c.obj) + .literal.timeutil_timegm + 0x00000000 0x8 zephyr/libzephyr.a(timeutil.c.obj) + .literal.timeutil_sync_state_update + 0x00000000 0xc zephyr/libzephyr.a(timeutil.c.obj) + .literal.timeutil_sync_state_set_skew + 0x00000000 0xc zephyr/libzephyr.a(timeutil.c.obj) + .literal.timeutil_sync_estimate_skew + 0x00000000 0x20 zephyr/libzephyr.a(timeutil.c.obj) + .literal.timeutil_sync_ref_from_local + 0x00000000 0x24 zephyr/libzephyr.a(timeutil.c.obj) + .literal.timeutil_sync_local_from_ref + 0x00000000 0x24 zephyr/libzephyr.a(timeutil.c.obj) + .literal.timeutil_sync_skew_to_ppb + 0x00000000 0x14 zephyr/libzephyr.a(timeutil.c.obj) + .literal.timespec_normalize + 0x00000000 0x14 zephyr/libzephyr.a(timeutil.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_timegm64 + 0x00000000 0x108 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_timegm + 0x00000000 0x1c zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_state_update + 0x00000000 0x78 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_state_set_skew + 0x00000000 0x40 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_estimate_skew + 0x00000000 0xbc zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_ref_from_local + 0x00000000 0xbc zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_local_from_ref + 0x00000000 0xae zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_skew_to_ppb + 0x00000000 0x42 zephyr/libzephyr.a(timeutil.c.obj) + .text.timespec_normalize + 0x00000000 0xa3 zephyr/libzephyr.a(timeutil.c.obj) + .debug_frame 0x00000000 0xe8 zephyr/libzephyr.a(timeutil.c.obj) + .debug_info 0x00000000 0x8ec zephyr/libzephyr.a(timeutil.c.obj) + .debug_abbrev 0x00000000 0x20c zephyr/libzephyr.a(timeutil.c.obj) + .debug_loc 0x00000000 0x6ca zephyr/libzephyr.a(timeutil.c.obj) + .debug_aranges + 0x00000000 0x60 zephyr/libzephyr.a(timeutil.c.obj) + .debug_ranges 0x00000000 0x70 zephyr/libzephyr.a(timeutil.c.obj) + .debug_line 0x00000000 0xdee zephyr/libzephyr.a(timeutil.c.obj) + .debug_str 0x00000000 0x53d zephyr/libzephyr.a(timeutil.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(timeutil.c.obj) + .literal.match_region + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.is_region_set_clear + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.set_region + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.set_clear_region + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_popcount_region + 0x00000000 0x10 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_xor + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_alloc + 0x00000000 0xc zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_find_nth_set + 0x00000000 0x10 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_free + 0x00000000 0x8 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_is_region_set + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_is_region_cleared + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_test_and_set_region + 0x00000000 0x8 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_set_region + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_clear_region + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .text.setup_bundle_data$isra$0 + 0x00000000 0x3f zephyr/libzephyr.a(bitarray.c.obj) + .text.match_region + 0x00000000 0x7e zephyr/libzephyr.a(bitarray.c.obj) + .text.is_region_set_clear + 0x00000000 0x54 zephyr/libzephyr.a(bitarray.c.obj) + .text.set_region + 0x00000000 0x9c zephyr/libzephyr.a(bitarray.c.obj) + .text.set_clear_region + 0x00000000 0x50 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_popcount_region + 0x00000000 0x98 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_xor + 0x00000000 0x9e zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_set_bit + 0x00000000 0x30 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_clear_bit + 0x00000000 0x30 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_bit + 0x00000000 0x30 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_set_bit + 0x00000000 0x45 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_clear_bit + 0x00000000 0x45 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_alloc + 0x00000000 0xe4 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_find_nth_set + 0x00000000 0xbc zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_free + 0x00000000 0x9c zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_is_region_set + 0x00000000 0x15 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_is_region_cleared + 0x00000000 0x15 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_set_region + 0x00000000 0x70 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_set_region + 0x00000000 0x15 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_clear_region + 0x00000000 0x15 zephyr/libzephyr.a(bitarray.c.obj) + .debug_frame 0x00000000 0x1f0 zephyr/libzephyr.a(bitarray.c.obj) + .debug_info 0x00000000 0x1a96 zephyr/libzephyr.a(bitarray.c.obj) + .debug_abbrev 0x00000000 0x455 zephyr/libzephyr.a(bitarray.c.obj) + .debug_loc 0x00000000 0x1010 zephyr/libzephyr.a(bitarray.c.obj) + .debug_aranges + 0x00000000 0xb8 zephyr/libzephyr.a(bitarray.c.obj) + .debug_ranges 0x00000000 0x200 zephyr/libzephyr.a(bitarray.c.obj) + .debug_line 0x00000000 0x2522 zephyr/libzephyr.a(bitarray.c.obj) + .debug_str 0x00000000 0x609 zephyr/libzephyr.a(bitarray.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(bitarray.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(bitmask.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(bitmask.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(bitmask.c.obj) + .text.bitmask_find_gap + 0x00000000 0x93 zephyr/libzephyr.a(bitmask.c.obj) + .debug_frame 0x00000000 0x28 zephyr/libzephyr.a(bitmask.c.obj) + .debug_info 0x00000000 0x1eb zephyr/libzephyr.a(bitmask.c.obj) + .debug_abbrev 0x00000000 0x107 zephyr/libzephyr.a(bitmask.c.obj) + .debug_loc 0x00000000 0x1b5 zephyr/libzephyr.a(bitmask.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(bitmask.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/libzephyr.a(bitmask.c.obj) + .debug_line 0x00000000 0x501 zephyr/libzephyr.a(bitmask.c.obj) + .debug_str 0x00000000 0x2ae zephyr/libzephyr.a(bitmask.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(bitmask.c.obj) + .literal.sys_getopt_init + 0x00000000 0x1c zephyr/libzephyr.a(getopt.c.obj) + .literal.sys_getopt + 0x00000000 0x20 zephyr/libzephyr.a(getopt.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(getopt.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(getopt.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(getopt.c.obj) + .rodata.sys_getopt_init.str1.1 + 0x00000000 0x1 zephyr/libzephyr.a(getopt.c.obj) + .text.sys_getopt_init + 0x00000000 0x37 zephyr/libzephyr.a(getopt.c.obj) + .text.sys_getopt + 0x00000000 0x11e zephyr/libzephyr.a(getopt.c.obj) + .literal.z_getopt_global_state_update + 0x00000000 0x18 zephyr/libzephyr.a(getopt_common.c.obj) + .literal.sys_getopt_state_get + 0x00000000 0x4 zephyr/libzephyr.a(getopt_common.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(getopt_common.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(getopt_common.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(getopt_common.c.obj) + .text.z_getopt_global_state_update + 0x00000000 0x30 zephyr/libzephyr.a(getopt_common.c.obj) + .text.sys_getopt_state_get + 0x00000000 0x8 zephyr/libzephyr.a(getopt_common.c.obj) + .rodata.str1.1 + 0x00000000 0x1 zephyr/libzephyr.a(getopt_common.c.obj) + .data.m_getopt_common_state + 0x00000000 0x18 zephyr/libzephyr.a(getopt_common.c.obj) + .bss.sys_getopt_optarg + 0x00000000 0x4 zephyr/libzephyr.a(getopt_common.c.obj) + .bss.sys_getopt_optreset + 0x00000000 0x4 zephyr/libzephyr.a(getopt_common.c.obj) + .bss.sys_getopt_optopt + 0x00000000 0x4 zephyr/libzephyr.a(getopt_common.c.obj) + .data.sys_getopt_optind + 0x00000000 0x4 zephyr/libzephyr.a(getopt_common.c.obj) + .data.sys_getopt_opterr + 0x00000000 0x4 zephyr/libzephyr.a(getopt_common.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(getopt_common.c.obj) + .debug_info 0x00000000 0x271 zephyr/libzephyr.a(getopt_common.c.obj) + .debug_abbrev 0x00000000 0x13e zephyr/libzephyr.a(getopt_common.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(getopt_common.c.obj) + .debug_ranges 0x00000000 0x18 zephyr/libzephyr.a(getopt_common.c.obj) + .debug_line 0x00000000 0x2d2 zephyr/libzephyr.a(getopt_common.c.obj) + .debug_str 0x00000000 0x4e6 zephyr/libzephyr.a(getopt_common.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(getopt_common.c.obj) + .literal.ring_buf_put_claim + 0x00000000 0x4 zephyr/libzephyr.a(ring_buffer.c.obj) + .literal.ring_buf_get_claim + 0x00000000 0x4 zephyr/libzephyr.a(ring_buffer.c.obj) + .literal.ring_buf_put + 0x00000000 0xc zephyr/libzephyr.a(ring_buffer.c.obj) + .literal.ring_buf_get + 0x00000000 0xc zephyr/libzephyr.a(ring_buffer.c.obj) + .literal.ring_buf_peek + 0x00000000 0xc zephyr/libzephyr.a(ring_buffer.c.obj) + .literal.ring_buf_item_put + 0x00000000 0x10 zephyr/libzephyr.a(ring_buffer.c.obj) + .literal.ring_buf_item_get + 0x00000000 0x14 zephyr/libzephyr.a(ring_buffer.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_area_claim + 0x00000000 0x39 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_put_claim + 0x00000000 0x28 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_get_claim + 0x00000000 0x22 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_area_finish + 0x00000000 0x3e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_put + 0x00000000 0x3e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_get + 0x00000000 0x3e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_peek + 0x00000000 0x3e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_item_put + 0x00000000 0x7e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_item_get + 0x00000000 0x90 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_frame 0x00000000 0xe8 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_info 0x00000000 0xcb7 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_abbrev 0x00000000 0x2aa zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_loc 0x00000000 0x8b4 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_aranges + 0x00000000 0x60 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_ranges 0x00000000 0xe8 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_line 0x00000000 0xd99 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_str 0x00000000 0x477 zephyr/libzephyr.a(ring_buffer.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(ring_buffer.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .iram1.2.literal + 0x00000000 0x4 zephyr/libzephyr.a(soc.c.obj) + .literal.sys_arch_reboot + 0x00000000 0x4 zephyr/libzephyr.a(soc.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(soc.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(soc.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(soc.c.obj) + .iram1.2 0x00000000 0x9 zephyr/libzephyr.a(soc.c.obj) + .text.sys_arch_reboot + 0x00000000 0x9 zephyr/libzephyr.a(soc.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .debug_info 0x00000000 0x79 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .debug_abbrev 0x00000000 0x26 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .debug_aranges + 0x00000000 0x18 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .debug_line 0x00000000 0x68 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .debug_str 0x00000000 0x23b zephyr/libzephyr.a(esp32s3-mp.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(loader.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(loader.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(loader.c.obj) + .entry_addr 0x00000000 0x4 zephyr/libzephyr.a(loader.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(hw_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(hw_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(hw_init.c.obj) + .literal.z_log_timestamp + 0x00000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .literal.log_format_set_all_active_backends + 0x00000000 0xc zephyr/libzephyr.a(log_core.c.obj) + .literal.log_init + 0x00000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .literal.log_thread_trigger + 0x00000000 0x10 zephyr/libzephyr.a(log_core.c.obj) + .literal.unordered_notify + 0x00000000 0x10 zephyr/libzephyr.a(log_core.c.obj) + .literal.z_impl_log_buffered_cnt + 0x00000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .literal.z_log_dropped_pending + 0x00000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .literal.z_log_msg_claim_oldest + 0x00000000 0x20 zephyr/libzephyr.a(log_core.c.obj) + .literal.z_log_msg_claim + 0x00000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .literal.z_log_msg_enqueue + 0x00000000 0x18 zephyr/libzephyr.a(log_core.c.obj) + .literal.log_mem_get_usage + 0x00000000 0x8 zephyr/libzephyr.a(log_core.c.obj) + .literal.log_mem_get_max_usage + 0x00000000 0x8 zephyr/libzephyr.a(log_core.c.obj) + .literal.log_flush + 0x00000000 0xc zephyr/libzephyr.a(log_core.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(log_core.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(log_core.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(log_core.c.obj) + .text.log_format_table_size + 0x00000000 0x7 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_timestamp + 0x00000000 0x10 zephyr/libzephyr.a(log_core.c.obj) + .text.log_format_set_all_active_backends + 0x00000000 0x41 zephyr/libzephyr.a(log_core.c.obj) + .text.log_init + 0x00000000 0xf zephyr/libzephyr.a(log_core.c.obj) + .text.log_thread_trigger + 0x00000000 0x17 zephyr/libzephyr.a(log_core.c.obj) + .text.log_thread_set + 0x00000000 0x5 zephyr/libzephyr.a(log_core.c.obj) + .rodata.unordered_notify.str1.1 + 0x00000000 0x28 zephyr/libzephyr.a(log_core.c.obj) + .text.unordered_notify + 0x00000000 0x2b zephyr/libzephyr.a(log_core.c.obj) + .text.z_impl_log_buffered_cnt + 0x00000000 0xa zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_dropped_pending + 0x00000000 0xf zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_claim_oldest + 0x00000000 0x61 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_claim + 0x00000000 0xd zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_enqueue + 0x00000000 0x78 zephyr/libzephyr.a(log_core.c.obj) + .text.log_set_tag + 0x00000000 0x8 zephyr/libzephyr.a(log_core.c.obj) + .text.log_mem_get_usage + 0x00000000 0x14 zephyr/libzephyr.a(log_core.c.obj) + .text.log_mem_get_max_usage + 0x00000000 0x12 zephyr/libzephyr.a(log_core.c.obj) + .text.log_flush + 0x00000000 0x2c zephyr/libzephyr.a(log_core.c.obj) + .bss.unordered_cnt + 0x00000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.prev_timestamp + 0x00000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .literal.source_id_cmp + 0x00000000 0x4 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.z_log_link_get_dynamic_filter + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.z_log_ext_domain_count + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.log_src_cnt_get + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.log_domain_name_get + 0x00000000 0x4 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.log_compiled_level_get + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.z_log_link_set_runtime_level + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.z_log_runtime_filters_init + 0x00000000 0xc zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.log_source_id_get + 0x00000000 0xc zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.filter_set + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.z_impl_log_filter_set + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.z_impl_log_frontend_filter_set + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.log_backend_get_by_name + 0x00000000 0xc zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.log_filter_get + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.z_log_links_initiate + 0x00000000 0x24 zephyr/libzephyr.a(log_mgmt.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(log_mgmt.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.domain_id_cmp + 0x00000000 0xe zephyr/libzephyr.a(log_mgmt.c.obj) + .text.source_id_cmp + 0x00000000 0x14 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_link_get_dynamic_filter + 0x00000000 0x45 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_ext_domain_count + 0x00000000 0x1f zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_src_cnt_get + 0x00000000 0x11 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.log_domain_name_get.str1.1 + 0x00000000 0x1 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_domain_name_get + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_compiled_level_get + 0x00000000 0x1c zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_link_set_runtime_level + 0x00000000 0x45 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_runtime_filters_init + 0x00000000 0x34 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_source_id_get + 0x00000000 0x33 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.filter_set + 0x00000000 0x1f zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_impl_log_filter_set + 0x00000000 0x1f zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_impl_log_frontend_filter_set + 0x00000000 0x1f zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_backend_get_by_name + 0x00000000 0x26 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_backend_disable + 0x00000000 0xc zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_filter_get + 0x00000000 0x1f zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_frontend_filter_get + 0x00000000 0x7 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_links_initiate + 0x00000000 0x43 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.sname_cache_config$0 + 0x00000000 0x10 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.dname_cache_config$1 + 0x00000000 0x10 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.sname_cache + 0x00000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.dname_cache + 0x00000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.sname_cache_buffer + 0x00000000 0x9 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.dname_cache_buffer + 0x00000000 0x9 zephyr/libzephyr.a(log_mgmt.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(log_cache.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(log_cache.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_init + 0x00000000 0x56 zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_get + 0x00000000 0xa6 zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_put + 0x00000000 0x14 zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_release + 0x00000000 0x14 zephyr/libzephyr.a(log_cache.c.obj) + .debug_frame 0x00000000 0x70 zephyr/libzephyr.a(log_cache.c.obj) + .debug_info 0x00000000 0x10a7 zephyr/libzephyr.a(log_cache.c.obj) + .debug_abbrev 0x00000000 0x2be zephyr/libzephyr.a(log_cache.c.obj) + .debug_loc 0x00000000 0x9c4 zephyr/libzephyr.a(log_cache.c.obj) + .debug_aranges + 0x00000000 0x38 zephyr/libzephyr.a(log_cache.c.obj) + .debug_ranges 0x00000000 0x1d8 zephyr/libzephyr.a(log_cache.c.obj) + .debug_line 0x00000000 0xf44 zephyr/libzephyr.a(log_cache.c.obj) + .debug_str 0x00000000 0x4b8 zephyr/libzephyr.a(log_cache.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(log_cache.c.obj) + .literal.z_impl_z_log_msg_simple_create_2 + 0x00000000 0x4 zephyr/libzephyr.a(log_msg.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(log_msg.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(log_msg.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(log_msg.c.obj) + .text.z_impl_z_log_msg_simple_create_2 + 0x00000000 0x1a zephyr/libzephyr.a(log_msg.c.obj) + .literal.log_output_timestamp_to_us + 0x00000000 0xc zephyr/libzephyr.a(log_output.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(log_output.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(log_output.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(log_output.c.obj) + .text.log_output_timestamp_to_us + 0x00000000 0x2a zephyr/libzephyr.a(log_output.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_enter + 0x00000000 0x5 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_exit + 0x00000000 0x5 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_exit_to_scheduler + 0x00000000 0x5 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_idle + 0x00000000 0x5 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_idle_exit + 0x00000000 0x5 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_frame 0x00000000 0x88 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_info 0x00000000 0xb9 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_abbrev 0x00000000 0x5e zephyr/libzephyr.a(tracing_none.c.obj) + .debug_aranges + 0x00000000 0x40 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_ranges 0x00000000 0x30 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_line 0x00000000 0xc3 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_str 0x00000000 0x2a0 zephyr/libzephyr.a(tracing_none.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(tracing_none.c.obj) + .literal.k_mutex_lock$constprop$0$isra$0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.k_mutex_unlock$constprop$0$isra$0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_blob + 0x00000000 0x14 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_bit + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_cnt + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_blob + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_cnt + 0x00000000 0x30 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_bit + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_reg + 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_block + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_reg + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_block + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_begin + 0x00000000 0x1c zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_cancel + 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_commit + 0x00000000 0x28 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_check_errors + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_destroy_block + 0x00000000 0x4c zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.k_mutex_lock$constprop$0$isra$0 + 0x00000000 0x12 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.k_mutex_unlock$constprop$0$isra$0 + 0x00000000 0xe zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_blob + 0x00000000 0x62 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_bit + 0x00000000 0x26 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_cnt + 0x00000000 0x46 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_blob + 0x00000000 0x70 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_write_field_cnt.str1.1 + 0x00000000 0x48 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_cnt + 0x00000000 0x90 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_bit + 0x00000000 0x42 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_get_field_size + 0x00000000 0x1e zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_reg + 0x00000000 0x4e zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_block + 0x00000000 0x46 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_reg + 0x00000000 0x22 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_block + 0x00000000 0x46 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_begin.str1.1 + 0x00000000 0x31 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_begin + 0x00000000 0x39 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_cancel.str1.1 + 0x00000000 0x57 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_cancel + 0x00000000 0x45 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_commit.str1.1 + 0x00000000 0x33 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_commit + 0x00000000 0x56 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_check_errors + 0x00000000 0xd zephyr/libzephyr.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_destroy_block.str1.1 + 0x00000000 0x10b zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_destroy_block + 0x00000000 0xd6 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .bss.s_batch_writing_mode + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api.c.obj) + ._k_mutex.static.s_efuse_lock_ + 0x00000000 0x14 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_frame 0x00000000 0x1c0 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_info 0x00000000 0x1793 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_abbrev 0x00000000 0x502 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_loc 0x00000000 0x69f zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_aranges + 0x00000000 0xa8 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_ranges 0x00000000 0x98 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_line 0x00000000 0x149a zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_str 0x00000000 0xd48 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_reset + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_read_secure_version + 0x00000000 0x14 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_check_secure_version + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_update_secure_version + 0x00000000 0x40 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .iram1.0.literal + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_reset + 0x00000000 0xb zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_read_secure_version + 0x00000000 0x40 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_check_secure_version + 0x00000000 0xb1 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .rodata.esp_efuse_update_secure_version.str1.1 + 0x00000000 0x121 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_update_secure_version + 0x00000000 0xae zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .iram1.0 0x00000000 0xd zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_frame 0x00000000 0x88 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_info 0x00000000 0x61c zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x00000000 0x1f2 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_loc 0x00000000 0x20f zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_aranges + 0x00000000 0x40 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_ranges 0x00000000 0x30 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_line 0x00000000 0xa1d zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_str 0x00000000 0x66e zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.write_reg + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_process + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_reset + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_efuses + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_update_virt_blocks + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_single_block + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_pending + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_blocks + 0x00000000 0x14 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_read_reg + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_fill_buff + 0x00000000 0x10 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_count_once + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_cnt + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_reg + 0x00000000 0x14 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_blob + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_get_read_register_address + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_is_correct_written_data + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.write_reg + 0x00000000 0x3c zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_process.str1.1 + 0x00000000 0x3e zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_process + 0x00000000 0x104 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_reset + 0x00000000 0x47 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_efuses + 0x00000000 0x28 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_erase_virt_blocks + 0x00000000 0x5 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_update_virt_blocks.str1.1 + 0x00000000 0x23 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_update_virt_blocks + 0x00000000 0x11 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_single_block.str1.1 + 0x00000000 0xd zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_single_block + 0x00000000 0x66 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_pending + 0x00000000 0x36 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_blocks.str1.1 + 0x00000000 0xd zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_blocks + 0x00000000 0x2a zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_number_of_items + 0x00000000 0x12 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_read_reg + 0x00000000 0x2b zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_fill_buff + 0x00000000 0xaa zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_count_once + 0x00000000 0x3c zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_cnt + 0x00000000 0x71 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_write_reg.str1.1 + 0x00000000 0x4e zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_reg + 0x00000000 0x36 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_blob + 0x00000000 0x9e zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_read_register_address + 0x00000000 0x18 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_is_correct_written_data.str1.1 + 0x00000000 0xab zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_is_correct_written_data + 0x00000000 0x6e zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .bss.s_burn_counter + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_frame 0x00000000 0x1c0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_info 0x00000000 0x12c3 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00000000 0x44a zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_loc 0x00000000 0xf6e zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x00000000 0xa8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00000000 0x270 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_line 0x00000000 0x189b zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_str 0x00000000 0xa2e zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SYS_DATA_PART2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY5 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY4 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USER_DATA_MAC_CUSTOM + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USER_DATA + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_OCODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_TEMP_CALIB + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLK_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_OPTIONAL_UNIQUE_ID + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MINOR_HI + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIG_DBIAS_HVT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_V_DIG_DBIAS20 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_V_RTC_DBIAS20 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_K_DIG_LDO + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_K_RTC_LDO + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PSRAM_VENDOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PSRAM_TEMP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PSRAM_CAP + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_VENDOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_TEMP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_CAP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLK_VERSION_MINOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PKG_VERSION + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MINOR_LO + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D7 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D6 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D5 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D4 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_DQS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_WP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_HD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_Q + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CLK + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC + 0x00000000 0x1c zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_OTG_DOWNLOAD_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_VERSION + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FORCE_SEND_RESUME + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_ECC_EN + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_PAGE_SIZE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_TYPE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PIN_POWER_SELECTION + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_UART_PRINT_CONTROL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_ECC_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DIRECT_BOOT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_TPUW + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USB_PHY_SEL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_STRAP_JTAG_SEL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_SERIAL_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_EN + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_5 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_4 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_BOOT_CRYPT_CNT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WDT_DELAY_SEL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VDD_SPI_FORCE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VDD_SPI_TIEH + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VDD_SPI_XPD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USB_EXT_PHY_ENABLE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USB_EXCHG_PINS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_PAD_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SOFT_DIS_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_APP_CPU + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_TWAI + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_OTG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_FORCE_DOWNLOAD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_DCACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_ICACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DCACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_ICACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY5 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY4 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SOFT_DIS_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_USB_EXT_PHY_ENABLE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_USB_EXCHG_PINS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY5 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY4 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CUSTOM_MAC + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_USR_DATA + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_OCODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_TEMP_CALIB + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_OPTIONAL_UNIQUE_ID + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SYS_DATA_PART1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WAFER_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_HI + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIG_DBIAS_HVT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_V_DIG_DBIAS20 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_V_RTC_DBIAS20 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_K_DIG_LDO + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_K_RTC_LDO + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PSRAM_VENDOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PSRAM_TEMP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PSRAM_CAP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_VENDOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_TEMP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_CAP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK_VERSION_MINOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PKG_VERSION + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_LO + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D7 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D6 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D5 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D4 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_DQS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_WP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_HD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_Q + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CLK + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_OTG_DOWNLOAD_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_VERSION + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FORCE_SEND_RESUME + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_ECC_EN + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_PAGE_SIZE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_TYPE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PIN_POWER_SELECTION + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_UART_PRINT_CONTROL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_ECC_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DIRECT_BOOT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_TPUW + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_EN + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_5 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_4 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WDT_DELAY_SEL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_VDD_SPI_FORCE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_VDD_SPI_TIEH + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_VDD_SPI_XPD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_USB_PHY_SEL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_STRAP_JTAG_SEL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_PAD_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_APP_CPU + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_TWAI + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_OTG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_FORCE_DOWNLOAD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_DCACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_ICACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DCACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_ICACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_RD_DIS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SYS_DATA_PART2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY5 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY4 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY3 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY2 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY1 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY0 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.USER_DATA_MAC_CUSTOM + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.USER_DATA + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.OCODE 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.TEMP_CALIB + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.BLK_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.OPTIONAL_UNIQUE_ID + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MINOR_HI + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIG_DBIAS_HVT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.V_DIG_DBIAS20 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.V_RTC_DBIAS20 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.K_DIG_LDO + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.K_RTC_LDO + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.PSRAM_VENDOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.PSRAM_TEMP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.PSRAM_CAP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_VENDOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_TEMP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_CAP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.BLK_VERSION_MINOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.PKG_VERSION + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MINOR_LO + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D7 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D6 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D5 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D4 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_DQS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_WP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_HD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_Q + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CLK + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.MAC 0x00000000 0x18 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_OTG_DOWNLOAD_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SECURE_VERSION + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FORCE_SEND_RESUME + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_ECC_EN + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_PAGE_SIZE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_TYPE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.PIN_POWER_SELECTION + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.UART_PRINT_CONTROL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_ECC_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_DIRECT_BOOT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_TPUW + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.USB_PHY_SEL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.STRAP_JTAG_SEL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_SERIAL_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_EN + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_5 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_4 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_BOOT_CRYPT_CNT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WDT_DELAY_SEL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.VDD_SPI_FORCE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.VDD_SPI_TIEH + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.VDD_SPI_XPD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.USB_EXT_PHY_ENABLE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.USB_EXCHG_PINS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_PAD_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SOFT_DIS_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_APP_CPU + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_TWAI + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_OTG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_FORCE_DOWNLOAD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_DCACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_ICACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_DCACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_ICACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY5 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY4 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SOFT_DIS_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_USB_EXT_PHY_ENABLE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_USB_EXCHG_PINS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY5 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY4 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CUSTOM_MAC + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_USR_DATA + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_CAL_VOL_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_CAL_VOL_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_CAL_VOL_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_INIT_CODE_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_INIT_CODE_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_INIT_CODE_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_INIT_CODE_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_OCODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_TEMP_CALIB + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_OPTIONAL_UNIQUE_ID + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SYS_DATA_PART1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_CAL_VOL_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WAFER_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WAFER_VERSION_MINOR_HI + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIG_DBIAS_HVT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_V_DIG_DBIAS20 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_V_RTC_DBIAS20 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_K_DIG_LDO + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_K_RTC_LDO + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PSRAM_VENDOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PSRAM_TEMP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PSRAM_CAP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_VENDOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_TEMP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_CAP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK_VERSION_MINOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PKG_VERSION + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WAFER_VERSION_MINOR_LO + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D7 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D6 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D5 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D4 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_DQS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_WP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_HD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_CS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_Q + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_CLK + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_OTG_DOWNLOAD_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_VERSION + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FORCE_SEND_RESUME + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_ECC_EN + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_PAGE_SIZE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_TYPE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PIN_POWER_SELECTION + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_UART_PRINT_CONTROL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_ECC_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DIRECT_BOOT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DOWNLOAD_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_TPUW + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_EN + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_5 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_4 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_BOOT_CRYPT_CNT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WDT_DELAY_SEL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_VDD_SPI_FORCE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_VDD_SPI_TIEH + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_VDD_SPI_XPD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_USB_PHY_SEL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_STRAP_JTAG_SEL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_SERIAL_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_PAD_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_APP_CPU + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_TWAI + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_OTG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_FORCE_DOWNLOAD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DOWNLOAD_DCACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DOWNLOAD_ICACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DCACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_ICACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_RD_DIS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .debug_info 0x00000000 0x2e13 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .debug_abbrev 0x00000000 0x119 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .debug_aranges + 0x00000000 0x18 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .debug_line 0x00000000 0x29e zephyr/libzephyr.a(esp_efuse_table.c.obj) + .debug_str 0x00000000 0x3007 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .literal.esp_efuse_get_pkg_ver + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_disable_rom_download_mode + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_set_rom_log_scheme + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_enable_rom_secure_download_mode + 0x00000000 0x10 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_get_pkg_ver + 0x00000000 0x1c zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_rom_download_mode + 0x00000000 0x10 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_set_rom_log_scheme + 0x00000000 0x38 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_enable_rom_secure_download_mode + 0x00000000 0x1e zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_frame 0x00000000 0x70 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_info 0x00000000 0x3c0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x00000000 0x184 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_loc 0x00000000 0x15 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_aranges + 0x00000000 0x38 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_line 0x00000000 0x519 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_str 0x00000000 0x629 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_utility_clear_program_registers + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_chip_opt + 0x00000000 0x88 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_chip + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_new_coding_scheme + 0x00000000 0x1c zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_clear_program_registers + 0x00000000 0x11 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_check_errors + 0x00000000 0x7 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_burn_chip_opt.str1.1 + 0x00000000 0x187 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip_opt + 0x00000000 0x1e3 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip + 0x00000000 0x11 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_apply_new_coding_scheme.str1.1 + 0x00000000 0x3b zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_new_coding_scheme + 0x00000000 0x76 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.range_write_addr_blocks + 0x00000000 0x58 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .bss.write_mass_blocks + 0x00000000 0x160 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.range_read_addr_blocks + 0x00000000 0x58 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_frame 0x00000000 0x88 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_info 0x00000000 0x87f zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00000000 0x260 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_loc 0x00000000 0x333 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x00000000 0x40 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00000000 0xf0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_line 0x00000000 0xb93 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_str 0x00000000 0x779 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_block_is_empty + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_write_protect + 0x00000000 0x18 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_read_protect + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_purpose_field + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_read + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_read + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_write + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_write + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_purpose + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_purpose + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_keypurpose_dis_write + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_keypurpose_dis_write + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_find_purpose + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_key_block_unused + 0x00000000 0x14 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_find_unused_key_block + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_count_unused_key_blocks + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_key + 0x00000000 0x34 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_keys + 0x00000000 0x34 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_digest_revoke + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_digest_revoke + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_write_protect_of_digest_revoke + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_write_protect_of_digest_revoke + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_secure_boot_read_key_digests + 0x00000000 0x18 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_block_is_empty + 0x00000000 0x31 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect + 0x00000000 0x54 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_read_protect + 0x00000000 0x32 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_coding_scheme + 0x00000000 0xa zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_purpose_field + 0x00000000 0x18 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key + 0x00000000 0x18 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_read + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_read + 0x00000000 0x22 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_write + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_write + 0x00000000 0x22 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_purpose + 0x00000000 0x3c zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_purpose + 0x00000000 0x32 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_keypurpose_dis_write + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_keypurpose_dis_write + 0x00000000 0x22 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_purpose + 0x00000000 0x25 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_key_block_unused + 0x00000000 0x48 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_unused_key_block + 0x00000000 0x16 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_count_unused_key_blocks + 0x00000000 0x19 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_key.str1.1 + 0x00000000 0x5f zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_key + 0x00000000 0xe6 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_keys.str1.1 + 0x00000000 0xc0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_keys + 0x00000000 0xca zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_digest_revoke + 0x00000000 0x21 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_digest_revoke + 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_write_protect_of_digest_revoke + 0x00000000 0x21 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect_of_digest_revoke + 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_secure_boot_read_key_digests + 0x00000000 0x62 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .rodata.s_revoke_table + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .rodata.s_table + 0x00000000 0x78 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_frame 0x00000000 0x268 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_info 0x00000000 0x1397 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_abbrev 0x00000000 0x338 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_loc 0x00000000 0xa01 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_aranges + 0x00000000 0xe0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_ranges 0x00000000 0x128 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_line 0x00000000 0x1519 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_str 0x00000000 0x107d zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_flash_write_protect_crypt_cnt + 0x00000000 0x8 zephyr/libzephyr.a(flash_encrypt.c.obj) + .literal.esp_get_flash_encryption_mode + 0x00000000 0x2c zephyr/libzephyr.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_init_checks + 0x00000000 0x14 zephyr/libzephyr.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_set_release_mode + 0x00000000 0x64 zephyr/libzephyr.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_cfg_verify_release_mode + 0x00000000 0xb0 zephyr/libzephyr.a(flash_encrypt.c.obj) + .iram1.0.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_encrypt.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(flash_encrypt.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(flash_encrypt.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(flash_encrypt.c.obj) + .text.esp_flash_write_protect_crypt_cnt + 0x00000000 0xe zephyr/libzephyr.a(flash_encrypt.c.obj) + .text.esp_get_flash_encryption_mode + 0x00000000 0x72 zephyr/libzephyr.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_init_checks.str1.1 + 0x00000000 0x73 zephyr/libzephyr.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_init_checks + 0x00000000 0x26 zephyr/libzephyr.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_set_release_mode.str1.1 + 0x00000000 0x6f zephyr/libzephyr.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_set_release_mode + 0x00000000 0xaa zephyr/libzephyr.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_cfg_verify_release_mode.str1.1 + 0x00000000 0x2d1 zephyr/libzephyr.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_cfg_verify_release_mode + 0x00000000 0x162 zephyr/libzephyr.a(flash_encrypt.c.obj) + .iram1.0 0x00000000 0xd zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_frame 0x00000000 0xa0 zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_info 0x00000000 0x8bf zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_abbrev 0x00000000 0x290 zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_loc 0x00000000 0x1b6 zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_aranges + 0x00000000 0x48 zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_ranges 0x00000000 0x38 zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_line 0x00000000 0xba1 zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_str 0x00000000 0xa00 zephyr/libzephyr.a(flash_encrypt.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(flash_encrypt.c.obj) + .literal.esp_gpio_reserve + 0x00000000 0x4 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .literal.esp_gpio_revoke + 0x00000000 0x4 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .literal.esp_gpio_is_reserved + 0x00000000 0x4 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .text.esp_gpio_reserve + 0x00000000 0x23 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .text.esp_gpio_revoke + 0x00000000 0x29 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .text.esp_gpio_is_reserved + 0x00000000 0x1a zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .data.s_reserved_pin_mask + 0x00000000 0x8 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_frame 0x00000000 0x58 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_info 0x00000000 0x258 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_abbrev 0x00000000 0x133 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_loc 0x00000000 0x136 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_ranges 0x00000000 0x50 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_line 0x00000000 0x3a9 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_str 0x00000000 0x2df zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .literal.spi_flash_hal_setup_auto_resume_mode + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .literal.spi_flash_hal_disable_auto_resume_mode + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .text.spi_flash_hal_enter_dpd_mode + 0x00000000 0x26 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .text.spi_flash_hal_exit_dpd_mode + 0x00000000 0x26 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .text.spi_flash_hal_setup_auto_resume_mode + 0x00000000 0x1a zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .text.spi_flash_hal_disable_auto_resume_mode + 0x00000000 0x1a zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .literal.esp_opiflash_set_required_regs + 0x00000000 0x8 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .text.esp_opiflash_set_required_regs + 0x00000000 0x16 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .literal.read_unique_id + 0x00000000 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.find_region + 0x00000000 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_read_id + 0x00000000 0x8 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_read_unique_chip_id + 0x00000000 0x1c zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_get_size + 0x00000000 0x8 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_erase_region + 0x00000000 0xc zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_erase_chip + 0x00000000 0x14 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_get_chip_write_protect + 0x00000000 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_set_chip_write_protect + 0x00000000 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_get_protectable_regions + 0x00000000 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_get_protected_region + 0x00000000 0xc zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_set_protected_region + 0x00000000 0xc zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_read + 0x00000000 0x10 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_write + 0x00000000 0x1c zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_read_encrypted + 0x00000000 0x14 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_get_io_mode + 0x00000000 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_set_io_mode + 0x00000000 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_write_encrypted + 0x00000000 0x38 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_suspend_cmd_init + 0x00000000 0x1c zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_app_disable_protect + 0x00000000 0xc zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_init + 0x00000000 0x3c zephyr/libzephyr.a(esp_flash_api.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.read_unique_id + 0x00000000 0x30 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.find_region + 0x00000000 0x3b zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_chip_driver_initialized + 0x00000000 0xc zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_read_id + 0x00000000 0x36 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_read_unique_chip_id + 0x00000000 0x64 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_get_size + 0x00000000 0x36 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_erase_region + 0x00000000 0x1e9 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_erase_chip + 0x00000000 0x38 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_get_chip_write_protect + 0x00000000 0x4c zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_set_chip_write_protect + 0x00000000 0x4e zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_get_protectable_regions + 0x00000000 0x46 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_get_protected_region + 0x00000000 0x8d zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_set_protected_region + 0x00000000 0x9d zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_read + 0x00000000 0x116 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_write + 0x00000000 0x162 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_read_encrypted + 0x00000000 0x64 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_get_io_mode + 0x00000000 0x5b zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_set_io_mode + 0x00000000 0x52 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_write_encrypted + 0x00000000 0x1e6 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_suspend_cmd_init + 0x00000000 0x52 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_app_disable_protect + 0x00000000 0x21 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_init + 0x00000000 0x104 zephyr/libzephyr.a(esp_flash_api.c.obj) + .iram1.0.literal + 0x00000000 0x18 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_remove_flash_device + 0x00000000 0x2c zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_add_flash_device + 0x00000000 0x7c zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .iram1.0 0x00000000 0x13f zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .text.spi_bus_remove_flash_device + 0x00000000 0x8e zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .rodata.spi_bus_add_flash_device.str1.1 + 0x00000000 0x77 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .text.spi_bus_add_flash_device + 0x00000000 0x287 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .text.esp_flash_spi_init_include_func + 0x00000000 0x5 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .rodata.CSWTCH$57 + 0x00000000 0xc zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .literal.spi_flash_mmap + 0x00000000 0x14 zephyr/libzephyr.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_pages + 0x00000000 0x24 zephyr/libzephyr.a(flash_mmap.c.obj) + .literal.spi_flash_munmap + 0x00000000 0x10 zephyr/libzephyr.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_dump + 0x00000000 0x8 zephyr/libzephyr.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_get_free_pages + 0x00000000 0x4 zephyr/libzephyr.a(flash_mmap.c.obj) + .literal.spi_flash_cache2phys + 0x00000000 0x4 zephyr/libzephyr.a(flash_mmap.c.obj) + .literal.spi_flash_phys2cache + 0x00000000 0x8 zephyr/libzephyr.a(flash_mmap.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(flash_mmap.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(flash_mmap.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(flash_mmap.c.obj) + .text.spi_flash_mmap + 0x00000000 0x8b zephyr/libzephyr.a(flash_mmap.c.obj) + .text.spi_flash_mmap_pages + 0x00000000 0x15f zephyr/libzephyr.a(flash_mmap.c.obj) + .text.spi_flash_munmap + 0x00000000 0x3a zephyr/libzephyr.a(flash_mmap.c.obj) + .text.spi_flash_mmap_dump + 0x00000000 0x10 zephyr/libzephyr.a(flash_mmap.c.obj) + .text.spi_flash_mmap_get_free_pages + 0x00000000 0x1d zephyr/libzephyr.a(flash_mmap.c.obj) + .text.spi_flash_cache2phys + 0x00000000 0x24 zephyr/libzephyr.a(flash_mmap.c.obj) + .text.spi_flash_phys2cache + 0x00000000 0x30 zephyr/libzephyr.a(flash_mmap.c.obj) + .iram1.3.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_ops.c.obj) + .iram1.6.literal + 0x00000000 0x8 zephyr/libzephyr.a(flash_ops.c.obj) + .literal.esp_mspi_get_io + 0x00000000 0x14 zephyr/libzephyr.a(flash_ops.c.obj) + .literal.esp_mspi_pin_reserve + 0x00000000 0x10 zephyr/libzephyr.a(flash_ops.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(flash_ops.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(flash_ops.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(flash_ops.c.obj) + .iram1.3 0x00000000 0xa zephyr/libzephyr.a(flash_ops.c.obj) + .iram1.6 0x00000000 0x1f zephyr/libzephyr.a(flash_ops.c.obj) + .text.esp_mspi_get_io + 0x00000000 0x63 zephyr/libzephyr.a(flash_ops.c.obj) + .text.esp_mspi_pin_reserve + 0x00000000 0x4a zephyr/libzephyr.a(flash_ops.c.obj) + .rodata.s_mspi_io_num_default + 0x00000000 0xb zephyr/libzephyr.a(flash_ops.c.obj) + .dram1.1 0x00000000 0x8 zephyr/libzephyr.a(flash_ops.c.obj) + .literal.memspi_host_read + 0x00000000 0x4 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .text.memspi_host_read + 0x00000000 0x30 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .literal.spi_flash_hpm_get_dummy + 0x00000000 0x8 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .text.spi_flash_enable_high_performance_mode + 0x00000000 0x7 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .text.spi_flash_hpm_dummy_adjust + 0x00000000 0x7 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .text.spi_flash_hpm_get_dummy_generic + 0x00000000 0x1a zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .text.spi_flash_hpm_get_dummy + 0x00000000 0x10 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .bss.s_dummy_conf + 0x00000000 0x5 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .debug_frame 0x00000000 0x70 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .debug_info 0x00000000 0x45f zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .debug_abbrev 0x00000000 0x114 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .debug_aranges + 0x00000000 0x38 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .debug_line 0x00000000 0x421 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .debug_str 0x00000000 0xe6f zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .literal.esp_flash_app_disable_os_functions + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .text.get_temp_buffer_not_supported + 0x00000000 0x7 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .text.esp_flash_app_disable_os_functions + 0x00000000 0xc zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .literal.spi23_end + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .literal.spi23_start + 0x00000000 0x8 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .literal.esp_flash_init_os_functions + 0x00000000 0x10 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .literal.esp_flash_deinit_os_functions + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text.spi23_end + 0x00000000 0x10 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text.spi23_start + 0x00000000 0x1e zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_os_functions + 0x00000000 0x47 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_deinit_os_functions + 0x00000000 0x1e zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_main_bus_lock + 0x00000000 0x8 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_set_dangerous_write_protection + 0x00000000 0x23 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .rodata.esp_flash_spi23_default_os_functions + 0x00000000 0x28 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .literal.spi_flash_wrap_probe_c0 + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_enable_c0 + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_enable_77 + 0x00000000 0x8 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_clear_c0 + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_clear_77 + 0x00000000 0x8 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_probe + 0x00000000 0xc zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_enable + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_disable + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_support_wrap_size + 0x00000000 0x18 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_probe_c0 + 0x00000000 0x12 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_enable_c0 + 0x00000000 0x2e zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_enable_77 + 0x00000000 0x5a zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_clear_c0 + 0x00000000 0x1e zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_clear_77 + 0x00000000 0x46 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_probe + 0x00000000 0x47 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_enable + 0x00000000 0x30 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_disable + 0x00000000 0x2d zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .rodata.spi_flash_support_wrap_size.str1.1 + 0x00000000 0x3d zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_support_wrap_size + 0x00000000 0x49 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .bss.chip_wrap + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .rodata.str1.1 + 0x00000000 0xf zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .rodata.spi_flash_wrap_list + 0x00000000 0x20 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_frame 0x00000000 0xe8 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_info 0x00000000 0x8d8 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_abbrev 0x00000000 0x234 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_loc 0x00000000 0x2ea zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_aranges + 0x00000000 0x60 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_ranges 0x00000000 0x50 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_line 0x00000000 0x800 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_str 0x00000000 0x10a4 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_op_lock + 0x00000000 0x8 zephyr/libzephyr.a(cache_utils.c.obj) + .literal.spi_flash_op_unlock + 0x00000000 0x8 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.2.literal + 0x00000000 0x8 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.3.literal + 0x00000000 0x8 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.4.literal + 0x00000000 0x4 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.5.literal + 0x00000000 0x4 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.6.literal + 0x00000000 0x4 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.7.literal + 0x00000000 0x4 zephyr/libzephyr.a(cache_utils.c.obj) + .literal.esp_enable_cache_wrap + 0x00000000 0x14 zephyr/libzephyr.a(cache_utils.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(cache_utils.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(cache_utils.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(cache_utils.c.obj) + .text.spi_flash_op_lock + 0x00000000 0x12 zephyr/libzephyr.a(cache_utils.c.obj) + .text.spi_flash_op_unlock + 0x00000000 0xe zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.2 0x00000000 0x11 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.3 0x00000000 0x11 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.4 0x00000000 0xb zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.5 0x00000000 0xb zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.6 0x00000000 0xb zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.7 0x00000000 0x11 zephyr/libzephyr.a(cache_utils.c.obj) + .rodata.esp_enable_cache_wrap.str1.1 + 0x00000000 0x79 zephyr/libzephyr.a(cache_utils.c.obj) + .text.esp_enable_cache_wrap + 0x00000000 0x32 zephyr/libzephyr.a(cache_utils.c.obj) + ._k_mutex.static.s_flash_op_mutex_ + 0x00000000 0x14 zephyr/libzephyr.a(cache_utils.c.obj) + .literal.uart_hal_set_sw_flow_ctrl + 0x00000000 0x4 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_set_at_cmd_char + 0x00000000 0x4 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_set_tx_idle_num + 0x00000000 0x4 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_init + 0x00000000 0xc zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_get_max_rx_timeout_thrd + 0x00000000 0x4 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_get_port_num + 0x00000000 0xc zephyr/libzephyr.a(uart_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(uart_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(uart_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_set_sw_flow_ctrl + 0x00000000 0xcb zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_set_at_cmd_char + 0x00000000 0xe2 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_set_tx_idle_num + 0x00000000 0x22 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_set_dtr + 0x00000000 0x20 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_set_wakeup_edge_thrd + 0x00000000 0x20 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_get_wakeup_edge_thrd + 0x00000000 0x13 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_is_hw_rts_en + 0x00000000 0xf zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_set_loop_back + 0x00000000 0x22 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_init + 0x00000000 0xbb zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_get_max_rx_timeout_thrd + 0x00000000 0x17 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_get_port_num + 0x00000000 0x22 zephyr/libzephyr.a(uart_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .text.uart_hal_tx_break + 0x00000000 0x53 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .literal.spi_hal_set_data_pin_idle_level + 0x00000000 0x10 zephyr/libzephyr.a(spi_hal.c.obj) + .literal.spi_hal_sct_init + 0x00000000 0x4 zephyr/libzephyr.a(spi_hal.c.obj) + .literal.spi_hal_sct_deinit + 0x00000000 0x4 zephyr/libzephyr.a(spi_hal.c.obj) + .literal.spi_hal_master_cal_clock + 0x00000000 0x8 zephyr/libzephyr.a(spi_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_hal.c.obj) + .text.spi_hal_set_data_pin_idle_level + 0x00000000 0x7e zephyr/libzephyr.a(spi_hal.c.obj) + .text.spi_hal_deinit + 0x00000000 0x2e zephyr/libzephyr.a(spi_hal.c.obj) + .text.spi_hal_sct_init + 0x00000000 0x70 zephyr/libzephyr.a(spi_hal.c.obj) + .text.spi_hal_sct_deinit + 0x00000000 0x64 zephyr/libzephyr.a(spi_hal.c.obj) + .text.spi_hal_master_cal_clock + 0x00000000 0x14a zephyr/libzephyr.a(spi_hal.c.obj) + .literal.spi_hal_hw_prepare_rx + 0x00000000 0x4 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .literal.spi_hal_sct_set_conf_bits_len + 0x00000000 0x4 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .literal.spi_hal_sct_init_conf_buffer + 0x00000000 0x4 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .literal.spi_hal_sct_format_conf_buffer + 0x00000000 0x28 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text.spi_hal_hw_prepare_rx + 0x00000000 0x48 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text.spi_hal_hw_prepare_tx + 0x00000000 0x47 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text.spi_hal_get_intr_mask + 0x00000000 0xb0 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text.spi_hal_clear_intr_mask + 0x00000000 0xfa zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text.spi_hal_sct_set_conf_bits_len + 0x00000000 0x23 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text.spi_hal_sct_init_conf_buffer + 0x00000000 0x6e zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text.spi_hal_sct_format_conf_buffer + 0x00000000 0x252 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .literal.lldesc_setup_link_constrained + 0x00000000 0xc zephyr/libzephyr.a(lldesc.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(lldesc.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(lldesc.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(lldesc.c.obj) + .text.lldesc_setup_link_constrained + 0x00000000 0xc7 zephyr/libzephyr.a(lldesc.c.obj) + .text.lldesc_get_received_len + 0x00000000 0x2a zephyr/libzephyr.a(lldesc.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(lldesc.c.obj) + .debug_info 0x00000000 0x2bb zephyr/libzephyr.a(lldesc.c.obj) + .debug_abbrev 0x00000000 0x1a9 zephyr/libzephyr.a(lldesc.c.obj) + .debug_loc 0x00000000 0x15c zephyr/libzephyr.a(lldesc.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(lldesc.c.obj) + .debug_ranges 0x00000000 0x38 zephyr/libzephyr.a(lldesc.c.obj) + .debug_line 0x00000000 0x498 zephyr/libzephyr.a(lldesc.c.obj) + .debug_str 0x00000000 0x315 zephyr/libzephyr.a(lldesc.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(lldesc.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_deinit + 0x00000000 0x9 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_start_with_desc + 0x00000000 0x12 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_stop + 0x00000000 0x10 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_append + 0x00000000 0x10 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_reset + 0x00000000 0x10 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_set_priority + 0x00000000 0x12 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_connect_peri + 0x00000000 0x12 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_connect_mem + 0x00000000 0x12 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_disconnect_all + 0x00000000 0x10 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_enable_burst + 0x00000000 0x16 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_set_burst_size + 0x00000000 0x14 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_set_strategy + 0x00000000 0x1a zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_enable_intr + 0x00000000 0x16 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_clear_intr + 0x00000000 0x12 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_read_intr_status + 0x00000000 0x16 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_get_intr_status_reg + 0x00000000 0x12 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_get_eof_desc_addr + 0x00000000 0x16 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_frame 0x00000000 0x1a8 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_info 0x00000000 0x20aa zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_abbrev 0x00000000 0x2c9 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_loc 0x00000000 0x81 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_aranges + 0x00000000 0xa0 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_ranges 0x00000000 0x90 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_line 0x00000000 0x6d2 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_str 0x00000000 0xe09 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .literal.gdma_ahb_hal_init + 0x00000000 0x48 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_start_with_desc + 0x00000000 0x76 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_stop + 0x00000000 0x41 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_append + 0x00000000 0x41 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_reset + 0x00000000 0x54 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_set_priority + 0x00000000 0x45 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_connect_peri + 0x00000000 0x55 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_connect_mem + 0x00000000 0x56 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_disconnect_all + 0x00000000 0x4a zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_enable_burst + 0x00000000 0x7d zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_set_strategy + 0x00000000 0x8f zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_clear_intr + 0x00000000 0x21 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_read_intr_status + 0x00000000 0x3c zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_get_intr_status_reg + 0x00000000 0x1a zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_set_burst_size + 0x00000000 0x6b zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_get_eof_desc_addr + 0x00000000 0x36 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_enable_intr + 0x00000000 0x56 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_init + 0x00000000 0x67 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .data.gdma_ahb_hal_priv_data + 0x00000000 0x4 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_frame 0x00000000 0x1a8 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_info 0x00000000 0x312b zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_abbrev 0x00000000 0x469 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_loc 0x00000000 0x10a9 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_aranges + 0x00000000 0xa0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_ranges 0x00000000 0x228 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_line 0x00000000 0x12b0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_str 0x00000000 0x130c zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .literal.bootloader_clock_configure + 0x00000000 0x34 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .rodata 0x00000000 0x8 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .text.bootloader_clock_configure + 0x00000000 0xce zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .debug_frame 0x00000000 0x28 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .debug_info 0x00000000 0x361 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .debug_abbrev 0x00000000 0x12c zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .debug_line 0x00000000 0x4c9 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .debug_str 0x00000000 0x7a0 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(mpu_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(mpu_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(mpu_hal.c.obj) + .text.mpu_hal_set_region_access + 0x00000000 0x38 zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_frame 0x00000000 0x28 zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_info 0x00000000 0x233 zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_abbrev 0x00000000 0x158 zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_loc 0x00000000 0x7f zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_line 0x00000000 0x37d zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_str 0x00000000 0x336 zephyr/libzephyr.a(mpu_hal.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(mpu_hal.c.obj) + .iram1.3.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.4.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.6.literal + 0x00000000 0x8 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.7.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.8.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.10.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.11.literal + 0x00000000 0x14 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.12.literal + 0x00000000 0x18 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .literal.bootloader_enable_qio_mode + 0x00000000 0x50 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.5.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.9.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.3 0x00000000 0x15 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.4 0x00000000 0x15 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.6 0x00000000 0x29 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.7 0x00000000 0x13 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.8 0x00000000 0x13 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.10 0x00000000 0x13 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.11 0x00000000 0x3c zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.12 0x00000000 0x42 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .rodata.bootloader_enable_qio_mode.str1.1 + 0x00000000 0x90 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .text.bootloader_enable_qio_mode + 0x00000000 0x15a zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.5 0x00000000 0x15 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.9 0x00000000 0x13 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .dram1.2 0x00000000 0x1 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .dram1.1 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .rodata.str1.1 + 0x00000000 0x22 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .dram1.0 0x00000000 0x7e zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_frame 0x00000000 0x118 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_info 0x00000000 0xc91 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_abbrev 0x00000000 0x31a zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_loc 0x00000000 0x173 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_aranges + 0x00000000 0x70 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_ranges 0x00000000 0x78 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_line 0x00000000 0xb34 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_str 0x00000000 0x1464 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .literal.bootloader_flash_update_id + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .literal.bootloader_flash_update_size + 0x00000000 0x4 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.0.literal + 0x00000000 0x10 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.1.literal + 0x00000000 0xc zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.2.literal + 0x00000000 0xc zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.4.literal + 0x00000000 0x20 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.3.literal + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .literal.bootloader_init_spi_flash + 0x00000000 0x68 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .text.bootloader_flash_update_id + 0x00000000 0x12 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .text.bootloader_flash_update_size + 0x00000000 0xc zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.0 0x00000000 0x99 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.1 0x00000000 0x28 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.2 0x00000000 0x28 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.4 0x00000000 0x7a zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.3 0x00000000 0x14 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.bootloader_init_spi_flash.str1.1 + 0x00000000 0x72 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .text.bootloader_init_spi_flash + 0x00000000 0xee zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.CSWTCH$30 + 0x00000000 0x10 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.CSWTCH$25 + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.str1.1 + 0x00000000 0x57 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.CSWTCH$23 + 0x00000000 0x20 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.CSWTCH$22 + 0x00000000 0x14 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.CSWTCH$21 + 0x00000000 0x40 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_frame 0x00000000 0xd0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_info 0x00000000 0xd1b zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_abbrev 0x00000000 0x2d2 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_loc 0x00000000 0x229 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_aranges + 0x00000000 0x58 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_ranges 0x00000000 0x48 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_line 0x00000000 0xbc0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_str 0x00000000 0x175f zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(console_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(console_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(console_init.c.obj) + .text.esp_console_deinit + 0x00000000 0x5 zephyr/libzephyr.a(console_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .literal.rtcio_ll_iomux_func_sel + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_io_number_get + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_init + 0x00000000 0x2c zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_deinit + 0x00000000 0x24 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_set_level + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_get_level + 0x00000000 0x1c zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_set_drive_capability + 0x00000000 0x2c zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_get_drive_capability + 0x00000000 0x28 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction_in_sleep + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_iomux_func_sel + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_en + 0x00000000 0x24 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_dis + 0x00000000 0x24 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_force_hold_en_all + 0x00000000 0x8 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_force_hold_dis_all + 0x00000000 0xc zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_isolate + 0x00000000 0x28 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_wakeup_enable + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_wakeup_disable + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_io.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_io.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtcio_ll_iomux_func_sel + 0x00000000 0x36 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_io_number_get + 0x00000000 0x10 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_init + 0x00000000 0x9e zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_deinit + 0x00000000 0x6c zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_set_level + 0x00000000 0x5f zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_get_level + 0x00000000 0x44 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.rtc_gpio_set_drive_capability.str1.1 + 0x00000000 0x4f zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_set_drive_capability + 0x00000000 0xd0 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.rtc_gpio_get_drive_capability.str1.1 + 0x00000000 0x2a zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_get_drive_capability + 0x00000000 0xa5 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction + 0x00000000 0x50 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction_in_sleep + 0x00000000 0x50 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_iomux_func_sel + 0x00000000 0x4e zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_hold_en + 0x00000000 0x62 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_hold_dis + 0x00000000 0x65 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_en_all + 0x00000000 0x2c zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_dis_all + 0x00000000 0x2a zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_isolate + 0x00000000 0x6b zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_enable + 0x00000000 0x7e zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_disable + 0x00000000 0x6d zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x18 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x17 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0x11 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0x12 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x11 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$5 + 0x00000000 0x18 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$10 + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$11 + 0x00000000 0x17 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$12 + 0x00000000 0x1e zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$13 + 0x00000000 0x1e zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$14 + 0x00000000 0x13 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$15 + 0x00000000 0x13 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$16 + 0x00000000 0x10 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$17 + 0x00000000 0xe zephyr/libzephyr.a(rtc_io.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .rodata.temperature_sensor_attributes + 0x00000000 0x64 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .debug_info 0x00000000 0xf6 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .debug_abbrev 0x00000000 0x90 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .debug_aranges + 0x00000000 0x18 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .debug_line 0x00000000 0x123 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .debug_str 0x00000000 0x2c6 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .literal.temperature_sensor_ll_set_range + 0x00000000 0x4 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .literal.temperature_sensor_hal_get_raw_value + 0x00000000 0x1c zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .literal.temperature_sensor_hal_get_degree + 0x00000000 0x24 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .literal.temperature_sensor_hal_init + 0x00000000 0xc zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .literal.temperature_sensor_hal_sync_tsens_idx + 0x00000000 0x4 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .text.temperature_sensor_ll_set_range + 0x00000000 0x1a zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .text.temperature_sensor_hal_get_raw_value + 0x00000000 0x82 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .text.temperature_sensor_hal_get_degree + 0x00000000 0x95 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .text.temperature_sensor_hal_init + 0x00000000 0x1c zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .text.temperature_sensor_hal_sync_tsens_idx + 0x00000000 0xb zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .data.s_hal_tsens_idx + 0x00000000 0x1 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .data.s_hal_record_max + 0x00000000 0x4 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .data.s_hal_record_min + 0x00000000 0x4 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_frame 0x00000000 0x88 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_info 0x00000000 0x1f29 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_abbrev 0x00000000 0x2d8 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_loc 0x00000000 0x9f zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_aranges + 0x00000000 0x40 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_ranges 0x00000000 0x78 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_line 0x00000000 0x7f2 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_str 0x00000000 0x144f zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .literal.clk_hal_clock_output_setup + 0x00000000 0x4 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .literal.clk_hal_clock_output_teardown + 0x00000000 0x4 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .text.clk_hal_clock_output_setup + 0x00000000 0x5c zephyr/libzephyr.a(clk_tree_hal.c.obj) + .text.clk_hal_clock_output_teardown + 0x00000000 0x37 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .literal.rtcio_ll_input_enable + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_input_disable + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_enable_output_in_sleep + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_disable_output_in_sleep + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_disable_input_in_sleep + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_enable_sleep_setting + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_set_direction + 0x00000000 0x10 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_set_direction_in_sleep + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_isolate + 0x00000000 0x10 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_ll_input_enable + 0x00000000 0x1f zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_ll_input_disable + 0x00000000 0x22 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_ll_enable_output_in_sleep + 0x00000000 0x22 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_ll_disable_output_in_sleep + 0x00000000 0x24 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_ll_disable_input_in_sleep + 0x00000000 0x22 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_ll_enable_sleep_setting + 0x00000000 0x1f zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction + 0x00000000 0xc3 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .rodata.rtcio_hal_set_direction + 0x00000000 0x18 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction_in_sleep + 0x00000000 0xac zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_hal_isolate + 0x00000000 0x86 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_frame 0x00000000 0xe8 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_info 0x00000000 0x1948 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_abbrev 0x00000000 0x301 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_loc 0x00000000 0x342 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_aranges + 0x00000000 0x60 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_ranges 0x00000000 0x80 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_line 0x00000000 0xa43 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_str 0x00000000 0xda7 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.systimer_hal_get_time + 0x00000000 0x4 zephyr/libzephyr.a(systimer_hal.c.obj) + .literal.systimer_hal_counter_value_advance + 0x00000000 0x4 zephyr/libzephyr.a(systimer_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(systimer_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(systimer_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_deinit + 0x00000000 0x1a zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_get_clock_source + 0x00000000 0x7 zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_get_counter_value + 0x00000000 0x50 zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_get_time + 0x00000000 0x1a zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_set_alarm_target + 0x00000000 0x6c zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_set_alarm_period + 0x00000000 0x67 zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_get_alarm_value + 0x00000000 0x1c zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_enable_alarm_int + 0x00000000 0x1e zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_counter_value_advance + 0x00000000 0x55 zephyr/libzephyr.a(systimer_hal.c.obj) + .literal.wdt_hal_init + 0x00000000 0x34 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .literal.wdt_hal_deinit + 0x00000000 0x4 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .literal.wdt_hal_config_stage + 0x00000000 0x24 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text.wdt_hal_init + 0x00000000 0x28e zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text.wdt_hal_deinit + 0x00000000 0xc6 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text.wdt_hal_config_stage + 0x00000000 0x12e zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text.wdt_hal_enable + 0x00000000 0x4c zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text.wdt_hal_handle_intr + 0x00000000 0x51 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text.wdt_hal_feed + 0x00000000 0x2a zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text.wdt_hal_is_enabled + 0x00000000 0x1f zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .literal.xt_wdt_hal_init + 0x00000000 0x8 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .literal.xt_wdt_hal_enable_backup_clk + 0x00000000 0x4 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .literal.xt_wdt_hal_enable + 0x00000000 0x4 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .text.xt_wdt_hal_init + 0x00000000 0x38 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .text.xt_wdt_hal_enable_backup_clk + 0x00000000 0x6d zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .text.xt_wdt_hal_enable + 0x00000000 0x38 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_frame 0x00000000 0x58 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_info 0x00000000 0x3fc8 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_abbrev 0x00000000 0x38b zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_loc 0x00000000 0x2ce zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_ranges 0x00000000 0xa0 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_line 0x00000000 0x690 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_str 0x00000000 0x29f4 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .literal.adc_calc_hw_calibration_code + 0x00000000 0x24 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .iram1.0.literal + 0x00000000 0x8 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .literal.adc_lock_acquire + 0x00000000 0xc zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .literal.adc_lock_release + 0x00000000 0x20 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .literal.adc_lock_try_acquire + 0x00000000 0xc zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .literal.adc_apb_periph_claim + 0x00000000 0x18 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .literal.adc_apb_periph_free + 0x00000000 0x28 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc_calc_hw_calibration_code + 0x00000000 0x7a zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .iram1.0 0x00000000 0x18 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc_lock_acquire + 0x00000000 0x24 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .rodata.adc_lock_release.str1.1 + 0x00000000 0x7c zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc_lock_release + 0x00000000 0x4e zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc_lock_try_acquire + 0x00000000 0x2e zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc2_wifi_acquire + 0x00000000 0x7 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc2_wifi_release + 0x00000000 0x7 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc_apb_periph_claim + 0x00000000 0x48 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .rodata.adc_apb_periph_free.str1.1 + 0x00000000 0x34 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc_apb_periph_free + 0x00000000 0x62 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .rodata.__func__$0 + 0x00000000 0x14 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x11 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .bss.s_adc_digi_ctrlr_cnt + 0x00000000 0x4 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .bss.s_spinlock + 0x00000000 0x4 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + ._k_mutex.static.adc2_lock_ + 0x00000000 0x14 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + ._k_mutex.static.adc1_lock_ + 0x00000000 0x14 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .bss.s_adc_cali_param + 0x00000000 0x20 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_frame 0x00000000 0xe8 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_info 0x00000000 0x7b39 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_abbrev 0x00000000 0x4cc zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_loc 0x00000000 0x309 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_aranges + 0x00000000 0x60 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_ranges 0x00000000 0xd8 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_line 0x00000000 0xfd6 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_str 0x00000000 0x612c zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .literal.periph_rtc_dig_clk8m_enable + 0x00000000 0x18 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .literal.periph_rtc_dig_clk8m_get_freq + 0x00000000 0x4 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .literal.periph_rtc_dig_clk8m_disable + 0x00000000 0x14 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .text.periph_rtc_dig_clk8m_enable + 0x00000000 0x50 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .text.periph_rtc_dig_clk8m_get_freq + 0x00000000 0xa zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .text.periph_rtc_dig_clk8m_disable + 0x00000000 0x38 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .bss.s_rc_fast_freq_hz + 0x00000000 0x4 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .bss.s_periph_ref_counts + 0x00000000 0x1 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .bss.periph_spinlock + 0x00000000 0x4 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_frame 0x00000000 0x58 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_info 0x00000000 0x826 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_abbrev 0x00000000 0x216 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_loc 0x00000000 0x6c zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_ranges 0x00000000 0x50 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_line 0x00000000 0x841 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_str 0x00000000 0x15d4 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .literal.esp_cpu_stall + 0x00000000 0xc zephyr/libzephyr.a(cpu.c.obj) + .literal.esp_cpu_unstall + 0x00000000 0xc zephyr/libzephyr.a(cpu.c.obj) + .literal.esp_cpu_reset + 0x00000000 0x8 zephyr/libzephyr.a(cpu.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(cpu.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(cpu.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_stall + 0x00000000 0x79 zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_unstall + 0x00000000 0x49 zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_reset + 0x00000000 0x25 zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_wait_for_intr + 0x00000000 0x8 zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_set_breakpoint + 0x00000000 0x24 zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_clear_breakpoint + 0x00000000 0x27 zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_set_watchpoint + 0x00000000 0x6a zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_clear_watchpoint + 0x00000000 0x1b zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_compare_and_set + 0x00000000 0x14 zephyr/libzephyr.a(cpu.c.obj) + .debug_frame 0x00000000 0xe8 zephyr/libzephyr.a(cpu.c.obj) + .debug_info 0x00000000 0x6f8 zephyr/libzephyr.a(cpu.c.obj) + .debug_abbrev 0x00000000 0x201 zephyr/libzephyr.a(cpu.c.obj) + .debug_loc 0x00000000 0x52e zephyr/libzephyr.a(cpu.c.obj) + .debug_aranges + 0x00000000 0x60 zephyr/libzephyr.a(cpu.c.obj) + .debug_ranges 0x00000000 0x90 zephyr/libzephyr.a(cpu.c.obj) + .debug_line 0x00000000 0xaf3 zephyr/libzephyr.a(cpu.c.obj) + .debug_str 0x00000000 0x56d zephyr/libzephyr.a(cpu.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(cpu.c.obj) + .literal.calc_checksum + 0x00000000 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .iram1.1.literal + 0x00000000 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .iram1.2.literal + 0x00000000 0x8 zephyr/libzephyr.a(esp_clk.c.obj) + .iram1.3.literal + 0x00000000 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .literal.esp_rtc_get_time_us + 0x00000000 0x20 zephyr/libzephyr.a(esp_clk.c.obj) + .literal.esp_clk_slowclk_cal_get + 0x00000000 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .literal.esp_clk_private_lock + 0x00000000 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .literal.esp_clk_private_unlock + 0x00000000 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_clk.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_clk.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_clk.c.obj) + .text.calc_checksum + 0x00000000 0x1c zephyr/libzephyr.a(esp_clk.c.obj) + .iram1.1 0x00000000 0x14 zephyr/libzephyr.a(esp_clk.c.obj) + .iram1.2 0x00000000 0x1a zephyr/libzephyr.a(esp_clk.c.obj) + .iram1.3 0x00000000 0x14 zephyr/libzephyr.a(esp_clk.c.obj) + .text.esp_rtc_get_time_us + 0x00000000 0xa2 zephyr/libzephyr.a(esp_clk.c.obj) + .text.esp_clk_slowclk_cal_get + 0x00000000 0xd zephyr/libzephyr.a(esp_clk.c.obj) + .text.esp_clk_rtc_time + 0x00000000 0x9 zephyr/libzephyr.a(esp_clk.c.obj) + .text.esp_clk_private_lock + 0x00000000 0xd zephyr/libzephyr.a(esp_clk.c.obj) + .text.esp_clk_private_unlock + 0x00000000 0x10 zephyr/libzephyr.a(esp_clk.c.obj) + .data.first_call$0 + 0x00000000 0x1 zephyr/libzephyr.a(esp_clk.c.obj) + .rtc_timer_data_in_rtc_mem + 0x00000000 0x18 zephyr/libzephyr.a(esp_clk.c.obj) + .bss.s_esp_rtc_time_lock + 0x00000000 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .iram1.0.literal + 0x00000000 0x1c zephyr/libzephyr.a(hw_random.c.obj) + .literal.esp_fill_random + 0x00000000 0xc zephyr/libzephyr.a(hw_random.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(hw_random.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(hw_random.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(hw_random.c.obj) + .iram1.0 0x00000000 0x81 zephyr/libzephyr.a(hw_random.c.obj) + .text.esp_fill_random + 0x00000000 0x2e zephyr/libzephyr.a(hw_random.c.obj) + .bss.last_ccount$0 + 0x00000000 0x4 zephyr/libzephyr.a(hw_random.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(hw_random.c.obj) + .debug_info 0x00000000 0x34c zephyr/libzephyr.a(hw_random.c.obj) + .debug_abbrev 0x00000000 0x201 zephyr/libzephyr.a(hw_random.c.obj) + .debug_loc 0x00000000 0x117 zephyr/libzephyr.a(hw_random.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(hw_random.c.obj) + .debug_ranges 0x00000000 0x98 zephyr/libzephyr.a(hw_random.c.obj) + .debug_line 0x00000000 0x7cc zephyr/libzephyr.a(hw_random.c.obj) + .debug_str 0x00000000 0x3c2 zephyr/libzephyr.a(hw_random.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(hw_random.c.obj) + .literal.get_idx + 0x00000000 0x10 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.get_efuse_factory_mac + 0x00000000 0x10 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.get_efuse_mac_custom + 0x00000000 0x20 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.get_mac_addr_from_mac_table + 0x00000000 0x1c zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_mac_addr_len_get + 0x00000000 0x4 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_iface_mac_addr_set + 0x00000000 0x20 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_base_mac_addr_set + 0x00000000 0x4 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_efuse_mac_get_custom + 0x00000000 0x4 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_efuse_mac_get_default + 0x00000000 0x4 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_derive_local_mac + 0x00000000 0x10 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_read_mac + 0x00000000 0x4c zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_base_mac_addr_get + 0x00000000 0x4 zephyr/libzephyr.a(mac_addr.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(mac_addr.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(mac_addr.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(mac_addr.c.obj) + .rodata.get_idx.str1.1 + 0x00000000 0x39 zephyr/libzephyr.a(mac_addr.c.obj) + .text.get_idx 0x00000000 0x2e zephyr/libzephyr.a(mac_addr.c.obj) + .text.get_efuse_factory_mac + 0x00000000 0x28 zephyr/libzephyr.a(mac_addr.c.obj) + .rodata.get_efuse_mac_custom.str1.1 + 0x00000000 0x23 zephyr/libzephyr.a(mac_addr.c.obj) + .text.get_efuse_mac_custom + 0x00000000 0x54 zephyr/libzephyr.a(mac_addr.c.obj) + .rodata.get_mac_addr_from_mac_table.str1.1 + 0x00000000 0x37 zephyr/libzephyr.a(mac_addr.c.obj) + .text.get_mac_addr_from_mac_table + 0x00000000 0x8c zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_mac_addr_len_get + 0x00000000 0x24 zephyr/libzephyr.a(mac_addr.c.obj) + .rodata.esp_iface_mac_addr_set.str1.1 + 0x00000000 0x7c zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_iface_mac_addr_set + 0x00000000 0x7a zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_base_mac_addr_set + 0x00000000 0x11 zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_efuse_mac_get_custom + 0x00000000 0x10 zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_efuse_mac_get_default + 0x00000000 0x10 zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_derive_local_mac + 0x00000000 0x5a zephyr/libzephyr.a(mac_addr.c.obj) + .rodata.esp_read_mac.str1.1 + 0x00000000 0x6c zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_read_mac + 0x00000000 0x10d zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_base_mac_addr_get + 0x00000000 0x11 zephyr/libzephyr.a(mac_addr.c.obj) + .data.s_mac_table + 0x00000000 0x38 zephyr/libzephyr.a(mac_addr.c.obj) + .debug_frame 0x00000000 0x130 zephyr/libzephyr.a(mac_addr.c.obj) + .debug_info 0x00000000 0xb5a zephyr/libzephyr.a(mac_addr.c.obj) + .debug_abbrev 0x00000000 0x36e zephyr/libzephyr.a(mac_addr.c.obj) + .debug_loc 0x00000000 0x653 zephyr/libzephyr.a(mac_addr.c.obj) + .debug_aranges + 0x00000000 0x78 zephyr/libzephyr.a(mac_addr.c.obj) + .debug_ranges 0x00000000 0xb8 zephyr/libzephyr.a(mac_addr.c.obj) + .debug_line 0x00000000 0xebc zephyr/libzephyr.a(mac_addr.c.obj) + .debug_str 0x00000000 0x6c5 zephyr/libzephyr.a(mac_addr.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(mac_addr.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .text.s_register_config_driver + 0x00000000 0x5 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_psram_tuning + 0x00000000 0x5 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_get_psram_low_speed_freq_mhz + 0x00000000 0x7 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .literal.periph_rcc_release_enter + 0x00000000 0x8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .literal.periph_rcc_release_exit + 0x00000000 0x8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .literal.periph_module_reset + 0x00000000 0x1c zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.5.literal + 0x00000000 0x14 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.6.literal + 0x00000000 0x14 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.7.literal + 0x00000000 0x1c zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.8.literal + 0x00000000 0x18 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.9.literal + 0x00000000 0x10 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.10.literal + 0x00000000 0x8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.11.literal + 0x00000000 0x8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + .text.periph_rcc_release_enter + 0x00000000 0x1a zephyr/libzephyr.a(periph_ctrl.c.obj) + .text.periph_rcc_release_exit + 0x00000000 0x13 zephyr/libzephyr.a(periph_ctrl.c.obj) + .text.periph_module_reset + 0x00000000 0x6e zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.5 0x00000000 0x34 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.6 0x00000000 0x34 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.7 0x00000000 0x7e zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.8 0x00000000 0x58 zephyr/libzephyr.a(periph_ctrl.c.obj) + .rodata.str1.1 + 0x00000000 0x3f zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.9 0x00000000 0x22 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.10 0x00000000 0x11 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.11 0x00000000 0x11 zephyr/libzephyr.a(periph_ctrl.c.obj) + .literal.esp_cpu_configure_region_protection + 0x00000000 0x10 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .rodata 0x00000000 0x14 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .text.esp_cpu_configure_region_protection + 0x00000000 0x32 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_frame 0x00000000 0x28 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_info 0x00000000 0x174 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_abbrev 0x00000000 0x10b zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_loc 0x00000000 0x3f zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_line 0x00000000 0x24a zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_str 0x00000000 0x308 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .text.esp_clk_tree_initialize + 0x00000000 0x5 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .text.esp_clk_tree_is_power_on + 0x00000000 0x7 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .text.esp_clk_tree_enable_power + 0x00000000 0x7 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .text.esp_clk_tree_enable_src + 0x00000000 0x7 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .literal.io_mux_enable_lp_io_clock + 0x00000000 0x20 zephyr/libzephyr.a(io_mux.c.obj) + .literal.io_mux_force_disable_lp_io_clock + 0x00000000 0x1c zephyr/libzephyr.a(io_mux.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(io_mux.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(io_mux.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(io_mux.c.obj) + .text.io_mux_set_clock_source + 0x00000000 0x7 zephyr/libzephyr.a(io_mux.c.obj) + .text.io_mux_enable_lp_io_clock + 0x00000000 0xaa zephyr/libzephyr.a(io_mux.c.obj) + .text.io_mux_force_disable_lp_io_clock + 0x00000000 0x60 zephyr/libzephyr.a(io_mux.c.obj) + .bss.s_rtc_io_status + 0x00000000 0x1c zephyr/libzephyr.a(io_mux.c.obj) + .bss.s_io_mux_spinlock + 0x00000000 0x4 zephyr/libzephyr.a(io_mux.c.obj) + .debug_frame 0x00000000 0x58 zephyr/libzephyr.a(io_mux.c.obj) + .debug_info 0x00000000 0x2445 zephyr/libzephyr.a(io_mux.c.obj) + .debug_abbrev 0x00000000 0x34e zephyr/libzephyr.a(io_mux.c.obj) + .debug_loc 0x00000000 0x19f zephyr/libzephyr.a(io_mux.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/libzephyr.a(io_mux.c.obj) + .debug_ranges 0x00000000 0x70 zephyr/libzephyr.a(io_mux.c.obj) + .debug_line 0x00000000 0x985 zephyr/libzephyr.a(io_mux.c.obj) + .debug_str 0x00000000 0x2293 zephyr/libzephyr.a(io_mux.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(io_mux.c.obj) + .literal.rtc_clk_bbpll_add_consumer + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_bbpll_remove_consumer + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_disable_external + 0x00000000 0x10 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_bootstrap + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enabled + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_8m_enabled + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_8md256_enabled + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_slow_freq_get_hz + 0x00000000 0xc zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_fast_src_get + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_config_fast + 0x00000000 0x10 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_xtal_for_sleep + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_apb_freq_get + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_dig_clk8m_enable + 0x00000000 0x8 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_dig_clk8m_disable + 0x00000000 0x8 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_dig_8m_enabled + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_bbpll_add_consumer + 0x00000000 0xe zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_bbpll_remove_consumer + 0x00000000 0xe zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_32k_disable_external + 0x00000000 0x50 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_32k_bootstrap + 0x00000000 0xe zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enabled + 0x00000000 0x1e zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_8m_enabled + 0x00000000 0x18 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_8md256_enabled + 0x00000000 0x18 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_slow_freq_get_hz + 0x00000000 0x1d zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_fast_src_get + 0x00000000 0x10 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_config_fast + 0x00000000 0x38 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_xtal_for_sleep + 0x00000000 0xb zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_apb_freq_get + 0x00000000 0xa zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_enable + 0x00000000 0x20 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_disable + 0x00000000 0x20 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_dig_8m_enabled + 0x00000000 0x10 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_init + 0x00000000 0x5c zephyr/libzephyr.a(rtc_clk_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .rodata.rtc_clk_init.str1.1 + 0x00000000 0x32 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .text.rtc_clk_init + 0x00000000 0x13a zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_frame 0x00000000 0x28 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_info 0x00000000 0x8c4 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_abbrev 0x00000000 0x2f3 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_loc 0x00000000 0x108 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_line 0x00000000 0x844 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_str 0x00000000 0xd2f zephyr/libzephyr.a(rtc_clk_init.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .literal.rtc_vddsdio_get_config + 0x00000000 0x8 zephyr/libzephyr.a(rtc_init.c.obj) + .literal.rtc_vddsdio_set_config + 0x00000000 0x4 zephyr/libzephyr.a(rtc_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_init.c.obj) + .text.rtc_vddsdio_get_config + 0x00000000 0x63 zephyr/libzephyr.a(rtc_init.c.obj) + .text.rtc_vddsdio_set_config + 0x00000000 0x48 zephyr/libzephyr.a(rtc_init.c.obj) + .literal.rtc_sleep_get_default_config + 0x00000000 0x14 zephyr/libzephyr.a(rtc_sleep.c.obj) + .literal.rtc_sleep_init + 0x00000000 0x90 zephyr/libzephyr.a(rtc_sleep.c.obj) + .literal.rtc_sleep_low_init + 0x00000000 0xc zephyr/libzephyr.a(rtc_sleep.c.obj) + .literal.rtc_sleep_start + 0x00000000 0x28 zephyr/libzephyr.a(rtc_sleep.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_sleep.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_sleep.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_sleep.c.obj) + .text.rtc_sleep_get_default_config + 0x00000000 0x14b zephyr/libzephyr.a(rtc_sleep.c.obj) + .text.rtc_sleep_init + 0x00000000 0x3dd zephyr/libzephyr.a(rtc_sleep.c.obj) + .text.rtc_sleep_low_init + 0x00000000 0x7a zephyr/libzephyr.a(rtc_sleep.c.obj) + .text.rtc_sleep_start + 0x00000000 0xbd zephyr/libzephyr.a(rtc_sleep.c.obj) + .literal.rtc_clk_cal_ratio + 0x00000000 0xc zephyr/libzephyr.a(rtc_time.c.obj) + .literal.rtc_clk_wait_for_slow_cycle + 0x00000000 0x8 zephyr/libzephyr.a(rtc_time.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_time.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_time.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_time.c.obj) + .text.rtc_clk_cal_ratio + 0x00000000 0x2c zephyr/libzephyr.a(rtc_time.c.obj) + .text.rtc_time_slowclk_to_us + 0x00000000 0x19 zephyr/libzephyr.a(rtc_time.c.obj) + .text.rtc_clk_wait_for_slow_cycle + 0x00000000 0x2e zephyr/libzephyr.a(rtc_time.c.obj) + .literal.s_sar_power_acquire + 0x00000000 0x10 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.s_sar_power_release + 0x00000000 0x28 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_power_enable + 0x00000000 0xc zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_power_disable + 0x00000000 0x10 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_pwdet_power_acquire + 0x00000000 0x4 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_pwdet_power_release + 0x00000000 0x4 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_oneshot_power_acquire + 0x00000000 0x4 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_oneshot_power_release + 0x00000000 0x4 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_continuous_power_acquire + 0x00000000 0x4 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_continuous_power_release + 0x00000000 0x4 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_reset + 0x00000000 0x10 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.s_sar_power_acquire + 0x00000000 0x50 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .rodata.s_sar_power_release.str1.1 + 0x00000000 0x40 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.s_sar_power_release + 0x00000000 0x6c zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_power_enable + 0x00000000 0x3a zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_power_disable + 0x00000000 0x40 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_pwdet_power_acquire + 0x00000000 0xb zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_pwdet_power_release + 0x00000000 0xb zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_oneshot_power_acquire + 0x00000000 0xb zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_oneshot_power_release + 0x00000000 0xb zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_continuous_power_acquire + 0x00000000 0xb zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_continuous_power_release + 0x00000000 0xb zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_reset + 0x00000000 0x36 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.adc_reset_lock_acquire + 0x00000000 0x5 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.adc_reset_lock_release + 0x00000000 0x5 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .rodata.__func__$0 + 0x00000000 0x14 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .bss.s_sar_power_on_cnt + 0x00000000 0x4 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(systimer.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(systimer.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(systimer.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .literal.regi2c_ctrl_read_reg + 0x00000000 0x4 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .iram1.3.literal + 0x00000000 0x8 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .iram1.4.literal + 0x00000000 0x8 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .text.regi2c_ctrl_read_reg + 0x00000000 0x1f zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .iram1.3 0x00000000 0x21 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .iram1.4 0x00000000 0x21 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .dram1.2 0x00000000 0x8 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .iram1.5.literal + 0x00000000 0x10 zephyr/libzephyr.a(rtc_module.c.obj) + .literal.rtc_isr_register + 0x00000000 0x2c zephyr/libzephyr.a(rtc_module.c.obj) + .literal.rtc_isr_deregister + 0x00000000 0x10 zephyr/libzephyr.a(rtc_module.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_module.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_module.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_module.c.obj) + .iram1.5 0x00000000 0x4c zephyr/libzephyr.a(rtc_module.c.obj) + .text.rtc_isr_register + 0x00000000 0x9a zephyr/libzephyr.a(rtc_module.c.obj) + .text.rtc_isr_deregister + 0x00000000 0x6f zephyr/libzephyr.a(rtc_module.c.obj) + .bss.s_rtc_isr_handle + 0x00000000 0x4 zephyr/libzephyr.a(rtc_module.c.obj) + .dram1.4 0x00000000 0x4 zephyr/libzephyr.a(rtc_module.c.obj) + .dram1.3 0x00000000 0x4 zephyr/libzephyr.a(rtc_module.c.obj) + .bss.rtc_spinlock + 0x00000000 0x4 zephyr/libzephyr.a(rtc_module.c.obj) + .literal.temperature_sensor_power_acquire + 0x00000000 0x30 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .literal.temperature_sensor_power_release + 0x00000000 0x28 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .literal.temp_sensor_get_raw_value + 0x00000000 0x20 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .text.temperature_sensor_power_acquire + 0x00000000 0xd3 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .text.temperature_sensor_power_release + 0x00000000 0x92 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .text.temp_sensor_get_raw_value + 0x00000000 0x67 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .bss.timer1 0x00000000 0x8 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .bss.s_first_temp_read + 0x00000000 0x1 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .bss.s_temperature_sensor_power_cnt + 0x00000000 0x4 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_frame 0x00000000 0x58 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_info 0x00000000 0x249d zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_abbrev 0x00000000 0x3bf zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_loc 0x00000000 0x195 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_ranges 0x00000000 0x68 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_line 0x00000000 0xb96 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_str 0x00000000 0x2185 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .rtc.entry.literal + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.s_sleep_hook_deregister + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.get_power_down_flags + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.get_sleep_flags + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.s_sleep_hook_register + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.9.literal + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.10.literal + 0x00000000 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.sleep_rtc_wdt_prepare + 0x00000000 0x24 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.rtcio_ll_function_select$constprop$0 + 0x00000000 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.12.literal + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_overhead_out_time_refresh + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.5.literal + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.6.literal + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.11.literal + 0x00000000 0x18 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_start$constprop$0 + 0x00000000 0xa0 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_light_sleep_inner$constprop$0 + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_get_deep_sleep_wake_stub + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.13.literal + 0x00000000 0x48 zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.7.literal + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_register_hook + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_deregister_hook + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_register_phy_hook + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_deregister_phy_hook + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.14.literal + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.15.literal + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_light_sleep_start + 0x00000000 0xa4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_wakeup_source + 0x00000000 0x28 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_timer_wakeup + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_deep_sleep + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_try + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_touchpad_wakeup + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_is_valid_wakeup_gpio + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext0_wakeup + 0x00000000 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext1_wakeup_io + 0x00000000 0x18 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_ext1_wakeup_io + 0x00000000 0x18 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext1_wakeup + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_gpio_wakeup + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_uart_wakeup + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_wifi_wakeup + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_wifi_wakeup + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_bt_wakeup + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_bt_wakeup + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_get_wakeup_cause + 0x00000000 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_get_wakeup_causes + 0x00000000 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_get_touchpad_wakeup_status + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_get_ext1_wakeup_status + 0x00000000 0x14 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_pd_config + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_acquire_lp_use_xtal + 0x00000000 0x1c zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_release_lp_use_xtal + 0x00000000 0x1c zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.16.literal + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_periph_use_8m + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_adc_tsens_monitor + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.rtc_sleep_enable_ultra_low + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(sleep_modes.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(sleep_modes.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.entry.text + 0x00000000 0xb zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.8 0x00000000 0x5 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.s_sleep_hook_deregister + 0x00000000 0x30 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.get_power_down_flags + 0x00000000 0x4c zephyr/libzephyr.a(sleep_modes.c.obj) + .text.get_sleep_flags + 0x00000000 0x58 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.s_sleep_hook_register + 0x00000000 0x4c zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.9 0x00000000 0x1f zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.10 0x00000000 0x27 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.sleep_rtc_wdt_prepare + 0x00000000 0x5f zephyr/libzephyr.a(sleep_modes.c.obj) + .text.rtcio_ll_function_select$constprop$0 + 0x00000000 0x63 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.12 0x00000000 0x1d zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_overhead_out_time_refresh + 0x00000000 0x18 zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.5 0x00000000 0xf zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.6 0x00000000 0x17 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.11 0x00000000 0x42 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_start$constprop$0 + 0x00000000 0x32e zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_light_sleep_inner$constprop$0 + 0x00000000 0x3b zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_get_deep_sleep_wake_stub + 0x00000000 0x17 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.13 0x00000000 0xaf zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.7 0x00000000 0xa zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_deep_sleep_register_hook + 0x00000000 0x12 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_deep_sleep_deregister_hook + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_deep_sleep_register_phy_hook + 0x00000000 0x12 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_deep_sleep_deregister_phy_hook + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.14 0x00000000 0x12 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.15 0x00000000 0x11 zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_light_sleep_start.str1.1 + 0x00000000 0x40 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_light_sleep_start + 0x00000000 0x29c zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_disable_wakeup_source.str1.1 + 0x00000000 0x32 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wakeup_source + 0x00000000 0xde zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ulp_wakeup + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_timer_wakeup + 0x00000000 0x69 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_deep_sleep + 0x00000000 0x13 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_deep_sleep_try + 0x00000000 0x18 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_touchpad_wakeup + 0x00000000 0x16 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_is_valid_wakeup_gpio + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext0_wakeup + 0x00000000 0x52 zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_ext1_wakeup_io.str1.1 + 0x00000000 0x1f zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext1_wakeup_io + 0x00000000 0xbf zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_disable_ext1_wakeup_io.str1.1 + 0x00000000 0x33 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_disable_ext1_wakeup_io + 0x00000000 0xc0 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext1_wakeup + 0x00000000 0x2c zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_gpio_wakeup + 0x00000000 0x15 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_uart_wakeup + 0x00000000 0x30 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_wifi_wakeup + 0x00000000 0x15 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wifi_wakeup + 0x00000000 0x16 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_wifi_beacon_wakeup + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wifi_beacon_wakeup + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_bt_wakeup + 0x00000000 0x16 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_disable_bt_wakeup + 0x00000000 0x16 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_get_wakeup_cause + 0x00000000 0x63 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_get_wakeup_causes + 0x00000000 0x96 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_get_touchpad_wakeup_status + 0x00000000 0x1c zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_get_ext1_wakeup_status + 0x00000000 0x52 zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_pd_config.str1.1 + 0x00000000 0x7b zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_pd_config + 0x00000000 0x9a zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_acquire_lp_use_xtal.str1.1 + 0x00000000 0x5c zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_acquire_lp_use_xtal + 0x00000000 0x3f zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_release_lp_use_xtal.str1.1 + 0x00000000 0x5e zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_release_lp_use_xtal + 0x00000000 0x3f zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.16 0x00000000 0x18 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_periph_use_8m + 0x00000000 0x22 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_adc_tsens_monitor + 0x00000000 0x22 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.rtc_sleep_enable_ultra_low + 0x00000000 0x22 zephyr/libzephyr.a(sleep_modes.c.obj) + .bss.s_cache_suspend_cnt + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.force_fast.4 + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .bss.spinlock_rtc_deep_sleep + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .bss.s_light_sleep_wakeup + 0x00000000 0x1 zephyr/libzephyr.a(sleep_modes.c.obj) + .bss.s_lightsleep_cnt + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .bss.s_dslp_phy_cb + 0x00000000 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + .bss.s_dslp_cb + 0x00000000 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_cache_get_alignment + 0x00000000 0x14 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .literal.esp_cache_get_line_size_by_addr + 0x00000000 0x10 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .text.esp_cache_get_alignment + 0x00000000 0x32 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .text.esp_cache_get_line_size_by_addr + 0x00000000 0x5a zephyr/libzephyr.a(esp_cache_msync.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x18 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .literal.esp_cache_freeze_caches_disable_interrupts + 0x00000000 0x18 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .literal.esp_cache_unfreeze_caches_enable_interrupts + 0x00000000 0xc zephyr/libzephyr.a(esp_cache_utils.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .text.esp_cache_freeze_caches_disable_interrupts + 0x00000000 0x2e zephyr/libzephyr.a(esp_cache_utils.c.obj) + .text.esp_cache_unfreeze_caches_enable_interrupts + 0x00000000 0x1c zephyr/libzephyr.a(esp_cache_utils.c.obj) + .bss.s_spinlock + 0x00000000 0x4 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .iram1.2.literal + 0x00000000 0x4 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.4.literal + 0x00000000 0xc zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.3.literal + 0x00000000 0x4 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.5.literal + 0x00000000 0x20 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.6.literal + 0x00000000 0xc zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.k_mutex_unlock$constprop$0$isra$0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_get_max_consecutive_free_block_size + 0x00000000 0x18 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_reserve_block_with_caps + 0x00000000 0x20 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map + 0x00000000 0x68 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.esp_mmu_unmap + 0x00000000 0x38 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_dump_mapped_blocks + 0x00000000 0x74 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.7.literal + 0x00000000 0x54 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.esp_mmu_vaddr_to_paddr + 0x00000000 0x30 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.esp_mmu_paddr_to_vaddr + 0x00000000 0x28 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.2 0x00000000 0xb zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.4 0x00000000 0x1c zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.3 0x00000000 0xb zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.5 0x00000000 0x80 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.6 0x00000000 0x1d zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.k_mutex_unlock$constprop$0$isra$0 + 0x00000000 0xe zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_get_max_consecutive_free_block_size.str1.1 + 0x00000000 0x3c zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_get_max_consecutive_free_block_size + 0x00000000 0x67 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_reserve_block_with_caps.str1.1 + 0x00000000 0x1d zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_reserve_block_with_caps + 0x00000000 0xb8 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map.str1.1 + 0x00000000 0xe5 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.esp_mmu_map + 0x00000000 0x310 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_unmap.str1.1 + 0x00000000 0x82 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.esp_mmu_unmap + 0x00000000 0xe1 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_dump_mapped_blocks.str1.1 + 0x00000000 0x139 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_dump_mapped_blocks + 0x00000000 0x111 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.str1.1 + 0x00000000 0xf5 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.7 0x00000000 0xaa zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_vaddr_to_paddr.str1.1 + 0x00000000 0x5a zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.esp_mmu_vaddr_to_paddr + 0x00000000 0xa2 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_paddr_to_vaddr.str1.1 + 0x00000000 0x24 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.esp_mmu_paddr_to_vaddr + 0x00000000 0x6e zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x17 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x17 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0xe zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0xc zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x24 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$5 + 0x00000000 0x30 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .dram1.0 0x00000000 0x4 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(ext_mem_layout.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(ext_mem_layout.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(ext_mem_layout.c.obj) + .literal.Cache_Count_Flash_Pages + 0x00000000 0x4 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text.Cache_Count_Flash_Pages + 0x00000000 0x17 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .debug_info 0x00000000 0x64 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .debug_abbrev 0x00000000 0x26 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .debug_aranges + 0x00000000 0x18 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .debug_line 0x00000000 0x7d zephyr/libzephyr.a(esp_rom_crc.c.obj) + .debug_str 0x00000000 0x239 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .literal.esp_rom_efuse_get_opiconfig + 0x00000000 0x8 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .text.esp_rom_efuse_get_opiconfig + 0x00000000 0x3a zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_frame 0x00000000 0x28 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_info 0x00000000 0xee zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_abbrev 0x00000000 0x78 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_loc 0x00000000 0x3c zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_line 0x00000000 0x219 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_str 0x00000000 0x2ab zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .debug_info 0x00000000 0x6b zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .debug_abbrev 0x00000000 0x26 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .debug_aranges + 0x00000000 0x18 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .debug_line 0x00000000 0x7e zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .debug_str 0x00000000 0x246 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .text 0x00000000 0x81 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .debug_line 0x00000000 0x1c9 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .debug_info 0x00000000 0x32 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .debug_abbrev 0x00000000 0x28 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .debug_str 0x00000000 0xaa zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .literal.esp_rom_cvt$part$0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_rom_print.c.obj) + .literal.esp_rom_cvt + 0x00000000 0x4 zephyr/libzephyr.a(esp_rom_print.c.obj) + .literal.esp_rom_vprintf + 0x00000000 0x50 zephyr/libzephyr.a(esp_rom_print.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_print.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_print.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_print.c.obj) + .text.esp_rom_cvt$part$0 + 0x00000000 0x99 zephyr/libzephyr.a(esp_rom_print.c.obj) + .text.esp_rom_cvt + 0x00000000 0x3a zephyr/libzephyr.a(esp_rom_print.c.obj) + .rodata.esp_rom_vprintf.str1.1 + 0x00000000 0x34 zephyr/libzephyr.a(esp_rom_print.c.obj) + .text.esp_rom_vprintf + 0x00000000 0x4cf zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_frame 0x00000000 0x58 zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_info 0x00000000 0x732 zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_abbrev 0x00000000 0x22e zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_loc 0x00000000 0x1114 zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_ranges 0x00000000 0x40 zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_line 0x00000000 0xdef zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_str 0x00000000 0x375 zephyr/libzephyr.a(esp_rom_print.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_rom_print.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_output_to_channels + 0x00000000 0x8 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .literal.esp_rom_install_uart_printf + 0x00000000 0x14 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .text.esp_rom_output_to_channels + 0x00000000 0x22 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .text.esp_rom_install_uart_printf + 0x00000000 0x22 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .literal._esp_error_check_failed_without_abort + 0x00000000 0x24 zephyr/libzephyr.a(esp_err.c.obj) + .literal._esp_error_check_failed + 0x00000000 0x28 zephyr/libzephyr.a(esp_err.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_err.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_err.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_err.c.obj) + .rodata._esp_error_check_failed_without_abort.str1.1 + 0x00000000 0x70 zephyr/libzephyr.a(esp_err.c.obj) + .text._esp_error_check_failed_without_abort + 0x00000000 0x47 zephyr/libzephyr.a(esp_err.c.obj) + .rodata._esp_error_check_failed.str1.1 + 0x00000000 0x10 zephyr/libzephyr.a(esp_err.c.obj) + .text._esp_error_check_failed + 0x00000000 0x4b zephyr/libzephyr.a(esp_err.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(esp_err.c.obj) + .debug_info 0x00000000 0x51e zephyr/libzephyr.a(esp_err.c.obj) + .debug_abbrev 0x00000000 0x1d3 zephyr/libzephyr.a(esp_err.c.obj) + .debug_loc 0x00000000 0x28a zephyr/libzephyr.a(esp_err.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(esp_err.c.obj) + .debug_ranges 0x00000000 0x48 zephyr/libzephyr.a(esp_err.c.obj) + .debug_line 0x00000000 0x580 zephyr/libzephyr.a(esp_err.c.obj) + .debug_str 0x00000000 0x335 zephyr/libzephyr.a(esp_err.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_err.c.obj) + .literal.select_rtc_slow_clk + 0x00000000 0x2c zephyr/libzephyr.a(clk.c.obj) + .literal.esp_clk_init + 0x00000000 0x2c zephyr/libzephyr.a(clk.c.obj) + .literal.rtc_clk_select_rtc_slow_clk + 0x00000000 0x4 zephyr/libzephyr.a(clk.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(clk.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(clk.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(clk.c.obj) + .rodata.select_rtc_slow_clk.str1.1 + 0x00000000 0x4d zephyr/libzephyr.a(clk.c.obj) + .text.select_rtc_slow_clk + 0x00000000 0x88 zephyr/libzephyr.a(clk.c.obj) + .text.esp_clk_init + 0x00000000 0x7d zephyr/libzephyr.a(clk.c.obj) + .text.rtc_clk_select_rtc_slow_clk + 0x00000000 0xe zephyr/libzephyr.a(clk.c.obj) + .literal.esp_reset_reason + 0x00000000 0x4 zephyr/libzephyr.a(reset_reason.c.obj) + .literal.esp_reset_reason_set_hint + 0x00000000 0x8 zephyr/libzephyr.a(reset_reason.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(reset_reason.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(reset_reason.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(reset_reason.c.obj) + .text.esp_reset_reason + 0x00000000 0xa zephyr/libzephyr.a(reset_reason.c.obj) + .text.esp_reset_reason_set_hint + 0x00000000 0x29 zephyr/libzephyr.a(reset_reason.c.obj) + .literal.esp_system_reset_modules_on_exit + 0x00000000 0x1c zephyr/libzephyr.a(system_internal.c.obj) + .literal.esp_restart_noos + 0x00000000 0x68 zephyr/libzephyr.a(system_internal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(system_internal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(system_internal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(system_internal.c.obj) + .text.esp_system_reset_modules_on_exit + 0x00000000 0xa9 zephyr/libzephyr.a(system_internal.c.obj) + .rodata 0x00000000 0x10 zephyr/libzephyr.a(system_internal.c.obj) + .text.esp_restart_noos + 0x00000000 0x107 zephyr/libzephyr.a(system_internal.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(system_internal.c.obj) + .debug_info 0x00000000 0x4d77 zephyr/libzephyr.a(system_internal.c.obj) + .debug_abbrev 0x00000000 0x3f2 zephyr/libzephyr.a(system_internal.c.obj) + .debug_loc 0x00000000 0x106 zephyr/libzephyr.a(system_internal.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(system_internal.c.obj) + .debug_ranges 0x00000000 0x30 zephyr/libzephyr.a(system_internal.c.obj) + .debug_line 0x00000000 0xaf2 zephyr/libzephyr.a(system_internal.c.obj) + .debug_str 0x00000000 0x3288 zephyr/libzephyr.a(system_internal.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(system_internal.c.obj) + .literal.timer_list_lock + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.timer_list_unlock + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.timer_remove + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.timer_alarm_handler + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.deinit_timer_task + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .literal.timer_insert$isra$0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.timer_init + 0x00000000 0x10 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.timer_restart + 0x00000000 0x1c zephyr/libzephyr.a(esp_timer.c.obj) + .literal.timer_task + 0x00000000 0x30 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_create + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_restart + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_restart_at + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_start_once + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_start_once_at + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_start_periodic + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_start_periodic_at + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_stop + 0x00000000 0x10 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_stop_blocking + 0x00000000 0x3c zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_delete + 0x00000000 0x14 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_init + 0x00000000 0x40 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_deinit + 0x00000000 0x10 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_dump + 0x00000000 0x40 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_get_next_alarm + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_get_next_alarm_for_wake_up + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_get_period + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_get_expiry_time + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_is_active + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_timer.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_timer.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_list_lock + 0x00000000 0x10 zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_list_unlock + 0x00000000 0x13 zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_remove + 0x00000000 0x50 zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_alarm_handler + 0x00000000 0xe zephyr/libzephyr.a(esp_timer.c.obj) + .text.deinit_timer_task + 0x00000000 0x1b zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_insert$isra$0 + 0x00000000 0x73 zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_init + 0x00000000 0x60 zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_restart + 0x00000000 0xca zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_task + 0x00000000 0x153 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_create + 0x00000000 0x76 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_restart + 0x00000000 0x18 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_restart_at + 0x00000000 0x41 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_start_once + 0x00000000 0x22 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_start_once_at + 0x00000000 0x3e zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_start_periodic + 0x00000000 0x39 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_start_periodic_at + 0x00000000 0x5e zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_stop + 0x00000000 0x42 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_stop_blocking + 0x00000000 0xfa zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_delete + 0x00000000 0x6e zephyr/libzephyr.a(esp_timer.c.obj) + .rodata.esp_timer_init.str1.1 + 0x00000000 0x48 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_init + 0x00000000 0x81 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_deinit + 0x00000000 0x26 zephyr/libzephyr.a(esp_timer.c.obj) + .rodata.esp_timer_dump.str1.1 + 0x00000000 0x54 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_dump + 0x00000000 0xca zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_get_next_alarm + 0x00000000 0x3e zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_get_next_alarm_for_wake_up + 0x00000000 0x4e zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_get_period + 0x00000000 0x42 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_get_expiry_time + 0x00000000 0x52 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_is_active + 0x00000000 0x3e zephyr/libzephyr.a(esp_timer.c.obj) + .bss.s_timer_lock_key + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer.c.obj) + .bss.s_timer_task_created + 0x00000000 0x1 zephyr/libzephyr.a(esp_timer.c.obj) + .bss.s_timer_semaphore + 0x00000000 0x18 zephyr/libzephyr.a(esp_timer.c.obj) + .bss.s_timer_task + 0x00000000 0x68 zephyr/libzephyr.a(esp_timer.c.obj) + .bss.timer_task_stack + 0x00000000 0x1000 zephyr/libzephyr.a(esp_timer.c.obj) + .bss.s_timers 0x00000000 0x4 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_frame 0x00000000 0x298 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_info 0x00000000 0x27e2 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_abbrev 0x00000000 0x638 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_loc 0x00000000 0x1132 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_aranges + 0x00000000 0xf0 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_ranges 0x00000000 0x2a0 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_line 0x00000000 0x2859 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_str 0x00000000 0xf7a zephyr/libzephyr.a(esp_timer.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_impl_lock + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .literal.esp_timer_impl_unlock + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .literal.esp_timer_impl_set_alarm + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_lock + 0x00000000 0xd zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_unlock + 0x00000000 0x10 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_set_alarm + 0x00000000 0x12 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_get_min_period_us + 0x00000000 0x9 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .data.timestamp_id + 0x00000000 0x10 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .bss.s_time_update_lock + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_frame 0x00000000 0x70 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_info 0x00000000 0x298 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_abbrev 0x00000000 0x1b0 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_loc 0x00000000 0x49 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_aranges + 0x00000000 0x38 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_ranges 0x00000000 0x40 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_line 0x00000000 0x3d3 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_str 0x00000000 0x4d9 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .literal.timer_alarm_isr + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_get_counter_reg + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_get_time + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_set_alarm_id + 0x00000000 0x14 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_set + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_advance + 0x00000000 0xc zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_init + 0x00000000 0x34 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_deinit + 0x00000000 0x18 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_get_alarm_reg + 0x00000000 0xc zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.timer_alarm_isr + 0x00000000 0x26 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_get_counter_reg + 0x00000000 0x14 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_get_time + 0x00000000 0x1a zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_set_alarm_id + 0x00000000 0x4a zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_set + 0x00000000 0x47 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_advance + 0x00000000 0x24 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .rodata.esp_timer_impl_init.str1.1 + 0x00000000 0x87 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_init + 0x00000000 0x74 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_deinit + 0x00000000 0x4d zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_get_alarm_reg + 0x00000000 0x24 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .bss.s_alarm_handler + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .bss.s_timer_interrupt_handle + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.__esp_system_init_fn_esp_timer_init_nonos + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_init.c.obj) + .text.__esp_system_init_fn_esp_timer_init_nonos + 0x00000000 0xd zephyr/libzephyr.a(esp_timer_init.c.obj) + .text.esp_timer_init_include_func + 0x00000000 0x5 zephyr/libzephyr.a(esp_timer_init.c.obj) + .esp_system_init_fn.101 + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer_init.c.obj) + .literal.ets_timer_setfn + 0x00000000 0x24 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .literal.ets_timer_arm_us + 0x00000000 0x28 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .literal.ets_timer_arm + 0x00000000 0x28 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .literal.ets_timer_done + 0x00000000 0x8 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .literal.ets_timer_disarm + 0x00000000 0x8 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .rodata.ets_timer_setfn.str1.1 + 0x00000000 0xa6 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text.ets_timer_setfn + 0x00000000 0x56 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .rodata.ets_timer_arm_us.str1.1 + 0x00000000 0x66 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text.ets_timer_arm_us + 0x00000000 0x53 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text.ets_timer_arm + 0x00000000 0x5f zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text.ets_timer_done + 0x00000000 0x1c zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text.ets_timer_disarm + 0x00000000 0x16 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text.ets_timer_init + 0x00000000 0x5 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text.ets_timer_deinit + 0x00000000 0x5 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_frame 0x00000000 0xb8 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_info 0x00000000 0x785 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_abbrev 0x00000000 0x2d4 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_loc 0x00000000 0x190 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_aranges + 0x00000000 0x50 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_ranges 0x00000000 0x90 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_line 0x00000000 0x7c1 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_str 0x00000000 0x4f1 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .literal.efuse_hal_set_timing + 0x00000000 0x8 zephyr/libzephyr.a(efuse_hal.c.obj) + .literal.efuse_hal_read + 0x00000000 0x8 zephyr/libzephyr.a(efuse_hal.c.obj) + .literal.efuse_hal_clear_program_registers + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .literal.efuse_hal_program + 0x00000000 0x10 zephyr/libzephyr.a(efuse_hal.c.obj) + .literal.efuse_hal_rs_calculate + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .literal.efuse_hal_is_coding_error_in_block + 0x00000000 0xc zephyr/libzephyr.a(efuse_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .text.efuse_hal_set_timing + 0x00000000 0xb6 zephyr/libzephyr.a(efuse_hal.c.obj) + .text.efuse_hal_read + 0x00000000 0x64 zephyr/libzephyr.a(efuse_hal.c.obj) + .text.efuse_hal_clear_program_registers + 0x00000000 0xb zephyr/libzephyr.a(efuse_hal.c.obj) + .text.efuse_hal_program + 0x00000000 0x78 zephyr/libzephyr.a(efuse_hal.c.obj) + .text.efuse_hal_rs_calculate + 0x00000000 0xf zephyr/libzephyr.a(efuse_hal.c.obj) + .text.efuse_hal_is_coding_error_in_block + 0x00000000 0x52 zephyr/libzephyr.a(efuse_hal.c.obj) + .literal.s_cache_hal_init_ctx + 0x00000000 0xc zephyr/libzephyr.a(cache_hal.c.obj) + .literal.cache_hal_init + 0x00000000 0x18 zephyr/libzephyr.a(cache_hal.c.obj) + .literal.cache_hal_is_cache_enabled + 0x00000000 0x8 zephyr/libzephyr.a(cache_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + .text.s_cache_hal_init_ctx + 0x00000000 0x3a zephyr/libzephyr.a(cache_hal.c.obj) + .text.cache_hal_init + 0x00000000 0x7d zephyr/libzephyr.a(cache_hal.c.obj) + .text.cache_hal_is_cache_enabled + 0x00000000 0x2e zephyr/libzephyr.a(cache_hal.c.obj) + .literal.efuse_hal_get_mac + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.1.literal + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.2.literal + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.3.literal + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.4.literal + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.5.literal + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .text.efuse_hal_get_mac + 0x00000000 0x19 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.1 0x00000000 0x23 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.2 0x00000000 0x11 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.3 0x00000000 0x11 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.4 0x00000000 0x11 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.5 0x00000000 0x22 zephyr/libzephyr.a(efuse_hal.c.obj) + .literal.mmu_hal_init + 0x00000000 0xc zephyr/libzephyr.a(mmu_hal.c.obj) + .literal.mmu_hal_check_valid_ext_vaddr_region + 0x00000000 0x8 zephyr/libzephyr.a(mmu_hal.c.obj) + .literal.mmu_hal_unmap_region + 0x00000000 0x4 zephyr/libzephyr.a(mmu_hal.c.obj) + .literal.mmu_hal_vaddr_to_paddr + 0x00000000 0x4 zephyr/libzephyr.a(mmu_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(mmu_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(mmu_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(mmu_hal.c.obj) + .text.mmu_hal_init + 0x00000000 0x1a zephyr/libzephyr.a(mmu_hal.c.obj) + .text.mmu_hal_pages_to_bytes + 0x00000000 0x8 zephyr/libzephyr.a(mmu_hal.c.obj) + .text.mmu_hal_bytes_to_pages + 0x00000000 0x8 zephyr/libzephyr.a(mmu_hal.c.obj) + .text.mmu_hal_check_valid_ext_vaddr_region + 0x00000000 0x55 zephyr/libzephyr.a(mmu_hal.c.obj) + .text.mmu_hal_unmap_region + 0x00000000 0x35 zephyr/libzephyr.a(mmu_hal.c.obj) + .text.mmu_hal_vaddr_to_paddr + 0x00000000 0x3a zephyr/libzephyr.a(mmu_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(gpio_periph.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(gpio_periph.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(gpio_periph.c.obj) + .rodata.GPIO_HOLD_MASK + 0x00000000 0xc4 zephyr/libzephyr.a(gpio_periph.c.obj) + .literal.esp_register_shutdown_handler + 0x00000000 0x4 zephyr/libzephyr.a(esp_restart.c.obj) + .literal.esp_unregister_shutdown_handler + 0x00000000 0x4 zephyr/libzephyr.a(esp_restart.c.obj) + .literal.esp_restart + 0x00000000 0x8 zephyr/libzephyr.a(esp_restart.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_restart.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_restart.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_restart.c.obj) + .text.esp_register_shutdown_handler + 0x00000000 0x31 zephyr/libzephyr.a(esp_restart.c.obj) + .text.esp_unregister_shutdown_handler + 0x00000000 0x2a zephyr/libzephyr.a(esp_restart.c.obj) + .text.esp_restart + 0x00000000 0x1e zephyr/libzephyr.a(esp_restart.c.obj) + .bss.shutdown_handlers + 0x00000000 0x14 zephyr/libzephyr.a(esp_restart.c.obj) + .debug_frame 0x00000000 0x58 zephyr/libzephyr.a(esp_restart.c.obj) + .debug_info 0x00000000 0x456 zephyr/libzephyr.a(esp_restart.c.obj) + .debug_abbrev 0x00000000 0x145 zephyr/libzephyr.a(esp_restart.c.obj) + .debug_loc 0x00000000 0x13a zephyr/libzephyr.a(esp_restart.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/libzephyr.a(esp_restart.c.obj) + .debug_ranges 0x00000000 0x38 zephyr/libzephyr.a(esp_restart.c.obj) + .debug_line 0x00000000 0x46d zephyr/libzephyr.a(esp_restart.c.obj) + .debug_str 0x00000000 0xdf1 zephyr/libzephyr.a(esp_restart.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_restart.c.obj) + .literal.spi_flash_init_chip_state + 0x00000000 0xc zephyr/libzephyr.a(flash_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(flash_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(flash_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(flash_init.c.obj) + .text.spi_flash_init_chip_state + 0x00000000 0x22 zephyr/libzephyr.a(flash_init.c.obj) + .literal.bootloader_mmap_get_free_pages + 0x00000000 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_mmap + 0x00000000 0x1c zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_munmap + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_flash_read + 0x00000000 0xc zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_flash_write + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_sector + 0x00000000 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_range + 0x00000000 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.esp_rom_flash_mmap + 0x00000000 0x28 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.esp_rom_flash_unmmap + 0x00000000 0x10 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.esp_rom_flash_erase_sector + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.esp_rom_flash_erase_range + 0x00000000 0xc zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.esp_rom_flash_write + 0x00000000 0x28 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_spi_flash_reset + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash.c.obj) + .iram1.7.literal + 0x00000000 0x14 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_flash_get_spi_mode + 0x00000000 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_mmap_get_free_pages + 0x00000000 0x10 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_mmap + 0x00000000 0x4c zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_munmap + 0x00000000 0x18 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_flash_read + 0x00000000 0x36 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_flash_write + 0x00000000 0x2c zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_sector + 0x00000000 0x18 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_range + 0x00000000 0x14 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.esp_rom_flash_mmap_get_free_pages + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash.c.obj) + .rodata.esp_rom_flash_mmap.str1.1 + 0x00000000 0x41 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.esp_rom_flash_mmap + 0x00000000 0x91 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.esp_rom_flash_unmmap + 0x00000000 0x2a zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.esp_rom_flash_erase_sector + 0x00000000 0x1c zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.esp_rom_flash_erase_range + 0x00000000 0x62 zephyr/libzephyr.a(bootloader_flash.c.obj) + .rodata.esp_rom_flash_write.str1.1 + 0x00000000 0xbd zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.esp_rom_flash_write + 0x00000000 0x84 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_spi_flash_reset + 0x00000000 0x23 zephyr/libzephyr.a(bootloader_flash.c.obj) + .iram1.7 0x00000000 0x9e zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_flash_get_spi_mode + 0x00000000 0x2e zephyr/libzephyr.a(bootloader_flash.c.obj) + .bss.mapped 0x00000000 0x1 zephyr/libzephyr.a(bootloader_flash.c.obj) + .bss.map 0x00000000 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.heap_caps_alloc_failed + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_malloc_base + 0x00000000 0xc zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_realloc_base + 0x00000000 0xc zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_register_failed_alloc_callback + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_malloc + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_malloc_default + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_malloc_prefer + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_realloc + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_realloc_default + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_realloc_prefer + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_free + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_calloc + 0x00000000 0xc zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_calloc_prefer + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_get_info + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_print_heap_info + 0x00000000 0x8 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_aligned_alloc + 0x00000000 0xc zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_aligned_free + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_aligned_calloc + 0x00000000 0x8 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_alloc_failed + 0x00000000 0x16 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_malloc_base + 0x00000000 0x23 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_realloc_base + 0x00000000 0x22 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_register_failed_alloc_callback + 0x00000000 0x13 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_malloc + 0x00000000 0x11 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_malloc_extmem_enable + 0x00000000 0x5 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_malloc_default + 0x00000000 0x14 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_malloc_prefer + 0x00000000 0x14 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_realloc + 0x00000000 0x14 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_realloc_default + 0x00000000 0x16 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_realloc_prefer + 0x00000000 0x16 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_free + 0x00000000 0xe zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_calloc + 0x00000000 0x2c zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_calloc_prefer + 0x00000000 0x1b zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_get_total_size + 0x00000000 0xa zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_get_free_size + 0x00000000 0x7 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_get_minimum_free_size + 0x00000000 0x7 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_get_largest_free_block + 0x00000000 0x7 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_get_info + 0x00000000 0x12 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .rodata.heap_caps_print_heap_info.str1.1 + 0x00000000 0x3e zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_print_heap_info + 0x00000000 0xe zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_check_integrity + 0x00000000 0x7 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_check_integrity_all + 0x00000000 0x7 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_check_integrity_addr + 0x00000000 0x7 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_dump + 0x00000000 0x5 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_dump_all + 0x00000000 0x5 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_get_allocated_size + 0x00000000 0x7 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_aligned_alloc + 0x00000000 0x22 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_aligned_free + 0x00000000 0xe zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_aligned_calloc + 0x00000000 0x2e zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .rodata.__func__$0 + 0x00000000 0x18 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .rodata.__func__$1 + 0x00000000 0x11 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .rodata.__func__$2 + 0x00000000 0x17 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .rodata.__func__$3 + 0x00000000 0x16 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .bss.alloc_failed_callback + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_frame 0x00000000 0x2c8 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_info 0x00000000 0xd5f zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_abbrev 0x00000000 0x349 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_loc 0x00000000 0x4d0 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_aranges + 0x00000000 0x100 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_ranges 0x00000000 0x138 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_line 0x00000000 0xbc9 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_str 0x00000000 0x87b zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(soc_flash_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(soc_flash_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(soc_flash_init.c.obj) + .literal.ana_bod_reset_config + 0x00000000 0x8 zephyr/libzephyr.a(soc_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .text.ana_bod_reset_config + 0x00000000 0x34 zephyr/libzephyr.a(soc_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(soc_random.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(soc_random.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(soc_random.c.obj) + .text 0x00000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .data 0x00000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .bss 0x00000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .text 0x00000000 0x0 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .data 0x00000000 0x0 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .bss 0x00000000 0x0 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .literal.arch_early_memcpy + 0x00000000 0x4 zephyr/arch/common/libarch__common.a(init.c.obj) + .text 0x00000000 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + .data 0x00000000 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + .bss 0x00000000 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + .text.arch_early_memcpy + 0x00000000 0x12 zephyr/arch/common/libarch__common.a(init.c.obj) + .text 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .text.arch_cpu_atomic_idle + 0x00000000 0xe zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .literal.arch_syscall_oops + 0x00000000 0x4 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .text 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .text.arch_syscall_oops + 0x00000000 0xd zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .text 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .literal.z_arch_irq_connect_dynamic + 0x00000000 0x4 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .text 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .text.z_irq_priority_set + 0x00000000 0x5 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .text.z_arch_irq_connect_dynamic + 0x00000000 0x12 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .text.xtensa_irq_is_enabled + 0x00000000 0x18 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .text 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .text 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .text.arch_ipi_lazy_coprocessors_save + 0x00000000 0x5 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .text 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .literal.__chk_fail + 0x00000000 0xc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .rodata.__chk_fail.str1.1 + 0x00000000 0x1e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .text.__chk_fail + 0x00000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_frame 0x00000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_info 0x00000000 0x121 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_abbrev 0x00000000 0xba zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_line 0x00000000 0x162 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_str 0x00000000 0x2ea zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .comment 0x00000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .literal.z_errno_wrap + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .text.z_errno_wrap + 0x00000000 0xd zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_frame 0x00000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_info 0x00000000 0xda zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_abbrev 0x00000000 0x9a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_line 0x00000000 0x1a5 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_str 0x00000000 0x264 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .comment 0x00000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .literal._exit + 0x00000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .rodata._exit.str1.1 + 0x00000000 0x5 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .text._exit 0x00000000 0xf zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_frame 0x00000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_info 0x00000000 0xc4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_abbrev 0x00000000 0x7f zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_line 0x00000000 0xa4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_str 0x00000000 0x25b zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .comment 0x00000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .literal.__retarget_lock_init_recursive + 0x00000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_init + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_close_recursive + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_close + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_acquire_recursive + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_acquire + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_try_acquire_recursive + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_try_acquire + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_release_recursive + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_release + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_init_recursive + 0x00000000 0x16 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_init + 0x00000000 0xe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_close_recursive + 0x00000000 0xe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_close + 0x00000000 0xe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_acquire_recursive + 0x00000000 0x12 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_acquire + 0x00000000 0xe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_try_acquire_recursive + 0x00000000 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_try_acquire + 0x00000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_release_recursive + 0x00000000 0xe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_release + 0x00000000 0xe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + ._k_mutex.static.__lock___libc_recursive_mutex_ + 0x00000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_frame 0x00000000 0x100 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_info 0x00000000 0x9c4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_abbrev 0x00000000 0x307 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_loc 0x00000000 0xd4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_aranges + 0x00000000 0x68 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_ranges 0x00000000 0xb8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_line 0x00000000 0x7e2 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_str 0x00000000 0x85f zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .comment 0x00000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__stdin_hook_install + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text.__stdin_hook_install + 0x00000000 0x15 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .rodata.stdout + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .rodata.stdin 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss.__stdin 0x00000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .literal.time 0x00000000 0x4 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .text.time 0x00000000 0x22 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_frame 0x00000000 0x28 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_info 0x00000000 0x14f zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_abbrev 0x00000000 0xff zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_loc 0x00000000 0x37 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_line 0x00000000 0x2ee zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_str 0x00000000 0x298 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .comment 0x00000000 0x20 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .literal.malloc_lock + 0x00000000 0x8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.malloc_unlock + 0x00000000 0x8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.malloc + 0x00000000 0x14 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.aligned_alloc + 0x00000000 0x14 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.realloc + 0x00000000 0x14 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.free 0x00000000 0x10 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.calloc + 0x00000000 0xc zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.reallocarray + 0x00000000 0x8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc_lock + 0x00000000 0x12 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc_unlock + 0x00000000 0xe zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc 0x00000000 0x30 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.aligned_alloc + 0x00000000 0x30 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.realloc 0x00000000 0x30 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.free 0x00000000 0x1c zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.calloc 0x00000000 0x32 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.reallocarray + 0x00000000 0x27 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .data.z_malloc_heap_mutex + 0x00000000 0x14 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.fnmatchx + 0x00000000 0x80 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .literal.fnmatch + 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .data 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .bss 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text.foldcase + 0x00000000 0x13 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text.fnmatchx + 0x00000000 0x55e zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text.fnmatch 0x00000000 0x18 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_frame 0x00000000 0x58 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_info 0x00000000 0x823 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_abbrev 0x00000000 0x2a2 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_loc 0x00000000 0x5f8 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_ranges 0x00000000 0x108 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_line 0x00000000 0xedd zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_str 0x00000000 0x312 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .comment 0x00000000 0x20 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .literal.getentropy + 0x00000000 0x10 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .text 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .data 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .bss 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .text.getentropy + 0x00000000 0x4f zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_frame 0x00000000 0x28 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_info 0x00000000 0x44d zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_abbrev 0x00000000 0x23b zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_loc 0x00000000 0xa2 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_line 0x00000000 0x473 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_str 0x00000000 0x3d6 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .comment 0x00000000 0x20 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .literal.getopt_init + 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .literal.getopt_state_get + 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .literal.getopt + 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .literal.z_getopt_global_state_update_shim + 0x00000000 0x10 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .text 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .data 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .bss 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .text.getopt_init + 0x00000000 0xb zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .text.getopt_state_get + 0x00000000 0xd zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .text.getopt 0x00000000 0x14 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .text.z_getopt_global_state_update_shim + 0x00000000 0x21 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .bss.optopt 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .bss.optind 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .bss.opterr 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .bss.optarg 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_frame 0x00000000 0x70 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_info 0x00000000 0x2e2 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_abbrev 0x00000000 0x18c zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_loc 0x00000000 0x2b zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_aranges + 0x00000000 0x38 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_line 0x00000000 0x30a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_str 0x00000000 0x4ab zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .comment 0x00000000 0x20 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .literal.esp_intr_mark_shared + 0x00000000 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .literal.esp_intr_reserve + 0x00000000 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .iram1.1.literal + 0x00000000 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .iram1.2.literal + 0x00000000 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .literal.esp_intr_free + 0x00000000 0x24 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text 0x00000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .data 0x00000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text.esp_intr_mark_shared + 0x00000000 0x41 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text.esp_intr_reserve + 0x00000000 0x39 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .iram1.1 0x00000000 0x5b zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text.esp_intr_get_intno + 0x00000000 0xc zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text.esp_intr_get_cpu + 0x00000000 0xc zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .iram1.2 0x00000000 0x7a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text.esp_intr_free + 0x00000000 0xe0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text 0x00000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .data 0x00000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .text 0x00000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .data 0x00000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text.uart_register_input + 0x00000000 0x5 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text 0x00000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .data 0x00000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.RtcBkupWrite + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .literal.RtcBkupRead + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .literal.RtcGetCalendarTime + 0x00000000 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .text.RtcBkupWrite + 0x00000000 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .text.RtcBkupRead + 0x00000000 0x16 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .text.RtcGetCalendarTime + 0x00000000 0x3a zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .bss.backup_reg + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .literal.rand1 + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .literal.srand1 + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .literal.randr + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .literal.Crc32 + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .literal.Crc32Update + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.rand1 0x00000000 0x31 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.srand1 0x00000000 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.randr 0x00000000 0x15 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.memcpy1 0x00000000 0x1d zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.memcpyr 0x00000000 0x21 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.memset1 0x00000000 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.Nibble2HexChar + 0x00000000 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.Crc32 0x00000000 0x42 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.Crc32Init + 0x00000000 0x7 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.Crc32Update + 0x00000000 0x3c zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.Crc32Finalize + 0x00000000 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .data.next 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_frame 0x00000000 0x118 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_info 0x00000000 0x431 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_abbrev 0x00000000 0x120 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_loc 0x00000000 0x3fc zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_aranges + 0x00000000 0x70 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_ranges 0x00000000 0xc0 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_line 0x00000000 0x6f2 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_str 0x00000000 0x32e zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .comment 0x00000000 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .literal.CalendarDiv61 + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.SysTimeSet + 0x00000000 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.SysTimeGet + 0x00000000 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.SysTimeGetMcuTime + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.SysTimeToMs + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.SysTimeFromMs + 0x00000000 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.SysTimeMkTime + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.SysTimeLocalTime + 0x00000000 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.CalendarDiv61 + 0x00000000 0x34 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeAdd + 0x00000000 0x24 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeSub + 0x00000000 0x23 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeSet + 0x00000000 0x33 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeGet + 0x00000000 0x3b zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeGetMcuTime + 0x00000000 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeToMs + 0x00000000 0x39 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeFromMs + 0x00000000 0x4a zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .rodata 0x00000000 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeMkTime + 0x00000000 0x86 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeLocalTime + 0x00000000 0x180 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .rodata.str1.1 + 0x00000000 0x1c zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .data.WeekDayString + 0x00000000 0x1c zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_frame 0x00000000 0x100 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_info 0x00000000 0x911 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_abbrev 0x00000000 0x2d3 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_loc 0x00000000 0x966 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_aranges + 0x00000000 0x68 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_ranges 0x00000000 0x70 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_line 0x00000000 0xe83 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_str 0x00000000 0x4ae zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .comment 0x00000000 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.TimerReset + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .literal.TimerTempCompensation + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .literal.TimerProcess + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .text.TimerSetContext + 0x00000000 0x7 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .text.TimerIsStarted + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .text.TimerReset + 0x00000000 0x16 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .text.TimerTempCompensation + 0x00000000 0x11 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .text.TimerProcess + 0x00000000 0xb zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .literal.Delay + 0x00000000 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .text.Delay 0x00000000 0x1c zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .literal.SX126xSetFs + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xSetTxInfinitePreamble + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xCalibrate + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xSetRxTxFallbackMode + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xSetDio3AsTcxoCtrl + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xSetCadParams + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xGetStatus + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xGetDeviceErrors + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xClearDeviceErrors + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xSetFs + 0x00000000 0x1a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xSetTxInfinitePreamble + 0x00000000 0x1a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xCalibrate + 0x00000000 0x4e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xSetRxTxFallbackMode + 0x00000000 0x16 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xSetDio3AsTcxoCtrl + 0x00000000 0x27 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xSetCadParams + 0x00000000 0x36 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xGetStatus + 0x00000000 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xGetDeviceErrors + 0x00000000 0x28 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xClearDeviceErrors + 0x00000000 0x16 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .text 0x00000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .data 0x00000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .text 0x00000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .data 0x00000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .text 0x00000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .data 0x00000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text 0x00000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .data 0x00000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .text 0x00000000 0x0 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .data 0x00000000 0x0 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .text 0x00000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .data 0x00000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text.sys_clock_set_timeout + 0x00000000 0x5 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text.sys_clock_idle_exit + 0x00000000 0x5 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_frame 0x00000000 0x40 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_info 0x00000000 0xda zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_abbrev 0x00000000 0x7e zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_ranges 0x00000000 0x18 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_line 0x00000000 0x1b9 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_str 0x00000000 0x27e zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .comment 0x00000000 0x20 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text 0x00000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .data 0x00000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .text.sys_clock_idle_exit + 0x00000000 0x5 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .literal.z_impl_device_init + 0x00000000 0x4 zephyr/kernel/libkernel.a(device.c.obj) + .literal.z_device_get_all_static + 0x00000000 0xc zephyr/kernel/libkernel.a(device.c.obj) + .literal.z_impl_device_get_binding + 0x00000000 0x10 zephyr/kernel/libkernel.a(device.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_impl_device_init + 0x00000000 0x1a zephyr/kernel/libkernel.a(device.c.obj) + .text.z_device_get_all_static + 0x00000000 0x19 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_impl_device_get_binding + 0x00000000 0x42 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_impl_device_deinit + 0x00000000 0x8 zephyr/kernel/libkernel.a(device.c.obj) + .literal.z_impl_z_errno + 0x00000000 0x4 zephyr/kernel/libkernel.a(errno.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(errno.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(errno.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(errno.c.obj) + .text.z_impl_z_errno + 0x00000000 0xd zephyr/kernel/libkernel.a(errno.c.obj) + .rodata._k_neg_eagain + 0x00000000 0x4 zephyr/kernel/libkernel.a(errno.c.obj) + .debug_frame 0x00000000 0x28 zephyr/kernel/libkernel.a(errno.c.obj) + .debug_info 0x00000000 0x666 zephyr/kernel/libkernel.a(errno.c.obj) + .debug_abbrev 0x00000000 0x1b1 zephyr/kernel/libkernel.a(errno.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/kernel/libkernel.a(errno.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/kernel/libkernel.a(errno.c.obj) + .debug_line 0x00000000 0x38a zephyr/kernel/libkernel.a(errno.c.obj) + .debug_str 0x00000000 0x6c3 zephyr/kernel/libkernel.a(errno.c.obj) + .comment 0x00000000 0x20 zephyr/kernel/libkernel.a(errno.c.obj) + .literal.k_fatal_halt + 0x00000000 0x4 zephyr/kernel/libkernel.a(fatal.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .text.k_fatal_halt + 0x00000000 0xc zephyr/kernel/libkernel.a(fatal.c.obj) + .literal.z_early_rand_get + 0x00000000 0x18 zephyr/kernel/libkernel.a(init.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .text.z_early_rand_get + 0x00000000 0x5b zephyr/kernel/libkernel.a(init.c.obj) + .data.state$1 0x00000000 0x8 zephyr/kernel/libkernel.a(init.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .text.arch_spin_relax + 0x00000000 0x7 zephyr/kernel/libkernel.a(idle.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .literal.z_impl_k_sem_reset + 0x00000000 0x14 zephyr/kernel/libkernel.a(sem.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .text.z_impl_k_sem_reset + 0x00000000 0x7e zephyr/kernel/libkernel.a(sem.c.obj) + .literal.unschedule_locked + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.cancel_async_locked + 0x00000000 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .literal.cancel_sync_locked + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.work_timeout + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.work_flush_locked + 0x00000000 0x10 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_flush + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_cancel + 0x00000000 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_cancel_sync + 0x00000000 0xc zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_queue_init + 0x00000000 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_queue_run + 0x00000000 0xc zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_queue_drain + 0x00000000 0xc zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_queue_unplug + 0x00000000 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_queue_stop + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_init_delayable + 0x00000000 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_delayable_busy_get + 0x00000000 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_schedule_for_queue + 0x00000000 0xc zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_schedule + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_reschedule_for_queue + 0x00000000 0x10 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_reschedule + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_cancel_delayable + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_cancel_delayable_sync + 0x00000000 0x10 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_flush_delayable + 0x00000000 0x10 zephyr/kernel/libkernel.a(work.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .text.handle_flush + 0x00000000 0x5 zephyr/kernel/libkernel.a(work.c.obj) + .text.unschedule_locked + 0x00000000 0x24 zephyr/kernel/libkernel.a(work.c.obj) + .text.cancel_async_locked + 0x00000000 0x66 zephyr/kernel/libkernel.a(work.c.obj) + .text.cancel_sync_locked + 0x00000000 0x32 zephyr/kernel/libkernel.a(work.c.obj) + .text.work_timeout + 0x00000000 0x30 zephyr/kernel/libkernel.a(work.c.obj) + .text.work_flush_locked + 0x00000000 0x77 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_busy_get + 0x00000000 0x13 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_flush + 0x00000000 0x2a zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel + 0x00000000 0x18 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_sync + 0x00000000 0x3e zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_init + 0x00000000 0x12 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_run + 0x00000000 0x50 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_drain + 0x00000000 0x59 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_unplug + 0x00000000 0x24 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_stop + 0x00000000 0x76 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_init_delayable + 0x00000000 0x19 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_delayable_busy_get + 0x00000000 0x10 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_schedule_for_queue + 0x00000000 0x4c zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_schedule + 0x00000000 0x16 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_reschedule_for_queue + 0x00000000 0x4c zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_reschedule + 0x00000000 0x16 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_delayable + 0x00000000 0x20 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_delayable_sync + 0x00000000 0x46 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_flush_delayable + 0x00000000 0x56 zephyr/kernel/libkernel.a(work.c.obj) + .literal.z_impl_k_is_preempt_thread + 0x00000000 0x4 zephyr/kernel/libkernel.a(thread.c.obj) + .literal.k_thread_state_str + 0x00000000 0x14 zephyr/kernel/libkernel.a(thread.c.obj) + .literal.k_thread_user_mode_enter + 0x00000000 0x8 zephyr/kernel/libkernel.a(thread.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_is_preempt_thread + 0x00000000 0x22 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_thread_priority_get + 0x00000000 0xb zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_thread_name_copy + 0x00000000 0x8 zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.k_thread_state_str.str1.1 + 0x00000000 0x3 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_state_str + 0x00000000 0x75 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_init_thread_base + 0x00000000 0x19 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_user_mode_enter + 0x00000000 0x28 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_get + 0x00000000 0x18 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_all_get + 0x00000000 0xe zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_cpu_get + 0x00000000 0xc zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.str1.1 + 0x00000000 0x41 zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.state_string$0 + 0x00000000 0x40 zephyr/kernel/libkernel.a(thread.c.obj) + .literal.z_requeue_current + 0x00000000 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_yield_testing_only + 0x00000000 0x4 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_impl_k_thread_suspend + 0x00000000 0x20 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_impl_k_thread_resume + 0x00000000 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_pend_thread + 0x00000000 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_swap_next_thread + 0x00000000 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_impl_k_thread_priority_set + 0x00000000 0xc zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_impl_k_reschedule + 0x00000000 0x10 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.k_can_yield + 0x00000000 0x10 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_impl_k_usleep + 0x00000000 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_impl_k_thread_join + 0x00000000 0x10 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_unready_thread + 0x00000000 0x4 zephyr/kernel/libkernel.a(sched.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_requeue_current + 0x00000000 0x47 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_yield_testing_only + 0x00000000 0x14 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_suspend + 0x00000000 0xe5 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_resume + 0x00000000 0x30 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_pend_thread + 0x00000000 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_swap_next_thread + 0x00000000 0x22 zephyr/kernel/libkernel.a(sched.c.obj) + .text.init_ready_q + 0x00000000 0xb zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_priority_set + 0x00000000 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_reschedule + 0x00000000 0x4e zephyr/kernel/libkernel.a(sched.c.obj) + .text.k_can_yield + 0x00000000 0x44 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_usleep + 0x00000000 0x30 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_join + 0x00000000 0x60 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_sched_waitq_walk + 0x00000000 0x54 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_unready_thread + 0x00000000 0x16 zephyr/kernel/libkernel.a(sched.c.obj) + .bss._sched_spinlock + 0x00000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.k_sched_time_slice_set + 0x00000000 0x10 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text.k_sched_time_slice_set + 0x00000000 0x28 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .literal.timeout_rem + 0x00000000 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .literal.z_timeout_remaining + 0x00000000 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .literal.z_timeout_expires + 0x00000000 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .literal.z_get_next_timeout_expiry + 0x00000000 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .literal.sys_timepoint_calc + 0x00000000 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + .literal.sys_timepoint_timeout + 0x00000000 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.timeout_rem + 0x00000000 0x34 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_timeout_remaining + 0x00000000 0x38 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_timeout_expires + 0x00000000 0x2c zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_get_next_timeout_expiry + 0x00000000 0x1c zephyr/kernel/libkernel.a(timeout.c.obj) + .text.sys_timepoint_calc + 0x00000000 0x46 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.sys_timepoint_timeout + 0x00000000 0x42 zephyr/kernel/libkernel.a(timeout.c.obj) + .literal.z_impl_k_timer_status_sync + 0x00000000 0x8 zephyr/kernel/libkernel.a(timer.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .text.z_impl_k_timer_status_get + 0x00000000 0x16 zephyr/kernel/libkernel.a(timer.c.obj) + .text.z_impl_k_timer_status_sync + 0x00000000 0x31 zephyr/kernel/libkernel.a(timer.c.obj) + .bss.lock 0x00000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .literal.triggered_work_handler + 0x00000000 0x4 zephyr/kernel/libkernel.a(poll.c.obj) + .literal.triggered_work_expiration_handler + 0x00000000 0x4 zephyr/kernel/libkernel.a(poll.c.obj) + .literal.k_work_poll_init + 0x00000000 0xc zephyr/kernel/libkernel.a(poll.c.obj) + .literal.k_work_poll_submit_to_queue + 0x00000000 0x1c zephyr/kernel/libkernel.a(poll.c.obj) + .literal.k_work_poll_submit + 0x00000000 0x8 zephyr/kernel/libkernel.a(poll.c.obj) + .literal.k_work_poll_cancel + 0x00000000 0x8 zephyr/kernel/libkernel.a(poll.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + .text.triggered_work_handler + 0x00000000 0x2b zephyr/kernel/libkernel.a(poll.c.obj) + .text.triggered_work_expiration_handler + 0x00000000 0x1a zephyr/kernel/libkernel.a(poll.c.obj) + .text.k_poll_event_init + 0x00000000 0x25 zephyr/kernel/libkernel.a(poll.c.obj) + .text.z_impl_k_poll_signal_init + 0x00000000 0xd zephyr/kernel/libkernel.a(poll.c.obj) + .text.z_impl_k_poll_signal_reset + 0x00000000 0x9 zephyr/kernel/libkernel.a(poll.c.obj) + .text.z_impl_k_poll_signal_check + 0x00000000 0xd zephyr/kernel/libkernel.a(poll.c.obj) + .text.k_work_poll_init + 0x00000000 0x26 zephyr/kernel/libkernel.a(poll.c.obj) + .text.k_work_poll_submit_to_queue + 0x00000000 0xdc zephyr/kernel/libkernel.a(poll.c.obj) + .text.k_work_poll_submit + 0x00000000 0x1a zephyr/kernel/libkernel.a(poll.c.obj) + .text.k_work_poll_cancel + 0x00000000 0x44 zephyr/kernel/libkernel.a(poll.c.obj) + .literal.z_thread_alloc_helper + 0x00000000 0x10 zephyr/kernel/libkernel.a(mempool.c.obj) + .literal.k_aligned_alloc + 0x00000000 0xc zephyr/kernel/libkernel.a(mempool.c.obj) + .literal.k_realloc + 0x00000000 0xc zephyr/kernel/libkernel.a(mempool.c.obj) + .literal.z_thread_aligned_alloc + 0x00000000 0x8 zephyr/kernel/libkernel.a(mempool.c.obj) + .literal.z_thread_malloc + 0x00000000 0x8 zephyr/kernel/libkernel.a(mempool.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.z_thread_alloc_helper + 0x00000000 0x2c zephyr/kernel/libkernel.a(mempool.c.obj) + .text.k_aligned_alloc + 0x00000000 0x18 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.k_realloc + 0x00000000 0x47 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.z_thread_aligned_alloc + 0x00000000 0x14 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.z_thread_malloc + 0x00000000 0x14 zephyr/kernel/libkernel.a(mempool.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(banner.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(banner.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(banner.c.obj) + .literal.z_heap_alloc_helper + 0x00000000 0xc zephyr/kernel/libkernel.a(kheap.c.obj) + .literal.k_heap_array_get + 0x00000000 0xc zephyr/kernel/libkernel.a(kheap.c.obj) + .literal.k_heap_alloc + 0x00000000 0x8 zephyr/kernel/libkernel.a(kheap.c.obj) + .literal.k_heap_aligned_alloc + 0x00000000 0x8 zephyr/kernel/libkernel.a(kheap.c.obj) + .literal.k_heap_calloc + 0x00000000 0x8 zephyr/kernel/libkernel.a(kheap.c.obj) + .literal.k_heap_realloc + 0x00000000 0x10 zephyr/kernel/libkernel.a(kheap.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.z_heap_alloc_helper + 0x00000000 0x5e zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_array_get + 0x00000000 0x19 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_alloc + 0x00000000 0x1c zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_aligned_alloc + 0x00000000 0x1c zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_calloc + 0x00000000 0x32 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_realloc + 0x00000000 0x5e zephyr/kernel/libkernel.a(kheap.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .text 0x00000000 0x18 /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/libgcc.a(_ashldi3.o) + .data 0x00000000 0x0 /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/libgcc.a(_ashldi3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_ashldi3.o) + .text 0x00000000 0x19 /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/libgcc.a(_ashrdi3.o) + .data 0x00000000 0x0 /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/libgcc.a(_ashrdi3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_ashrdi3.o) + .text 0x00000000 0x18 /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/libgcc.a(_lshrdi3.o) + .data 0x00000000 0x0 /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/libgcc.a(_lshrdi3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_lshrdi3.o) + .text 0x00000000 0x14 /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/libgcc.a(_bswapsi2.o) + .data 0x00000000 0x0 /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/libgcc.a(_bswapsi2.o) + .bss 0x00000000 0x0 /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/libgcc.a(_bswapsi2.o) + .text 0x00000000 0x22 /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/libgcc.a(_bswapdi2.o) + .data 0x00000000 0x0 /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/libgcc.a(_bswapdi2.o) + .bss 0x00000000 0x0 /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/libgcc.a(_bswapdi2.o) + .text 0x00000000 0x59 /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/libgcc.a(_divsf3.o) + .data 0x00000000 0x0 /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/libgcc.a(_divsf3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_divsf3.o) + .literal 0x00000000 0x10 /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/libgcc.a(_addsubdf3.o) + .text 0x00000000 0x312 /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/libgcc.a(_addsubdf3.o) + .data 0x00000000 0x0 /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/libgcc.a(_addsubdf3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_addsubdf3.o) + .literal 0x00000000 0xc /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/libgcc.a(_muldf3.o) + .text 0x00000000 0x1ff /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/libgcc.a(_muldf3.o) + .data 0x00000000 0x0 /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/libgcc.a(_muldf3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_muldf3.o) + .literal 0x00000000 0x10 /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/libgcc.a(_divdf3.o) + .text 0x00000000 0x213 /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/libgcc.a(_divdf3.o) + .data 0x00000000 0x0 /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/libgcc.a(_divdf3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_divdf3.o) + .literal 0x00000000 0x4 /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/libgcc.a(_fixdfdi.o) + .text 0x00000000 0x6c /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/libgcc.a(_fixdfdi.o) + .data 0x00000000 0x0 /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/libgcc.a(_fixdfdi.o) + .bss 0x00000000 0x0 /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/libgcc.a(_fixdfdi.o) + .text 0x00000000 0x3d /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/libgcc.a(_floatsidf.o) + .data 0x00000000 0x0 /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/libgcc.a(_floatsidf.o) + .bss 0x00000000 0x0 /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/libgcc.a(_floatsidf.o) + .text 0x00000000 0x81 /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/libgcc.a(_floatdidf.o) + .data 0x00000000 0x0 /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/libgcc.a(_floatdidf.o) + .bss 0x00000000 0x0 /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/libgcc.a(_floatdidf.o) + .literal 0x00000000 0x8 /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/libgcc.a(_truncdfsf2.o) + .text 0x00000000 0xa4 /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/libgcc.a(_truncdfsf2.o) + .data 0x00000000 0x0 /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/libgcc.a(_truncdfsf2.o) + .bss 0x00000000 0x0 /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/libgcc.a(_truncdfsf2.o) + .literal 0x00000000 0x8 /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/libgcc.a(_extendsfdf2.o) + .text 0x00000000 0x62 /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/libgcc.a(_extendsfdf2.o) + .data 0x00000000 0x0 /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/libgcc.a(_extendsfdf2.o) + .bss 0x00000000 0x0 /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/libgcc.a(_extendsfdf2.o) + .literal 0x00000000 0xc /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/libgcc.a(_popcountsi2.o) + .text 0x00000000 0x37 /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/libgcc.a(_popcountsi2.o) + .data 0x00000000 0x0 /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/libgcc.a(_popcountsi2.o) + .bss 0x00000000 0x0 /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/libgcc.a(_popcountsi2.o) + .debug_frame 0x00000000 0x28 /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/libgcc.a(_popcountsi2.o) + .text 0x00000000 0x26e /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/libgcc.a(_divdi3.o) + .data 0x00000000 0x0 /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/libgcc.a(_divdi3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_divdi3.o) + .text 0x00000000 0x2ea /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/libgcc.a(_moddi3.o) + .data 0x00000000 0x0 /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/libgcc.a(_moddi3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_moddi3.o) + .text 0x00000000 0x254 /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/libgcc.a(_udivdi3.o) + .data 0x00000000 0x0 /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/libgcc.a(_udivdi3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_udivdi3.o) + .text 0x00000000 0x2bb /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/libgcc.a(_umoddi3.o) + .data 0x00000000 0x0 /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/libgcc.a(_umoddi3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_umoddi3.o) + .literal 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memcpy.S.o) + .text 0x00000000 0x135 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memcpy.S.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memcpy.S.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memcpy.S.o) + .literal 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memset.S.o) + .text 0x00000000 0x74 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memset.S.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memset.S.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memset.S.o) + .literal 0x00000000 0x1c /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + .text 0x00000000 0x123 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + .literal 0x00000000 0xc /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + .text 0x00000000 0x63 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + .text.memcmp 0x00000000 0x26 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + .text.strchr 0x00000000 0x1d /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + .text.strnlen 0x00000000 0x1a /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + .text.putc 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + .text.fputs 0x00000000 0x33 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + .literal.printf + 0x00000000 0x8 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + .text.printf 0x00000000 0x2e /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + .literal.puts 0x00000000 0x4 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + .text.puts 0x00000000 0x43 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .literal.scanf_getc + 0x00000000 0x4 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .literal.skip_spaces + 0x00000000 0x8 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .literal.__l_vfscanf + 0x00000000 0x4c /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .text.scanf_getc + 0x00000000 0x1a /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .text.skip_spaces + 0x00000000 0x46 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .text.putval 0x00000000 0x32 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .rodata.__l_vfscanf.str1.1 + 0x00000000 0xc /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .text.__l_vfscanf + 0x00000000 0x456 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .debug_frame 0x00000000 0x70 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + .text.getc 0x00000000 0x96 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + .text.ungetc 0x00000000 0x7c /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + +Memory Configuration + +Name Origin Length Attributes +FLASH 0x00000000 0x007fff00 r +iram0_0_seg 0x40374000 0x00065704 xr +dram0_0_seg 0x3fc88000 0x00061704 rw +irom0_0_seg 0x42000000 0x02000000 xr +drom0_0_seg 0x3c000000 0x02000000 r +rtc_iram_seg 0x600fe000 0x00002000 xrw +rtc_slow_seg 0x50000000 0x00002000 rw +IDT_LIST 0x3ebfe010 0x00002000 rw +*default* 0x00000000 0xffffffff + +Linker script and memory map + + 0x420074f8 vfprintf = __l_vfprintf + 0x00000000 vfscanf = __l_vfscanf +LOAD zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj +LOAD zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj +LOAD zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj +LOAD app/libapp.a +LOAD zephyr/libzephyr.a +LOAD zephyr/arch/common/libarch__common.a +LOAD zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a +LOAD zephyr/lib/libc/picolibc/liblib__libc__picolibc.a +LOAD zephyr/lib/libc/common/liblib__libc__common.a +LOAD zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a +LOAD zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a +LOAD zephyr/drivers/clock_control/libdrivers__clock_control.a +LOAD zephyr/drivers/console/libdrivers__console.a +LOAD zephyr/drivers/gpio/libdrivers__gpio.a +LOAD zephyr/drivers/lora/loramac-node/libloramac-node.a +LOAD zephyr/drivers/pinctrl/libdrivers__pinctrl.a +LOAD zephyr/drivers/serial/libdrivers__serial.a +LOAD zephyr/drivers/spi/libdrivers__spi.a +LOAD zephyr/drivers/timer/libdrivers__timer.a +LOAD zephyr/kernel/libkernel.a +LOAD zephyr/arch/common/libisr_tables.a +LOAD /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/libgcc.a +LOAD /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a +LOAD /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/libgcc.a + 0x403d9704 procpu_iram_end = 0x403d9704 + 0x3fce9704 procpu_dram_end = 0x3fce9704 + 0x40374000 procpu_iram_org = 0x40374000 + 0x00065704 procpu_iram_len = (procpu_iram_end - procpu_iram_org) + 0x3fc88000 procpu_dram_org = 0x3fc88000 + 0x00061704 procpu_dram_len = (procpu_dram_end - procpu_dram_org) + 0x44000000 procpu_irom_end = 0x44000000 + 0x3e000000 procpu_drom_end = 0x3e000000 + 0x42000000 procpu_irom_org = 0x42000000 + 0x02000000 procpu_irom_len = 0x2000000 + 0x3c000000 procpu_drom_org = 0x3c000000 + 0x02000000 procpu_drom_len = 0x2000000 + 0x600fe000 rtc_iram_org = 0x600fe000 + 0x00002000 rtc_iram_len = 0x2000 + 0x50000000 rtc_slow_org = 0x50000000 + 0x00002000 rtc_slow_len = 0x2000 + 0x3fce9704 _heap_sentry = 0x3fce9704 + 0x0005334c _libc_heap_size = (_heap_sentry - _end) + 0x006f0000 _iram_dram_offset = 0x6f0000 + +.rel.plt 0x00000000 0x0 + *(SORT_BY_ALIGNMENT(.rel.plt)) + [!provide] PROVIDE (__rel_iplt_start = .) + *(SORT_BY_ALIGNMENT(.rel.iplt)) + [!provide] PROVIDE (__rel_iplt_end = .) + +.rela.plt 0x00000000 0x0 + *(SORT_BY_ALIGNMENT(.rela.plt)) + [!provide] PROVIDE (__rela_iplt_start = .) + *(SORT_BY_ALIGNMENT(.rela.iplt)) + [!provide] PROVIDE (__rela_iplt_end = .) + +.rel.dyn + *(SORT_BY_ALIGNMENT(.rel.*)) + +.rela.dyn + *(SORT_BY_ALIGNMENT(.rela.*)) + +.rtc.text 0x600fe000 0x0 load address 0x00000000 + 0x600fe000 . = ALIGN (0x4) + 0x600fe000 _rtc_text_start = ABSOLUTE (.) + 0x600fe000 _rtc_fast_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.rtc.literal) SORT_BY_ALIGNMENT(.rtc.literal.*)) + *(SORT_BY_ALIGNMENT(.rtc.text) SORT_BY_ALIGNMENT(.rtc.text.*)) + *(SORT_BY_ALIGNMENT(.rtc.entry.literal)) + *(SORT_BY_ALIGNMENT(.rtc.entry.text)) + 0x600fe000 . = ALIGN (0x4) + +.rtc.force_fast + 0x600fe000 0x0 load address 0x00000000 + 0x600fe000 . = ALIGN (0x4) + 0x600fe000 _rtc_force_fast_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.rtc.force_fast) SORT_BY_ALIGNMENT(.rtc.force_fast.*)) + 0x600fe000 . = ALIGN (0x4) + 0x600fe000 _rtc_force_fast_end = ABSOLUTE (.) + +.rtc.data 0x50000000 0x0 load address 0x00000000 + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_data_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.rtc.data) SORT_BY_ALIGNMENT(.rtc.data.*)) + *(SORT_BY_ALIGNMENT(.rtc.rodata) SORT_BY_ALIGNMENT(.rtc.rodata.*)) + 0x50000000 _rtc_data_end = ABSOLUTE (.) + +.rtc.bss 0x50000000 0x0 load address 0x00000000 + 0x50000000 _rtc_bss_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.rtc.bss) SORT_BY_ALIGNMENT(.rtc.bss.*)) + 0x50000000 _rtc_bss_end = ABSOLUTE (.) + +.rtc_noinit 0x50000000 0x0 load address 0x00000000 + 0x50000000 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.rtc_noinit) SORT_BY_ALIGNMENT(.rtc_noinit.*)) + 0x50000000 . = ALIGN (0x4) + +.rtc.force_slow + 0x50000000 0x24 load address 0x00000000 + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_force_slow_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.rtc.force_slow) SORT_BY_ALIGNMENT(.rtc.force_slow.*)) + .rtc.force_slow.3 + 0x50000000 0x24 zephyr/libzephyr.a(sleep_modes.c.obj) + 0x50000024 . = ALIGN (0x4) + 0x50000024 _rtc_force_slow_end = ABSOLUTE (.) + 0x00000024 _rtc_slow_length = (_rtc_force_slow_end - _rtc_data_start) + 0x00000000 _rtc_fast_length = (_rtc_force_fast_end - _rtc_fast_start) + +.iram0.vectors 0x40374000 0x400 load address 0x00000024 + 0x40374000 _init_start = ABSOLUTE (.) + 0x00000000 . = 0x0 + *(SORT_BY_ALIGNMENT(.WindowVectors.text)) + .WindowVectors.text + 0x40374000 0x16a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + 0x40374000 _WindowOverflow4 + 0x40374040 _WindowUnderflow4 + 0x40374050 _xt_alloca_exc + 0x40374080 _WindowOverflow8 + 0x403740c0 _WindowUnderflow8 + 0x40374100 _WindowOverflow12 + 0x40374140 _WindowUnderflow12 + 0x00000180 . = 0x180 + *fill* 0x4037416a 0x16 + *(SORT_BY_ALIGNMENT(.Level2InterruptVector.text)) + .Level2InterruptVector.text + 0x40374180 0x2d zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x40374180 _Level2Vector + 0x000001c0 . = 0x1c0 + *fill* 0x403741ad 0x13 + *(SORT_BY_ALIGNMENT(.Level3InterruptVector.text)) + .Level3InterruptVector.text + 0x403741c0 0x29 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x2d (size before relaxing) + 0x403741c0 _Level3Vector + 0x00000200 . = 0x200 + *fill* 0x403741e9 0x17 + *(SORT_BY_ALIGNMENT(.Level4InterruptVector.text)) + .Level4InterruptVector.text + 0x40374200 0x29 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x2d (size before relaxing) + 0x40374200 _Level4Vector + 0x00000240 . = 0x240 + *fill* 0x40374229 0x17 + *(SORT_BY_ALIGNMENT(.Level5InterruptVector.text)) + .Level5InterruptVector.text + 0x40374240 0x29 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x2d (size before relaxing) + 0x40374240 _Level5Vector + 0x00000280 . = 0x280 + *fill* 0x40374269 0x17 + *(SORT_BY_ALIGNMENT(.DebugExceptionVector.text)) + .DebugExceptionVector.text + 0x40374280 0x29 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x2d (size before relaxing) + 0x40374280 _Level6Vector + 0x000002c0 . = 0x2c0 + *fill* 0x403742a9 0x17 + *(SORT_BY_ALIGNMENT(.NMIExceptionVector.text)) + .NMIExceptionVector.text + 0x403742c0 0x29 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x2d (size before relaxing) + 0x403742c0 _Level7Vector + 0x00000300 . = 0x300 + *fill* 0x403742e9 0x17 + *(SORT_BY_ALIGNMENT(.KernelExceptionVector.text)) + .KernelExceptionVector.text + 0x40374300 0x3 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x40374300 _KernelExceptionVector + 0x00000340 . = 0x340 + *fill* 0x40374303 0x3d + *(SORT_BY_ALIGNMENT(.UserExceptionVector.text)) + .UserExceptionVector.text + 0x40374340 0x16 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x40374340 _Level1RealVector + 0x000003c0 . = 0x3c0 + *fill* 0x40374356 0x6a + *(SORT_BY_ALIGNMENT(.DoubleExceptionVector.text)) + .DoubleExceptionVector.text + 0x403743c0 0x3 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x403743c0 _DoubleExceptionVector + 0x00000400 . = 0x400 + *fill* 0x403743c3 0x3d + 0x40374400 _invalid_pc_placeholder = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.*Vector.literal)) + *(SORT_BY_ALIGNMENT(.UserEnter.literal)) + *(SORT_BY_ALIGNMENT(.UserEnter.text)) + 0x40374400 . = ALIGN (0x10) + *(SORT_BY_ALIGNMENT(.entry.text)) + *(SORT_BY_ALIGNMENT(.init.literal)) + *(.init) + 0x40374400 _init_end = ABSOLUTE (.) + 0x40374400 _iram_start = ABSOLUTE (.) + +.iram0.text 0x40374400 0xac6c load address 0x00000424 + 0x40374400 _iram_text_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.iram1) SORT_BY_ALIGNMENT(.iram1.*)) + .iram1.1.literal + 0x40374400 0xc zephyr/libzephyr.a(soc.c.obj) + 0x1c (size before relaxing) + .iram1.3.literal + 0x4037440c 0x4 zephyr/libzephyr.a(soc.c.obj) + 0x8 (size before relaxing) + .iram1.3.literal + 0x40374410 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .iram1.1.literal + 0x40374414 0x4 zephyr/libzephyr.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .iram1.2.literal + 0x40374418 0x4 zephyr/libzephyr.a(flash_ops.c.obj) + .iram1.4.literal + 0x4037441c 0x4 zephyr/libzephyr.a(flash_ops.c.obj) + 0xc (size before relaxing) + .iram1.5.literal + 0x40374420 0x0 zephyr/libzephyr.a(flash_ops.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x40374420 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x40374420 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x40374420 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x40374420 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x40374420 0x4 zephyr/libzephyr.a(cache_utils.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x40374424 0x0 zephyr/libzephyr.a(cache_utils.c.obj) + 0xc (size before relaxing) + .iram1.8.literal + 0x40374424 0x1c zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.9.literal + 0x40374440 0xc zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.3.literal + 0x4037444c 0x8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.4.literal + 0x40374454 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x8 (size before relaxing) + .iram1.3.literal + 0x40374454 0xc zephyr/libzephyr.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x40374460 0xc zephyr/libzephyr.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .iram1.4.literal + 0x4037446c 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .iram1.2.literal + 0x40374470 0x18 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x2c (size before relaxing) + .iram1.1.literal + 0x40374488 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x40374488 0x8 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .iram1.1.literal + 0x40374490 0x0 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x8 (size before relaxing) + .iram1.6.literal + 0x40374490 0x10 zephyr/libzephyr.a(rtc_module.c.obj) + .iram1.7.literal + 0x403744a0 0x0 zephyr/libzephyr.a(rtc_module.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x403744a0 0x4 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.0.literal + 0x403744a4 0x4 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .iram1.0.literal + 0x403744a8 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.1.literal + 0x403744ac 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x403744ac 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x403744ac 0x1c zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x24 (size before relaxing) + .iram1.2.literal + 0x403744c8 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x403744c8 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x3c (size before relaxing) + .iram1.3.literal + 0x403744cc 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x403744cc 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x8 (size before relaxing) + .iram1.6.literal + 0x403744d0 0xc zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x40 (size before relaxing) + .iram1.8.literal + 0x403744dc 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x403744dc 0xc zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .iram1.4.literal + 0x403744e8 0xc zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x18 (size before relaxing) + .iram1.5.literal + 0x403744f4 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x10 (size before relaxing) + .iram1.2.literal + 0x403744f4 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x403744fc 0x48 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x5c (size before relaxing) + .iram1.0.literal + 0x40374544 0x4 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .iram1.0.literal + 0x40374548 0x40 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x78 (size before relaxing) + .literal.xtensa_exccause + 0x40374588 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .literal.xtensa_fatal_error + 0x40374590 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + 0x8 (size before relaxing) + .literal 0x40374590 0x4 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x8 (size before relaxing) + .literal.z_irq_spurious + 0x40374594 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + 0x10 (size before relaxing) + .literal.arch_new_thread + 0x4037459c 0xc zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .literal.xtensa_handle_irq_lvl + 0x403745a8 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .literal.return_to + 0x403745b0 0x4 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.z_log_msg_static_create$constprop$0 + 0x403745b4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x4 (size before relaxing) + .literal.xtensa_dump_stack$part$0 + 0x403745b4 0x1c zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x3c (size before relaxing) + .literal.xtensa_is_outside_stack_bounds + 0x403745d0 0x4 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_is_frame_pointer_valid + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_dump_stack + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_int2_c + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_int3_c + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_int4_c + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_int5_c + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_int6_c + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_int7_c + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_excint1_c + 0x403745d4 0x28 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x64 (size before relaxing) + .literal.z_prep_c + 0x403745fc 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + 0x8 (size before relaxing) + .literal.z_isr_install + 0x403745fc 0x0 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + 0x8 (size before relaxing) + .literal.arch_irq_connect_dynamic + 0x403745fc 0x0 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + 0x4 (size before relaxing) + .literal.arch_early_memset + 0x403745fc 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x4 (size before relaxing) + .literal.arch_bss_zero + 0x403745fc 0x8 zephyr/arch/common/libarch__common.a(init.c.obj) + 0xc (size before relaxing) + .literal.z_impl_k_busy_wait + 0x40374604 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + 0x8 (size before relaxing) + .literal.k_sys_fatal_error_handler + 0x40374604 0x4 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x14 (size before relaxing) + .literal.z_fatal_error + 0x40374608 0x18 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x38 (size before relaxing) + .literal.z_sys_init_run_level + 0x40374620 0x4 zephyr/kernel/libkernel.a(init.c.obj) + 0x8 (size before relaxing) + .literal.bg_thread_main + 0x40374624 0x14 zephyr/kernel/libkernel.a(init.c.obj) + 0x38 (size before relaxing) + .literal.z_init_cpu + 0x40374638 0xc zephyr/kernel/libkernel.a(init.c.obj) + 0x18 (size before relaxing) + .literal.z_cstart + 0x40374644 0x10 zephyr/kernel/libkernel.a(init.c.obj) + 0x44 (size before relaxing) + .literal.idle 0x40374654 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + 0x4 (size before relaxing) + .literal.adjust_owner_prio$isra$0 + 0x40374654 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x4 (size before relaxing) + .literal.z_impl_k_mutex_lock + 0x40374654 0x4 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x18 (size before relaxing) + .literal.z_impl_k_mutex_unlock + 0x40374658 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x18 (size before relaxing) + .literal.z_impl_k_sem_give + 0x40374658 0x4 zephyr/kernel/libkernel.a(sem.c.obj) + 0x14 (size before relaxing) + .literal.z_impl_k_sem_take + 0x4037465c 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + 0x8 (size before relaxing) + .literal.notify_queue_locked$isra$0 + 0x4037465c 0x0 zephyr/kernel/libkernel.a(work.c.obj) + 0x4 (size before relaxing) + .literal.work_queue_main + 0x4037465c 0x8 zephyr/kernel/libkernel.a(work.c.obj) + 0x20 (size before relaxing) + .literal.submit_to_queue_locked + 0x40374664 0x0 zephyr/kernel/libkernel.a(work.c.obj) + 0xc (size before relaxing) + .literal.k_work_init + 0x40374664 0x0 zephyr/kernel/libkernel.a(work.c.obj) + 0x4 (size before relaxing) + .literal.z_work_submit_to_queue + 0x40374664 0x0 zephyr/kernel/libkernel.a(work.c.obj) + 0x4 (size before relaxing) + .literal.k_work_submit_to_queue + 0x40374664 0x0 zephyr/kernel/libkernel.a(work.c.obj) + 0x8 (size before relaxing) + .literal.k_work_submit + 0x40374664 0x4 zephyr/kernel/libkernel.a(work.c.obj) + 0x8 (size before relaxing) + .literal.k_work_queue_start + 0x40374668 0x4 zephyr/kernel/libkernel.a(work.c.obj) + 0x10 (size before relaxing) + .literal.z_setup_new_thread + 0x4037466c 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + 0x8 (size before relaxing) + .literal.z_impl_k_thread_create + 0x4037466c 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + 0x10 (size before relaxing) + .literal.z_dummy_thread_init + 0x4037466c 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + 0x8 (size before relaxing) + .literal.unpend_thread_no_timeout + 0x4037466c 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.ready_thread + 0x4037466c 0x4 zephyr/kernel/libkernel.a(sched.c.obj) + 0xc (size before relaxing) + .literal.unready_thread + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x10 (size before relaxing) + .literal.add_thread_timeout + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.z_swap$isra$0 + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0xc (size before relaxing) + .literal.reschedule$isra$0 + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.add_to_waitq_locked + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.move_current_to_end_of_prio_q + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0xc (size before relaxing) + .literal.z_ready_thread + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_unpend_thread_no_timeout + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_sched_wake_thread_locked + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.z_thread_timeout + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_pend_curr + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x10 (size before relaxing) + .literal.z_unpend1_no_timeout + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_unpend_thread + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.z_thread_prio_set + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x14 (size before relaxing) + .literal.z_reschedule + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_reschedule_irqlock + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0xc (size before relaxing) + .literal.k_sched_lock + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.k_sched_unlock + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x10 (size before relaxing) + .literal.z_get_next_switch_handle + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_unpend_all + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.z_sched_init + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.z_impl_k_yield + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x10 (size before relaxing) + .literal.z_tick_sleep + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x1c (size before relaxing) + .literal.z_impl_k_sleep + 0x40374670 0x4 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.z_impl_k_wakeup + 0x40374674 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0xc (size before relaxing) + .literal.z_impl_k_sched_current_thread_query + 0x40374674 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_thread_abort + 0x40374674 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x38 (size before relaxing) + .literal.z_impl_k_thread_abort + 0x40374674 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_sched_wake + 0x40374674 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0xc (size before relaxing) + .literal.z_sched_wait + 0x40374674 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.z_time_slice_size + 0x40374674 0x8 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0xc (size before relaxing) + .literal.slice_timeout + 0x4037467c 0xc zephyr/kernel/libkernel.a(timeslicing.c.obj) + .literal.z_reset_time_slice + 0x40374688 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x1c (size before relaxing) + .literal.z_time_slice + 0x4037468c 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x14 (size before relaxing) + .literal.first + 0x4037468c 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + .literal.next_timeout + 0x40374690 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x4 (size before relaxing) + .literal.elapsed + 0x40374690 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x8 (size before relaxing) + .literal.remove_timeout + 0x40374694 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x4 (size before relaxing) + .literal.z_add_timeout + 0x40374694 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x24 (size before relaxing) + .literal.z_abort_timeout + 0x40374698 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x14 (size before relaxing) + .literal.sys_clock_announce + 0x40374698 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x20 (size before relaxing) + .literal.sys_clock_tick_get + 0x40374698 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x8 (size before relaxing) + .literal.sys_clock_tick_get_32 + 0x40374698 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x4 (size before relaxing) + .literal.z_impl_k_uptime_ticks + 0x40374698 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x4 (size before relaxing) + .literal.z_timer_expiration_handler + 0x40374698 0x4 zephyr/kernel/libkernel.a(timer.c.obj) + 0x1c (size before relaxing) + .literal.z_impl_k_timer_start + 0x4037469c 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + 0xc (size before relaxing) + .literal.z_impl_k_timer_stop + 0x4037469c 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + 0x10 (size before relaxing) + .literal.clear_event_registrations + 0x4037469c 0x4 zephyr/kernel/libkernel.a(poll.c.obj) + .literal.register_events + 0x403746a0 0x4 zephyr/kernel/libkernel.a(poll.c.obj) + 0x8 (size before relaxing) + .literal.signal_poll_event$isra$0 + 0x403746a4 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + 0x14 (size before relaxing) + .literal.z_impl_k_poll + 0x403746a4 0x8 zephyr/kernel/libkernel.a(poll.c.obj) + 0x1c (size before relaxing) + .literal.z_handle_obj_poll_events + 0x403746ac 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + 0x4 (size before relaxing) + .literal.z_impl_k_poll_signal_raise + 0x403746ac 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + 0xc (size before relaxing) + .literal.k_free + 0x403746ac 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x4 (size before relaxing) + .literal.k_malloc + 0x403746ac 0x8 zephyr/kernel/libkernel.a(mempool.c.obj) + 0xc (size before relaxing) + .literal.k_calloc + 0x403746b4 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x8 (size before relaxing) + .literal.k_thread_system_pool_assign + 0x403746b4 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x4 (size before relaxing) + .literal.boot_banner + 0x403746b4 0x4 zephyr/kernel/libkernel.a(banner.c.obj) + 0x8 (size before relaxing) + .literal.k_heap_init + 0x403746b8 0x4 zephyr/kernel/libkernel.a(kheap.c.obj) + .literal.statics_init + 0x403746bc 0x8 zephyr/kernel/libkernel.a(kheap.c.obj) + 0xc (size before relaxing) + .literal.k_heap_free + 0x403746c4 0x4 zephyr/kernel/libkernel.a(kheap.c.obj) + 0xc (size before relaxing) + .literal.k_sys_work_q_init + 0x403746c8 0x8 zephyr/kernel/libkernel.a(system_work_q.c.obj) + 0x10 (size before relaxing) + .literal.cbvprintf_package + 0x403746d0 0x14 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x1c (size before relaxing) + .literal.cbpprintf_external + 0x403746e4 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x4 (size before relaxing) + .literal.cbprintf_package_convert + 0x403746e4 0x8 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x34 (size before relaxing) + .literal.ccompare_isr + 0x403746ec 0x8 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0xc (size before relaxing) + .literal.sys_clock_set_timeout + 0x403746f4 0x8 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x10 (size before relaxing) + .literal.sys_clock_elapsed + 0x403746fc 0x0 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x8 (size before relaxing) + .literal.activate_foreach_backend + 0x403746fc 0x8 zephyr/libzephyr.a(log_core.c.obj) + .literal.enable_logger + 0x40374704 0x18 zephyr/libzephyr.a(log_core.c.obj) + 0x24 (size before relaxing) + .literal.default_lf_get_timestamp + 0x4037471c 0x0 zephyr/libzephyr.a(log_core.c.obj) + 0x8 (size before relaxing) + .literal.log_process_thread_timer_expiry_fn + 0x4037471c 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x8 (size before relaxing) + .literal.z_log_init + 0x40374720 0x8 zephyr/libzephyr.a(log_core.c.obj) + 0x1c (size before relaxing) + .literal.log_format_func_t_get + 0x40374728 0x4 zephyr/libzephyr.a(log_core.c.obj) + .literal.z_log_vprintk + 0x4037472c 0x0 zephyr/libzephyr.a(log_core.c.obj) + 0x4 (size before relaxing) + .literal.log_set_timestamp_func + 0x4037472c 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x8 (size before relaxing) + .literal.z_log_notify_backend_enabled + 0x40374730 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0xc (size before relaxing) + .literal.z_log_dropped + 0x40374734 0x8 zephyr/libzephyr.a(log_core.c.obj) + 0x1c (size before relaxing) + .literal.z_log_notify_drop + 0x4037473c 0x0 zephyr/libzephyr.a(log_core.c.obj) + 0x4 (size before relaxing) + .literal.z_log_dropped_read_and_clear + 0x4037473c 0x0 zephyr/libzephyr.a(log_core.c.obj) + 0x4 (size before relaxing) + .literal.dropped_notify + 0x4037473c 0x0 zephyr/libzephyr.a(log_core.c.obj) + 0xc (size before relaxing) + .literal.z_log_msg_init + 0x4037473c 0x10 zephyr/libzephyr.a(log_core.c.obj) + .literal.log_core_init + 0x4037474c 0x8 zephyr/libzephyr.a(log_core.c.obj) + 0x20 (size before relaxing) + .literal.z_log_msg_alloc + 0x40374754 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x8 (size before relaxing) + .literal.z_log_msg_local_claim + 0x40374758 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x8 (size before relaxing) + .literal.z_log_msg_free + 0x4037475c 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x8 (size before relaxing) + .literal.z_log_msg_pending + 0x40374760 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x8 (size before relaxing) + .literal.z_impl_log_process + 0x40374764 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x30 (size before relaxing) + .literal.z_impl_log_panic + 0x40374768 0x0 zephyr/libzephyr.a(log_core.c.obj) + 0x14 (size before relaxing) + .literal.log_process_thread_func + 0x40374768 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x2c (size before relaxing) + .literal.z_log_msg_post_finalize + 0x4037476c 0x0 zephyr/libzephyr.a(log_core.c.obj) + 0x28 (size before relaxing) + .literal.z_log_msg_commit + 0x4037476c 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x10 (size before relaxing) + .literal.printk + 0x40374770 0x0 zephyr/libzephyr.a(printk.c.obj) + 0x4 (size before relaxing) + .literal.z_cbprintf_cpy + 0x40374770 0x0 zephyr/libzephyr.a(log_msg.c.obj) + 0x4 (size before relaxing) + .literal.z_log_msg_finalize + 0x40374770 0x0 zephyr/libzephyr.a(log_msg.c.obj) + 0xc (size before relaxing) + .literal.z_log_msg_simple_create + 0x40374770 0x0 zephyr/libzephyr.a(log_msg.c.obj) + 0xc (size before relaxing) + .literal.z_impl_z_log_msg_simple_create_0 + 0x40374770 0x0 zephyr/libzephyr.a(log_msg.c.obj) + 0x4 (size before relaxing) + .literal.z_impl_z_log_msg_simple_create_1 + 0x40374770 0x0 zephyr/libzephyr.a(log_msg.c.obj) + 0x4 (size before relaxing) + .literal.z_impl_z_log_msg_static_create + 0x40374770 0x10 zephyr/libzephyr.a(log_msg.c.obj) + 0x28 (size before relaxing) + .literal.z_log_msg_runtime_vcreate + 0x40374780 0x4 zephyr/libzephyr.a(log_msg.c.obj) + 0x1c (size before relaxing) + .literal.log_msg_get_source_id + 0x40374784 0x4 zephyr/libzephyr.a(log_msg.c.obj) + .literal.console_out + 0x40374788 0x4 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .literal.log_output_flush + 0x4037478c 0x0 zephyr/libzephyr.a(log_output.c.obj) + 0x4 (size before relaxing) + .literal.print_formatted + 0x4037478c 0x8 zephyr/libzephyr.a(log_output.c.obj) + .literal.newline_print + 0x40374794 0x8 zephyr/libzephyr.a(log_output.c.obj) + 0xc (size before relaxing) + .literal.out_func + 0x4037479c 0x0 zephyr/libzephyr.a(log_output.c.obj) + 0x4 (size before relaxing) + .literal.cr_out_func + 0x4037479c 0x0 zephyr/libzephyr.a(log_output.c.obj) + 0x8 (size before relaxing) + .literal.log_output_process + 0x4037479c 0x50 zephyr/libzephyr.a(log_output.c.obj) + 0xac (size before relaxing) + .literal.log_output_msg_process + 0x403747ec 0x4 zephyr/libzephyr.a(log_output.c.obj) + 0xc (size before relaxing) + .literal.log_output_dropped_process + 0x403747f0 0x10 zephyr/libzephyr.a(log_output.c.obj) + 0x1c (size before relaxing) + .literal.log_output_timestamp_freq_set + 0x40374800 0x0 zephyr/libzephyr.a(log_output.c.obj) + 0x8 (size before relaxing) + .literal.dropped + 0x40374800 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x4 (size before relaxing) + .literal.process + 0x40374800 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x4 (size before relaxing) + .literal.char_out + 0x40374800 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x4 (size before relaxing) + .literal.map_rom_segments + 0x40374800 0x54 zephyr/libzephyr.a(loader.c.obj) + 0x84 (size before relaxing) + .literal.__start + 0x40374854 0x18 zephyr/libzephyr.a(loader.c.obj) + 0x44 (size before relaxing) + .literal.flash_is_octal_mode_enabled + 0x4037486c 0x0 zephyr/libzephyr.a(flash_init.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_config + 0x4037486c 0x8 zephyr/libzephyr.a(flash_init.c.obj) + 0x28 (size before relaxing) + .literal.configure_spi_pins + 0x40374874 0xc zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x20 (size before relaxing) + .literal.flash_set_dummy_out + 0x40374880 0xc zephyr/libzephyr.a(soc_flash_init.c.obj) + .literal.flash_dummy_config + 0x4037488c 0x0 zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x8 (size before relaxing) + .literal.flash_cs_timing_config + 0x4037488c 0xc zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x10 (size before relaxing) + .literal.init_spi_flash + 0x40374898 0x3c zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x6c (size before relaxing) + .literal.flash_update_id + 0x403748d4 0x0 zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x8 (size before relaxing) + .literal.esp_console_init + 0x403748d4 0x4 zephyr/libzephyr.a(console_init.c.obj) + 0x10 (size before relaxing) + .literal.print_banner + 0x403748d8 0x10 zephyr/libzephyr.a(soc_init.c.obj) + 0x1c (size before relaxing) + .literal.read_bootloader_header + 0x403748e8 0x4 zephyr/libzephyr.a(soc_init.c.obj) + 0x14 (size before relaxing) + .literal.config_wdt + 0x403748ec 0x4 zephyr/libzephyr.a(soc_init.c.obj) + 0x24 (size before relaxing) + .literal.check_bootloader_validity + 0x403748f0 0x10 zephyr/libzephyr.a(soc_init.c.obj) + 0x2c (size before relaxing) + .literal.ana_super_wdt_reset_config + 0x40374900 0xc zephyr/libzephyr.a(soc_init.c.obj) + .literal.ana_clock_glitch_reset_config + 0x4037490c 0x8 zephyr/libzephyr.a(soc_init.c.obj) + 0xc (size before relaxing) + .literal.ana_reset_config + 0x40374914 0x0 zephyr/libzephyr.a(soc_init.c.obj) + 0xc (size before relaxing) + .literal.super_wdt_auto_feed + 0x40374914 0x8 zephyr/libzephyr.a(soc_init.c.obj) + 0xc (size before relaxing) + .literal.wdt_reset_info_dump + 0x4037491c 0x28 zephyr/libzephyr.a(soc_init.c.obj) + 0x2c (size before relaxing) + .literal.wdt_reset_cpu0_info_enable + 0x40374944 0x10 zephyr/libzephyr.a(soc_init.c.obj) + .literal.check_wdt_reset + 0x40374954 0x8 zephyr/libzephyr.a(soc_init.c.obj) + 0x18 (size before relaxing) + .literal.bootloader_clock_configure + 0x4037495c 0x10 zephyr/libzephyr.a(soc_init.c.obj) + 0x24 (size before relaxing) + .literal.hardware_init + 0x4037496c 0xc zephyr/libzephyr.a(hw_init.c.obj) + 0x4c (size before relaxing) + .literal.soc_random_enable + 0x40374978 0x2c zephyr/libzephyr.a(soc_random.c.obj) + 0x44 (size before relaxing) + .literal.soc_random_disable + 0x403749a4 0x8 zephyr/libzephyr.a(soc_random.c.obj) + 0x2c (size before relaxing) + .literal.s_get_bus_mask + 0x403749ac 0x0 zephyr/libzephyr.a(esp_mmu_map.c.obj) + 0x8 (size before relaxing) + .literal.esp_mmu_map_init + 0x403749ac 0x20 zephyr/libzephyr.a(esp_mmu_map.c.obj) + 0x3c (size before relaxing) + .literal.esp_rom_flash_read + 0x403749cc 0x1c zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x38 (size before relaxing) + .literal.bootloader_enable_wp + 0x403749e8 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .literal.mmu_hal_ctx_init + 0x403749e8 0x4 zephyr/libzephyr.a(mmu_hal.c.obj) + .literal.mmu_hal_unmap_all + 0x403749ec 0x8 zephyr/libzephyr.a(mmu_hal.c.obj) + 0xc (size before relaxing) + .literal.mmu_hal_paddr_to_vaddr + 0x403749f4 0x0 zephyr/libzephyr.a(mmu_hal.c.obj) + 0x4 (size before relaxing) + .literal.mmu_hal_map_region + 0x403749f4 0x4 zephyr/libzephyr.a(mmu_hal.c.obj) + .literal.spi_flash_hal_configure_host_io_mode + 0x403749f8 0x8 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_hal_common_command + 0x40374a00 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_hal_read + 0x40374a00 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_program_page + 0x40374a00 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_setup_read_suspend + 0x40374a00 0x4 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_setup_auto_suspend_mode + 0x40374a04 0x10 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_hal_disable_auto_suspend_mode + 0x40374a14 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_device_config + 0x40374a14 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_encryption_hal_enable + 0x40374a14 0x8 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.spi_flash_encryption_hal_disable + 0x40374a1c 0x0 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_encryption_hal_prepare + 0x40374a1c 0x10 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_encryption_hal_done + 0x40374a2c 0x8 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.spi_flash_encryption_hal_destroy + 0x40374a34 0x4 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.cache_hal_vaddr_to_cache_level_id$part$0 + 0x40374a38 0x8 zephyr/libzephyr.a(cache_hal.c.obj) + .literal.cache_hal_disable + 0x40374a40 0x8 zephyr/libzephyr.a(cache_hal.c.obj) + 0xc (size before relaxing) + .literal.cache_hal_enable + 0x40374a48 0x8 zephyr/libzephyr.a(cache_hal.c.obj) + 0x10 (size before relaxing) + .literal.cache_hal_suspend + 0x40374a50 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + 0xc (size before relaxing) + .literal.cache_hal_resume + 0x40374a50 0x8 zephyr/libzephyr.a(cache_hal.c.obj) + 0x10 (size before relaxing) + .literal.cache_hal_vaddr_to_cache_level_id + 0x40374a58 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + 0x4 (size before relaxing) + .literal.cache_hal_invalidate_addr + 0x40374a58 0x4 zephyr/libzephyr.a(cache_hal.c.obj) + 0x8 (size before relaxing) + .literal.cache_hal_writeback_addr + 0x40374a5c 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + 0x8 (size before relaxing) + .literal.cache_hal_freeze + 0x40374a5c 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + 0xc (size before relaxing) + .literal.cache_hal_unfreeze + 0x40374a5c 0x8 zephyr/libzephyr.a(cache_hal.c.obj) + 0xc (size before relaxing) + .literal.cache_hal_get_cache_line_size + 0x40374a64 0x8 zephyr/libzephyr.a(cache_hal.c.obj) + .literal.wdt_hal_write_protect_disable + 0x40374a6c 0x4 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .literal.systimer_hal_init + 0x40374a70 0x4 zephyr/libzephyr.a(systimer_hal.c.obj) + .literal.systimer_hal_select_alarm_mode + 0x40374a74 0x0 zephyr/libzephyr.a(systimer_hal.c.obj) + 0x4 (size before relaxing) + .literal.gpspi_flash_ll_get_buffer_data + 0x40374a74 0x0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_gpspi_device_config + 0x40374a74 0x8 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_gpspi_configure_host_io_mode + 0x40374a7c 0x8 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_hal_gpspi_common_command + 0x40374a84 0x0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_hal_gpspi_read + 0x40374a84 0x0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_gd_suspend_cmd_conf + 0x40374a84 0x4 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .literal.spi_flash_chip_gd_get_io_mode + 0x40374a88 0x0 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_gd_set_io_mode + 0x40374a88 0x10 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_chip_generic_reset + 0x40374a98 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_config_host_io_mode + 0x40374a98 0xc zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .literal.spi_flash_chip_generic_get_caps + 0x40374aa4 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_suspend_cmd_conf + 0x40374aa4 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_read + 0x40374aa4 0x8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_chip_generic_write + 0x40374aac 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_get_write_protect + 0x40374aac 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_yield + 0x40374aac 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_read_unique_id + 0x40374aac 0x8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_chip_generic_write_encrypted + 0x40374ab4 0x8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .literal.spi_flash_common_read_qe_sr$constprop$0$isra$0 + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_common_write_qe_sr$isra$0 + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_write_status_16b_wrsr + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_erase_block + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_erase_sector + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_page_program + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_read_status_8b_rdsr2 + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_get_io_mode + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_read_status_8b_rdsr + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_write_status_8b_wrsr + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_write_status_8b_wrsr2 + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_set_io_mode + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_set_io_mode + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_issi_set_io_mode + 0x40374abc 0x8 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_issi_get_io_mode + 0x40374ac4 0x0 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_set_write_protect + 0x40374ac4 0x8 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_mxic_opi_erase_chip + 0x40374acc 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_erase_sector + 0x40374acc 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_erase_block + 0x40374acc 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_read_id + 0x40374acc 0x8 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_get_write_protect + 0x40374ad4 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_write + 0x40374ad4 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_page_program + 0x40374ad4 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_get_io_mode + 0x40374ad4 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_read_reg + 0x40374ad4 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_winbond_suspend_cmd_conf + 0x40374ad4 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_read + 0x40374ad4 0x8 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_chip_winbond_erase_block + 0x40374adc 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_erase_sector + 0x40374adc 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_page_program + 0x40374adc 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.memspi_host_read_status_hs + 0x40374adc 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4 (size before relaxing) + .literal.memspi_host_erase_chip + 0x40374adc 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4 (size before relaxing) + .literal.memspi_host_set_write_protect + 0x40374adc 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4 (size before relaxing) + .literal.memspi_host_read_id_hs + 0x40374adc 0x8 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x10 (size before relaxing) + .literal.memspi_host_flush_cache + 0x40374ae4 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_erase_sector + 0x40374ae4 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_erase_block + 0x40374ae4 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_program_page + 0x40374ae4 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_init_pointers + 0x40374ae4 0xc zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x14 (size before relaxing) + .literal.s_probe_mxic_chip + 0x40374af0 0x8 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0xc (size before relaxing) + .literal.s_mxic_set_required_regs + 0x40374af8 0x4 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0x8 (size before relaxing) + .literal.s_flash_init_mxic + 0x40374afc 0x20 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0x48 (size before relaxing) + .literal.esp_opiflash_init + 0x40374b1c 0x18 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0x24 (size before relaxing) + .literal.get_buffer_malloc + 0x40374b34 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_os_check_yield + 0x40374b34 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.release_buffer_malloc + 0x40374b34 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.delay_us + 0x40374b34 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_os_yield + 0x40374b34 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_app_enable_os_functions + 0x40374b34 0x8 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0xc (size before relaxing) + .literal.delay_us + 0x40374b3c 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + 0x4 (size before relaxing) + .literal.check_chip_pointer_default + 0x40374b3c 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.flash_end_flush_cache + 0x40374b3c 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.detect_spi_flash_chip + 0x40374b3c 0xc zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x14 (size before relaxing) + .literal.spiflash_start_default + 0x40374b48 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_read_chip_id + 0x40374b48 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_get_physical_size + 0x40374b48 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_is_quad_mode + 0x40374b48 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_init_main + 0x40374b48 0x14 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x40 (size before relaxing) + .literal.rtc_clk_32k_enable + 0x40374b5c 0x1c zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enable_external + 0x40374b78 0x8 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_8m_enable + 0x40374b80 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_slow_src_set + 0x40374b84 0xc zephyr/libzephyr.a(rtc_clk.c.obj) + 0x18 (size before relaxing) + .literal.rtc_clk_slow_src_get + 0x40374b90 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_fast_src_set + 0x40374b90 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_cpu_freq_mhz_to_config + 0x40374b90 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_xtal_freq_update + 0x40374b90 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_pll_mhz + 0x40374b94 0x10 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x50 (size before relaxing) + .literal.rtc_clk_cpu_freq_set_config + 0x40374ba4 0x10 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x50 (size before relaxing) + .literal.rtc_clk_cpu_freq_set_xtal + 0x40374bb4 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_divider_set + 0x40374bb4 0xc zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_8m_divider_set + 0x40374bc0 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_sleep_pu + 0x40374bc0 0x20 zephyr/libzephyr.a(rtc_sleep.c.obj) + .literal.rtc_clk_cal_internal + 0x40374be0 0x1c zephyr/libzephyr.a(rtc_time.c.obj) + 0x38 (size before relaxing) + .literal.rtc_clk_cal + 0x40374bfc 0x0 zephyr/libzephyr.a(rtc_time.c.obj) + 0x14 (size before relaxing) + .literal.rtc_time_us_to_slowclk + 0x40374bfc 0x4 zephyr/libzephyr.a(rtc_time.c.obj) + 0x14 (size before relaxing) + .literal.rtc_time_get + 0x40374c00 0xc zephyr/libzephyr.a(rtc_time.c.obj) + .literal.rtc_clk_freq_cal + 0x40374c0c 0x0 zephyr/libzephyr.a(rtc_time.c.obj) + 0x4 (size before relaxing) + .literal.mspi_timing_config_set_flash_clock + 0x40374c0c 0xc zephyr/libzephyr.a(mspi_timing_config.c.obj) + 0x10 (size before relaxing) + .literal.mspi_timing_config_set_psram_clock + 0x40374c18 0x4 zephyr/libzephyr.a(mspi_timing_config.c.obj) + 0xc (size before relaxing) + .literal.mspi_timing_enter_low_speed_mode + 0x40374c1c 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x8 (size before relaxing) + .literal.mspi_timing_enter_high_speed_mode + 0x40374c1c 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x4 (size before relaxing) + .literal.mspi_timing_change_speed_mode_cache_safe + 0x40374c1c 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x10 (size before relaxing) + .literal.spi_timing_get_flash_timing_param + 0x40374c1c 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x4 (size before relaxing) + .literal.mspi_timing_set_pin_drive_strength + 0x40374c1c 0x4 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0xc (size before relaxing) + .literal.regi2c_ctrl_read_reg_mask + 0x40374c20 0x4 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .literal.regi2c_ctrl_write_reg + 0x40374c24 0x4 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .literal.regi2c_ctrl_write_reg_mask + 0x40374c28 0x4 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .literal.regi2c_saradc_enable + 0x40374c2c 0x8 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x18 (size before relaxing) + .literal.regi2c_saradc_disable + 0x40374c34 0x0 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x14 (size before relaxing) + .literal.Cache_Suspend_ICache + 0x40374c34 0x8 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .literal.Cache_Suspend_DCache + 0x40374c3c 0x4 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x8 (size before relaxing) + .literal.Cache_Freeze_ICache_Enable + 0x40374c40 0x4 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x8 (size before relaxing) + .literal.Cache_Freeze_DCache_Enable + 0x40374c44 0x4 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x8 (size before relaxing) + .literal.Cache_WriteBack_Addr + 0x40374c48 0x10 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x18 (size before relaxing) + .literal.esp_rom_opiflash_cache_mode_config + 0x40374c58 0x14 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + 0x24 (size before relaxing) + .literal.esp_rom_install_channel_putc + 0x40374c6c 0x10 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .literal.esp_cache_suspend_ext_mem_cache + 0x40374c7c 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_resume_ext_mem_cache + 0x40374c7c 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_freeze_ext_mem_cache + 0x40374c7c 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_unfreeze_ext_mem_cache + 0x40374c7c 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_sync_ops_enter_critical_section + 0x40374c7c 0x4 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .literal.esp_cache_sync_ops_exit_critical_section + 0x40374c80 0x0 zephyr/libzephyr.a(esp_cache_msync.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_msync + 0x40374c80 0x20 zephyr/libzephyr.a(esp_cache_msync.c.obj) + 0x40 (size before relaxing) + .iram1.1 0x40374ca0 0x4b zephyr/libzephyr.a(soc.c.obj) + 0x57 (size before relaxing) + 0x40374ca0 __esp_platform_app_start + *fill* 0x40374ceb 0x1 + .iram1.3 0x40374cec 0x1b zephyr/libzephyr.a(soc.c.obj) + 0x40374cec arch_printk_char_out + *fill* 0x40374d07 0x1 + .iram1.3 0x40374d08 0x62 zephyr/libzephyr.a(esp_flash_api.c.obj) + *fill* 0x40374d6a 0x2 + .iram1.1 0x40374d6c 0x7d zephyr/libzephyr.a(flash_mmap.c.obj) + 0x8d (size before relaxing) + 0x40374d6c spi_flash_check_and_flush_cache + *fill* 0x40374de9 0x3 + .iram1.2 0x40374dec 0xa zephyr/libzephyr.a(flash_ops.c.obj) + 0x40374dec spi_flash_guard_set + *fill* 0x40374df6 0x2 + .iram1.4 0x40374df8 0x15 zephyr/libzephyr.a(flash_ops.c.obj) + 0x19 (size before relaxing) + 0x40374df8 esp_mspi_pin_init + *fill* 0x40374e0d 0x3 + .iram1.5 0x40374e10 0x1a zephyr/libzephyr.a(flash_ops.c.obj) + 0x1e (size before relaxing) + 0x40374e10 spi_flash_init_chip_state + *fill* 0x40374e2a 0x2 + .iram1.1 0x40374e2c 0x11 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + *fill* 0x40374e3d 0x3 + .iram1.0 0x40374e40 0x11 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + *fill* 0x40374e51 0x3 + .iram1.5 0x40374e54 0xa zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0xd (size before relaxing) + *fill* 0x40374e5e 0x2 + .iram1.4 0x40374e60 0xc zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x10 (size before relaxing) + .iram1.0 0x40374e6c 0x15 zephyr/libzephyr.a(cache_utils.c.obj) + 0x19 (size before relaxing) + 0x40374e6c spi_flash_disable_interrupts_caches_and_other_cpu + *fill* 0x40374e81 0x3 + .iram1.1 0x40374e84 0x18 zephyr/libzephyr.a(cache_utils.c.obj) + 0x1c (size before relaxing) + 0x40374e84 spi_flash_enable_interrupts_caches_and_other_cpu + .iram1.8 0x40374e9c 0x3c zephyr/libzephyr.a(cache_utils.c.obj) + 0x40374e9c esp_config_instruction_cache_mode + .iram1.9 0x40374ed8 0x21 zephyr/libzephyr.a(cache_utils.c.obj) + 0x40374ed8 esp_config_data_cache_mode + *fill* 0x40374ef9 0x3 + .iram1.3 0x40374efc 0x27 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x40374efc periph_rcc_enter + *fill* 0x40374f23 0x1 + .iram1.4 0x40374f24 0x2c zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x40374f24 periph_rcc_exit + .iram1.3 0x40374f50 0x34 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x40374f50 rtc_get_xtal + 0x40374f50 rtc_clk_xtal_freq_get + .iram1.0 0x40374f84 0xb9 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x40374f84 rtc_clk_cpu_freq_get_config + *fill* 0x4037503d 0x3 + .iram1.4 0x40375040 0xa zephyr/libzephyr.a(rtc_clk.c.obj) + 0x40375040 rtc_clk_apb_freq_update + *fill* 0x4037504a 0x2 + .iram1.2 0x4037504c 0xad zephyr/libzephyr.a(rtc_clk.c.obj) + 0xb9 (size before relaxing) + 0x4037504c rtc_clk_cpu_freq_to_xtal + *fill* 0x403750f9 0x3 + .iram1.1 0x403750fc 0xf zephyr/libzephyr.a(rtc_clk.c.obj) + 0x13 (size before relaxing) + 0x403750fc rtc_clk_cpu_set_to_default_config + *fill* 0x4037510b 0x1 + .iram1.0 0x4037510c 0x27 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x4037510c regi2c_enter_critical + *fill* 0x40375133 0x1 + .iram1.1 0x40375134 0x2c zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x40375134 regi2c_exit_critical + .iram1.6 0x40375160 0x34 zephyr/libzephyr.a(rtc_module.c.obj) + 0x40375160 rtc_isr_noniram_disable + .iram1.7 0x40375194 0x1f zephyr/libzephyr.a(rtc_module.c.obj) + 0x40375194 rtc_isr_noniram_enable + *fill* 0x403751b3 0x1 + .iram1.1 0x403751b4 0x5a zephyr/libzephyr.a(esp_mmu_map.c.obj) + 0x403751b4 esp_mmu_paddr_find_caps + *fill* 0x4037520e 0x2 + .iram1.0 0x40375210 0x11 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + 0x40375210 esp_rom_output_switch_buffer + *fill* 0x40375221 0x3 + .iram1.0 0x40375224 0x40 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x40375224 efuse_hal_get_major_chip_version + .iram1.1 0x40375264 0x3a zephyr/libzephyr.a(efuse_hal.c.obj) + 0x40375264 efuse_hal_get_minor_chip_version + *fill* 0x4037529e 0x2 + .iram1.0 0x403752a0 0x18 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x1c (size before relaxing) + 0x403752a0 efuse_hal_chip_revision + .iram1.1 0x403752b8 0x23e zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x403752b8 bootloader_flash_execute_command_common + *fill* 0x403754f6 0x2 + .iram1.2 0x403754f8 0x20 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x403754f8 bootloader_execute_flash_command + .iram1.0 0x40375518 0x138 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x150 (size before relaxing) + 0x40375518 bootloader_flash_unlock_default + 0x40375518 bootloader_flash_unlock + .iram1.3 0x40375650 0x21 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x40375650 bootloader_flash_read_sfdp + *fill* 0x40375671 0x3 + .iram1.4 0x40375674 0x24 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x28 (size before relaxing) + 0x40375674 bootloader_read_flash_id + .iram1.6 0x40375698 0x96 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0xae (size before relaxing) + 0x40375698 bootloader_flash_xmc_startup + *fill* 0x4037572e 0x2 + .iram1.8 0x40375730 0x10 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x40375730 bootloader_flash_is_octal_mode_enabled + .iram1.3 0x40375740 0xab zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x40375740 esp_intr_disable + *fill* 0x403757eb 0x1 + .iram1.4 0x403757ec 0x50 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x403757ec esp_intr_noniram_disable + .iram1.5 0x4037583c 0x41 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x44 (size before relaxing) + 0x4037583c esp_intr_noniram_enable + *fill* 0x4037587d 0x3 + .iram1.2 0x40375880 0x11 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x17 (size before relaxing) + *fill* 0x40375891 0x3 + .iram1.0 0x40375894 0x356 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x35e (size before relaxing) + *fill* 0x40375bea 0x2 + .iram1.0 0x40375bec 0x22 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x40375c0e 0x2 + .iram1.0 0x40375c10 0x410 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x420 (size before relaxing) + *fill* 0x40376020 0x0 + *fill* 0x40376020 0x0 + *fill* 0x40376020 0x0 + *fill* 0x40376020 0x0 + *fill* 0x40376020 0x0 + *fill* 0x40376020 0x0 + *fill* 0x40376020 0x0 + .iram1.7 0x40376020 0x7 zephyr/libzephyr.a(flash_ops.c.obj) + 0x40376020 esp_mspi_32bit_address_flash_feature_check + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x1 + .iram1.5 0x40376028 0x4b zephyr/libzephyr.a(bootloader_flash.c.obj) + *fill* 0x40376073 0x0 + *fill* 0x40376073 0x0 + *fill* 0x40376073 0x0 + *fill* 0x40376073 0x1 + .iram1.0 0x40376074 0x35 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + *fill* 0x403760a9 0x0 + *fill* 0x403760a9 0x3 + .iram1.1 0x403760ac 0x6a zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x40376116 0x0 + *fill* 0x40376116 0x0 + *fill* 0x40376116 0x0 + *fill* 0x40376116 0x2 + .iram1.0 0x40376118 0x20 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *(SORT_BY_ALIGNMENT(.iram0.literal) SORT_BY_ALIGNMENT(.iram.literal) SORT_BY_ALIGNMENT(.iram.text.literal) SORT_BY_ALIGNMENT(.iram0.text) SORT_BY_ALIGNMENT(.iram.text)) + .iram0.text 0x40376138 0x31 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x40376138 _Level1Vector + *libarch__xtensa__core.a:(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40376169 0x3 + .text.xtensa_exccause + 0x4037616c 0x17 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + 0x4037616c xtensa_exccause + *fill* 0x40376183 0x1 + .text.xtensa_fatal_error + 0x40376184 0x1e zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + 0x22 (size before relaxing) + 0x40376184 xtensa_fatal_error + *fill* 0x403761a2 0x2 + .text 0x403761a4 0x223 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x403761a4 xtensa_spill_reg_windows + 0x403761c4 xtensa_save_high_regs + 0x4037620c xtensa_restore_high_regs + 0x40376241 _restore_context + 0x4037627c xtensa_arch_except + 0x4037627f xtensa_arch_except_epc + 0x40376284 xtensa_arch_kernel_oops + 0x40376287 xtensa_arch_kernel_oops_epc + 0x4037628c xtensa_switch + *fill* 0x403763c7 0x1 + .text.z_irq_spurious + 0x403763c8 0x3f zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + 0x43 (size before relaxing) + 0x403763c8 z_irq_spurious + *fill* 0x40376407 0x1 + .text.arch_new_thread + 0x40376408 0x38 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + 0x40376408 arch_new_thread + .text.xtensa_handle_irq_lvl + 0x40376440 0x4c zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .text.return_to + 0x4037648c 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + .text.z_log_msg_static_create$constprop$0 + 0x403764a0 0x13 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + *fill* 0x403764b3 0x1 + .text.xtensa_dump_stack$part$0 + 0x403764b4 0x17b zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x193 (size before relaxing) + *fill* 0x4037662f 0x1 + .text.xtensa_is_outside_stack_bounds + 0x40376630 0x46 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x40376630 xtensa_is_outside_stack_bounds + *fill* 0x40376676 0x2 + .text.xtensa_is_frame_pointer_valid + 0x40376678 0x28 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x2c (size before relaxing) + 0x40376678 xtensa_is_frame_pointer_valid + .text.xtensa_dump_stack + 0x403766a0 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + 0x403766a0 xtensa_dump_stack + .text.xtensa_int2_c + 0x403766b4 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + 0x403766b4 xtensa_int2_c + .text.xtensa_int3_c + 0x403766c8 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + 0x403766c8 xtensa_int3_c + .text.xtensa_int4_c + 0x403766dc 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + 0x403766dc xtensa_int4_c + .text.xtensa_int5_c + 0x403766f0 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + 0x403766f0 xtensa_int5_c + .text.xtensa_int6_c + 0x40376704 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + 0x40376704 xtensa_int6_c + .text.xtensa_int7_c + 0x40376718 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + 0x40376718 xtensa_int7_c + .text.xtensa_excint1_c + 0x4037672c 0x1b8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x1dc (size before relaxing) + 0x4037672c xtensa_excint1_c + .text.z_prep_c + 0x403768e4 0x10 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + 0x14 (size before relaxing) + 0x403768e4 z_prep_c + *fill* 0x403768f4 0x0 + .text.arch_cpu_idle + 0x403768f4 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + 0x403768f4 arch_cpu_idle + *fill* 0x403768fc 0x0 + *fill* 0x403768fc 0x0 + *fill* 0x403768fc 0x0 + *fill* 0x403768fc 0x0 + .text.arch_coprocessors_disable + 0x403768fc 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + 0x403768fc arch_coprocessors_disable + *fill* 0x40376904 0x0 + *fill* 0x40376904 0x0 + *fill* 0x40376904 0x0 + *libarch__common.a:(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + .text.z_isr_install + 0x40376904 0x14 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + 0x18 (size before relaxing) + 0x40376904 z_isr_install + .text.arch_irq_connect_dynamic + 0x40376918 0xe zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + 0x12 (size before relaxing) + 0x40376918 arch_irq_connect_dynamic + *fill* 0x40376926 0x2 + .text.arch_early_memset + 0x40376928 0x12 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x40376928 arch_early_memset + *fill* 0x4037693a 0x2 + .text.arch_bss_zero + 0x4037693c 0x13 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x16 (size before relaxing) + 0x4037693c arch_bss_zero + *fill* 0x4037694f 0x1 + .text.z_get_sw_isr_table_idx + 0x40376950 0x5 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + 0x40376950 z_get_sw_isr_table_idx + *fill* 0x40376955 0x0 + *fill* 0x40376955 0x0 + *fill* 0x40376955 0x0 + *libkernel.a:(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40376955 0x3 + .text.z_impl_k_busy_wait + 0x40376958 0x20 zephyr/kernel/libkernel.a(busy_wait.c.obj) + 0x24 (size before relaxing) + 0x40376958 z_impl_k_busy_wait + .text.k_sys_fatal_error_handler + 0x40376978 0x18 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x20 (size before relaxing) + 0x40376978 k_sys_fatal_error_handler + .text.z_fatal_error + 0x40376990 0xa4 zephyr/kernel/libkernel.a(fatal.c.obj) + 0xb8 (size before relaxing) + 0x40376990 z_fatal_error + .text.z_sys_init_run_level + 0x40376a34 0x2c zephyr/kernel/libkernel.a(init.c.obj) + 0x30 (size before relaxing) + .text.bg_thread_main + 0x40376a60 0x9e zephyr/kernel/libkernel.a(init.c.obj) + 0xae (size before relaxing) + *fill* 0x40376afe 0x2 + .text.z_init_cpu + 0x40376b00 0x5e zephyr/kernel/libkernel.a(init.c.obj) + 0x40376b00 z_init_cpu + *fill* 0x40376b5e 0x2 + .text.z_cstart + 0x40376b60 0x83 zephyr/kernel/libkernel.a(init.c.obj) + 0xa7 (size before relaxing) + 0x40376b60 z_cstart + *fill* 0x40376be3 0x1 + .text.idle 0x40376be4 0xc zephyr/kernel/libkernel.a(idle.c.obj) + 0xf (size before relaxing) + 0x40376be4 idle + *fill* 0x40376bf0 0x0 + .text.adjust_owner_prio$isra$0 + 0x40376bf0 0x1c zephyr/kernel/libkernel.a(mutex.c.obj) + .text.z_impl_k_mutex_lock + 0x40376c0c 0xbb zephyr/kernel/libkernel.a(mutex.c.obj) + 0xc3 (size before relaxing) + 0x40376c0c z_impl_k_mutex_lock + *fill* 0x40376cc7 0x1 + .text.z_impl_k_mutex_unlock + 0x40376cc8 0x8a zephyr/kernel/libkernel.a(mutex.c.obj) + 0x92 (size before relaxing) + 0x40376cc8 z_impl_k_mutex_unlock + *fill* 0x40376d52 0x2 + .text.z_impl_k_sem_give + 0x40376d54 0x6c zephyr/kernel/libkernel.a(sem.c.obj) + 0x78 (size before relaxing) + 0x40376d54 z_impl_k_sem_give + .text.z_impl_k_sem_take + 0x40376dc0 0x3a zephyr/kernel/libkernel.a(sem.c.obj) + 0x3d (size before relaxing) + 0x40376dc0 z_impl_k_sem_take + *fill* 0x40376dfa 0x2 + .text.notify_queue_locked$isra$0 + 0x40376dfc 0x14 zephyr/kernel/libkernel.a(work.c.obj) + .text.work_queue_main + 0x40376e10 0x128 zephyr/kernel/libkernel.a(work.c.obj) + 0x134 (size before relaxing) + .text.submit_to_queue_locked + 0x40376f38 0xa4 zephyr/kernel/libkernel.a(work.c.obj) + 0xa8 (size before relaxing) + .text.k_work_init + 0x40376fdc 0x14 zephyr/kernel/libkernel.a(work.c.obj) + 0x40376fdc k_work_init + .text.z_work_submit_to_queue + 0x40376ff0 0x1c zephyr/kernel/libkernel.a(work.c.obj) + 0x40376ff0 z_work_submit_to_queue + .text.k_work_submit_to_queue + 0x4037700c 0x1a zephyr/kernel/libkernel.a(work.c.obj) + 0x1e (size before relaxing) + 0x4037700c k_work_submit_to_queue + *fill* 0x40377026 0x2 + .text.k_work_submit + 0x40377028 0x12 zephyr/kernel/libkernel.a(work.c.obj) + 0x40377028 k_work_submit + *fill* 0x4037703a 0x2 + .text.k_work_queue_start + 0x4037703c 0x75 zephyr/kernel/libkernel.a(work.c.obj) + 0x7d (size before relaxing) + 0x4037703c k_work_queue_start + *fill* 0x403770b1 0x3 + .text.z_setup_new_thread + 0x403770b4 0x5b zephyr/kernel/libkernel.a(thread.c.obj) + 0x5f (size before relaxing) + 0x403770b4 z_setup_new_thread + *fill* 0x4037710f 0x1 + .text.z_impl_k_thread_create + 0x40377110 0x52 zephyr/kernel/libkernel.a(thread.c.obj) + 0x5a (size before relaxing) + 0x40377110 z_impl_k_thread_create + *fill* 0x40377162 0x2 + .text.z_dummy_thread_init + 0x40377164 0x27 zephyr/kernel/libkernel.a(thread.c.obj) + 0x40377164 z_dummy_thread_init + *fill* 0x4037718b 0x1 + .text.unpend_thread_no_timeout + 0x4037718c 0x19 zephyr/kernel/libkernel.a(sched.c.obj) + 0x1d (size before relaxing) + *fill* 0x403771a5 0x3 + .text.ready_thread + 0x403771a8 0x98 zephyr/kernel/libkernel.a(sched.c.obj) + .text.unready_thread + 0x40377240 0x5a zephyr/kernel/libkernel.a(sched.c.obj) + 0x62 (size before relaxing) + *fill* 0x4037729a 0x2 + .text.add_thread_timeout + 0x4037729c 0x1b zephyr/kernel/libkernel.a(sched.c.obj) + *fill* 0x403772b7 0x1 + .text.z_swap$isra$0 + 0x403772b8 0x31 zephyr/kernel/libkernel.a(sched.c.obj) + 0x35 (size before relaxing) + *fill* 0x403772e9 0x3 + .text.reschedule$isra$0 + 0x403772ec 0x2c zephyr/kernel/libkernel.a(sched.c.obj) + .text.add_to_waitq_locked + 0x40377318 0x54 zephyr/kernel/libkernel.a(sched.c.obj) + 0x58 (size before relaxing) + .text.move_current_to_end_of_prio_q + 0x4037736c 0x78 zephyr/kernel/libkernel.a(sched.c.obj) + 0x7c (size before relaxing) + 0x4037736c move_current_to_end_of_prio_q + .text.z_ready_thread + 0x403773e4 0x13 zephyr/kernel/libkernel.a(sched.c.obj) + 0x16 (size before relaxing) + 0x403773e4 z_ready_thread + *fill* 0x403773f7 0x1 + .text.z_unpend_thread_no_timeout + 0x403773f8 0x18 zephyr/kernel/libkernel.a(sched.c.obj) + 0x1c (size before relaxing) + 0x403773f8 z_unpend_thread_no_timeout + .text.z_sched_wake_thread_locked + 0x40377410 0x2a zephyr/kernel/libkernel.a(sched.c.obj) + 0x2e (size before relaxing) + 0x40377410 z_sched_wake_thread_locked + *fill* 0x4037743a 0x2 + .text.z_thread_timeout + 0x4037743c 0x14 zephyr/kernel/libkernel.a(sched.c.obj) + 0x17 (size before relaxing) + 0x4037743c z_thread_timeout + *fill* 0x40377450 0x0 + .text.z_pend_curr + 0x40377450 0x25 zephyr/kernel/libkernel.a(sched.c.obj) + 0x2d (size before relaxing) + 0x40377450 z_pend_curr + *fill* 0x40377475 0x3 + .text.z_unpend1_no_timeout + 0x40377478 0x22 zephyr/kernel/libkernel.a(sched.c.obj) + 0x26 (size before relaxing) + 0x40377478 z_unpend1_no_timeout + *fill* 0x4037749a 0x2 + .text.z_unpend_thread + 0x4037749c 0x10 zephyr/kernel/libkernel.a(sched.c.obj) + 0x17 (size before relaxing) + 0x4037749c z_unpend_thread + *fill* 0x403774ac 0x0 + .text.z_thread_prio_set + 0x403774ac 0xf7 zephyr/kernel/libkernel.a(sched.c.obj) + 0x403774ac z_thread_prio_set + *fill* 0x403775a3 0x1 + .text.z_reschedule + 0x403775a4 0xa zephyr/kernel/libkernel.a(sched.c.obj) + 0xe (size before relaxing) + 0x403775a4 z_reschedule + *fill* 0x403775ae 0x2 + .text.z_reschedule_irqlock + 0x403775b0 0x38 zephyr/kernel/libkernel.a(sched.c.obj) + 0x3c (size before relaxing) + 0x403775b0 z_reschedule_irqlock + .text.k_sched_lock + 0x403775e8 0x1b zephyr/kernel/libkernel.a(sched.c.obj) + 0x403775e8 k_sched_lock + *fill* 0x40377603 0x1 + .text.k_sched_unlock + 0x40377604 0x56 zephyr/kernel/libkernel.a(sched.c.obj) + 0x40377604 k_sched_unlock + *fill* 0x4037765a 0x2 + .text.z_get_next_switch_handle + 0x4037765c 0x14 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4037765c z_get_next_switch_handle + .text.z_unpend_all + 0x40377670 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + 0x28 (size before relaxing) + 0x40377670 z_unpend_all + .text.z_sched_init + 0x40377694 0xf zephyr/kernel/libkernel.a(sched.c.obj) + 0x40377694 z_sched_init + *fill* 0x403776a3 0x1 + .text.z_impl_k_yield + 0x403776a4 0x84 zephyr/kernel/libkernel.a(sched.c.obj) + 0x88 (size before relaxing) + 0x403776a4 z_impl_k_yield + .text.z_tick_sleep + 0x40377728 0x60 zephyr/kernel/libkernel.a(sched.c.obj) + 0x6b (size before relaxing) + *fill* 0x40377788 0x0 + .text.z_impl_k_sleep + 0x40377788 0x2f zephyr/kernel/libkernel.a(sched.c.obj) + 0x33 (size before relaxing) + 0x40377788 z_impl_k_sleep + *fill* 0x403777b7 0x1 + .text.z_impl_k_wakeup + 0x403777b8 0x34 zephyr/kernel/libkernel.a(sched.c.obj) + 0x3c (size before relaxing) + 0x403777b8 z_impl_k_wakeup + .text.z_impl_k_sched_current_thread_query + 0x403777ec 0xa zephyr/kernel/libkernel.a(sched.c.obj) + 0x403777ec z_impl_k_sched_current_thread_query + *fill* 0x403777f6 0x2 + .text.z_thread_abort + 0x403777f8 0xf7 zephyr/kernel/libkernel.a(sched.c.obj) + 0x112 (size before relaxing) + 0x403777f8 z_thread_abort + *fill* 0x403778ef 0x1 + .text.z_impl_k_thread_abort + 0x403778f0 0xa zephyr/kernel/libkernel.a(sched.c.obj) + 0xe (size before relaxing) + 0x403778f0 z_impl_k_thread_abort + *fill* 0x403778fa 0x2 + .text.z_sched_wake + 0x403778fc 0x3a zephyr/kernel/libkernel.a(sched.c.obj) + 0x42 (size before relaxing) + 0x403778fc z_sched_wake + *fill* 0x40377936 0x2 + .text.z_sched_wait + 0x40377938 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + 0x40377938 z_sched_wait + .text.z_time_slice_size + 0x4037795c 0x42 zephyr/kernel/libkernel.a(timeslicing.c.obj) + *fill* 0x4037799e 0x2 + .text.slice_timeout + 0x403779a0 0x1e zephyr/kernel/libkernel.a(timeslicing.c.obj) + *fill* 0x403779be 0x2 + .text.z_reset_time_slice + 0x403779c0 0x3a zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x42 (size before relaxing) + 0x403779c0 z_reset_time_slice + *fill* 0x403779fa 0x2 + .text.z_time_slice + 0x403779fc 0x39 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x40 (size before relaxing) + 0x403779fc z_time_slice + *fill* 0x40377a35 0x3 + .text.first 0x40377a38 0xf zephyr/kernel/libkernel.a(timeout.c.obj) + *fill* 0x40377a47 0x1 + .text.next_timeout + 0x40377a48 0x3b zephyr/kernel/libkernel.a(timeout.c.obj) + 0x3f (size before relaxing) + *fill* 0x40377a83 0x1 + .text.elapsed 0x40377a84 0x16 zephyr/kernel/libkernel.a(timeout.c.obj) + *fill* 0x40377a9a 0x2 + .text.remove_timeout + 0x40377a9c 0x36 zephyr/kernel/libkernel.a(timeout.c.obj) + *fill* 0x40377ad2 0x2 + .text.z_add_timeout + 0x40377ad4 0x10d zephyr/kernel/libkernel.a(timeout.c.obj) + 0x121 (size before relaxing) + 0x40377ad4 z_add_timeout + *fill* 0x40377be1 0x3 + .text.z_abort_timeout + 0x40377be4 0x3c zephyr/kernel/libkernel.a(timeout.c.obj) + 0x4c (size before relaxing) + 0x40377be4 z_abort_timeout + .text.sys_clock_announce + 0x40377c20 0x9f zephyr/kernel/libkernel.a(timeout.c.obj) + 0xab (size before relaxing) + 0x40377c20 sys_clock_announce + *fill* 0x40377cbf 0x1 + .text.sys_clock_tick_get + 0x40377cc0 0x24 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x28 (size before relaxing) + 0x40377cc0 sys_clock_tick_get + .text.sys_clock_tick_get_32 + 0x40377ce4 0xa zephyr/kernel/libkernel.a(timeout.c.obj) + 0xd (size before relaxing) + 0x40377ce4 sys_clock_tick_get_32 + *fill* 0x40377cee 0x2 + .text.z_impl_k_uptime_ticks + 0x40377cf0 0xf zephyr/kernel/libkernel.a(timeout.c.obj) + 0x40377cf0 z_impl_k_uptime_ticks + *fill* 0x40377cff 0x1 + .text.z_timer_expiration_handler + 0x40377d00 0x108 zephyr/kernel/libkernel.a(timer.c.obj) + 0x110 (size before relaxing) + 0x40377d00 z_timer_expiration_handler + .text.z_impl_k_timer_start + 0x40377e08 0x52 zephyr/kernel/libkernel.a(timer.c.obj) + 0x56 (size before relaxing) + 0x40377e08 z_impl_k_timer_start + *fill* 0x40377e5a 0x2 + .text.z_impl_k_timer_stop + 0x40377e5c 0x28 zephyr/kernel/libkernel.a(timer.c.obj) + 0x34 (size before relaxing) + 0x40377e5c z_impl_k_timer_stop + .text.clear_event_registrations + 0x40377e84 0x44 zephyr/kernel/libkernel.a(poll.c.obj) + .text.register_events + 0x40377ec8 0x105 zephyr/kernel/libkernel.a(poll.c.obj) + *fill* 0x40377fcd 0x3 + .text.signal_poll_event$isra$0 + 0x40377fd0 0x7e zephyr/kernel/libkernel.a(poll.c.obj) + 0x8a (size before relaxing) + *fill* 0x4037804e 0x2 + .text.z_impl_k_poll + 0x40378050 0x84 zephyr/kernel/libkernel.a(poll.c.obj) + 0x90 (size before relaxing) + 0x40378050 z_impl_k_poll + .text.z_handle_obj_poll_events + 0x403780d4 0x33 zephyr/kernel/libkernel.a(poll.c.obj) + 0x37 (size before relaxing) + 0x403780d4 z_handle_obj_poll_events + *fill* 0x40378107 0x1 + .text.z_impl_k_poll_signal_raise + 0x40378108 0x3c zephyr/kernel/libkernel.a(poll.c.obj) + 0x40 (size before relaxing) + 0x40378108 z_impl_k_poll_signal_raise + .text.k_free 0x40378144 0xf zephyr/kernel/libkernel.a(mempool.c.obj) + 0x12 (size before relaxing) + 0x40378144 k_free + *fill* 0x40378153 0x1 + .text.k_malloc + 0x40378154 0x14 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x18 (size before relaxing) + 0x40378154 k_malloc + .text.k_calloc + 0x40378168 0x28 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x2c (size before relaxing) + 0x40378168 k_calloc + .text.k_thread_system_pool_assign + 0x40378190 0xb zephyr/kernel/libkernel.a(mempool.c.obj) + 0x40378190 k_thread_system_pool_assign + *fill* 0x4037819b 0x1 + .text.boot_banner + 0x4037819c 0xb zephyr/kernel/libkernel.a(banner.c.obj) + 0xe (size before relaxing) + 0x4037819c boot_banner + *fill* 0x403781a7 0x1 + .text.k_heap_init + 0x403781a8 0x17 zephyr/kernel/libkernel.a(kheap.c.obj) + 0x403781a8 k_heap_init + *fill* 0x403781bf 0x1 + .text.statics_init + 0x403781c0 0x22 zephyr/kernel/libkernel.a(kheap.c.obj) + *fill* 0x403781e2 0x2 + .text.k_heap_free + 0x403781e4 0x2c zephyr/kernel/libkernel.a(kheap.c.obj) + 0x30 (size before relaxing) + 0x403781e4 k_heap_free + .text.k_sys_work_q_init + 0x40378210 0x18 zephyr/kernel/libkernel.a(system_work_q.c.obj) + 0x1c (size before relaxing) + *fill* 0x40378228 0x0 + .text.do_device_init + 0x40378228 0x35 zephyr/kernel/libkernel.a(device.c.obj) + 0x40378228 do_device_init + *fill* 0x4037825d 0x3 + .text.z_impl_device_is_ready + 0x40378260 0x1c zephyr/kernel/libkernel.a(device.c.obj) + 0x40378260 z_impl_device_is_ready + .text.arch_system_halt + 0x4037827c 0x9 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x4037827c arch_system_halt + *fill* 0x40378285 0x0 + *fill* 0x40378285 0x0 + *fill* 0x40378285 0x0 + *fill* 0x40378285 0x0 + *fill* 0x40378285 0x3 + .text.z_impl_k_mutex_init + 0x40378288 0x11 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x40378288 z_impl_k_mutex_init + *fill* 0x40378299 0x0 + *fill* 0x40378299 0x0 + *fill* 0x40378299 0x3 + .text.z_impl_k_sem_init + 0x4037829c 0x20 zephyr/kernel/libkernel.a(sem.c.obj) + 0x4037829c z_impl_k_sem_init + *fill* 0x403782bc 0x0 + .text.flag_test_and_clear + 0x403782bc 0x1d zephyr/kernel/libkernel.a(work.c.obj) + *fill* 0x403782d9 0x0 + *fill* 0x403782d9 0x0 + *fill* 0x403782d9 0x0 + *fill* 0x403782d9 0x3 + .text.k_is_in_isr + 0x403782dc 0xf zephyr/kernel/libkernel.a(thread.c.obj) + 0x403782dc k_is_in_isr + *fill* 0x403782eb 0x1 + .text.z_impl_k_thread_name_set + 0x403782ec 0x8 zephyr/kernel/libkernel.a(thread.c.obj) + 0x403782ec z_impl_k_thread_name_set + .text.k_thread_name_get + 0x403782f4 0x7 zephyr/kernel/libkernel.a(thread.c.obj) + 0x403782f4 k_thread_name_get + *fill* 0x403782fb 0x0 + *fill* 0x403782fb 0x0 + *fill* 0x403782fb 0x0 + *fill* 0x403782fb 0x1 + .text.sys_dlist_remove + 0x403782fc 0x13 zephyr/kernel/libkernel.a(sched.c.obj) + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x1 + .text.k_timer_init + 0x40378310 0x1a zephyr/kernel/libkernel.a(timer.c.obj) + 0x40378310 k_timer_init + *fill* 0x4037832a 0x0 + *fill* 0x4037832a 0x2 + .text.add_event + 0x4037832c 0x69 zephyr/kernel/libkernel.a(poll.c.obj) + *fill* 0x40378395 0x0 + *fill* 0x40378395 0x0 + *fill* 0x40378395 0x0 + *fill* 0x40378395 0x3 + .text.z_alloc_helper + 0x40378398 0x2b zephyr/kernel/libkernel.a(mempool.c.obj) + *fill* 0x403783c3 0x0 + *fill* 0x403783c3 0x0 + *fill* 0x403783c3 0x0 + *fill* 0x403783c3 0x0 + *fill* 0x403783c3 0x0 + *fill* 0x403783c3 0x0 + *libgcc.a:lib2funcs.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:cbprintf_packaged.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x403783c3 0x1 + .text.cbvprintf_package + 0x403783c4 0x3cc zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x403783c4 cbvprintf_package + .text.cbpprintf_external + 0x40378790 0x72 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x40378790 cbpprintf_external + *fill* 0x40378802 0x2 + .text.cbprintf_package_convert + 0x40378804 0x3b8 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x3bc (size before relaxing) + 0x40378804 cbprintf_package_convert + *fill* 0x40378bbc 0x0 + .text.is_ptr 0x40378bbc 0x4f zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x40378bbc is_ptr + *fill* 0x40378c0b 0x0 + *libdrivers__flash.a:flash_esp32.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:windowspill_asm.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:log_noos.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libdrivers__timer.a:xtensa_sys_timer.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40378c0b 0x1 + .text.ccompare_isr + 0x40378c0c 0x32 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x36 (size before relaxing) + *fill* 0x40378c3e 0x2 + .text.sys_clock_set_timeout + 0x40378c40 0x6c zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x40378c40 sys_clock_set_timeout + .text.sys_clock_elapsed + 0x40378cac 0x22 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x40378cac sys_clock_elapsed + *fill* 0x40378cce 0x2 + .text.sys_clock_driver_init + 0x40378cd0 0x21 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + *fill* 0x40378cf1 0x0 + *fill* 0x40378cf1 0x3 + .text.sys_clock_cycle_get_32 + 0x40378cf4 0x8 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x40378cf4 sys_clock_cycle_get_32 + *libzephyr.a:log_core.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + .text.activate_foreach_backend + 0x40378cfc 0x5d zephyr/libzephyr.a(log_core.c.obj) + *fill* 0x40378d59 0x3 + .text.enable_logger + 0x40378d5c 0x3e zephyr/libzephyr.a(log_core.c.obj) + 0x46 (size before relaxing) + *fill* 0x40378d9a 0x2 + .text.default_lf_get_timestamp + 0x40378d9c 0x14 zephyr/libzephyr.a(log_core.c.obj) + 0x18 (size before relaxing) + .text.log_process_thread_timer_expiry_fn + 0x40378db0 0xb zephyr/libzephyr.a(log_core.c.obj) + 0xe (size before relaxing) + *fill* 0x40378dbb 0x1 + .text.z_log_init + 0x40378dbc 0x90 zephyr/libzephyr.a(log_core.c.obj) + 0x94 (size before relaxing) + .text.log_format_func_t_get + 0x40378e4c 0xd zephyr/libzephyr.a(log_core.c.obj) + 0x40378e4c log_format_func_t_get + *fill* 0x40378e59 0x3 + .text.z_log_vprintk + 0x40378e5c 0x1f zephyr/libzephyr.a(log_core.c.obj) + 0x40378e5c z_log_vprintk + *fill* 0x40378e7b 0x1 + .text.log_set_timestamp_func + 0x40378e7c 0x1a zephyr/libzephyr.a(log_core.c.obj) + 0x40378e7c log_set_timestamp_func + *fill* 0x40378e96 0x2 + .text.z_log_notify_backend_enabled + 0x40378e98 0x1b zephyr/libzephyr.a(log_core.c.obj) + 0x40378e98 z_log_notify_backend_enabled + *fill* 0x40378eb3 0x1 + .text.z_log_dropped + 0x40378eb4 0x34 zephyr/libzephyr.a(log_core.c.obj) + 0x3c (size before relaxing) + 0x40378eb4 z_log_dropped + .text.z_log_notify_drop + 0x40378ee8 0xa zephyr/libzephyr.a(log_core.c.obj) + 0xe (size before relaxing) + *fill* 0x40378ef2 0x2 + .text.z_log_dropped_read_and_clear + 0x40378ef4 0x1d zephyr/libzephyr.a(log_core.c.obj) + 0x40378ef4 z_log_dropped_read_and_clear + *fill* 0x40378f11 0x3 + .text.dropped_notify + 0x40378f14 0x30 zephyr/libzephyr.a(log_core.c.obj) + 0x40378f14 dropped_notify + .text.z_log_msg_init + 0x40378f44 0x18 zephyr/libzephyr.a(log_core.c.obj) + 0x40378f44 z_log_msg_init + .text.log_core_init + 0x40378f5c 0x46 zephyr/libzephyr.a(log_core.c.obj) + 0x4a (size before relaxing) + 0x40378f5c log_core_init + *fill* 0x40378fa2 0x2 + .text.z_log_msg_alloc + 0x40378fa4 0x16 zephyr/libzephyr.a(log_core.c.obj) + 0x40378fa4 z_log_msg_alloc + *fill* 0x40378fba 0x2 + .text.z_log_msg_local_claim + 0x40378fbc 0x10 zephyr/libzephyr.a(log_core.c.obj) + 0x40378fbc z_log_msg_local_claim + .text.z_log_msg_free + 0x40378fcc 0x12 zephyr/libzephyr.a(log_core.c.obj) + 0x40378fcc z_log_msg_free + *fill* 0x40378fde 0x2 + .text.z_log_msg_pending + 0x40378fe0 0x10 zephyr/libzephyr.a(log_core.c.obj) + 0x40378fe0 z_log_msg_pending + .text.z_impl_log_process + 0x40378ff0 0xaa zephyr/libzephyr.a(log_core.c.obj) + 0xb2 (size before relaxing) + 0x40378ff0 z_impl_log_process + *fill* 0x4037909a 0x2 + .text.z_impl_log_panic + 0x4037909c 0x42 zephyr/libzephyr.a(log_core.c.obj) + 0x46 (size before relaxing) + 0x4037909c z_impl_log_panic + *fill* 0x403790de 0x2 + .text.log_process_thread_func + 0x403790e0 0x85 zephyr/libzephyr.a(log_core.c.obj) + 0x95 (size before relaxing) + *fill* 0x40379165 0x3 + .text.z_log_msg_post_finalize + 0x40379168 0x58 zephyr/libzephyr.a(log_core.c.obj) + 0x63 (size before relaxing) + *fill* 0x403791c0 0x0 + .text.z_log_msg_commit + 0x403791c0 0x1d zephyr/libzephyr.a(log_core.c.obj) + 0x21 (size before relaxing) + 0x403791c0 z_log_msg_commit + *fill* 0x403791dd 0x3 + .text.log_msg_generic_get_wlen + 0x403791e0 0x24 zephyr/libzephyr.a(log_core.c.obj) + .text.dummy_timestamp + 0x40379204 0x7 zephyr/libzephyr.a(log_core.c.obj) + *fill* 0x4037920b 0x0 + *fill* 0x4037920b 0x1 + .text.atomic_inc + 0x4037920c 0x1b zephyr/libzephyr.a(log_core.c.obj) + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x1 + .text.z_log_get_tag + 0x40379228 0x7 zephyr/libzephyr.a(log_core.c.obj) + 0x40379228 z_log_get_tag + *libzephyr.a:cbprintf_complete.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:printk.*(SORT_BY_ALIGNMENT(.literal.printk) SORT_BY_ALIGNMENT(.literal.vprintk) SORT_BY_ALIGNMENT(.literal.char_out) SORT_BY_ALIGNMENT(.text.printk) SORT_BY_ALIGNMENT(.text.vprintk) SORT_BY_ALIGNMENT(.text.char_out)) + *fill* 0x4037922f 0x1 + .text.printk 0x40379230 0x2b zephyr/libzephyr.a(printk.c.obj) + 0x40379230 printk + *fill* 0x4037925b 0x0 + *libzephyr.a:log_msg.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037925b 0x1 + .text.z_cbprintf_cpy + 0x4037925c 0x2b zephyr/libzephyr.a(log_msg.c.obj) + *fill* 0x40379287 0x1 + .text.z_log_msg_finalize + 0x40379288 0x32 zephyr/libzephyr.a(log_msg.c.obj) + 0x36 (size before relaxing) + 0x40379288 z_log_msg_finalize + *fill* 0x403792ba 0x2 + .text.z_log_msg_simple_create + 0x403792bc 0x5f zephyr/libzephyr.a(log_msg.c.obj) + 0x63 (size before relaxing) + *fill* 0x4037931b 0x1 + .text.z_impl_z_log_msg_simple_create_0 + 0x4037931c 0x12 zephyr/libzephyr.a(log_msg.c.obj) + 0x16 (size before relaxing) + 0x4037931c z_impl_z_log_msg_simple_create_0 + *fill* 0x4037932e 0x2 + .text.z_impl_z_log_msg_simple_create_1 + 0x40379330 0x17 zephyr/libzephyr.a(log_msg.c.obj) + 0x40379330 z_impl_z_log_msg_simple_create_1 + *fill* 0x40379347 0x1 + .text.z_impl_z_log_msg_static_create + 0x40379348 0x106 zephyr/libzephyr.a(log_msg.c.obj) + 0x10e (size before relaxing) + 0x40379348 z_impl_z_log_msg_static_create + *fill* 0x4037944e 0x2 + .text.z_log_msg_runtime_vcreate + 0x40379450 0xb8 zephyr/libzephyr.a(log_msg.c.obj) + 0xc0 (size before relaxing) + 0x40379450 z_log_msg_runtime_vcreate + .text.log_msg_get_source_id + 0x40379508 0x17 zephyr/libzephyr.a(log_msg.c.obj) + 0x40379508 log_msg_get_source_id + *fill* 0x4037951f 0x0 + *fill* 0x4037951f 0x0 + *fill* 0x4037951f 0x0 + *fill* 0x4037951f 0x0 + *fill* 0x4037951f 0x0 + *fill* 0x4037951f 0x0 + *fill* 0x4037951f 0x0 + *libzephyr.a:log_list.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libdrivers__console.a:uart_console.*(SORT_BY_ALIGNMENT(.literal.console_out) SORT_BY_ALIGNMENT(.text.console_out)) + *fill* 0x4037951f 0x1 + .text.console_out + 0x40379520 0x22 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + *fill* 0x40379542 0x0 + *libzephyr.a:log_output.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40379542 0x2 + .text.log_output_flush + 0x40379544 0x18 zephyr/libzephyr.a(log_output.c.obj) + 0x1c (size before relaxing) + .text.print_formatted + 0x4037955c 0x2c zephyr/libzephyr.a(log_output.c.obj) + .text.newline_print + 0x40379588 0x16 zephyr/libzephyr.a(log_output.c.obj) + 0x19 (size before relaxing) + *fill* 0x4037959e 0x2 + .text.out_func + 0x403795a0 0x32 zephyr/libzephyr.a(log_output.c.obj) + 0x36 (size before relaxing) + *fill* 0x403795d2 0x2 + .text.cr_out_func + 0x403795d4 0x1a zephyr/libzephyr.a(log_output.c.obj) + 0x1e (size before relaxing) + *fill* 0x403795ee 0x2 + .text.log_output_process + 0x403795f0 0x242 zephyr/libzephyr.a(log_output.c.obj) + 0x27a (size before relaxing) + 0x403795f0 log_output_process + *fill* 0x40379832 0x2 + .text.log_output_msg_process + 0x40379834 0x4e zephyr/libzephyr.a(log_output.c.obj) + 0x56 (size before relaxing) + 0x40379834 log_output_msg_process + *fill* 0x40379882 0x2 + .text.log_output_dropped_process + 0x40379884 0x48 zephyr/libzephyr.a(log_output.c.obj) + 0x50 (size before relaxing) + 0x40379884 log_output_dropped_process + .text.log_output_timestamp_freq_set + 0x403798cc 0x2b zephyr/libzephyr.a(log_output.c.obj) + 0x403798cc log_output_timestamp_freq_set + *fill* 0x403798f7 0x1 + .text.log_output_write + 0x403798f8 0x1a zephyr/libzephyr.a(log_output.c.obj) + *fill* 0x40379912 0x0 + *fill* 0x40379912 0x0 + *fill* 0x40379912 0x0 + *fill* 0x40379912 0x0 + *fill* 0x40379912 0x0 + *fill* 0x40379912 0x0 + *libzephyr.a:log_backend_uart.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40379912 0x2 + .text.dropped 0x40379914 0x13 zephyr/libzephyr.a(log_backend_uart.c.obj) + *fill* 0x40379927 0x1 + .text.process 0x40379928 0x1e zephyr/libzephyr.a(log_backend_uart.c.obj) + *fill* 0x40379946 0x2 + .text.char_out + 0x40379948 0x25 zephyr/libzephyr.a(log_backend_uart.c.obj) + *fill* 0x4037996d 0x3 + .text.format_set + 0x40379970 0xf zephyr/libzephyr.a(log_backend_uart.c.obj) + *fill* 0x4037997f 0x1 + .text.log_backend_uart_init + 0x40379980 0xf zephyr/libzephyr.a(log_backend_uart.c.obj) + *fill* 0x4037998f 0x1 + .text.panic 0x40379990 0x37 zephyr/libzephyr.a(log_backend_uart.c.obj) + *fill* 0x403799c7 0x0 + *fill* 0x403799c7 0x0 + *fill* 0x403799c7 0x0 + *libzephyr.a:log_minimal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:loader.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x403799c7 0x1 + .text.map_rom_segments + 0x403799c8 0x316 zephyr/libzephyr.a(loader.c.obj) + 0x326 (size before relaxing) + 0x403799c8 map_rom_segments + *fill* 0x40379cde 0x2 + .text.__start 0x40379ce0 0x5e zephyr/libzephyr.a(loader.c.obj) + 0x6e (size before relaxing) + 0x40379ce0 __start + *fill* 0x40379d3e 0x0 + *fill* 0x40379d3e 0x0 + *libzephyr.a:flash_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40379d3e 0x2 + .text.flash_is_octal_mode_enabled + 0x40379d40 0x10 zephyr/libzephyr.a(flash_init.c.obj) + 0x40379d40 flash_is_octal_mode_enabled + .text.esp_flash_config + 0x40379d50 0x2f zephyr/libzephyr.a(flash_init.c.obj) + 0x3f (size before relaxing) + 0x40379d50 esp_flash_config + *fill* 0x40379d7f 0x0 + *libzephyr.a:soc_flash_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40379d7f 0x1 + .text.configure_spi_pins + 0x40379d80 0x7a zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x40379d80 configure_spi_pins + *fill* 0x40379dfa 0x2 + .text.flash_set_dummy_out + 0x40379dfc 0x28 zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x40379dfc flash_set_dummy_out + .text.flash_dummy_config + 0x40379e24 0xd zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x14 (size before relaxing) + 0x40379e24 flash_dummy_config + *fill* 0x40379e31 0x3 + .text.flash_cs_timing_config + 0x40379e34 0x99 zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x40379e34 flash_cs_timing_config + *fill* 0x40379ecd 0x3 + .text.init_spi_flash + 0x40379ed0 0xfe zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x112 (size before relaxing) + 0x40379ed0 init_spi_flash + *fill* 0x40379fce 0x2 + .text.flash_update_id + 0x40379fd0 0x12 zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x40379fd0 flash_update_id + *fill* 0x40379fe2 0x0 + *fill* 0x40379fe2 0x0 + *fill* 0x40379fe2 0x0 + *fill* 0x40379fe2 0x0 + *libzephyr.a:console_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40379fe2 0x2 + .text.esp_console_init + 0x40379fe4 0x24 zephyr/libzephyr.a(console_init.c.obj) + 0x28 (size before relaxing) + 0x40379fe4 esp_console_init + *fill* 0x4037a008 0x0 + *libzephyr.a:soc_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + .text.print_banner + 0x4037a008 0x2a zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a008 print_banner + *fill* 0x4037a032 0x2 + .text.read_bootloader_header + 0x4037a034 0x26 zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a034 read_bootloader_header + *fill* 0x4037a05a 0x2 + .text.config_wdt + 0x4037a05c 0x42 zephyr/libzephyr.a(soc_init.c.obj) + 0x56 (size before relaxing) + 0x4037a05c config_wdt + *fill* 0x4037a09e 0x2 + .text.check_bootloader_validity + 0x4037a0a0 0x92 zephyr/libzephyr.a(soc_init.c.obj) + 0x96 (size before relaxing) + 0x4037a0a0 check_bootloader_validity + *fill* 0x4037a132 0x2 + .text.ana_super_wdt_reset_config + 0x4037a134 0x3b zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a134 ana_super_wdt_reset_config + *fill* 0x4037a16f 0x1 + .text.ana_clock_glitch_reset_config + 0x4037a170 0x3a zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a170 ana_clock_glitch_reset_config + *fill* 0x4037a1aa 0x2 + .text.ana_reset_config + 0x4037a1ac 0x3a zephyr/libzephyr.a(soc_init.c.obj) + 0x3e (size before relaxing) + 0x4037a1ac ana_reset_config + *fill* 0x4037a1e6 0x2 + .text.super_wdt_auto_feed + 0x4037a1e8 0x2c zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a1e8 super_wdt_auto_feed + .text.wdt_reset_info_dump + 0x4037a214 0x52 zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a214 wdt_reset_info_dump + *fill* 0x4037a266 0x2 + .text.wdt_reset_cpu0_info_enable + 0x4037a268 0x3c zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a268 wdt_reset_cpu0_info_enable + .text.check_wdt_reset + 0x4037a2a4 0x2e zephyr/libzephyr.a(soc_init.c.obj) + 0x35 (size before relaxing) + 0x4037a2a4 check_wdt_reset + *fill* 0x4037a2d2 0x2 + .text.bootloader_clock_configure + 0x4037a2d4 0x73 zephyr/libzephyr.a(soc_init.c.obj) + 0x7b (size before relaxing) + 0x4037a2d4 bootloader_clock_configure + *fill* 0x4037a347 0x0 + *fill* 0x4037a347 0x0 + *fill* 0x4037a347 0x0 + *fill* 0x4037a347 0x1 + .text.soc_hw_init + 0x4037a348 0x5 zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a348 soc_hw_init + *fill* 0x4037a34d 0x0 + *fill* 0x4037a34d 0x0 + *fill* 0x4037a34d 0x0 + *fill* 0x4037a34d 0x0 + *fill* 0x4037a34d 0x0 + *fill* 0x4037a34d 0x0 + *libzephyr.a:hw_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037a34d 0x3 + .text.hardware_init + 0x4037a350 0x66 zephyr/libzephyr.a(hw_init.c.obj) + 0x92 (size before relaxing) + 0x4037a350 hardware_init + *fill* 0x4037a3b6 0x0 + *libzephyr.a:soc_random.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037a3b6 0x2 + .text.soc_random_enable + 0x4037a3b8 0x29b zephyr/libzephyr.a(soc_random.c.obj) + 0x2ab (size before relaxing) + 0x4037a3b8 soc_random_enable + *fill* 0x4037a653 0x1 + .text.soc_random_disable + 0x4037a654 0x175 zephyr/libzephyr.a(soc_random.c.obj) + 0x185 (size before relaxing) + 0x4037a654 soc_random_disable + *fill* 0x4037a7c9 0x0 + *fill* 0x4037a7c9 0x0 + *libzephyr.a:esp_mmu_map.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037a7c9 0x3 + .text.s_get_bus_mask + 0x4037a7cc 0x26 zephyr/libzephyr.a(esp_mmu_map.c.obj) + *fill* 0x4037a7f2 0x2 + .text.esp_mmu_map_init + 0x4037a7f4 0x124 zephyr/libzephyr.a(esp_mmu_map.c.obj) + 0x128 (size before relaxing) + 0x4037a7f4 esp_mmu_map_init + *fill* 0x4037a918 0x0 + *fill* 0x4037a918 0x0 + *libphy.a:(SORT_BY_ALIGNMENT(.phyiram) SORT_BY_ALIGNMENT(.phyiram.*)) + *libgcov.a:(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *librtc.a:(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp32s3-mp.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_flash.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + .text.esp_rom_flash_read + 0x4037a918 0xd5 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0xe5 (size before relaxing) + 0x4037a918 esp_rom_flash_read + *fill* 0x4037a9ed 0x3 + .text.bootloader_enable_wp + 0x4037a9f0 0x13 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x4037a9f0 bootloader_enable_wp + *fill* 0x4037aa03 0x0 + *libzephyr.a:flash_mmap.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:mmu_psram_flash.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_psram_impl_quad.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_psram_impl_octal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:efuse_hal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:mmu_hal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037aa03 0x1 + .text.mmu_hal_ctx_init + 0x4037aa04 0xe zephyr/libzephyr.a(mmu_hal.c.obj) + 0x4037aa04 mmu_hal_ctx_init + *fill* 0x4037aa12 0x2 + .text.mmu_hal_unmap_all + 0x4037aa14 0x34 zephyr/libzephyr.a(mmu_hal.c.obj) + 0x4037aa14 mmu_hal_unmap_all + .text.mmu_hal_paddr_to_vaddr + 0x4037aa48 0x5d zephyr/libzephyr.a(mmu_hal.c.obj) + 0x4037aa48 mmu_hal_paddr_to_vaddr + *fill* 0x4037aaa5 0x3 + .text.mmu_hal_map_region + 0x4037aaa8 0x42 zephyr/libzephyr.a(mmu_hal.c.obj) + 0x4037aaa8 mmu_hal_map_region + *fill* 0x4037aaea 0x0 + *fill* 0x4037aaea 0x0 + *fill* 0x4037aaea 0x0 + *libzephyr.a:spi_flash_hal_iram.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037aaea 0x2 + .text.spi_flash_hal_configure_host_io_mode + 0x4037aaec 0x310 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037aaec spi_flash_hal_configure_host_io_mode + .text.spi_flash_hal_common_command + 0x4037adfc 0x1a8 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037adfc spi_flash_hal_common_command + .text.spi_flash_hal_read + 0x4037afa4 0xc2 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037afa4 spi_flash_hal_read + *fill* 0x4037b066 0x2 + .text.spi_flash_hal_program_page + 0x4037b068 0xba zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b068 spi_flash_hal_program_page + *fill* 0x4037b122 0x2 + .text.spi_flash_hal_setup_read_suspend + 0x4037b124 0x74 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b124 spi_flash_hal_setup_read_suspend + .text.spi_flash_hal_setup_auto_suspend_mode + 0x4037b198 0x198 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b198 spi_flash_hal_setup_auto_suspend_mode + .text.spi_flash_hal_disable_auto_suspend_mode + 0x4037b330 0x86 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b330 spi_flash_hal_disable_auto_suspend_mode + *fill* 0x4037b3b6 0x2 + .text.spi_flash_hal_device_config + 0x4037b3b8 0x113 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x117 (size before relaxing) + 0x4037b3b8 spi_flash_hal_device_config + *fill* 0x4037b4cb 0x1 + .text.spi_flash_hal_poll_cmd_done + 0x4037b4cc 0xf zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b4cc spi_flash_hal_poll_cmd_done + *fill* 0x4037b4db 0x0 + *fill* 0x4037b4db 0x1 + .text.spi_flash_hal_erase_chip + 0x4037b4dc 0x28 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b4dc spi_flash_hal_erase_chip + .text.spi_flash_hal_erase_sector + 0x4037b504 0x73 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b504 spi_flash_hal_erase_sector + *fill* 0x4037b577 0x1 + .text.spi_flash_hal_erase_block + 0x4037b578 0x6c zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b578 spi_flash_hal_erase_block + *fill* 0x4037b5e4 0x0 + .text.spi_flash_hal_set_write_protect + 0x4037b5e4 0x30 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b5e4 spi_flash_hal_set_write_protect + .text.spi_flash_hal_check_status + 0x4037b614 0x20 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b614 spi_flash_hal_check_status + *fill* 0x4037b634 0x0 + *fill* 0x4037b634 0x0 + .text.spi_flash_hal_resume + 0x4037b634 0x22 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b634 spi_flash_hal_resume + *fill* 0x4037b656 0x2 + .text.spi_flash_hal_suspend + 0x4037b658 0x22 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b658 spi_flash_hal_suspend + *libzephyr.a:spi_flash_encrypt_hal_iram.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037b67a 0x2 + .text.spi_flash_encryption_hal_enable + 0x4037b67c 0x21 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4037b67c spi_flash_encryption_hal_enable + *fill* 0x4037b69d 0x3 + .text.spi_flash_encryption_hal_disable + 0x4037b6a0 0x17 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4037b6a0 spi_flash_encryption_hal_disable + *fill* 0x4037b6b7 0x1 + .text.spi_flash_encryption_hal_prepare + 0x4037b6b8 0x34 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4037b6b8 spi_flash_encryption_hal_prepare + .text.spi_flash_encryption_hal_done + 0x4037b6ec 0x22 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4037b6ec spi_flash_encryption_hal_done + *fill* 0x4037b70e 0x2 + .text.spi_flash_encryption_hal_destroy + 0x4037b710 0xf zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4037b710 spi_flash_encryption_hal_destroy + *fill* 0x4037b71f 0x0 + *fill* 0x4037b71f 0x0 + *fill* 0x4037b71f 0x0 + *fill* 0x4037b71f 0x0 + *fill* 0x4037b71f 0x1 + .text.spi_flash_encryption_hal_check + 0x4037b720 0xe zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4037b720 spi_flash_encryption_hal_check + *libzephyr.a:cache_hal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037b72e 0x2 + .text.cache_hal_vaddr_to_cache_level_id$part$0 + 0x4037b730 0x42 zephyr/libzephyr.a(cache_hal.c.obj) + *fill* 0x4037b772 0x2 + .text.cache_hal_disable + 0x4037b774 0x1f zephyr/libzephyr.a(cache_hal.c.obj) + 0x4037b774 cache_hal_disable + *fill* 0x4037b793 0x1 + .text.cache_hal_enable + 0x4037b794 0x2e zephyr/libzephyr.a(cache_hal.c.obj) + 0x4037b794 cache_hal_enable + *fill* 0x4037b7c2 0x2 + .text.cache_hal_suspend + 0x4037b7c4 0x19 zephyr/libzephyr.a(cache_hal.c.obj) + 0x1f (size before relaxing) + 0x4037b7c4 cache_hal_suspend + *fill* 0x4037b7dd 0x3 + .text.cache_hal_resume + 0x4037b7e0 0x2e zephyr/libzephyr.a(cache_hal.c.obj) + 0x4037b7e0 cache_hal_resume + *fill* 0x4037b80e 0x2 + .text.cache_hal_vaddr_to_cache_level_id + 0x4037b810 0x29 zephyr/libzephyr.a(cache_hal.c.obj) + 0x4037b810 cache_hal_vaddr_to_cache_level_id + *fill* 0x4037b839 0x3 + .text.cache_hal_invalidate_addr + 0x4037b83c 0x23 zephyr/libzephyr.a(cache_hal.c.obj) + 0x4037b83c cache_hal_invalidate_addr + *fill* 0x4037b85f 0x1 + .text.cache_hal_writeback_addr + 0x4037b860 0x1f zephyr/libzephyr.a(cache_hal.c.obj) + 0x23 (size before relaxing) + 0x4037b860 cache_hal_writeback_addr + *fill* 0x4037b87f 0x1 + .text.cache_hal_freeze + 0x4037b880 0x1c zephyr/libzephyr.a(cache_hal.c.obj) + 0x24 (size before relaxing) + 0x4037b880 cache_hal_freeze + .text.cache_hal_unfreeze + 0x4037b89c 0x1f zephyr/libzephyr.a(cache_hal.c.obj) + 0x4037b89c cache_hal_unfreeze + *fill* 0x4037b8bb 0x1 + .text.cache_hal_get_cache_line_size + 0x4037b8bc 0x1b zephyr/libzephyr.a(cache_hal.c.obj) + 0x4037b8bc cache_hal_get_cache_line_size + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *libzephyr.a:ledc_hal_iram.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:i2c_hal_iram.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:wdt_hal_iram.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037b8d7 0x1 + .text.wdt_hal_write_protect_disable + 0x4037b8d8 0x1d zephyr/libzephyr.a(wdt_hal_iram.c.obj) + 0x4037b8d8 wdt_hal_write_protect_disable + *fill* 0x4037b8f5 0x0 + *fill* 0x4037b8f5 0x3 + .text.wdt_hal_write_protect_enable + 0x4037b8f8 0x1c zephyr/libzephyr.a(wdt_hal_iram.c.obj) + 0x4037b8f8 wdt_hal_write_protect_enable + .text.wdt_hal_disable + 0x4037b914 0x30 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + 0x4037b914 wdt_hal_disable + .text.wdt_hal_set_flashboot_en + 0x4037b944 0x45 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + 0x4037b944 wdt_hal_set_flashboot_en + *libzephyr.a:systimer_hal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037b989 0x3 + .text.systimer_hal_init + 0x4037b98c 0x1c zephyr/libzephyr.a(systimer_hal.c.obj) + 0x4037b98c systimer_hal_init + .text.systimer_hal_select_alarm_mode + 0x4037b9a8 0x3c zephyr/libzephyr.a(systimer_hal.c.obj) + 0x4037b9a8 systimer_hal_select_alarm_mode + *fill* 0x4037b9e4 0x0 + .text.systimer_hal_set_tick_rate_ops + 0x4037b9e4 0xd zephyr/libzephyr.a(systimer_hal.c.obj) + 0x4037b9e4 systimer_hal_set_tick_rate_ops + *fill* 0x4037b9f1 0x3 + .text.systimer_hal_enable_counter + 0x4037b9f4 0x22 zephyr/libzephyr.a(systimer_hal.c.obj) + 0x4037b9f4 systimer_hal_enable_counter + *fill* 0x4037ba16 0x2 + .text.systimer_hal_connect_alarm_counter + 0x4037ba18 0x21 zephyr/libzephyr.a(systimer_hal.c.obj) + 0x4037ba18 systimer_hal_connect_alarm_counter + *fill* 0x4037ba39 0x3 + .text.systimer_hal_counter_can_stall_by_cpu + 0x4037ba3c 0x35 zephyr/libzephyr.a(systimer_hal.c.obj) + 0x4037ba3c systimer_hal_counter_can_stall_by_cpu + *libzephyr.a:spi_flash_hal_gpspi.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037ba71 0x3 + .text.gpspi_flash_ll_get_buffer_data + 0x4037ba74 0x58 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .text.spi_flash_hal_gpspi_device_config + 0x4037bacc 0x145 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x4037bacc spi_flash_hal_gpspi_device_config + *fill* 0x4037bc11 0x3 + .text.spi_flash_hal_gpspi_configure_host_io_mode + 0x4037bc14 0x25f zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x4037bc14 spi_flash_hal_gpspi_configure_host_io_mode + *fill* 0x4037be73 0x1 + .text.spi_flash_hal_gpspi_common_command + 0x4037be74 0x1a0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x1a4 (size before relaxing) + 0x4037be74 spi_flash_hal_gpspi_common_command + .text.spi_flash_hal_gpspi_read + 0x4037c014 0xc8 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x4037c014 spi_flash_hal_gpspi_read + *fill* 0x4037c0dc 0x0 + .text.spi_flash_hal_gpspi_poll_cmd_done + 0x4037c0dc 0xf zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x4037c0dc spi_flash_hal_gpspi_poll_cmd_done + *fill* 0x4037c0eb 0x0 + *fill* 0x4037c0eb 0x0 + *fill* 0x4037c0eb 0x1 + .text.spi_flash_hal_gpspi_supports_direct_write + 0x4037c0ec 0x7 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x4037c0ec spi_flash_hal_gpspi_supports_direct_write + *fill* 0x4037c0f3 0x1 + .text.spi_flash_hal_gpspi_supports_direct_read + 0x4037c0f4 0x7 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x4037c0f4 spi_flash_hal_gpspi_supports_direct_read + *fill* 0x4037c0fb 0x1 + .text.spi_flash_hal_gpspi_check_status + 0x4037c0fc 0x14 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x4037c0fc spi_flash_hal_gpspi_check_status + *libzephyr.a:lldesc.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *(SORT_BY_ALIGNMENT(.literal.esp_log_write) SORT_BY_ALIGNMENT(.text.esp_log_write)) + *(SORT_BY_ALIGNMENT(.literal.esp_log_timestamp) SORT_BY_ALIGNMENT(.text.esp_log_timestamp)) + *(SORT_BY_ALIGNMENT(.literal.esp_log_early_timestamp) SORT_BY_ALIGNMENT(.text.esp_log_early_timestamp)) + *(SORT_BY_ALIGNMENT(.literal.esp_log_impl_lock) SORT_BY_ALIGNMENT(.text.esp_log_impl_lock)) + *(SORT_BY_ALIGNMENT(.literal.esp_log_impl_lock_timeout) SORT_BY_ALIGNMENT(.text.esp_log_impl_lock_timeout)) + *(SORT_BY_ALIGNMENT(.literal.esp_log_impl_unlock) SORT_BY_ALIGNMENT(.text.esp_log_impl_unlock)) + *libzephyr.a:spi_flash_chip_boya.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .text.spi_flash_chip_boya_probe + 0x4037c110 0x22 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + 0x4037c110 spi_flash_chip_boya_probe + *fill* 0x4037c132 0x2 + .text.spi_flash_chip_boya_get_caps + 0x4037c134 0x7 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + 0x4037c134 spi_flash_chip_boya_get_caps + *libzephyr.a:spi_flash_chip_gd.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037c13b 0x1 + .text.spi_flash_chip_gd_suspend_cmd_conf + 0x4037c13c 0x1d zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x4037c13c spi_flash_chip_gd_suspend_cmd_conf + *fill* 0x4037c159 0x3 + .text.spi_flash_chip_gd_get_io_mode + 0x4037c15c 0x1a zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x1e (size before relaxing) + 0x4037c15c spi_flash_chip_gd_get_io_mode + *fill* 0x4037c176 0x2 + .text.spi_flash_chip_gd_set_io_mode + 0x4037c178 0x38 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x3c (size before relaxing) + 0x4037c178 spi_flash_chip_gd_set_io_mode + *fill* 0x4037c1b0 0x0 + .text.spi_flash_chip_gd_get_caps + 0x4037c1b0 0x14 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x4037c1b0 spi_flash_chip_gd_get_caps + .text.spi_flash_chip_gd_detect_size + 0x4037c1c4 0x34 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x4037c1c4 spi_flash_chip_gd_detect_size + *fill* 0x4037c1f8 0x0 + *fill* 0x4037c1f8 0x0 + .text.spi_flash_chip_gd_probe + 0x4037c1f8 0x3b zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x4037c1f8 spi_flash_chip_gd_probe + *fill* 0x4037c233 0x0 + *libzephyr.a:spi_flash_chip_generic.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037c233 0x1 + .text.spi_flash_chip_generic_reset + 0x4037c234 0x55 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c234 spi_flash_chip_generic_reset + *fill* 0x4037c289 0x3 + .text.spi_flash_chip_generic_config_host_io_mode + 0x4037c28c 0xf6 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c28c spi_flash_chip_generic_config_host_io_mode + *fill* 0x4037c382 0x2 + .text.spi_flash_chip_generic_get_caps + 0x4037c384 0x69 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c384 spi_flash_chip_generic_get_caps + *fill* 0x4037c3ed 0x3 + .text.spi_flash_chip_generic_suspend_cmd_conf + 0x4037c3f0 0x1d zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c3f0 spi_flash_chip_generic_suspend_cmd_conf + *fill* 0x4037c40d 0x3 + .text.spi_flash_chip_generic_read + 0x4037c410 0x93 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x97 (size before relaxing) + 0x4037c410 spi_flash_chip_generic_read + *fill* 0x4037c4a3 0x1 + .text.spi_flash_chip_generic_write + 0x4037c4a4 0x94 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c4a4 spi_flash_chip_generic_write + .text.spi_flash_chip_generic_get_write_protect + 0x4037c538 0x2c zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c538 spi_flash_chip_generic_get_write_protect + .text.spi_flash_chip_generic_yield + 0x4037c564 0x42 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c564 spi_flash_chip_generic_yield + *fill* 0x4037c5a6 0x2 + .text.spi_flash_chip_generic_read_unique_id + 0x4037c5a8 0x6c zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c5a8 spi_flash_chip_generic_read_unique_id + .text.spi_flash_chip_generic_write_encrypted + 0x4037c614 0xa8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c614 spi_flash_chip_generic_write_encrypted + .text.spi_flash_common_read_qe_sr$constprop$0$isra$0 + 0x4037c6bc 0x34 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x4037c6f0 0x34 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x38 (size before relaxing) + 0x4037c6f0 spi_flash_common_read_status_16b_rdsr_rdsr2 + .text.spi_flash_common_write_qe_sr$isra$0 + 0x4037c724 0x2e zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + *fill* 0x4037c752 0x2 + .text.spi_flash_common_write_status_16b_wrsr + 0x4037c754 0x15 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c754 spi_flash_common_write_status_16b_wrsr + *fill* 0x4037c769 0x3 + .text.spi_flash_chip_generic_erase_block + 0x4037c76c 0xc2 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c76c spi_flash_chip_generic_erase_block + *fill* 0x4037c82e 0x2 + .text.spi_flash_chip_generic_erase_sector + 0x4037c830 0xc2 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c830 spi_flash_chip_generic_erase_sector + *fill* 0x4037c8f2 0x2 + .text.spi_flash_chip_generic_page_program + 0x4037c8f4 0xa8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c8f4 spi_flash_chip_generic_page_program + .text.spi_flash_common_read_status_8b_rdsr2 + 0x4037c99c 0x10 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x14 (size before relaxing) + 0x4037c99c spi_flash_common_read_status_8b_rdsr2 + .text.spi_flash_chip_generic_get_io_mode + 0x4037c9ac 0x1a zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x1e (size before relaxing) + 0x4037c9ac spi_flash_chip_generic_get_io_mode + *fill* 0x4037c9c6 0x2 + .text.spi_flash_common_read_status_8b_rdsr + 0x4037c9c8 0x10 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x14 (size before relaxing) + 0x4037c9c8 spi_flash_common_read_status_8b_rdsr + .text.spi_flash_common_write_status_8b_wrsr + 0x4037c9d8 0x15 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c9d8 spi_flash_common_write_status_8b_wrsr + *fill* 0x4037c9ed 0x3 + .text.spi_flash_common_write_status_8b_wrsr2 + 0x4037c9f0 0x15 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c9f0 spi_flash_common_write_status_8b_wrsr2 + *fill* 0x4037ca05 0x3 + .text.spi_flash_common_set_io_mode + 0x4037ca08 0x87 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x8b (size before relaxing) + 0x4037ca08 spi_flash_common_set_io_mode + *fill* 0x4037ca8f 0x1 + .text.spi_flash_chip_generic_set_io_mode + 0x4037ca90 0x18 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037ca90 spi_flash_chip_generic_set_io_mode + .text.spi_flash_chip_generic_detect_size + 0x4037caa8 0x43 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037caa8 spi_flash_chip_generic_detect_size + *fill* 0x4037caeb 0x1 + .text.spi_flash_chip_generic_probe + 0x4037caec 0x7 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037caec spi_flash_chip_generic_probe + *fill* 0x4037caf3 0x0 + *fill* 0x4037caf3 0x1 + .text.spi_flash_chip_generic_erase_chip + 0x4037caf4 0x86 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037caf4 spi_flash_chip_generic_erase_chip + *fill* 0x4037cb7a 0x2 + .text.spi_flash_chip_generic_set_write_protect + 0x4037cb7c 0x4f zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037cb7c spi_flash_chip_generic_set_write_protect + *fill* 0x4037cbcb 0x1 + .text.spi_flash_chip_generic_read_reg + 0x4037cbcc 0x12 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037cbcc spi_flash_chip_generic_read_reg + *fill* 0x4037cbde 0x2 + .text.spi_flash_chip_generic_wait_idle + 0x4037cbe0 0x7e zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037cbe0 spi_flash_chip_generic_wait_idle + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x2 + .text.spi_flash_chip_generic_read_unique_id_none + 0x4037cc60 0x8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037cc60 spi_flash_chip_generic_read_unique_id_none + *fill* 0x4037cc68 0x0 + *fill* 0x4037cc68 0x0 + *fill* 0x4037cc68 0x0 + *fill* 0x4037cc68 0x0 + *libzephyr.a:spi_flash_chip_issi.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .text.spi_flash_chip_issi_set_io_mode + 0x4037cc68 0x14 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0x18 (size before relaxing) + 0x4037cc68 spi_flash_chip_issi_set_io_mode + .text.spi_flash_chip_issi_get_io_mode + 0x4037cc7c 0x1a zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0x1e (size before relaxing) + 0x4037cc7c spi_flash_chip_issi_get_io_mode + *fill* 0x4037cc96 0x2 + .text.spi_flash_chip_issi_probe + 0x4037cc98 0x24 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0x4037cc98 spi_flash_chip_issi_probe + .text.spi_flash_chip_issi_get_caps + 0x4037ccbc 0x7 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0x4037ccbc spi_flash_chip_issi_get_caps + *fill* 0x4037ccc3 0x0 + *libzephyr.a:spi_flash_chip_mxic.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037ccc3 0x1 + .text.spi_flash_chip_mxic_probe + 0x4037ccc4 0x1c zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + 0x4037ccc4 spi_flash_chip_mxic_probe + .text.spi_flash_chip_mxic_detect_size + 0x4037cce0 0x43 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + 0x4037cce0 spi_flash_chip_mxic_detect_size + *fill* 0x4037cd23 0x1 + .text.spi_flash_chip_mxic_get_caps + 0x4037cd24 0x7 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + 0x4037cd24 spi_flash_chip_mxic_get_caps + *libzephyr.a:spi_flash_chip_mxic_opi.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037cd2b 0x1 + .text.spi_flash_chip_mxic_opi_set_write_protect + 0x4037cd2c 0x6a zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037cd2c spi_flash_chip_mxic_opi_set_write_protect + *fill* 0x4037cd96 0x2 + .text.spi_flash_chip_mxic_opi_erase_chip + 0x4037cd98 0x86 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037cd98 spi_flash_chip_mxic_opi_erase_chip + *fill* 0x4037ce1e 0x2 + .text.spi_flash_chip_mxic_opi_erase_sector + 0x4037ce20 0x89 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037ce20 spi_flash_chip_mxic_opi_erase_sector + *fill* 0x4037cea9 0x3 + .text.spi_flash_chip_mxic_opi_erase_block + 0x4037ceac 0x89 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037ceac spi_flash_chip_mxic_opi_erase_block + *fill* 0x4037cf35 0x3 + .text.spi_flash_chip_mxic_opi_read_id + 0x4037cf38 0xc3 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037cf38 spi_flash_chip_mxic_opi_read_id + *fill* 0x4037cffb 0x1 + .text.spi_flash_chip_mxic_opi_get_write_protect + 0x4037cffc 0x2c zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037cffc spi_flash_chip_mxic_opi_get_write_protect + .text.spi_flash_chip_mxic_opi_write + 0x4037d028 0x94 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d028 spi_flash_chip_mxic_opi_write + .text.spi_flash_chip_mxic_opi_page_program + 0x4037d0bc 0x88 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d0bc spi_flash_chip_mxic_opi_page_program + .text.spi_flash_chip_mxic_opi_get_io_mode + 0x4037d144 0x76 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d144 spi_flash_chip_mxic_opi_get_io_mode + *fill* 0x4037d1ba 0x2 + .text.spi_flash_chip_mxic_opi_read_reg + 0x4037d1bc 0x5b zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d1bc spi_flash_chip_mxic_opi_read_reg + *fill* 0x4037d217 0x1 + .text.spi_flash_chip_mxic_opi_probe + 0x4037d218 0x1c zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d218 spi_flash_chip_mxic_opi_probe + .text.spi_flash_chip_mxic_opi_detect_size + 0x4037d234 0x34 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d234 spi_flash_chip_mxic_opi_detect_size + .text.spi_flash_chip_mxic_opi_get_caps + 0x4037d268 0x7 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d268 spi_flash_chip_mxic_opi_get_caps + *fill* 0x4037d26f 0x0 + *fill* 0x4037d26f 0x0 + *fill* 0x4037d26f 0x0 + *fill* 0x4037d26f 0x0 + *fill* 0x4037d26f 0x1 + .text.spi_flash_chip_xmic_opi_set_io_mode + 0x4037d270 0x7 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d270 spi_flash_chip_xmic_opi_set_io_mode + *fill* 0x4037d277 0x1 + .text.spi_flash_chip_xmic_opi_config_host_io_mode + 0x4037d278 0x38 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d278 spi_flash_chip_xmic_opi_config_host_io_mode + *fill* 0x4037d2b0 0x0 + *fill* 0x4037d2b0 0x0 + *libzephyr.a:spi_flash_chip_th.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037d2b0 0x0 + .text.spi_flash_chip_th_probe + 0x4037d2b0 0x22 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + 0x4037d2b0 spi_flash_chip_th_probe + *fill* 0x4037d2d2 0x2 + .text.spi_flash_chip_th_get_caps + 0x4037d2d4 0x7 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + 0x4037d2d4 spi_flash_chip_th_get_caps + *libzephyr.a:spi_flash_chip_winbond.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037d2db 0x1 + .text.spi_flash_chip_winbond_suspend_cmd_conf + 0x4037d2dc 0x1d zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4037d2dc spi_flash_chip_winbond_suspend_cmd_conf + *fill* 0x4037d2f9 0x3 + .text.spi_flash_chip_winbond_read + 0x4037d2fc 0x93 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x97 (size before relaxing) + 0x4037d2fc spi_flash_chip_winbond_read + *fill* 0x4037d38f 0x1 + .text.spi_flash_chip_winbond_erase_block + 0x4037d390 0xe0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4037d390 spi_flash_chip_winbond_erase_block + .text.spi_flash_chip_winbond_erase_sector + 0x4037d470 0xdc zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4037d470 spi_flash_chip_winbond_erase_sector + .text.spi_flash_chip_winbond_page_program + 0x4037d54c 0x95 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4037d54c spi_flash_chip_winbond_page_program + *fill* 0x4037d5e1 0x3 + .text.spi_flash_chip_winbond_probe + 0x4037d5e4 0x13 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4037d5e4 spi_flash_chip_winbond_probe + *fill* 0x4037d5f7 0x1 + .text.spi_flash_chip_winbond_get_caps + 0x4037d5f8 0x14 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4037d5f8 spi_flash_chip_winbond_get_caps + *fill* 0x4037d60c 0x0 + *fill* 0x4037d60c 0x0 + *libzephyr.a:memspi_host_driver.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .text.memspi_host_read_status_hs + 0x4037d60c 0x3a zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d60c memspi_host_read_status_hs + *fill* 0x4037d646 0x2 + .text.memspi_host_erase_chip + 0x4037d648 0x23 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d648 memspi_host_erase_chip + *fill* 0x4037d66b 0x1 + .text.memspi_host_set_write_protect + 0x4037d66c 0x2c zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d66c memspi_host_set_write_protect + .text.memspi_host_read_id_hs + 0x4037d698 0x7e zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d698 memspi_host_read_id_hs + *fill* 0x4037d716 0x2 + .text.memspi_host_flush_cache + 0x4037d718 0x19 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d718 memspi_host_flush_cache + *fill* 0x4037d731 0x3 + .text.memspi_host_erase_sector + 0x4037d734 0x36 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d734 memspi_host_erase_sector + *fill* 0x4037d76a 0x2 + .text.memspi_host_erase_block + 0x4037d76c 0x37 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d76c memspi_host_erase_block + *fill* 0x4037d7a3 0x1 + .text.memspi_host_program_page + 0x4037d7a4 0x3e zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d7a4 memspi_host_program_page + *fill* 0x4037d7e2 0x2 + .text.memspi_host_init_pointers + 0x4037d7e4 0x54 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d7e4 memspi_host_init_pointers + *fill* 0x4037d838 0x0 + *fill* 0x4037d838 0x0 + *fill* 0x4037d838 0x0 + .text.memspi_host_write_data_slicer + 0x4037d838 0x33 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d838 memspi_host_write_data_slicer + *fill* 0x4037d86b 0x1 + .text.memspi_host_read_data_slicer + 0x4037d86c 0x2a zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d86c memspi_host_read_data_slicer + *fill* 0x4037d896 0x0 + *fill* 0x4037d896 0x0 + *fill* 0x4037d896 0x0 + *fill* 0x4037d896 0x0 + *fill* 0x4037d896 0x0 + *fill* 0x4037d896 0x0 + *libzephyr.a:flash_brownout_hook.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:spi_flash_wrap.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:spi_flash_hpm_enable.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:spi_flash_oct_flash_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037d896 0x2 + .text.s_probe_mxic_chip + 0x4037d898 0x36 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + *fill* 0x4037d8ce 0x2 + .text.s_mxic_set_required_regs + 0x4037d8d0 0x1e zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + *fill* 0x4037d8ee 0x2 + .text.s_flash_init_mxic + 0x4037d8f0 0x13c zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0x144 (size before relaxing) + .text.esp_opiflash_init + 0x4037da2c 0x5b zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0x4037da2c esp_opiflash_init + *fill* 0x4037da87 0x0 + *fill* 0x4037da87 0x0 + *libzephyr.a:flash_ops.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:spi_flash_os_func_app.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037da87 0x1 + .text.get_buffer_malloc + 0x4037da88 0x1d zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + *fill* 0x4037daa5 0x3 + .text.spi_flash_os_check_yield + 0x4037daa8 0x15 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + *fill* 0x4037dabd 0x3 + .text.release_buffer_malloc + 0x4037dac0 0xa zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0xe (size before relaxing) + *fill* 0x4037daca 0x2 + .text.delay_us + 0x4037dacc 0x10 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text.spi_flash_os_yield + 0x4037dadc 0x11 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + *fill* 0x4037daed 0x3 + .text.esp_flash_app_enable_os_functions + 0x4037daf0 0x1b zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4037daf0 esp_flash_app_enable_os_functions + *fill* 0x4037db0b 0x1 + .text.main_flash_region_protected + 0x4037db0c 0x7 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + *fill* 0x4037db13 0x0 + *fill* 0x4037db13 0x0 + *fill* 0x4037db13 0x0 + *fill* 0x4037db13 0x0 + *fill* 0x4037db13 0x0 + *libzephyr.a:spi_flash_os_func_noos.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037db13 0x1 + .text.delay_us + 0x4037db14 0x10 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + *fill* 0x4037db24 0x0 + *libzephyr.a:esp_flash_api.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + .text.check_chip_pointer_default + 0x4037db24 0x1f zephyr/libzephyr.a(esp_flash_api.c.obj) + *fill* 0x4037db43 0x1 + .text.flash_end_flush_cache + 0x4037db44 0x46 zephyr/libzephyr.a(esp_flash_api.c.obj) + *fill* 0x4037db8a 0x2 + .text.detect_spi_flash_chip + 0x4037db8c 0x64 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.spiflash_start_default + 0x4037dbf0 0x11 zephyr/libzephyr.a(esp_flash_api.c.obj) + *fill* 0x4037dc01 0x3 + .text.esp_flash_read_chip_id + 0x4037dc04 0x10 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x14 (size before relaxing) + 0x4037dc04 esp_flash_read_chip_id + .text.esp_flash_get_physical_size + 0x4037dc14 0x5e zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4037dc14 esp_flash_get_physical_size + *fill* 0x4037dc72 0x2 + .text.esp_flash_is_quad_mode + 0x4037dc74 0x1e zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4037dc74 esp_flash_is_quad_mode + *fill* 0x4037dc92 0x2 + .text.esp_flash_init_main + 0x4037dc94 0x120 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x128 (size before relaxing) + 0x4037dc94 esp_flash_init_main + .text.spiflash_start_core + 0x4037ddb4 0x4b zephyr/libzephyr.a(esp_flash_api.c.obj) + *fill* 0x4037ddff 0x1 + .text.spiflash_end_default + 0x4037de00 0x1f zephyr/libzephyr.a(esp_flash_api.c.obj) + *fill* 0x4037de1f 0x0 + *fill* 0x4037de1f 0x0 + *fill* 0x4037de1f 0x0 + *fill* 0x4037de1f 0x0 + *fill* 0x4037de1f 0x0 + *fill* 0x4037de1f 0x0 + *libzephyr.a:esp_err.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *(SORT_BY_ALIGNMENT(.literal.esp_system_abort) SORT_BY_ALIGNMENT(.text.esp_system_abort)) + *(SORT_BY_ALIGNMENT(.literal.esp_restart_noos) SORT_BY_ALIGNMENT(.text.esp_restart_noos)) + *(SORT_BY_ALIGNMENT(.literal.esp_system_reset_modules_on_exit) SORT_BY_ALIGNMENT(.text.esp_system_reset_modules_on_exit)) + *(SORT_BY_ALIGNMENT(.literal.esp_cpu_stall) SORT_BY_ALIGNMENT(.text.esp_cpu_stall)) + *(SORT_BY_ALIGNMENT(.literal.esp_cpu_unstall) SORT_BY_ALIGNMENT(.text.esp_cpu_unstall)) + *(SORT_BY_ALIGNMENT(.literal.esp_cpu_reset) SORT_BY_ALIGNMENT(.text.esp_cpu_reset)) + *(SORT_BY_ALIGNMENT(.literal.esp_cpu_wait_for_intr) SORT_BY_ALIGNMENT(.text.esp_cpu_wait_for_intr)) + *(SORT_BY_ALIGNMENT(.literal.esp_cpu_compare_and_set) SORT_BY_ALIGNMENT(.text.esp_cpu_compare_and_set)) + *(SORT_BY_ALIGNMENT(.literal.esp_gpio_reserve_pins) SORT_BY_ALIGNMENT(.text.esp_gpio_reserve_pins)) + *(SORT_BY_ALIGNMENT(.literal.esp_gpio_is_pin_reserved) SORT_BY_ALIGNMENT(.text.esp_gpio_is_pin_reserved)) + *(SORT_BY_ALIGNMENT(.literal.rtc_vddsdio_get_config) SORT_BY_ALIGNMENT(.text.rtc_vddsdio_get_config)) + *(SORT_BY_ALIGNMENT(.literal.rtc_vddsdio_set_config) SORT_BY_ALIGNMENT(.text.rtc_vddsdio_set_config)) + *libzephyr.a:esp_memory_utils.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:rtc_clk.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037de1f 0x1 + .text.rtc_clk_32k_enable + 0x4037de20 0xce zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037de20 rtc_clk_32k_enable + *fill* 0x4037deee 0x2 + .text.rtc_clk_32k_enable_external + 0x4037def0 0x59 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037def0 rtc_clk_32k_enable_external + *fill* 0x4037df49 0x3 + .text.rtc_clk_8m_enable + 0x4037df4c 0x7e zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037df4c rtc_clk_8m_enable + *fill* 0x4037dfca 0x2 + .text.rtc_clk_slow_src_set + 0x4037dfcc 0xa8 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037dfcc rtc_clk_slow_src_set + .text.rtc_clk_slow_src_get + 0x4037e074 0x10 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037e074 rtc_clk_slow_src_get + .text.rtc_clk_fast_src_set + 0x4037e084 0x42 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037e084 rtc_clk_fast_src_set + *fill* 0x4037e0c6 0x2 + .text.rtc_clk_cpu_freq_mhz_to_config + 0x4037e0c8 0x56 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037e0c8 rtc_clk_cpu_freq_mhz_to_config + *fill* 0x4037e11e 0x2 + .text.rtc_clk_xtal_freq_update + 0x4037e120 0x28 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037e120 rtc_clk_xtal_freq_update + .text.rtc_clk_cpu_freq_to_pll_mhz + 0x4037e148 0x15b zephyr/libzephyr.a(rtc_clk.c.obj) + 0x16f (size before relaxing) + *fill* 0x4037e2a3 0x1 + .text.rtc_clk_cpu_freq_set_config + 0x4037e2a4 0x1c7 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x1e3 (size before relaxing) + 0x4037e2a4 rtc_clk_cpu_freq_set_config + *fill* 0x4037e46b 0x1 + .text.rtc_clk_cpu_freq_set_xtal + 0x4037e46c 0x25 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037e46c rtc_clk_cpu_freq_set_xtal + *fill* 0x4037e491 0x3 + .text.rtc_clk_divider_set + 0x4037e494 0x46 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037e494 rtc_clk_divider_set + *fill* 0x4037e4da 0x2 + .text.rtc_clk_8m_divider_set + 0x4037e4dc 0x44 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037e4dc rtc_clk_8m_divider_set + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *libzephyr.a:rtc_clk_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:rtc_sleep.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .text.rtc_sleep_pu + 0x4037e520 0x189 zephyr/libzephyr.a(rtc_sleep.c.obj) + 0x4037e520 rtc_sleep_pu + *libzephyr.a:rtc_time.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037e6a9 0x3 + .text.rtc_clk_cal_internal + 0x4037e6ac 0x21e zephyr/libzephyr.a(rtc_time.c.obj) + 0x222 (size before relaxing) + *fill* 0x4037e8ca 0x2 + .text.rtc_clk_cal + 0x4037e8cc 0xa8 zephyr/libzephyr.a(rtc_time.c.obj) + 0xb0 (size before relaxing) + 0x4037e8cc rtc_clk_cal + .text.rtc_time_us_to_slowclk + 0x4037e974 0x78 zephyr/libzephyr.a(rtc_time.c.obj) + 0x4037e974 rtc_time_us_to_slowclk + .text.rtc_time_get + 0x4037e9ec 0x2a zephyr/libzephyr.a(rtc_time.c.obj) + 0x4037e9ec rtc_time_get + *fill* 0x4037ea16 0x2 + .text.rtc_clk_freq_cal + 0x4037ea18 0x1c zephyr/libzephyr.a(rtc_time.c.obj) + 0x4037ea18 rtc_clk_freq_to_period + 0x4037ea18 rtc_clk_freq_cal + *fill* 0x4037ea34 0x0 + *fill* 0x4037ea34 0x0 + *fill* 0x4037ea34 0x0 + *libzephyr.a:systimer.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .text.systimer_ticks_to_us + 0x4037ea34 0xe zephyr/libzephyr.a(systimer.c.obj) + 0x4037ea34 systimer_ticks_to_us + *fill* 0x4037ea42 0x2 + .text.systimer_us_to_ticks + 0x4037ea44 0x10 zephyr/libzephyr.a(systimer.c.obj) + 0x4037ea44 systimer_us_to_ticks + *libzephyr.a:mspi_timing_config.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .text.mspi_timing_config_set_flash_clock + 0x4037ea54 0x5a zephyr/libzephyr.a(mspi_timing_config.c.obj) + 0x4037ea54 mspi_timing_config_set_flash_clock + *fill* 0x4037eaae 0x2 + .text.mspi_timing_config_set_psram_clock + 0x4037eab0 0x4b zephyr/libzephyr.a(mspi_timing_config.c.obj) + 0x4037eab0 mspi_timing_config_set_psram_clock + *fill* 0x4037eafb 0x0 + *libzephyr.a:mspi_timing_tuning.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037eafb 0x1 + .text.mspi_timing_enter_low_speed_mode + 0x4037eafc 0x1c zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x20 (size before relaxing) + 0x4037eafc mspi_timing_enter_low_speed_mode + .text.mspi_timing_enter_high_speed_mode + 0x4037eb18 0x12 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x4037eb18 mspi_timing_enter_high_speed_mode + *fill* 0x4037eb2a 0x2 + .text.mspi_timing_change_speed_mode_cache_safe + 0x4037eb2c 0x1c zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x2a (size before relaxing) + 0x4037eb2c mspi_timing_change_speed_mode_cache_safe + *fill* 0x4037eb48 0x0 + .text.spi_timing_get_flash_timing_param + 0x4037eb48 0x9 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x4037eb48 spi_timing_get_flash_timing_param + *fill* 0x4037eb51 0x3 + .text.mspi_timing_set_pin_drive_strength + 0x4037eb54 0x5f zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x4037eb54 mspi_timing_set_pin_drive_strength + *fill* 0x4037ebb3 0x1 + .text.mspi_timing_flash_tuning + 0x4037ebb4 0x5 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x4037ebb4 mspi_timing_flash_tuning + *fill* 0x4037ebb9 0x0 + *fill* 0x4037ebb9 0x0 + *fill* 0x4037ebb9 0x3 + .text.spi_flash_timing_is_tuned + 0x4037ebbc 0x7 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x4037ebbc spi_flash_timing_is_tuned + *fill* 0x4037ebc3 0x0 + *fill* 0x4037ebc3 0x0 + *libzephyr.a:regi2c_ctrl.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037ebc3 0x1 + .text.regi2c_ctrl_read_reg_mask + 0x4037ebc4 0x25 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x4037ebc4 regi2c_ctrl_read_reg_mask + *fill* 0x4037ebe9 0x3 + .text.regi2c_ctrl_write_reg + 0x4037ebec 0x20 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x4037ebec regi2c_ctrl_write_reg + .text.regi2c_ctrl_write_reg_mask + 0x4037ec0c 0x26 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x4037ec0c regi2c_ctrl_write_reg_mask + *fill* 0x4037ec32 0x2 + .text.regi2c_saradc_enable + 0x4037ec34 0x41 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x45 (size before relaxing) + 0x4037ec34 regi2c_saradc_enable + *fill* 0x4037ec75 0x3 + .text.regi2c_saradc_disable + 0x4037ec78 0x34 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x38 (size before relaxing) + 0x4037ec78 regi2c_saradc_disable + *fill* 0x4037ecac 0x0 + *fill* 0x4037ecac 0x0 + *fill* 0x4037ecac 0x0 + *fill* 0x4037ecac 0x0 + *(SORT_BY_ALIGNMENT(.literal.sar_periph_ctrl_power_enable) SORT_BY_ALIGNMENT(.text.sar_periph_ctrl_power_enable)) + *(SORT_BY_ALIGNMENT(.literal.GPIO_HOLD_MASK) SORT_BY_ALIGNMENT(.text.GPIO_HOLD_MASK)) + *libzephyr.a:esp_rom_cache_esp32s2_esp32s3.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .text.Cache_Suspend_ICache + 0x4037ecac 0x1b zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x4037ecac Cache_Suspend_ICache + *fill* 0x4037ecc7 0x1 + .text.Cache_Suspend_DCache + 0x4037ecc8 0x24 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x4037ecc8 Cache_Suspend_DCache + .text.Cache_Freeze_ICache_Enable + 0x4037ecec 0x1c zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x4037ecec Cache_Freeze_ICache_Enable + .text.Cache_Freeze_DCache_Enable + 0x4037ed08 0x24 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x4037ed08 Cache_Freeze_DCache_Enable + .text.Cache_WriteBack_Addr + 0x4037ed2c 0x90 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x4037ed2c Cache_WriteBack_Addr + *fill* 0x4037edbc 0x0 + *libzephyr.a:cache_utils.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + .text.spi_flash_init_lock + 0x4037edbc 0x5 zephyr/libzephyr.a(cache_utils.c.obj) + 0x4037edbc spi_flash_init_lock + *libzephyr.a:esp_rom_spiflash.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037edc1 0x3 + .text.esp_rom_opiflash_cache_mode_config + 0x4037edc4 0xe6 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + 0x4037edc4 esp_rom_opiflash_cache_mode_config + *fill* 0x4037eeaa 0x0 + *libzephyr.a:esp_rom_sys.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037eeaa 0x2 + .text.esp_rom_install_channel_putc + 0x4037eeac 0x2e zephyr/libzephyr.a(esp_rom_sys.c.obj) + 0x4037eeac esp_rom_install_channel_putc + *fill* 0x4037eeda 0x0 + *libzephyr.a:esp_rom_systimer.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_rom_wdt.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_rom_efuse.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_cache_utils.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037eeda 0x2 + .text.esp_cache_suspend_ext_mem_cache + 0x4037eedc 0xf zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4037eedc esp_cache_suspend_ext_mem_cache + *fill* 0x4037eeeb 0x1 + .text.esp_cache_resume_ext_mem_cache + 0x4037eeec 0xf zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4037eeec esp_cache_resume_ext_mem_cache + *fill* 0x4037eefb 0x1 + .text.esp_cache_freeze_ext_mem_cache + 0x4037eefc 0xf zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4037eefc esp_cache_freeze_ext_mem_cache + *fill* 0x4037ef0b 0x1 + .text.esp_cache_unfreeze_ext_mem_cache + 0x4037ef0c 0xf zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4037ef0c esp_cache_unfreeze_ext_mem_cache + *fill* 0x4037ef1b 0x0 + *fill* 0x4037ef1b 0x0 + *fill* 0x4037ef1b 0x0 + *fill* 0x4037ef1b 0x0 + *libzephyr.a:esp_cache_msync.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037ef1b 0x1 + .text.esp_cache_sync_ops_enter_critical_section + 0x4037ef1c 0xd zephyr/libzephyr.a(esp_cache_msync.c.obj) + 0x4037ef1c esp_cache_sync_ops_enter_critical_section + *fill* 0x4037ef29 0x3 + .text.esp_cache_sync_ops_exit_critical_section + 0x4037ef2c 0x10 zephyr/libzephyr.a(esp_cache_msync.c.obj) + 0x4037ef2c esp_cache_sync_ops_exit_critical_section + .text.esp_cache_msync + 0x4037ef3c 0x12d zephyr/libzephyr.a(esp_cache_msync.c.obj) + 0x131 (size before relaxing) + 0x4037ef3c esp_cache_msync + *fill* 0x4037f069 0x0 + *fill* 0x4037f069 0x0 + 0x4037f06c . = ALIGN (0x4) + *fill* 0x4037f069 0x3 + +.loader.text 0x4037f06c 0x36c load address 0x0000b090 + 0x4037f06c . = ALIGN (0x4) + 0x4037f06c _loader_text_start = ABSOLUTE (.) + *libzephyr.a:bootloader_clock_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_wdt.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_flash.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_flash_config_esp32s3.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_clock_loader.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_efuse.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_utility.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_sha.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_panic.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_image_format.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:flash_encrypt.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:flash_encryption_secure_features.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:flash_partitions.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:flash_qio_mode.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:spi_flash_hal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .literal.get_flash_clock_divider + 0x4037f06c 0x10 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_hal_init + 0x4037f07c 0x10 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x20 (size before relaxing) + .literal.spi_flash_hal_supports_direct_write + 0x4037f08c 0x4 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .literal.spi_flash_hal_supports_direct_read + 0x4037f090 0x0 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_init_default_chip + 0x4037f090 0x40 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x68 (size before relaxing) + .literal.esp_flash_app_init + 0x4037f0d0 0x4 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x14 (size before relaxing) + .text.get_flash_clock_divider + 0x4037f0d4 0x33 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x3b (size before relaxing) + *fill* 0x4037f107 0x1 + .text.spi_flash_hal_init + 0x4037f108 0x181 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x185 (size before relaxing) + 0x4037f108 spi_flash_hal_init + *fill* 0x4037f289 0x3 + .text.spi_flash_hal_supports_direct_write + 0x4037f28c 0x12 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x4037f28c spi_flash_hal_supports_direct_write + *fill* 0x4037f29e 0x2 + .text.spi_flash_hal_supports_direct_read + 0x4037f2a0 0x12 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x4037f2a0 spi_flash_hal_supports_direct_read + *fill* 0x4037f2b2 0x0 + *fill* 0x4037f2b2 0x0 + *fill* 0x4037f2b2 0x0 + *libzephyr.a:spi_flash_hal_common.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_flash_spi_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037f2b2 0x2 + .text.esp_flash_init_default_chip + 0x4037f2b4 0x10c zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x11c (size before relaxing) + 0x4037f2b4 esp_flash_init_default_chip + .text.esp_flash_app_init + 0x4037f3c0 0x17 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x1f (size before relaxing) + 0x4037f3c0 esp_flash_app_init + *fill* 0x4037f3d7 0x0 + *libzephyr.a:secure_boot.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:secure_boot_secure_features.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:secure_boot_signatures_bootloader.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_efuse_table.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_efuse_fields.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_efuse_api.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_efuse_utility.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_efuse_api_key_esp32xx.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:mpu_hal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:cpu_region_protect.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *(SORT_BY_ALIGNMENT(.fini.literal)) + *(.fini) + 0x4037f3d8 . = ALIGN (0x4) + *fill* 0x4037f3d7 0x1 + 0x4037f3d8 _loader_text_end = ABSOLUTE (.) + +.iram0.text_end + 0x4037f3d8 0x10 load address 0x0000b3fc + 0x4037f3e8 . = (ALIGN (0x4) + 0x10) + *fill* 0x4037f3d8 0x10 + 0x4037f3e8 _iram_text_end = ABSOLUTE (.) + +.iram0.data 0x4037f3e8 0x0 load address 0x0000b3fc + 0x4037f3e8 . = ALIGN (0x4) + 0x4037f3e8 _iram_data_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.iram.data)) + *(SORT_BY_ALIGNMENT(.iram.data*)) + 0x4037f3e8 _iram_data_end = ABSOLUTE (.) + +.iram0.bss 0x4037f3e8 0x0 load address 0x0000b3fc + 0x4037f3e8 . = ALIGN (0x4) + 0x4037f3e8 _iram_bss_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.iram.bss)) + *(SORT_BY_ALIGNMENT(.iram.bss*)) + 0x4037f3e8 _iram_bss_end = ABSOLUTE (.) + 0x4037f3e8 . = ALIGN (0x4) + 0x4037f3e8 _iram_end = ABSOLUTE (.) + +.dram0.dummy 0x3fc88000 0x73f0 + 0x3fc8f3e8 . = (ORIGIN (dram0_0_seg) + (MAX (_iram_end, 0x40378000) - 0x40378000)) + *fill* 0x3fc88000 0x73e8 + 0x3fc8f3f0 . = ALIGN (0x10) + *fill* 0x3fc8f3e8 0x8 + +.dram0.data 0x3fc8f3f0 0x1e7c load address 0x0000b3fc + 0x3fc8f3f0 . = ALIGN (0x8) + 0x3fc8f3f0 _data_start = ABSOLUTE (.) + 0x3fc8f3f0 __data_start = ABSOLUTE (.) + 0x3fc8f3f0 _btdm_data_start = ABSOLUTE (.) + *libbtdm_app.a:(SORT_BY_ALIGNMENT(.data) SORT_BY_ALIGNMENT(.data.*)) + 0x3fc8f3f0 . = ALIGN (0x4) + 0x3fc8f3f0 _btdm_data_end = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.data)) + *(SORT_BY_ALIGNMENT(.data.*)) + .data.s_config + 0x3fc8f3f0 0x70 zephyr/libzephyr.a(sleep_modes.c.obj) + .data.spi_data_0 + 0x3fc8f460 0x180 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .data._char_out + 0x3fc8f5e0 0x4 zephyr/libzephyr.a(printk.c.obj) + .data.map 0x3fc8f5e4 0x18 zephyr/libzephyr.a(loader.c.obj) + .data.timestamp_func + 0x3fc8f5fc 0x4 zephyr/libzephyr.a(log_core.c.obj) + .data.backend_cb_log_backend_uart + 0x3fc8f600 0x8 zephyr/libzephyr.a(log_backend_uart.c.obj) + .data.rom_func$0 + 0x3fc8f608 0x34 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .data.registered_chip_funcs + 0x3fc8f63c 0x8 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .data.esp_flash_registered_chips + 0x3fc8f644 0x4 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + 0x3fc8f644 esp_flash_registered_chips + .data.default_registered_chips + 0x3fc8f648 0x24 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .data.g_rtc_dbias_pvt_non_240m + 0x3fc8f66c 0x4 zephyr/libzephyr.a(rtc_init.c.obj) + 0x3fc8f66c g_rtc_dbias_pvt_non_240m + .data.g_dig_dbias_pvt_non_240m + 0x3fc8f670 0x4 zephyr/libzephyr.a(rtc_init.c.obj) + 0x3fc8f670 g_dig_dbias_pvt_non_240m + .data.g_rtc_dbias_pvt_240m + 0x3fc8f674 0x4 zephyr/libzephyr.a(rtc_init.c.obj) + 0x3fc8f674 g_rtc_dbias_pvt_240m + .data.g_dig_dbias_pvt_240m + 0x3fc8f678 0x4 zephyr/libzephyr.a(rtc_init.c.obj) + 0x3fc8f678 g_dig_dbias_pvt_240m + .data._putc1 0x3fc8f67c 0x4 zephyr/libzephyr.a(esp_rom_sys.c.obj) + 0x3fc8f67c _putc1 + .data.current_read_mapping + 0x3fc8f680 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + .data.__stdout + 0x3fc8f684 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .data.gpio_config_1 + 0x3fc8f694 0x10 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .data.gpio_config_0 + 0x3fc8f6a4 0x10 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .data.timer_work + 0x3fc8f6b4 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x3fc8f6b4 timer_work + .data.uart_esp32_data_0 + 0x3fc8f6c4 0x14 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .data.slice_ticks + 0x3fc8f6d8 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .data.timeout_list + 0x3fc8f6dc 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .data.wait_q$0 + 0x3fc8f6e4 0x8 zephyr/kernel/libkernel.a(poll.c.obj) + .data.MaxPayloadLength + 0x3fc8f6ec 0x1 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc8f6ec MaxPayloadLength + *(SORT_BY_ALIGNMENT(.gnu.linkonce.d.*)) + *(SORT_BY_ALIGNMENT(.data1)) + *(SORT_BY_ALIGNMENT(.sdata)) + *(SORT_BY_ALIGNMENT(.sdata.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.s.*)) + *(SORT_BY_ALIGNMENT(.sdata2)) + *(SORT_BY_ALIGNMENT(.sdata2.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.s2.*)) + *(SORT_BY_ALIGNMENT(.srodata)) + *(SORT_BY_ALIGNMENT(.srodata.*)) + *libarch__xtensa__core.a:(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc8f6ed 0x3 + .rodata.CSWTCH$3 + 0x3fc8f6f0 0x104 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .rodata.xtensa_lvl_mask + 0x3fc8f7f4 0x1c zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .rodata.xtensa_exccause.str1.1 + 0x3fc8f810 0x11 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .rodata.str1.1 + 0x3fc8f810 0x1c9 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .rodata.z_irq_spurious.str1.1 + 0x3fc8f810 0x2d zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .rodata.xtensa_dump_stack$part$0.str1.1 + 0x3fc8f810 0xbb zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .rodata.xtensa_excint1_c.str1.1 + 0x3fc8f810 0xc7 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + *libkernel.a:fatal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.CSWTCH$406 + 0x3fc8f810 0x14 zephyr/kernel/libkernel.a(fatal.c.obj) + .rodata.k_sys_fatal_error_handler.str1.1 + 0x3fc8f824 0xf zephyr/kernel/libkernel.a(fatal.c.obj) + .rodata.z_fatal_error.str1.1 + 0x3fc8f824 0x56 zephyr/kernel/libkernel.a(fatal.c.obj) + .rodata.str1.1 + 0x3fc8f824 0x4a zephyr/kernel/libkernel.a(fatal.c.obj) + *libkernel.a:init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.levels$0 + 0x3fc8f824 0x18 zephyr/kernel/libkernel.a(init.c.obj) + .rodata.z_cstart.str1.1 + 0x3fc8f83c 0x5 zephyr/kernel/libkernel.a(init.c.obj) + .rodata.str1.1 + 0x3fc8f83c 0x3 zephyr/kernel/libkernel.a(init.c.obj) + *libzephyr.a:cbprintf_complete.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:log_core.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.mpsc_config + 0x3fc8f83c 0x14 zephyr/libzephyr.a(log_core.c.obj) + .rodata.format_table + 0x3fc8f850 0x10 zephyr/libzephyr.a(log_core.c.obj) + .rodata.enable_logger.str1.1 + 0x3fc8f860 0x8 zephyr/libzephyr.a(log_core.c.obj) + .rodata.str1.1 + 0x3fc8f860 0x4 zephyr/libzephyr.a(log_core.c.obj) + *libzephyr.a:log_backend_uart.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.lbu_cb_ctx + 0x3fc8f860 0x8 zephyr/libzephyr.a(log_backend_uart.c.obj) + .rodata.lbu_output + 0x3fc8f868 0x10 zephyr/libzephyr.a(log_backend_uart.c.obj) + .rodata.log_backend_uart_api + 0x3fc8f878 0x1c zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x3fc8f878 log_backend_uart_api + .rodata.str1.1 + 0x3fc8f894 0x1a zephyr/libzephyr.a(log_backend_uart.c.obj) + *libzephyr.a:log_output.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.colors + 0x3fc8f894 0x14 zephyr/libzephyr.a(log_output.c.obj) + .rodata.severity + 0x3fc8f8a8 0x14 zephyr/libzephyr.a(log_output.c.obj) + .rodata.newline_print.str1.1 + 0x3fc8f8bc 0x5 zephyr/libzephyr.a(log_output.c.obj) + .rodata.log_output_process.str1.1 + 0x3fc8f8bc 0x51 zephyr/libzephyr.a(log_output.c.obj) + .rodata.log_output_dropped_process.str1.1 + 0x3fc8f8bc 0x3 zephyr/libzephyr.a(log_output.c.obj) + .rodata.postfix$0 + 0x3fc8f8bc 0x1c zephyr/libzephyr.a(log_output.c.obj) + .rodata.prefix$1 + 0x3fc8f8d8 0xc zephyr/libzephyr.a(log_output.c.obj) + .rodata.str1.1 + 0x3fc8f8e4 0x20 zephyr/libzephyr.a(log_output.c.obj) + *libzephyr.a:log_minimal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:loader.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.libc_heap_size + 0x3fc8f8e4 0x4 zephyr/libzephyr.a(loader.c.obj) + .rodata.map_rom_segments.str1.1 + 0x3fc8f8e8 0xdcb zephyr/libzephyr.a(loader.c.obj) + 0xaf (size before relaxing) + .rodata.__start.str1.1 + 0x3fc906b3 0x41 zephyr/libzephyr.a(loader.c.obj) + *libzephyr.a:flash_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.esp_flash_config.str1.1 + 0x3fc906b3 0x32 zephyr/libzephyr.a(flash_init.c.obj) + *libzephyr.a:soc_flash_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc906b3 0x1 + .rodata.init_spi_flash + 0x3fc906b4 0x20 zephyr/libzephyr.a(soc_flash_init.c.obj) + .rodata.CSWTCH$11 + 0x3fc906d4 0x20 zephyr/libzephyr.a(soc_flash_init.c.obj) + .rodata.CSWTCH$10 + 0x3fc906f4 0x40 zephyr/libzephyr.a(soc_flash_init.c.obj) + .rodata.init_spi_flash.str1.1 + 0x3fc90734 0x8c zephyr/libzephyr.a(soc_flash_init.c.obj) + .rodata.str1.1 + 0x3fc90734 0x3b zephyr/libzephyr.a(soc_flash_init.c.obj) + *libzephyr.a:console_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:soc_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata 0x3fc90734 0x8 zephyr/libzephyr.a(soc_init.c.obj) + .rodata.print_banner.str1.1 + 0x3fc9073c 0x69 zephyr/libzephyr.a(soc_init.c.obj) + .rodata.read_bootloader_header.str1.1 + 0x3fc9073c 0x31 zephyr/libzephyr.a(soc_init.c.obj) + .rodata.check_bootloader_validity.str1.1 + 0x3fc9073c 0x8f zephyr/libzephyr.a(soc_init.c.obj) + .rodata.wdt_reset_info_dump.str1.1 + 0x3fc9073c 0x3b zephyr/libzephyr.a(soc_init.c.obj) + .rodata.check_wdt_reset.str1.1 + 0x3fc9073c 0x28 zephyr/libzephyr.a(soc_init.c.obj) + *libzephyr.a:hw_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata 0x3fc9073c 0x8 zephyr/libzephyr.a(hw_init.c.obj) + .rodata.hardware_init.str1.1 + 0x3fc90744 0x3f zephyr/libzephyr.a(hw_init.c.obj) + *libzephyr.a:soc_random.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libdrivers__serial.a:uart_esp32.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata 0x3fc90744 0x28 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .rodata.__pinctrl_dev_config__device_dts_ord_64 + 0x3fc9076c 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .rodata.__pinctrl_states__device_dts_ord_64 + 0x3fc90774 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .rodata.__pinctrl_state_pins_0__device_dts_ord_64 + 0x3fc9077c 0x10 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .rodata.uart_esp32_init.str1.1 + 0x3fc9078c 0x64 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .rodata.str1.1 + 0x3fc9078c 0x19 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *libdrivers__flash.a:flash_esp32.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_mmu_map.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp32s3-mp.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:bootloader_flash.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + .rodata.CSWTCH$82 + 0x3fc9078c 0x6 zephyr/libzephyr.a(bootloader_flash.c.obj) + .rodata.bootloader_mmap.str1.1 + 0x3fc90792 0x5e zephyr/libzephyr.a(bootloader_flash.c.obj) + .rodata.esp_rom_flash_read.str1.1 + 0x3fc90792 0xb8 zephyr/libzephyr.a(bootloader_flash.c.obj) + .rodata.str1.1 + 0x3fc90792 0x40 zephyr/libzephyr.a(bootloader_flash.c.obj) + *libzephyr.a:flash_mmap.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:mmu_psram_flash.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_psram_impl_octal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_psram_impl_quad.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:efuse_hal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:mmu_hal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:spi_flash_hal_iram.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc90792 0x2 + .rodata.spi_flash_hal_configure_host_io_mode + 0x3fc90794 0x48 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .rodata.CSWTCH$57 + 0x3fc907dc 0x4 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + *libzephyr.a:spi_flash_encrypt_hal_iram.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:cache_hal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:ledc_hal_iram.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:i2c_hal_iram.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:wdt_hal_iram.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:systimer_hal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:spi_flash_hal_gpspi.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.spi_flash_hal_gpspi_configure_host_io_mode + 0x3fc907e0 0x18 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + *libzephyr.a:lldesc.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *(SORT_BY_ALIGNMENT(.rodata.esp_log_write)) + *(SORT_BY_ALIGNMENT(.rodata.esp_log_timestamp)) + *(SORT_BY_ALIGNMENT(.rodata.esp_log_early_timestamp)) + *(SORT_BY_ALIGNMENT(.rodata.esp_log_impl_lock)) + *(SORT_BY_ALIGNMENT(.rodata.esp_log_impl_lock_timeout)) + *(SORT_BY_ALIGNMENT(.rodata.esp_log_impl_unlock)) + *libzephyr.a:spi_flash_chip_boya.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.esp_flash_chip_boya + 0x3fc907f8 0x7c zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + 0x3fc907f8 esp_flash_chip_boya + .rodata.chip_name + 0x3fc90874 0x5 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + *libzephyr.a:spi_flash_chip_gd.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc90879 0x3 + .rodata.esp_flash_chip_gd + 0x3fc9087c 0x7c zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x3fc9087c esp_flash_chip_gd + .rodata.chip_name + 0x3fc908f8 0x3 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + *libzephyr.a:spi_flash_chip_generic.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc908fb 0x1 + .rodata.spi_flash_chip_generic_config_host_io_mode + 0x3fc908fc 0x18 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .rodata.esp_flash_chip_generic + 0x3fc90914 0x7c zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x3fc90914 esp_flash_chip_generic + .rodata.spi_flash_chip_generic_read.str1.1 + 0x3fc90990 0x35 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_read_unique_id.str1.1 + 0x3fc90990 0x44 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .rodata.chip_name + 0x3fc90990 0x8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .rodata.TAG 0x3fc90998 0xd zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + *libzephyr.a:spi_flash_chip_issi.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc909a5 0x3 + .rodata.esp_flash_chip_issi + 0x3fc909a8 0x7c zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0x3fc909a8 esp_flash_chip_issi + .rodata.chip_name + 0x3fc90a24 0x5 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + *libzephyr.a:spi_flash_chip_mxic.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc90a29 0x3 + .rodata.esp_flash_chip_mxic + 0x3fc90a2c 0x7c zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + 0x3fc90a2c esp_flash_chip_mxic + .rodata.chip_name + 0x3fc90aa8 0x5 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + *libzephyr.a:spi_flash_chip_mxic_opi.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc90aad 0x3 + .rodata.esp_flash_chip_mxic_opi + 0x3fc90ab0 0x7c zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x3fc90ab0 esp_flash_chip_mxic_opi + .rodata.spi_flash_chip_mxic_opi_read_id.str1.1 + 0x3fc90b2c 0x16 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .rodata.chip_name + 0x3fc90b2c 0xb zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + *libzephyr.a:spi_flash_chip_th.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc90b37 0x1 + .rodata.esp_flash_chip_th + 0x3fc90b38 0x7c zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + 0x3fc90b38 esp_flash_chip_th + .rodata.chip_name + 0x3fc90bb4 0x3 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + *libzephyr.a:spi_flash_chip_winbond.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc90bb7 0x1 + .rodata.esp_flash_chip_winbond + 0x3fc90bb8 0x7c zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x3fc90bb8 esp_flash_chip_winbond + .rodata.spi_flash_chip_winbond_read.str1.1 + 0x3fc90c34 0x35 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .rodata.chip_name + 0x3fc90c34 0x8 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .rodata.TAG 0x3fc90c3c 0x8 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + *libzephyr.a:memspi_host_driver.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.esp_flash_gpspi_host + 0x3fc90c44 0x58 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .rodata.memspi_host_read_id_hs.str1.1 + 0x3fc90c9c 0x16 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .rodata.TAG 0x3fc90c9c 0x7 zephyr/libzephyr.a(memspi_host_driver.c.obj) + *libzephyr.a:flash_brownout_hook.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:spi_flash_wrap.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:spi_flash_hpm_enable.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:spi_flash_oct_flash_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc90ca3 0x1 + .rodata.opiflash_cmd_def_mxic$1 + 0x3fc90ca4 0x5c zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .rodata.opi_flash_func_mxic + 0x3fc90d00 0xc zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .rodata.s_probe_mxic_chip.str1.1 + 0x3fc90d0c 0x47 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .rodata.esp_opiflash_init.str1.1 + 0x3fc90d0c 0x5d zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + *libzephyr.a:flash_qio_mode.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:flash_ops.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:spi_flash_os_func_app.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:spi_flash_os_func_noos.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_flash_api.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + .rodata 0x3fc90d0c 0x2c2 zephyr/libzephyr.a(esp_flash_api.c.obj) + .rodata.io_mode_str + 0x3fc90fce 0xb4 zephyr/libzephyr.a(esp_flash_api.c.obj) + *libzephyr.a:esp_cache_utils.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_cache_msync.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.esp_cache_msync.str1.1 + 0x3fc91082 0x1d9 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .rodata.__FUNCTION__$1 + 0x3fc91082 0x10 zephyr/libzephyr.a(esp_cache_msync.c.obj) + *(SORT_BY_ALIGNMENT(.rodata.esp_cpu_stall)) + *(SORT_BY_ALIGNMENT(.rodata.esp_cpu_unstall)) + *(SORT_BY_ALIGNMENT(.rodata.esp_cpu_reset)) + *(SORT_BY_ALIGNMENT(.rodata.esp_cpu_wait_for_intr)) + *(SORT_BY_ALIGNMENT(.rodata.esp_cpu_compare_and_set)) + *(SORT_BY_ALIGNMENT(.rodata.esp_gpio_reserve_pins)) + *(SORT_BY_ALIGNMENT(.rodata.esp_gpio_is_pin_reserved)) + *(SORT_BY_ALIGNMENT(.rodata.rtc_vddsdio_get_config)) + *(SORT_BY_ALIGNMENT(.rodata.rtc_vddsdio_set_config)) + *libzephyr.a:esp_memory_utils.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:rtc_clk.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.str1.1 + 0x3fc91092 0x3f zephyr/libzephyr.a(rtc_clk.c.obj) + *libzephyr.a:rtc_clk_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:systimer.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:mspi_timing_config.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:mspi_timing_tuning.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc91092 0x2 + .rodata 0x3fc91094 0x24 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + *(SORT_BY_ALIGNMENT(.rodata.sar_periph_ctrl_power_enable)) + *(SORT_BY_ALIGNMENT(.rodata.GPIO_HOLD_MASK)) + *libzephyr.a:esp_rom_cache_esp32s2_esp32s3.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:cache_utils.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.str1.1 + 0x3fc910b8 0x4c zephyr/libzephyr.a(cache_utils.c.obj) + *libzephyr.a:esp_rom_spiflash.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_rom_sys.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_rom_systimer.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_rom_wdt.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_rom_efuse.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_err.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *(SORT_BY_ALIGNMENT(.rodata.esp_system_abort)) + *(SORT_BY_ALIGNMENT(.rodata.esp_restart_noos)) + *(SORT_BY_ALIGNMENT(.rodata.esp_system_reset_modules_on_exit)) + *libphy.a:(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + 0x3fc91104 . = ALIGN (0x4) + 0x3fc91104 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.jcr)) + *(SORT_BY_ALIGNMENT(.dram1) SORT_BY_ALIGNMENT(.dram1.*)) + .dram1.2 0x3fc910b8 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .dram1.1 0x3fc910bc 0x10 zephyr/libzephyr.a(esp_flash_api.c.obj) + .dram1.2 0x3fc910cc 0x24 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .dram1.1 0x3fc910f0 0x30 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .dram1.0 0x3fc91120 0x8 zephyr/libzephyr.a(flash_ops.c.obj) + 0x3fc91120 g_flash_guard_default_ops + .dram1.0 0x3fc91128 0x58 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .dram1.5 0x3fc91180 0x14 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x3fc91180 spi_flash_chip_generic_timeout + .dram1.4 0x3fc91194 0x18 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .dram1.3 0x3fc911ac 0x4 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x3fc911ac rom_flash_chip_dummy_hpm + .dram1.2 0x3fc911b0 0x4 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x3fc911b0 rom_flash_chip_dummy + .dram1.2 0x3fc911b4 0x28 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + 0x3fc911b4 esp_flash_noos_functions + .dram1.7 0x3fc911dc 0x28 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .dram1.6 0x3fc91204 0x14 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .dram1.2 0x3fc91218 0x4 zephyr/libzephyr.a(rtc_module.c.obj) + .dram1.1 0x3fc9121c 0x4 zephyr/libzephyr.a(rtc_module.c.obj) + .dram1.0 0x3fc91220 0x4 zephyr/libzephyr.a(rtc_module.c.obj) + .dram1.1 0x3fc91224 0x14 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .dram1.1 0x3fc91238 0x1c zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .dram1.0 0x3fc91254 0xa zephyr/libzephyr.a(esp_flash_api.c.obj) + .dram1.1 0x3fc9125e 0x6 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .dram1.0 0x3fc91264 0x6 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x3fc9126c . = ALIGN (0x4) + *fill* 0x3fc9126a 0x2 + +.loader.data 0x3fc9126c 0x22c load address 0x0000d278 + 0x3fc9126c . = ALIGN (0x4) + 0x3fc9126c _loader_data_start = ABSOLUTE (.) + *libzephyr.a:bootloader_clock_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:bootloader_wdt.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:bootloader_flash.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:bootloader_efuse.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:cpu_util.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:clk.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + .rodata 0x3fc9126c 0x4 zephyr/libzephyr.a(clk.c.obj) + *libzephyr.a:esp_clk.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:cpu_region_protect.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:spi_flash_hal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + .rodata.CSWTCH$18 + 0x3fc91270 0xc zephyr/libzephyr.a(spi_flash_hal.c.obj) + .rodata.get_flash_clock_divider.str1.1 + 0x3fc9127c 0x1f2 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x71 (size before relaxing) + *libzephyr.a:spi_flash_hal_common.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:esp_flash_spi_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + .rodata.esp_flash_init_default_chip.str1.1 + 0x3fc9146e 0x181 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .rodata.CSWTCH$55 + 0x3fc9146e 0x4 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .rodata.__FUNCTION__$1 + 0x3fc91472 0x1c zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .rodata.TAG 0x3fc9148e 0xa zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x3fc915f0 . = ALIGN (0x4) + 0x3fc91498 _loader_data_end = ABSOLUTE (.) + +sw_isr_table 0x3fc91498 0x100 load address 0x0000d4a4 + 0x3fc91498 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.sw_isr_table*)) + .gnu.linkonce.sw_isr_table + 0x3fc91498 0x100 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + 0x3fc91498 _sw_isr_table + +device_states 0x3fc91598 0x10 load address 0x0000d5a4 + 0x3fc91598 . = ALIGN (0x4) + 0x3fc91598 __device_states_start = . + *(SORT_BY_ALIGNMENT(.z_devstate)) + .z_devstate 0x3fc91598 0x2 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .z_devstate 0x3fc9159a 0x4 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .z_devstate 0x3fc9159e 0x2 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .z_devstate 0x3fc915a0 0x2 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .z_devstate 0x3fc915a2 0x2 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .z_devstate 0x3fc915a4 0x2 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + *(SORT_BY_ALIGNMENT(.z_devstate.*)) + 0x3fc915a6 __device_states_end = . + 0x3fc915a8 . = ALIGN (0x4) + *fill* 0x3fc915a6 0x2 + +log_mpsc_pbuf_area + 0x3fc915a8 0x40 load address 0x0000d5b4 + 0x3fc915a8 _log_mpsc_pbuf_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_mpsc_pbuf.static.*))) + ._log_mpsc_pbuf.static.log_buffer_ + 0x3fc915a8 0x40 zephyr/libzephyr.a(log_core.c.obj) + 0x3fc915e8 _log_mpsc_pbuf_list_end = . + +log_msg_ptr_area + 0x3fc915e8 0x4 load address 0x0000d5f4 + 0x3fc915e8 _log_msg_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_msg_ptr.static.*))) + ._log_msg_ptr.static.log_msg_ptr_ + 0x3fc915e8 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x3fc915ec _log_msg_ptr_list_end = . + +log_dynamic_area + 0x3fc915ec 0x0 load address 0x0000d5f8 + 0x3fc915ec _log_dynamic_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_dynamic.static.*))) + 0x3fc915ec _log_dynamic_list_end = . + +k_timer_area 0x3fc915f0 0x38 load address 0x0000d5fc + 0x3fc915f0 _k_timer_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_timer.static.*))) + ._k_timer.static.lora_timer_ + 0x3fc915f0 0x38 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x3fc915f0 lora_timer + 0x3fc91628 _k_timer_list_end = . + +k_mem_slab_area + 0x3fc91628 0x0 load address 0x0000d634 + 0x3fc91628 _k_mem_slab_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mem_slab.static.*))) + 0x3fc91628 _k_mem_slab_list_end = . + +k_heap_area 0x3fc91628 0x14 load address 0x0000d634 + 0x3fc91628 _k_heap_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_heap.static.*))) + ._k_heap.static._system_heap_ + 0x3fc91628 0x14 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x3fc91628 _system_heap + 0x3fc9163c _k_heap_list_end = . + +k_mutex_area 0x3fc9163c 0x28 load address 0x0000d648 + 0x3fc9163c _k_mutex_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mutex.static.*))) + ._k_mutex.static.g_params_mutex_ + 0x3fc9163c 0x14 app/libapp.a(lora_modem.c.obj) + ._k_mutex.static.uart_tx_mutex_ + 0x3fc91650 0x14 app/libapp.a(main.c.obj) + 0x3fc91664 _k_mutex_list_end = . + +k_stack_area 0x3fc91664 0x0 load address 0x0000d670 + 0x3fc91664 _k_stack_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_stack.static.*))) + 0x3fc91664 _k_stack_list_end = . + +k_msgq_area 0x3fc91664 0x0 load address 0x0000d670 + 0x3fc91664 _k_msgq_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_msgq.static.*))) + 0x3fc91664 _k_msgq_list_end = . + +k_mbox_area 0x3fc91664 0x0 load address 0x0000d670 + 0x3fc91664 _k_mbox_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mbox.static.*))) + 0x3fc91664 _k_mbox_list_end = . + +k_pipe_area 0x3fc91664 0x0 load address 0x0000d670 + 0x3fc91664 _k_pipe_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_pipe.static.*))) + 0x3fc91664 _k_pipe_list_end = . + +k_sem_area 0x3fc91664 0x18 load address 0x0000d670 + 0x3fc91664 _k_sem_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_sem.static.*))) + ._k_sem.static.log_process_thread_sem_ + 0x3fc91664 0x18 zephyr/libzephyr.a(log_core.c.obj) + 0x3fc91664 log_process_thread_sem + 0x3fc9167c _k_sem_list_end = . + +k_event_area 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _k_event_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_event.static.*))) + 0x3fc9167c _k_event_list_end = . + +k_queue_area 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _k_queue_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_queue.static.*))) + 0x3fc9167c _k_queue_list_end = . + +k_fifo_area 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _k_fifo_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_fifo.static.*))) + 0x3fc9167c _k_fifo_list_end = . + +k_lifo_area 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _k_lifo_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_lifo.static.*))) + 0x3fc9167c _k_lifo_list_end = . + +k_condvar_area 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _k_condvar_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_condvar.static.*))) + 0x3fc9167c _k_condvar_list_end = . + +sys_mem_blocks_ptr_area + 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _sys_mem_blocks_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sys_mem_blocks_ptr.static.*))) + 0x3fc9167c _sys_mem_blocks_ptr_list_end = . + +net_buf_pool_area + 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _net_buf_pool_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._net_buf_pool.static.*))) + 0x3fc9167c _net_buf_pool_list_end = . + +log_strings_area + 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _log_strings_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_strings.static.*))) + 0x3fc9167c _log_strings_list_end = . + +log_stmesp_ptr_area + 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _log_stmesp_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_stmesp_ptr.static.*))) + 0x3fc9167c _log_stmesp_ptr_list_end = . + +log_stmesp_str_area + 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _log_stmesp_str_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_stmesp_str.static.*))) + 0x3fc9167c _log_stmesp_str_list_end = . + +log_const_area 0x3fc9167c 0x80 load address 0x0000d688 + 0x3fc9167c _log_const_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_const.static.*))) + ._log_const.static.log_const_cbprintf_package_ + 0x3fc9167c 0x8 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x3fc9167c log_const_cbprintf_package + ._log_const.static.log_const_clock_control_ + 0x3fc91684 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x3fc91684 log_const_clock_control + ._log_const.static.log_const_esp32_spi_ + 0x3fc9168c 0x8 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x3fc9168c log_const_esp32_spi + ._log_const.static.log_const_gpio_esp32_ + 0x3fc91694 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x3fc91694 log_const_gpio_esp32 + ._log_const.static.log_const_intc_esp32_ + 0x3fc9169c 0x8 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x3fc9169c log_const_intc_esp32 + ._log_const.static.log_const_log_ + 0x3fc916a4 0x8 zephyr/libzephyr.a(log_core.c.obj) + 0x3fc916a4 log_const_log + ._log_const.static.log_const_log_mgmt_ + 0x3fc916ac 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + 0x3fc916ac log_const_log_mgmt + ._log_const.static.log_const_log_uart_ + 0x3fc916b4 0x8 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x3fc916b4 log_const_log_uart + ._log_const.static.log_const_lora_modem_ + 0x3fc916bc 0x8 app/libapp.a(lora_modem.c.obj) + 0x3fc916bc log_const_lora_modem + ._log_const.static.log_const_main_ + 0x3fc916c4 0x8 app/libapp.a(main.c.obj) + 0x3fc916c4 log_const_main + ._log_const.static.log_const_os_ + 0x3fc916cc 0x8 zephyr/kernel/libkernel.a(init.c.obj) + 0x3fc916cc log_const_os + ._log_const.static.log_const_os_heap_ + 0x3fc916d4 0x8 zephyr/libzephyr.a(heap.c.obj) + 0x3fc916d4 log_const_os_heap + ._log_const.static.log_const_sx126x_ + 0x3fc916dc 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3fc916dc log_const_sx126x + ._log_const.static.log_const_sx12xx_common_ + 0x3fc916e4 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x3fc916e4 log_const_sx12xx_common + ._log_const.static.log_const_sys_getopt_ + 0x3fc916ec 0x8 zephyr/libzephyr.a(getopt.c.obj) + 0x3fc916ec log_const_sys_getopt + ._log_const.static.log_const_uart_esp32_ + 0x3fc916f4 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x3fc916f4 log_const_uart_esp32 + 0x3fc916fc _log_const_list_end = . + +log_backend_area + 0x3fc916fc 0x10 load address 0x0000d708 + 0x3fc916fc _log_backend_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_backend.static.*))) + ._log_backend.static.log_backend_uart_ + 0x3fc916fc 0x10 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x3fc9170c _log_backend_list_end = . + +log_link_area 0x3fc9170c 0x0 load address 0x0000d718 + 0x3fc9170c _log_link_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_link.static.*))) + 0x3fc9170c _log_link_list_end = . + +.dram0.data_end + 0x3fc9170c 0x0 load address 0x0000d718 + 0x3fc9170c __data_end = ABSOLUTE (.) + 0x3fc9170c _data_end = ABSOLUTE (.) + +.dram0.noinit 0x3fc91710 0x3c44 load address 0x0000d718 + 0x3fc91710 . = ALIGN (0x4) + 0x3fc91710 __dram_noinit_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.noinit)) + *(SORT_BY_ALIGNMENT(.noinit.*)) + .noinit.CMAKE_SOURCE_DIR/src/main.c.1 + 0x3fc91710 0x800 app/libapp.a(main.c.obj) + 0x3fc91710 lora_rx_stack + .noinit.CMAKE_SOURCE_DIR/src/main.c.0 + 0x3fc91f10 0x800 app/libapp.a(main.c.obj) + 0x3fc91f10 kiss_rx_stack + .noinit.WEST_TOPDIR/zephyr/subsys/logging/log_core.c.0 + 0x3fc92710 0x400 zephyr/libzephyr.a(log_core.c.obj) + 0x3fc92710 logging_stack + .noinit.WEST_TOPDIR/zephyr/kernel/init.c.2 + 0x3fc92b10 0x800 zephyr/kernel/libkernel.a(init.c.obj) + 0x3fc92b10 z_interrupt_stacks + .noinit.WEST_TOPDIR/zephyr/kernel/init.c.1 + 0x3fc93310 0x400 zephyr/kernel/libkernel.a(init.c.obj) + .noinit.WEST_TOPDIR/zephyr/kernel/init.c.0 + 0x3fc93710 0x800 zephyr/kernel/libkernel.a(init.c.obj) + 0x3fc93710 z_main_stack + .noinit.WEST_TOPDIR/zephyr/kernel/system_work_q.c.0 + 0x3fc93f10 0x400 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .noinit.WEST_TOPDIR/zephyr/kernel/mempool.c.kheap_buf__system_heap + 0x3fc94310 0x1044 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x3fc94310 kheap__system_heap + 0x3fc95354 __dram_noinit_end = ABSOLUTE (.) + 0x3fc95354 . = ALIGN (0x4) + +.dram0.bss 0x3fc95360 0x1058 load address 0x0000d718 + 0x3fc95360 . = ALIGN (0x8) + 0x3fc95360 _bss_start = ABSOLUTE (.) + 0x3fc95360 __bss_start = ABSOLUTE (.) + 0x3fc95360 _btdm_bss_start = ABSOLUTE (.) + *libbtdm_app.a:(SORT_BY_ALIGNMENT(.bss) SORT_BY_ALIGNMENT(.bss.*) SORT_BY_ALIGNMENT(COMMON)) + 0x3fc95360 . = ALIGN (0x4) + 0x3fc95360 _btdm_bss_end = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.dynsbss)) + *(SORT_BY_ALIGNMENT(.sbss)) + *(SORT_BY_ALIGNMENT(.sbss.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.sb.*)) + *(SORT_BY_ALIGNMENT(.scommon)) + *(SORT_BY_ALIGNMENT(.sbss2)) + *(SORT_BY_ALIGNMENT(.sbss2.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.sb2.*)) + *(SORT_BY_ALIGNMENT(.dynbss)) + *(SORT_BY_ALIGNMENT(.bss)) + *(SORT_BY_ALIGNMENT(.bss.*)) + .bss.buf32 0x3fc95360 0x400 zephyr/libzephyr.a(log_core.c.obj) + .bss.lora_rx_thread + 0x3fc95760 0x68 app/libapp.a(main.c.obj) + .bss.kiss_rx_thread + 0x3fc957c8 0x68 app/libapp.a(main.c.obj) + .bss.logging_thread + 0x3fc95830 0x68 zephyr/libzephyr.a(log_core.c.obj) + 0x3fc95830 logging_thread + .bss.last_failure_report + 0x3fc95898 0x8 zephyr/libzephyr.a(log_core.c.obj) + .bss.log_process_thread_timer + 0x3fc958a0 0x38 zephyr/libzephyr.a(log_core.c.obj) + .bss.serial_esp32_usb_data_0 + 0x3fc958d8 0x10 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .bss.z_idle_threads + 0x3fc958e8 0x68 zephyr/kernel/libkernel.a(init.c.obj) + 0x3fc958e8 z_idle_threads + .bss.z_main_thread + 0x3fc95950 0x68 zephyr/kernel/libkernel.a(init.c.obj) + 0x3fc95950 z_main_thread + .bss._thread_dummy + 0x3fc959b8 0x68 zephyr/kernel/libkernel.a(sched.c.obj) + 0x3fc959b8 _thread_dummy + .bss.slice_timeouts + 0x3fc95a20 0x18 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.curr_tick + 0x3fc95a38 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss.k_sys_work_q + 0x3fc95a40 0x88 zephyr/kernel/libkernel.a(system_work_q.c.obj) + 0x3fc95a40 k_sys_work_q + .bss.g_params 0x3fc95ac8 0xc app/libapp.a(lora_modem.c.obj) + .bss.bootloader_image_hdr + 0x3fc95ad4 0x18 zephyr/libzephyr.a(loader.c.obj) + 0x3fc95ad4 bootloader_image_hdr + .bss.curr_log_buffer + 0x3fc95aec 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.proc_tid 0x3fc95af0 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.dropped_cnt + 0x3fc95af4 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.buffered_cnt + 0x3fc95af8 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.initialized + 0x3fc95afc 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.timestamp_div + 0x3fc95b00 0x4 zephyr/libzephyr.a(log_output.c.obj) + .bss.freq 0x3fc95b04 0x4 zephyr/libzephyr.a(log_output.c.obj) + .bss.lbu_data 0x3fc95b08 0x20 zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss.lbu_output_control_block + 0x3fc95b28 0xc zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss.s_chip_func + 0x3fc95b34 0x4 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .bss.s_chip_id + 0x3fc95b38 0x4 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .bss.esp_flash_default_chip + 0x3fc95b3c 0x4 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x3fc95b3c esp_flash_default_chip + .bss.s_flash_guard_ops + 0x3fc95b40 0x4 zephyr/libzephyr.a(flash_ops.c.obj) + .bss.s_intr_saved_state + 0x3fc95b44 0x4 zephyr/libzephyr.a(cache_utils.c.obj) + .bss.rtc_spinlock + 0x3fc95b48 0x4 zephyr/libzephyr.a(rtc_io.c.obj) + .bss.rcc_lock_counter + 0x3fc95b4c 0x4 zephyr/libzephyr.a(periph_ctrl.c.obj) + .bss.periph_spinlock + 0x3fc95b50 0x4 zephyr/libzephyr.a(periph_ctrl.c.obj) + .bss.s_bbpll_digi_consumers_ref_count + 0x3fc95b54 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .bss.s_apb_freq + 0x3fc95b58 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .bss.s_cur_pll_freq + 0x3fc95b5c 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .bss.s_calibrated_freq + 0x3fc95b60 0x8 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .bss.s_i2c_saradc_enable_cnt + 0x3fc95b68 0x4 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .bss.regi2c_lock_counter + 0x3fc95b6c 0x4 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .bss.regi2c_lock + 0x3fc95b70 0x4 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .bss.s_spinlock + 0x3fc95b74 0x4 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .bss.s_mmu_ctx + 0x3fc95b78 0x40 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .bss._putc2 0x3fc95bb8 0x4 zephyr/libzephyr.a(esp_rom_sys.c.obj) + 0x3fc95bb8 _putc2 + .bss.s_reset_reason + 0x3fc95bbc 0x4 zephyr/libzephyr.a(reset_reason.c.obj) + .bss.systimer_hal + 0x3fc95bc0 0xc zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .bss._stdout_hook + 0x3fc95bcc 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss.z_malloc_heap + 0x3fc95bd0 0xc zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .bss.non_iram_int_disabled + 0x3fc95bdc 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .bss.non_iram_int_mask + 0x3fc95be0 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .bss.vector_desc_head + 0x3fc95be4 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .bss.gpio_data_1 + 0x3fc95be8 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .bss.gpio_data_0 + 0x3fc95bf4 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .bss.dev_data 0x3fc95c00 0x24 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .bss.saved_time + 0x3fc95c24 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .bss.dev_data 0x3fc95c28 0x6c zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .bss.TimerListHead + 0x3fc95c94 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .bss.FrequencyError + 0x3fc95c98 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3fc95c98 FrequencyError + .bss.LoRaHeaderType + 0x3fc95c9c 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .bss.PacketType + 0x3fc95ca0 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .bss.RxTimeoutTimer + 0x3fc95ca4 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc95ca4 RxTimeoutTimer + .bss.TxTimeoutTimer + 0x3fc95cbc 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc95cbc TxTimeoutTimer + .bss.SX126x 0x3fc95cd4 0x170 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc95cd4 SX126x + .bss.RadioEvents + 0x3fc95e44 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .bss.RadioPktStatus + 0x3fc95e48 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc95e48 RadioPktStatus + .bss.RxTimeout + 0x3fc95e5c 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc95e5c RxTimeout + .bss.TxTimeout + 0x3fc95e60 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc95e60 TxTimeout + .bss.last_count + 0x3fc95e64 0x4 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .bss._kernel 0x3fc95e68 0x20 zephyr/kernel/libkernel.a(init.c.obj) + 0x3fc95e68 _kernel + .bss.pending_cancels + 0x3fc95e88 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .bss.slice_max_prio + 0x3fc95e90 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.announce_remaining + 0x3fc95e94 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss.dec_buf$0 + 0x3fc95e98 0xff app/libapp.a(main.c.obj) + .bss.kiss_tx_buf + 0x3fc95f97 0x202 app/libapp.a(main.c.obj) + .bss.lora_rx_buf + 0x3fc96199 0xff app/libapp.a(main.c.obj) + .bss.backend_attached + 0x3fc96298 0x1 zephyr/libzephyr.a(log_core.c.obj) + .bss.panic_mode + 0x3fc96299 0x1 zephyr/libzephyr.a(log_core.c.obj) + .bss.lbu_buffer + 0x3fc9629a 0x1 zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss.ref_counts + 0x3fc9629b 0xc zephyr/libzephyr.a(periph_ctrl.c.obj) + .bss.ctx 0x3fc962a7 0x4 zephyr/libzephyr.a(cache_hal.c.obj) + .bss.s_ctx 0x3fc962ab 0x1 zephyr/libzephyr.a(mmu_hal.c.obj) + .bss.non_iram_int_disabled_flag + 0x3fc962ac 0x1 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .bss.clock_init_done + 0x3fc962ad 0x1 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .bss.isr_connected$0 + 0x3fc962ae 0x1 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .bss.ImageCalibrated + 0x3fc962af 0x1 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .bss.RadioPublicNetwork + 0x3fc962b0 0x2 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .bss.IrqFired 0x3fc962b2 0x1 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc962b2 IrqFired + .bss.RadioRxPayload + 0x3fc962b3 0xff zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc962b3 RadioRxPayload + .bss.RxContinuous + 0x3fc963b2 0x1 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc963b2 RxContinuous + .bss.z_sys_post_kernel + 0x3fc963b3 0x1 zephyr/kernel/libkernel.a(init.c.obj) + 0x3fc963b3 z_sys_post_kernel + .bss.lock 0x3fc963b4 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .bss.lock 0x3fc963b4 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .bss.lock 0x3fc963b4 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .bss.slice_expired + 0x3fc963b4 0x1 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.lock 0x3fc963b5 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + *(SORT_BY_ALIGNMENT(.share.mem)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.b.*)) + *(SORT_BY_ALIGNMENT(COMMON)) + 0x3fc963b8 . = ALIGN (0x8) + *fill* 0x3fc963b5 0x3 + 0x3fc963b8 _bss_end = ABSOLUTE (.) + 0x3fc963b8 __bss_end = ABSOLUTE (.) + 0x3fc84000 _image_ram_start = (_init_start - 0x6f0000) + +.last_ram_section + 0x3fc963b8 0x0 load address 0x0000d718 + 0x3fc963b8 _image_ram_end = . + 0x000123b8 _image_ram_size = (_image_ram_end - _image_ram_start) + 0x3fc963b8 _end = . + 0x3fc963b8 z_mapped_end = . + 0x00000001 ASSERT (((_end - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) + 0x00010000 _image_irom_start = LOADADDR (.text) + 0x0000862e _image_irom_size = ((LOADADDR (.text) + SIZEOF (.text)) - _image_irom_start) + 0x42000000 _image_irom_vaddr = ADDR (.text) + +.text_dummy 0x0000d718 0x28e8 + 0x00010000 . = ALIGN (0x10000) + *fill* 0x0000d718 0x28e8 + +.text 0x42000000 0x862e load address 0x00010000 + 0x42000000 _stext = . + 0x42000000 _instruction_reserved_start = ABSOLUTE (.) + 0x42000000 _text_start = ABSOLUTE (.) + 0x42000000 __text_region_start = ABSOLUTE (.) + 0x42000000 __rom_region_start = ABSOLUTE (.) + *libnet80211.a:(SORT_BY_ALIGNMENT(.wifi0iram) SORT_BY_ALIGNMENT(.wifi0iram.*) SORT_BY_ALIGNMENT(.wifislpiram) SORT_BY_ALIGNMENT(.wifislpiram.*) SORT_BY_ALIGNMENT(.wifiextrairam) SORT_BY_ALIGNMENT(.wifiextrairam.*)) + *libpp.a:(SORT_BY_ALIGNMENT(.wifi0iram) SORT_BY_ALIGNMENT(.wifi0iram.*) SORT_BY_ALIGNMENT(.wifislpiram) SORT_BY_ALIGNMENT(.wifislpiram.*) SORT_BY_ALIGNMENT(.wifiorslpiram) SORT_BY_ALIGNMENT(.wifiorslpiram.*) SORT_BY_ALIGNMENT(.wifiextrairam) SORT_BY_ALIGNMENT(.wifiextrairam.*)) + *libcoexist.a:(SORT_BY_ALIGNMENT(.wifi_slp_iram) SORT_BY_ALIGNMENT(.wifi_slp_iram.*) SORT_BY_ALIGNMENT(.coexiram) SORT_BY_ALIGNMENT(.coexiram.*) SORT_BY_ALIGNMENT(.coexsleepiram) SORT_BY_ALIGNMENT(.coexsleepiram.*)) + *libnet80211.a:(SORT_BY_ALIGNMENT(.wifirxiram) SORT_BY_ALIGNMENT(.wifirxiram.*) SORT_BY_ALIGNMENT(.wifislprxiram) SORT_BY_ALIGNMENT(.wifislprxiram.*)) + *libpp.a:(SORT_BY_ALIGNMENT(.wifirxiram) SORT_BY_ALIGNMENT(.wifirxiram.*) SORT_BY_ALIGNMENT(.wifislprxiram) SORT_BY_ALIGNMENT(.wifislprxiram.*)) + *(SORT_BY_ALIGNMENT(.stub) SORT_BY_ALIGNMENT(.gnu.warning) SORT_BY_ALIGNMENT(.gnu.linkonce.literal.*) SORT_BY_ALIGNMENT(.gnu.linkonce.t.*.literal) SORT_BY_ALIGNMENT(.gnu.linkonce.t.*)) + *(SORT_BY_ALIGNMENT(.irom0.text)) + *(SORT_BY_ALIGNMENT(.fini.literal)) + *(.fini) + *(SORT_BY_ALIGNMENT(.gnu.version)) + *(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + .literal.uart_write_bytes$constprop$0 + 0x42000000 0x8 app/libapp.a(main.c.obj) + .literal.send_hw_response$constprop$0 + 0x42000008 0xc app/libapp.a(main.c.obj) + 0x18 (size before relaxing) + .literal.lora_rx_fn + 0x42000014 0x1c app/libapp.a(main.c.obj) + 0x3c (size before relaxing) + .literal.kiss_rx_fn + 0x42000030 0x40 app/libapp.a(main.c.obj) + 0x94 (size before relaxing) + .literal.main 0x42000070 0x30 app/libapp.a(main.c.obj) + 0x48 (size before relaxing) + .literal.kiss_encode + 0x420000a0 0x0 app/libapp.a(kiss.c.obj) + 0x4 (size before relaxing) + .literal.lora_config$constprop$0 + 0x420000a0 0x4 app/libapp.a(lora_modem.c.obj) + .literal.k_mutex_lock$constprop$0$isra$0 + 0x420000a4 0x4 app/libapp.a(lora_modem.c.obj) + 0x8 (size before relaxing) + .literal.k_mutex_unlock$constprop$0$isra$0 + 0x420000a8 0x0 app/libapp.a(lora_modem.c.obj) + 0x8 (size before relaxing) + .literal.lora_modem_init + 0x420000a8 0x1c app/libapp.a(lora_modem.c.obj) + 0x2c (size before relaxing) + .literal.lora_modem_get_params + 0x420000c4 0x0 app/libapp.a(lora_modem.c.obj) + 0xc (size before relaxing) + .literal.lora_modem_set_params + 0x420000c4 0x8 app/libapp.a(lora_modem.c.obj) + 0x1c (size before relaxing) + .literal.lora_modem_set_freq + 0x420000cc 0x4 app/libapp.a(lora_modem.c.obj) + 0x18 (size before relaxing) + .literal.lora_modem_send + 0x420000d0 0x8 app/libapp.a(lora_modem.c.obj) + 0x28 (size before relaxing) + .literal.lora_modem_recv + 0x420000d8 0x4 app/libapp.a(lora_modem.c.obj) + 0x24 (size before relaxing) + .literal.chunk_size + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.set_chunk_size + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.undersized_chunk + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.free_list_remove_bidx + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x10 (size before relaxing) + .literal.free_list_remove + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x10 (size before relaxing) + .literal.alloc_chunk + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x10 (size before relaxing) + .literal.split_chunks + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x18 (size before relaxing) + .literal.merge_chunks + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x14 (size before relaxing) + .literal.free_list_add + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x24 (size before relaxing) + .literal.sys_heap_free + 0x420000dc 0x10 zephyr/libzephyr.a(heap.c.obj) + 0x4c (size before relaxing) + .literal.sys_heap_alloc + 0x420000ec 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x14 (size before relaxing) + .literal.sys_heap_noalign_alloc + 0x420000ec 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.sys_heap_init + 0x420000ec 0x4 zephyr/libzephyr.a(heap.c.obj) + 0x2c (size before relaxing) + .literal.__printk_hook_install + 0x420000f0 0x4 zephyr/libzephyr.a(printk.c.obj) + .literal.z_thread_entry + 0x420000f4 0x8 zephyr/libzephyr.a(thread_entry.c.obj) + .literal.get_usage + 0x420000fc 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x4 (size before relaxing) + .literal.rd_idx_inc + 0x420000fc 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x4 (size before relaxing) + .literal.add_skip_item + 0x420000fc 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x8 (size before relaxing) + .literal.drop_item_locked + 0x420000fc 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x18 (size before relaxing) + .literal.post_drop_action + 0x420000fc 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x8 (size before relaxing) + .literal.max_utilization_update + 0x420000fc 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x4 (size before relaxing) + .literal.mpsc_pbuf_init + 0x420000fc 0x4 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x8 (size before relaxing) + .literal.mpsc_pbuf_alloc + 0x42000100 0x8 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x1c (size before relaxing) + .literal.mpsc_pbuf_commit + 0x42000108 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x8 (size before relaxing) + .literal.mpsc_pbuf_claim + 0x42000108 0x4 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x10 (size before relaxing) + .literal.mpsc_pbuf_free + 0x4200010c 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0xc (size before relaxing) + .literal.log_source_name_get + 0x4200010c 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.log_backend_enable + 0x42000114 0x4 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.uart_hal_set_hw_flow_ctrl + 0x42000118 0x8 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_set_txfifo_empty_thr + 0x42000120 0x4 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_set_mode + 0x42000124 0x4 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_inverse_signal + 0x42000128 0x4 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_set_rx_timeout + 0x4200012c 0x8 zephyr/libzephyr.a(uart_hal.c.obj) + 0xc (size before relaxing) + .literal.uart_hal_txfifo_rst + 0x42000134 0x4 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .literal.uart_hal_rxfifo_rst + 0x42000138 0x4 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .literal.spi_hal_init + 0x4200013c 0x18 zephyr/libzephyr.a(spi_hal.c.obj) + 0x20 (size before relaxing) + .literal.spi_hal_setup_device + 0x42000154 0xc zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x20 (size before relaxing) + .literal.spi_hal_cal_timing + 0x42000160 0xc zephyr/libzephyr.a(spi_hal_iram.c.obj) + .literal.spi_hal_cal_clock_conf + 0x4200016c 0x8 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_hal_setup_trans + 0x42000174 0x10 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x20 (size before relaxing) + .literal.spi_hal_enable_data_line + 0x42000184 0x8 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .literal.spi_hal_fetch_result + 0x4200018c 0x0 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.rtc_gpio_is_valid_gpio + 0x4200018c 0x4 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_pullup_en + 0x42000190 0x18 zephyr/libzephyr.a(rtc_io.c.obj) + 0x20 (size before relaxing) + .literal.rtc_gpio_pullup_dis + 0x420001a8 0x8 zephyr/libzephyr.a(rtc_io.c.obj) + 0x24 (size before relaxing) + .literal.rtc_gpio_pulldown_en + 0x420001b0 0x4 zephyr/libzephyr.a(rtc_io.c.obj) + 0x20 (size before relaxing) + .literal.rtc_gpio_pulldown_dis + 0x420001b4 0x4 zephyr/libzephyr.a(rtc_io.c.obj) + 0x20 (size before relaxing) + .literal.clk_hal_lp_slow_get_freq_hz + 0x420001b8 0xc zephyr/libzephyr.a(clk_tree_hal.c.obj) + .literal.clk_hal_xtal_get_freq_mhz + 0x420001c4 0xc zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x10 (size before relaxing) + .literal.clk_hal_soc_root_get_freq_mhz + 0x420001d0 0x4 zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x8 (size before relaxing) + .literal.clk_hal_cpu_get_freq_hz + 0x420001d4 0x8 zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x18 (size before relaxing) + .literal.clk_hal_apb_get_freq_hz + 0x420001dc 0x4 zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0xc (size before relaxing) + .literal.esp_clk_slowclk_cal_set + 0x420001e0 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .literal.periph_ll_enable_clk_clear_rst + 0x420001e4 0x20 zephyr/libzephyr.a(periph_ctrl.c.obj) + .literal.periph_ll_disable_clk_set_rst + 0x42000204 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x20 (size before relaxing) + .literal.periph_rcc_acquire_enter + 0x42000204 0x8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .literal.periph_rcc_acquire_exit + 0x4200020c 0x4 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x8 (size before relaxing) + .literal.periph_module_enable + 0x42000210 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x14 (size before relaxing) + .literal.periph_module_disable + 0x42000210 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x14 (size before relaxing) + .literal.non_shared_periph_module_enable + 0x42000210 0x18 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x34 (size before relaxing) + .literal.non_shared_periph_module_disable + 0x42000228 0x4 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x2c (size before relaxing) + .literal.esp_clk_tree_src_get_freq_hz + 0x4200022c 0x20 zephyr/libzephyr.a(esp_clk_tree.c.obj) + 0x50 (size before relaxing) + .literal.esp_cpu_intr_get_desc + 0x4200024c 0x4 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + 0x8 (size before relaxing) + .literal.get_rtc_dbias_by_efuse$constprop$0 + 0x42000250 0x4 zephyr/libzephyr.a(rtc_init.c.obj) + .literal.rtc_init + 0x42000254 0xbc zephyr/libzephyr.a(rtc_init.c.obj) + 0x120 (size before relaxing) + .literal.sar_periph_ctrl_init + 0x42000310 0x8 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.esp_clk_tree_rc_fast_d256_get_freq_hz + 0x42000318 0x8 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x18 (size before relaxing) + .literal.esp_clk_tree_xtal32k_get_freq_hz + 0x42000320 0x0 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x14 (size before relaxing) + .literal.esp_clk_tree_lp_slow_get_freq_hz + 0x42000320 0x0 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x14 (size before relaxing) + .literal.esp_clk_tree_rc_fast_get_freq_hz + 0x42000320 0x4 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x8 (size before relaxing) + .literal.esp_clk_tree_lp_fast_get_freq_hz + 0x42000324 0x0 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0xc (size before relaxing) + .literal.esp_sleep_sub_mode_config + 0x42000324 0x14 zephyr/libzephyr.a(sleep_modes.c.obj) + 0x18 (size before relaxing) + .literal.esp_sleep_sub_mode_force_disable + 0x42000338 0x0 zephyr/libzephyr.a(sleep_modes.c.obj) + 0x8 (size before relaxing) + .literal.esp_sleep_sub_mode_dump_config + 0x42000338 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + 0x18 (size before relaxing) + .literal 0x42000344 0x10 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .literal.esp_rtc_init + 0x42000354 0x8 zephyr/libzephyr.a(clk.c.obj) + 0x10 (size before relaxing) + .literal.esp_perip_clk_init + 0x4200035c 0x18 zephyr/libzephyr.a(clk.c.obj) + 0x34 (size before relaxing) + .literal.esp_reset_reason_get_hint + 0x42000374 0x4 zephyr/libzephyr.a(reset_reason.c.obj) + .literal.esp_reset_reason_init + 0x42000378 0x8 zephyr/libzephyr.a(reset_reason.c.obj) + 0x14 (size before relaxing) + .literal.esp_timer_impl_early_init + 0x42000380 0x20 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + 0x34 (size before relaxing) + .literal.esp_timer_early_init + 0x420003a0 0x0 zephyr/libzephyr.a(esp_timer_init.c.obj) + 0x4 (size before relaxing) + .literal.__assert_no_args + 0x420003a0 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + 0x4 (size before relaxing) + .literal.cbvprintf + 0x420003a0 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + 0xc (size before relaxing) + .literal.z_impl_zephyr_fputc + 0x420003a4 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .literal.picolibc_put + 0x420003a8 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x4 (size before relaxing) + .literal.__stdout_hook_install + 0x420003a8 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x8 (size before relaxing) + .literal.abort + 0x420003ac 0x4 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + 0xc (size before relaxing) + .literal.malloc_prepare + 0x420003b0 0xc zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + 0x10 (size before relaxing) + .literal.find_desc_for_int + 0x420003bc 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .literal.is_vect_desc_usable + 0x420003c0 0x8 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x10 (size before relaxing) + .literal.get_desc_for_int + 0x420003c8 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x10 (size before relaxing) + .literal.esp_intr_alloc_intrstatus + 0x420003cc 0x30 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x78 (size before relaxing) + .literal.esp_intr_alloc + 0x420003fc 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x4 (size before relaxing) + .literal.clock_control_esp32_get_status + 0x420003fc 0x4 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x10 (size before relaxing) + .literal.clock_control_esp32_get_rate + 0x42000400 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0xc (size before relaxing) + .literal.clock_control_esp32_off + 0x42000400 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0xc (size before relaxing) + .literal.clock_control_esp32_on + 0x42000400 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0xc (size before relaxing) + .literal.esp32_select_rtc_slow_clk + 0x42000400 0x1c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x30 (size before relaxing) + .literal.esp32_cpu_clock_configure + 0x4200041c 0x2c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x48 (size before relaxing) + .literal.clock_control_esp32_configure + 0x42000448 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x1c (size before relaxing) + .literal.clock_control_esp32_init + 0x42000450 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x30 (size before relaxing) + .literal.uart_console_init + 0x42000458 0x4 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + 0x14 (size before relaxing) + .literal.gpio_esp32_pin_interrupt_configure + 0x4200045c 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .literal.gpio_esp32_init + 0x42000464 0x10 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x18 (size before relaxing) + .literal.sx126x_set_tx_enable + 0x42000474 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.sx126x_dio1_irq_work_handler$part$0 + 0x42000478 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xc (size before relaxing) + .literal.sx126x_dio1_irq_work_handler + 0x42000480 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + .literal.sx126x_lora_init + 0x42000488 0x1c zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x40 (size before relaxing) + .literal.SX126xGetOperatingMode + 0x420004a4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetOperatingMode + 0x420004a4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xc (size before relaxing) + .literal.SX126xIoIrqInit + 0x420004a4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xIoRfSwitchInit + 0x420004a4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xReset + 0x420004a4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetRfTxPower + 0x420004a4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xWaitOnBusy + 0x420004a4 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xc (size before relaxing) + .literal.sx126x_spi_transceive$isra$0 + 0x420004a8 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x1c (size before relaxing) + .literal.SX126xWriteBuffer + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xReadBuffer + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xWriteCommand + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xReadCommand + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xWriteRegisters + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xWriteRegister + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xReadRegisters + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xReadRegister + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xWakeup + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x20 (size before relaxing) + .literal.SX126xGetDio1PinState + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.timer_work_handler + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x4 (size before relaxing) + .literal.timer_callback + 0x420004b4 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .literal.k_uptime_get_32 + 0x420004bc 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x8 (size before relaxing) + .literal.RtcGetTimerValue + 0x420004c0 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x4 (size before relaxing) + .literal.RtcGetTimerElapsedTime + 0x420004c0 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x8 (size before relaxing) + .literal.RtcStopAlarm + 0x420004c4 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .literal.RtcSetAlarm + 0x420004cc 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x8 (size before relaxing) + .literal.RtcSetTimerContext + 0x420004d0 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x8 (size before relaxing) + .literal.RtcGetTimerContext + 0x420004d0 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x4 (size before relaxing) + .literal.DelayMsMcu + 0x420004d0 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x4 (size before relaxing) + .literal.modem_release$constprop$0 + 0x420004d0 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0xc (size before relaxing) + .literal.sx12xx_ev_tx_done + 0x420004d8 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0xc (size before relaxing) + .literal.sx12xx_ev_tx_timed_out + 0x420004dc 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x4 (size before relaxing) + .literal.sx12xx_ev_rx_error + 0x420004dc 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x10 (size before relaxing) + .literal.sx12xx_ev_rx_done + 0x420004dc 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x14 (size before relaxing) + .literal.__sx12xx_configure_pin + 0x420004dc 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x24 (size before relaxing) + .literal.sx12xx_airtime + 0x420004f0 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x8 (size before relaxing) + .literal.sx12xx_lora_send_async + 0x420004f0 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0xc (size before relaxing) + .literal.sx12xx_lora_send + 0x420004f0 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x28 (size before relaxing) + .literal.sx12xx_lora_recv + 0x420004f8 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x30 (size before relaxing) + .literal.sx12xx_lora_recv_async + 0x42000500 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x10 (size before relaxing) + .literal.sx12xx_lora_config + 0x42000500 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x20 (size before relaxing) + .literal.sx12xx_lora_test_cw + 0x42000508 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x8 (size before relaxing) + .literal.sx12xx_init + 0x42000508 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x20 (size before relaxing) + .literal.gpio_pin_configure_dt + 0x4200051c 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x8 (size before relaxing) + .literal.sx126x_dio1_irq_callback + 0x42000520 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x4 (size before relaxing) + .literal.z_impl_gpio_pin_interrupt_configure$isra$0 + 0x42000520 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .literal.sx126x_reset + 0x42000524 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x14 (size before relaxing) + .literal.sx126x_is_busy + 0x42000524 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x8 (size before relaxing) + .literal.sx126x_get_dio1_pin_state + 0x42000524 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x8 (size before relaxing) + .literal.sx126x_dio1_irq_enable + 0x42000524 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x8 (size before relaxing) + .literal.sx126x_dio1_irq_disable + 0x42000524 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x8 (size before relaxing) + .literal.sx126x_set_tx_params + 0x42000524 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x4 (size before relaxing) + .literal.sx126x_variant_init + 0x42000524 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x30 (size before relaxing) + .literal.TimerSetTimeout + 0x4200053c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x10 (size before relaxing) + .literal.TimerInsertNewHeadTimer + 0x4200053c 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x8 (size before relaxing) + .literal.TimerStart + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x18 (size before relaxing) + .literal.TimerIrqHandler + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x14 (size before relaxing) + .literal.TimerStop + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x14 (size before relaxing) + .literal.TimerSetValue + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0xc (size before relaxing) + .literal.TimerGetCurrentTime + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x8 (size before relaxing) + .literal.TimerGetElapsedTime + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0xc (size before relaxing) + .literal.DelayMs + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + 0x4 (size before relaxing) + .literal.SX126xCheckDeviceReady + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x14 (size before relaxing) + .literal.SX126xSetPayload + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetSyncWord + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetCrcSeed + 0x42000540 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetCrcPolynomial + 0x42000544 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetWhiteningSeed + 0x42000544 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + .literal.SX126xSetSleep + 0x42000544 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + .literal.SX126xSetStandby + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xInit + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x20 (size before relaxing) + .literal.SX126xSetTx + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSendPayload + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetRx + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xc (size before relaxing) + .literal.SX126xGetRandom + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x24 (size before relaxing) + .literal.SX126xSetRxBoosted + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xc (size before relaxing) + .literal.SX126xSetRxDutyCycle + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetCad + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetTxContinuousWave + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetStopRxTimerOnPreambleDetect + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetLoRaSymbNumTimeout + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetRegulatorMode + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xCalibrateImage + 0x42000548 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x18 (size before relaxing) + .literal.SX126xSetPaConfig + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetDioIrqParams + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xGetIrqStatus + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetDio2AsRfSwitchCtrl + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetRfFrequency + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + .literal.SX126xSetPacketType + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xGetPacketType + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetTxParams + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x1c (size before relaxing) + .literal.SX126xSetModulationParams + 0x4200055c 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x14 (size before relaxing) + .literal.SX126xSetPacketParams + 0x42000560 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x24 (size before relaxing) + .literal.SX126xSetBufferBaseAddress + 0x42000564 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xGetRssiInst + 0x42000564 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xGetRxBufferStatus + 0x42000564 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + .literal.SX126xGetPayload + 0x42000564 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xGetPacketStatus + 0x42000564 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + .literal.SX126xClearIrqStatus + 0x42000568 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.RadioOnTxTimeoutIrq + 0x42000568 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .literal.RadioOnRxTimeoutIrq + 0x4200056c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioOnDioIrq + 0x4200056c 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .literal.RadioStandby + 0x42000570 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioGetStatus + 0x42000570 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x8 (size before relaxing) + .literal.RadioSetChannel + 0x42000574 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioRead + 0x42000574 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioWrite + 0x42000574 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioSend + 0x42000574 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x24 (size before relaxing) + .literal.RadioSleep + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x8 (size before relaxing) + .literal.RadioSetRxDutyCycle + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioReadBuffer + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioWriteBuffer + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioStartCad + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x8 (size before relaxing) + .literal.RadioSetTxContinuousWave + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x18 (size before relaxing) + .literal.RadioRssi + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioGetWakeupTime + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioIrqProcess + 0x42000580 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x84 (size before relaxing) + .literal.RadioGetFskBandwidthRegValue + 0x42000590 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .literal.RadioSetMaxPayloadLength + 0x42000594 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xc (size before relaxing) + .literal.RadioRx + 0x4200059c 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x1c (size before relaxing) + .literal.RadioRxBoosted + 0x420005a0 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x1c (size before relaxing) + .literal.RadioTimeOnAir + 0x420005a0 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .literal.RadioSetPublicNetwork + 0x420005a8 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x14 (size before relaxing) + .literal.RadioSetModem$part$0 + 0x420005ac 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xc (size before relaxing) + .literal.RadioSetModem + 0x420005ac 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xc (size before relaxing) + .literal.RadioSetRxConfig + 0x420005ac 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x64 (size before relaxing) + .literal.RadioSetTxConfig + 0x420005b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x58 (size before relaxing) + .literal.RadioIsChannelFree + 0x420005b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x24 (size before relaxing) + .literal.RadioRandom + 0x420005b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xc (size before relaxing) + .literal.RadioAddRegisterToRetentionList + 0x420005b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x8 (size before relaxing) + .literal.RadioInit + 0x420005b4 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x44 (size before relaxing) + .literal.pinctrl_configure_pins + 0x420005c0 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + 0x34 (size before relaxing) + .literal.serial_esp32_usb_poll_in + 0x420005e0 0x4 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .literal.serial_esp32_usb_fifo_fill + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_irq_tx_enable + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_irq_tx_ready + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_irq_rx_disable + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_irq_tx_complete + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_irq_rx_ready + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_irq_is_pending + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x8 (size before relaxing) + .literal.serial_esp32_usb_irq_update + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_init + 0x420005e4 0x4 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x10 (size before relaxing) + .literal.serial_esp32_usb_irq_tx_disable + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_irq_rx_enable + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_poll_out + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x24 (size before relaxing) + .literal.serial_esp32_usb_fifo_read + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.uart_esp32_irq_is_pending + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x8 (size before relaxing) + .literal.uart_esp32_fifo_read + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x4 (size before relaxing) + .literal.uart_esp32_poll_in + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x4 (size before relaxing) + .literal.uart_esp32_fifo_fill + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x4 (size before relaxing) + .literal.uart_esp32_poll_out + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x4 (size before relaxing) + .literal.uart_esp32_config_get + 0x420005e8 0x10 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x30 (size before relaxing) + .literal.uart_esp32_configure + 0x420005f8 0xc zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x48 (size before relaxing) + .literal.uart_esp32_init + 0x42000604 0x14 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x34 (size before relaxing) + .literal.z_log_msg_simple_create_0 + 0x42000618 0x0 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x4 (size before relaxing) + .literal._spi_context_cs_control + 0x42000618 0x4 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x10 (size before relaxing) + .literal.spi_context_unlock_unconditionally + 0x4200061c 0x0 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x8 (size before relaxing) + .literal.spi_esp32_release + 0x4200061c 0x0 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x4 (size before relaxing) + .literal.spi_esp32_gdma_config$isra$0 + 0x4200061c 0x10 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x28 (size before relaxing) + .literal.spi_esp32_transceive + 0x4200062c 0x14 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x4c (size before relaxing) + .literal.spi_esp32_init + 0x42000640 0x20 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x64 (size before relaxing) + .literal.fprintf + 0x42000660 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + 0x4 (size before relaxing) + .literal.snprintf + 0x42000660 0x4 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + 0xc (size before relaxing) + .literal.__l_vfprintf + 0x42000664 0x14 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + 0x1c (size before relaxing) + .text.uart_write_bytes$constprop$0 + 0x42000678 0x21 app/libapp.a(main.c.obj) + *fill* 0x42000699 0x3 + .text.send_hw_response$constprop$0 + 0x4200069c 0x30 app/libapp.a(main.c.obj) + 0x38 (size before relaxing) + .text.lora_rx_fn + 0x420006cc 0x8c app/libapp.a(main.c.obj) + 0x94 (size before relaxing) + .text.kiss_rx_fn + 0x42000758 0x21d app/libapp.a(main.c.obj) + 0x241 (size before relaxing) + *fill* 0x42000975 0x3 + .text.main 0x42000978 0x98 app/libapp.a(main.c.obj) + 0x9c (size before relaxing) + 0x42000978 main + .text.kiss_encode + 0x42000a10 0x14 app/libapp.a(kiss.c.obj) + 0x18 (size before relaxing) + 0x42000a10 kiss_encode + .text.lora_config$constprop$0 + 0x42000a24 0x14 app/libapp.a(lora_modem.c.obj) + .text.k_mutex_lock$constprop$0$isra$0 + 0x42000a38 0x12 app/libapp.a(lora_modem.c.obj) + *fill* 0x42000a4a 0x2 + .text.k_mutex_unlock$constprop$0$isra$0 + 0x42000a4c 0xe app/libapp.a(lora_modem.c.obj) + *fill* 0x42000a5a 0x2 + .text.lora_modem_init + 0x42000a5c 0x8d app/libapp.a(lora_modem.c.obj) + 0x91 (size before relaxing) + 0x42000a5c lora_modem_init + *fill* 0x42000ae9 0x3 + .text.lora_modem_get_params + 0x42000aec 0x20 app/libapp.a(lora_modem.c.obj) + 0x24 (size before relaxing) + 0x42000aec lora_modem_get_params + .text.lora_modem_set_params + 0x42000b0c 0xef app/libapp.a(lora_modem.c.obj) + 0xf7 (size before relaxing) + 0x42000b0c lora_modem_set_params + *fill* 0x42000bfb 0x1 + .text.lora_modem_set_freq + 0x42000bfc 0x2c app/libapp.a(lora_modem.c.obj) + 0x34 (size before relaxing) + 0x42000bfc lora_modem_set_freq + .text.lora_modem_send + 0x42000c28 0x63 app/libapp.a(lora_modem.c.obj) + 0x6f (size before relaxing) + 0x42000c28 lora_modem_send + *fill* 0x42000c8b 0x1 + .text.lora_modem_recv + 0x42000c8c 0x8a app/libapp.a(lora_modem.c.obj) + 0x96 (size before relaxing) + 0x42000c8c lora_modem_recv + *fill* 0x42000d16 0x2 + .text.chunk_size + 0x42000d18 0x11 zephyr/libzephyr.a(heap.c.obj) + 0x15 (size before relaxing) + *fill* 0x42000d29 0x3 + .text.set_chunk_size + 0x42000d2c 0x13 zephyr/libzephyr.a(heap.c.obj) + *fill* 0x42000d3f 0x1 + .text.undersized_chunk + 0x42000d40 0x28 zephyr/libzephyr.a(heap.c.obj) + .text.free_list_remove_bidx + 0x42000d68 0x56 zephyr/libzephyr.a(heap.c.obj) + 0x62 (size before relaxing) + *fill* 0x42000dbe 0x2 + .text.free_list_remove + 0x42000dc0 0x26 zephyr/libzephyr.a(heap.c.obj) + 0x32 (size before relaxing) + *fill* 0x42000de6 0x2 + .text.alloc_chunk + 0x42000de8 0x83 zephyr/libzephyr.a(heap.c.obj) + 0x87 (size before relaxing) + *fill* 0x42000e6b 0x1 + .text.split_chunks + 0x42000e6c 0x46 zephyr/libzephyr.a(heap.c.obj) + 0x56 (size before relaxing) + *fill* 0x42000eb2 0x2 + .text.merge_chunks + 0x42000eb4 0x32 zephyr/libzephyr.a(heap.c.obj) + 0x42 (size before relaxing) + *fill* 0x42000ee6 0x2 + .text.free_list_add + 0x42000ee8 0x86 zephyr/libzephyr.a(heap.c.obj) + 0x9e (size before relaxing) + *fill* 0x42000f6e 0x2 + .text.sys_heap_free + 0x42000f70 0xe0 zephyr/libzephyr.a(heap.c.obj) + 0x10c (size before relaxing) + 0x42000f70 sys_heap_free + .text.sys_heap_alloc + 0x42001050 0x76 zephyr/libzephyr.a(heap.c.obj) + 0x82 (size before relaxing) + 0x42001050 sys_heap_alloc + *fill* 0x420010c6 0x2 + .text.sys_heap_noalign_alloc + 0x420010c8 0x11 zephyr/libzephyr.a(heap.c.obj) + 0x420010c8 sys_heap_noalign_alloc + *fill* 0x420010d9 0x3 + .text.sys_heap_init + 0x420010dc 0xa8 zephyr/libzephyr.a(heap.c.obj) + 0xc8 (size before relaxing) + 0x420010dc sys_heap_init + .text.__printk_hook_install + 0x42001184 0xa zephyr/libzephyr.a(printk.c.obj) + 0x42001184 __printk_hook_install + *fill* 0x4200118e 0x2 + .text.z_thread_entry + 0x42001190 0x18 zephyr/libzephyr.a(thread_entry.c.obj) + 0x42001190 z_thread_entry + .text.get_usage + 0x420011a8 0x24 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.rd_idx_inc + 0x420011cc 0x19 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x1d (size before relaxing) + *fill* 0x420011e5 0x3 + .text.add_skip_item + 0x420011e8 0x3c zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x40 (size before relaxing) + .text.drop_item_locked + 0x42001224 0xdc zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0xe8 (size before relaxing) + .text.post_drop_action + 0x42001300 0x40 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x44 (size before relaxing) + .text.max_utilization_update + 0x42001340 0x17 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x1b (size before relaxing) + *fill* 0x42001357 0x1 + .text.mpsc_pbuf_init + 0x42001358 0x46 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x42001358 mpsc_pbuf_init + *fill* 0x4200139e 0x2 + .text.mpsc_pbuf_alloc + 0x420013a0 0xeb zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0xf3 (size before relaxing) + 0x420013a0 mpsc_pbuf_alloc + *fill* 0x4200148b 0x1 + .text.mpsc_pbuf_commit + 0x4200148c 0x30 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x34 (size before relaxing) + 0x4200148c mpsc_pbuf_commit + .text.mpsc_pbuf_claim + 0x420014bc 0xaa zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0xae (size before relaxing) + 0x420014bc mpsc_pbuf_claim + *fill* 0x42001566 0x2 + .text.mpsc_pbuf_free + 0x42001568 0x6e zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x42001568 mpsc_pbuf_free + *fill* 0x420015d6 0x2 + .text.log_source_name_get + 0x420015d8 0x1b zephyr/libzephyr.a(log_mgmt.c.obj) + 0x420015d8 log_source_name_get + *fill* 0x420015f3 0x1 + .text.log_backend_enable + 0x420015f4 0x1b zephyr/libzephyr.a(log_mgmt.c.obj) + 0x420015f4 log_backend_enable + *fill* 0x4200160f 0x1 + .text.uart_hal_set_hw_flow_ctrl + 0x42001610 0x67 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42001610 uart_hal_set_hw_flow_ctrl + *fill* 0x42001677 0x1 + .text.uart_hal_set_txfifo_empty_thr + 0x42001678 0x20 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42001678 uart_hal_set_txfifo_empty_thr + .text.uart_hal_set_mode + 0x42001698 0x193 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42001698 uart_hal_set_mode + *fill* 0x4200182b 0x1 + .text.uart_hal_inverse_signal + 0x4200182c 0x59 zephyr/libzephyr.a(uart_hal.c.obj) + 0x4200182c uart_hal_inverse_signal + *fill* 0x42001885 0x3 + .text.uart_hal_set_rx_timeout + 0x42001888 0x52 zephyr/libzephyr.a(uart_hal.c.obj) + 0x56 (size before relaxing) + 0x42001888 uart_hal_set_rx_timeout + *fill* 0x420018da 0x2 + .text.uart_hal_txfifo_rst + 0x420018dc 0x29 zephyr/libzephyr.a(uart_hal_iram.c.obj) + 0x420018dc uart_hal_txfifo_rst + *fill* 0x42001905 0x3 + .text.uart_hal_rxfifo_rst + 0x42001908 0x29 zephyr/libzephyr.a(uart_hal_iram.c.obj) + 0x42001908 uart_hal_rxfifo_rst + *fill* 0x42001931 0x3 + .text.spi_hal_init + 0x42001934 0x121 zephyr/libzephyr.a(spi_hal.c.obj) + 0x42001934 spi_hal_init + *fill* 0x42001a55 0x3 + .text.spi_hal_setup_device + 0x42001a58 0x2ab zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x42001a58 spi_hal_setup_device + *fill* 0x42001d03 0x1 + .text.spi_hal_cal_timing + 0x42001d04 0x54 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x42001d04 spi_hal_cal_timing + .text.spi_hal_cal_clock_conf + 0x42001d58 0x180 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x184 (size before relaxing) + 0x42001d58 spi_hal_cal_clock_conf + .text.spi_hal_setup_trans + 0x42001ed8 0x382 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x42001ed8 spi_hal_setup_trans + *fill* 0x4200225a 0x2 + .text.spi_hal_enable_data_line + 0x4200225c 0x37 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x4200225c spi_hal_enable_data_line + *fill* 0x42002293 0x1 + .text.spi_hal_fetch_result + 0x42002294 0x49 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x42002294 spi_hal_fetch_result + *fill* 0x420022dd 0x3 + .text.rtc_gpio_is_valid_gpio + 0x420022e0 0x1e zephyr/libzephyr.a(rtc_io.c.obj) + 0x420022e0 rtc_gpio_is_valid_gpio + *fill* 0x420022fe 0x2 + .text.rtc_gpio_pullup_en + 0x42002300 0x5e zephyr/libzephyr.a(rtc_io.c.obj) + 0x62 (size before relaxing) + 0x42002300 rtc_gpio_pullup_en + *fill* 0x4200235e 0x2 + .text.rtc_gpio_pullup_dis + 0x42002360 0x8c zephyr/libzephyr.a(rtc_io.c.obj) + 0x90 (size before relaxing) + 0x42002360 rtc_gpio_pullup_dis + .text.rtc_gpio_pulldown_en + 0x420023ec 0x5e zephyr/libzephyr.a(rtc_io.c.obj) + 0x62 (size before relaxing) + 0x420023ec rtc_gpio_pulldown_en + *fill* 0x4200244a 0x2 + .text.rtc_gpio_pulldown_dis + 0x4200244c 0x5e zephyr/libzephyr.a(rtc_io.c.obj) + 0x62 (size before relaxing) + 0x4200244c rtc_gpio_pulldown_dis + *fill* 0x420024aa 0x2 + .text.clk_hal_lp_slow_get_freq_hz + 0x420024ac 0x22 zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x420024ac clk_hal_lp_slow_get_freq_hz + *fill* 0x420024ce 0x2 + .text.clk_hal_xtal_get_freq_mhz + 0x420024d0 0x34 zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x420024d0 clk_hal_xtal_get_freq_mhz + .text.clk_hal_soc_root_get_freq_mhz + 0x42002504 0x2b zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x2f (size before relaxing) + 0x42002504 clk_hal_soc_root_get_freq_mhz + *fill* 0x4200252f 0x1 + .text.clk_hal_cpu_get_freq_hz + 0x42002530 0x86 zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x42002530 clk_hal_cpu_get_freq_hz + *fill* 0x420025b6 0x2 + .text.clk_hal_apb_get_freq_hz + 0x420025b8 0x1e zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x420025b8 clk_hal_apb_get_freq_hz + *fill* 0x420025d6 0x2 + .text.esp_clk_slowclk_cal_set + 0x420025d8 0xd zephyr/libzephyr.a(esp_clk.c.obj) + 0x420025d8 esp_clk_slowclk_cal_set + *fill* 0x420025e5 0x3 + .text.periph_ll_enable_clk_clear_rst + 0x420025e8 0x95 zephyr/libzephyr.a(periph_ctrl.c.obj) + *fill* 0x4200267d 0x3 + .text.periph_ll_disable_clk_set_rst + 0x42002680 0x96 zephyr/libzephyr.a(periph_ctrl.c.obj) + *fill* 0x42002716 0x2 + .text.periph_rcc_acquire_enter + 0x42002718 0x13 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x42002718 periph_rcc_acquire_enter + *fill* 0x4200272b 0x1 + .text.periph_rcc_acquire_exit + 0x4200272c 0x16 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x4200272c periph_rcc_acquire_exit + *fill* 0x42002742 0x2 + .text.periph_module_enable + 0x42002744 0x32 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x36 (size before relaxing) + 0x42002744 periph_module_enable + *fill* 0x42002776 0x2 + .text.periph_module_disable + 0x42002778 0x34 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x38 (size before relaxing) + 0x42002778 periph_module_disable + .text.non_shared_periph_module_enable + 0x420027ac 0x44d zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x420027ac non_shared_periph_module_enable + *fill* 0x42002bf9 0x3 + .text.non_shared_periph_module_disable + 0x42002bfc 0x17c zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x42002bfc non_shared_periph_module_disable + .text.esp_clk_tree_src_get_freq_hz + 0x42002d78 0xee zephyr/libzephyr.a(esp_clk_tree.c.obj) + 0xfa (size before relaxing) + 0x42002d78 esp_clk_tree_src_get_freq_hz + *fill* 0x42002e66 0x2 + .text.esp_cpu_intr_get_desc + 0x42002e68 0x32 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + 0x42002e68 esp_cpu_intr_get_desc + *fill* 0x42002e9a 0x2 + .text.get_rtc_dbias_by_efuse$constprop$0 + 0x42002e9c 0xaa zephyr/libzephyr.a(rtc_init.c.obj) + *fill* 0x42002f46 0x2 + .text.rtc_init + 0x42002f48 0x6af zephyr/libzephyr.a(rtc_init.c.obj) + 0x6bf (size before relaxing) + 0x42002f48 rtc_init + *fill* 0x420035f7 0x1 + .text.sar_periph_ctrl_init + 0x420035f8 0x2c zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + 0x420035f8 sar_periph_ctrl_init + .text.esp_clk_tree_rc_fast_d256_get_freq_hz + 0x42003624 0x4b zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x42003624 esp_clk_tree_rc_fast_d256_get_freq_hz + *fill* 0x4200366f 0x1 + .text.esp_clk_tree_xtal32k_get_freq_hz + 0x42003670 0x4f zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x42003670 esp_clk_tree_xtal32k_get_freq_hz + *fill* 0x420036bf 0x1 + .text.esp_clk_tree_lp_slow_get_freq_hz + 0x420036c0 0x42 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x420036c0 esp_clk_tree_lp_slow_get_freq_hz + *fill* 0x42003702 0x2 + .text.esp_clk_tree_rc_fast_get_freq_hz + 0x42003704 0x13 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x16 (size before relaxing) + 0x42003704 esp_clk_tree_rc_fast_get_freq_hz + *fill* 0x42003717 0x1 + .text.esp_clk_tree_lp_fast_get_freq_hz + 0x42003718 0x39 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x3d (size before relaxing) + 0x42003718 esp_clk_tree_lp_fast_get_freq_hz + *fill* 0x42003751 0x3 + .text.esp_sleep_sub_mode_config + 0x42003754 0x52 zephyr/libzephyr.a(sleep_modes.c.obj) + 0x42003754 esp_sleep_sub_mode_config + *fill* 0x420037a6 0x2 + .text.esp_sleep_sub_mode_force_disable + 0x420037a8 0x2a zephyr/libzephyr.a(sleep_modes.c.obj) + 0x420037a8 esp_sleep_sub_mode_force_disable + *fill* 0x420037d2 0x2 + .text.esp_sleep_sub_mode_dump_config + 0x420037d4 0x32 zephyr/libzephyr.a(sleep_modes.c.obj) + 0x36 (size before relaxing) + 0x420037d4 esp_sleep_sub_mode_dump_config + *fill* 0x42003806 0x2 + .text 0x42003808 0x56 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + 0x42003808 cache_writeback_items_freeze + *fill* 0x4200385e 0x2 + .text.esp_rtc_init + 0x42003860 0x2c zephyr/libzephyr.a(clk.c.obj) + 0x42003860 esp_rtc_init + .text.esp_perip_clk_init + 0x4200388c 0x148 zephyr/libzephyr.a(clk.c.obj) + 0x4200388c esp_perip_clk_init + .text.esp_reset_reason_get_hint + 0x420039d4 0x1c zephyr/libzephyr.a(reset_reason.c.obj) + 0x420039d4 esp_reset_reason_get_hint + .text.esp_reset_reason_init + 0x420039f0 0x7a zephyr/libzephyr.a(reset_reason.c.obj) + 0x7e (size before relaxing) + 0x420039f0 esp_reset_reason_init + *fill* 0x42003a6a 0x2 + .text.esp_timer_impl_early_init + 0x42003a6c 0xa8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + 0xac (size before relaxing) + 0x42003a6c esp_timer_impl_early_init + .text.esp_timer_early_init + 0x42003b14 0xa zephyr/libzephyr.a(esp_timer_init.c.obj) + 0xd (size before relaxing) + 0x42003b14 esp_timer_early_init + *fill* 0x42003b1e 0x2 + .text.__assert_no_args + 0x42003b20 0x6 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + 0x9 (size before relaxing) + 0x42003b20 __assert_no_args + *fill* 0x42003b26 0x2 + .text.cbvprintf + 0x42003b28 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + 0x32 (size before relaxing) + 0x42003b28 cbvprintf + *fill* 0x42003b56 0x2 + .text.z_impl_zephyr_fputc + 0x42003b58 0x12 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x42003b58 z_impl_zephyr_fputc + *fill* 0x42003b6a 0x2 + .text.picolibc_put + 0x42003b6c 0x12 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + *fill* 0x42003b7e 0x2 + .text.__stdout_hook_install + 0x42003b80 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x42003b80 __stdout_hook_install + .text.abort 0x42003b98 0x14 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + 0x42003b98 abort + .text.malloc_prepare + 0x42003bac 0x21 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + *fill* 0x42003bcd 0x3 + .text.find_desc_for_int + 0x42003bd0 0x23 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + *fill* 0x42003bf3 0x1 + .text.is_vect_desc_usable + 0x42003bf4 0x8c zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text.get_desc_for_int + 0x42003c80 0x8a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + *fill* 0x42003d0a 0x2 + .text.esp_intr_alloc_intrstatus + 0x42003d0c 0x38e zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x39a (size before relaxing) + 0x42003d0c esp_intr_alloc_intrstatus + *fill* 0x4200409a 0x2 + .text.esp_intr_alloc + 0x4200409c 0x18 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x1c (size before relaxing) + 0x4200409c esp_intr_alloc + .text.clock_control_esp32_get_status + 0x420040b4 0x46 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + *fill* 0x420040fa 0x2 + .text.clock_control_esp32_get_rate + 0x420040fc 0x46 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x4a (size before relaxing) + *fill* 0x42004142 0x2 + .text.clock_control_esp32_off + 0x42004144 0x26 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x2a (size before relaxing) + *fill* 0x4200416a 0x2 + .text.clock_control_esp32_on + 0x4200416c 0x2c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x30 (size before relaxing) + .text.esp32_select_rtc_slow_clk + 0x42004198 0xc9 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + *fill* 0x42004261 0x3 + .text.esp32_cpu_clock_configure + 0x42004264 0xfa zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + *fill* 0x4200435e 0x2 + .text.clock_control_esp32_configure + 0x42004360 0x74 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x78 (size before relaxing) + .text.clock_control_esp32_init + 0x420043d4 0xa0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0xa4 (size before relaxing) + .text.uart_console_init + 0x42004474 0x24 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + 0x28 (size before relaxing) + .text.gpio_esp32_pin_interrupt_configure + 0x42004498 0x12e zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x420045c6 0x2 + .text.gpio_esp32_init + 0x420045c8 0x3d zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x42004605 0x3 + .text.sx126x_set_tx_enable + 0x42004608 0x27 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + *fill* 0x4200462f 0x1 + .text.sx126x_dio1_irq_work_handler$part$0 + 0x42004630 0x13 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + *fill* 0x42004643 0x1 + .text.sx126x_dio1_irq_work_handler + 0x42004644 0x2e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x32 (size before relaxing) + *fill* 0x42004672 0x2 + .text.sx126x_lora_init + 0x42004674 0x8c zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x98 (size before relaxing) + .text.SX126xGetOperatingMode + 0x42004700 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42004700 SX126xGetOperatingMode + *fill* 0x4200470a 0x2 + .text.SX126xSetOperatingMode + 0x4200470c 0x23 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x27 (size before relaxing) + 0x4200470c SX126xSetOperatingMode + *fill* 0x4200472f 0x1 + .text.SX126xIoIrqInit + 0x42004730 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42004730 SX126xIoIrqInit + *fill* 0x4200473a 0x2 + .text.SX126xIoRfSwitchInit + 0x4200473c 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xe (size before relaxing) + 0x4200473c SX126xIoRfSwitchInit + *fill* 0x42004746 0x2 + .text.SX126xReset + 0x42004748 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42004748 SX126xReset + .text.SX126xSetRfTxPower + 0x4200475c 0xd zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + 0x4200475c SX126xSetRfTxPower + *fill* 0x42004769 0x3 + .text.SX126xWaitOnBusy + 0x4200476c 0x1e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4200476c SX126xWaitOnBusy + *fill* 0x4200478a 0x2 + .text.sx126x_spi_transceive$isra$0 + 0x4200478c 0x6a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x6e (size before relaxing) + *fill* 0x420047f6 0x2 + .text.SX126xWriteBuffer + 0x420047f8 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x420047f8 SX126xWriteBuffer + .text.SX126xReadBuffer + 0x42004818 0x22 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x26 (size before relaxing) + 0x42004818 SX126xReadBuffer + *fill* 0x4200483a 0x2 + .text.SX126xWriteCommand + 0x4200483c 0x1b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4200483c SX126xWriteCommand + *fill* 0x42004857 0x1 + .text.SX126xReadCommand + 0x42004858 0x21 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x25 (size before relaxing) + 0x42004858 SX126xReadCommand + *fill* 0x42004879 0x3 + .text.SX126xWriteRegisters + 0x4200487c 0x26 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4200487c SX126xWriteRegisters + *fill* 0x420048a2 0x2 + .text.SX126xWriteRegister + 0x420048a4 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x16 (size before relaxing) + 0x420048a4 SX126xWriteRegister + *fill* 0x420048b6 0x2 + .text.SX126xReadRegisters + 0x420048b8 0x2b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x420048b8 SX126xReadRegisters + *fill* 0x420048e3 0x1 + .text.SX126xReadRegister + 0x420048e4 0x15 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x420048e4 SX126xReadRegister + *fill* 0x420048f9 0x3 + .text.SX126xWakeup + 0x420048fc 0x53 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x56 (size before relaxing) + 0x420048fc SX126xWakeup + *fill* 0x4200494f 0x1 + .text.SX126xGetDio1PinState + 0x42004950 0xd zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + 0x42004950 SX126xGetDio1PinState + *fill* 0x4200495d 0x3 + .text.timer_work_handler + 0x42004960 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0xb (size before relaxing) + *fill* 0x42004968 0x0 + .text.timer_callback + 0x42004968 0xe zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + *fill* 0x42004976 0x2 + .text.k_uptime_get_32 + 0x42004978 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .text.RtcGetTimerValue + 0x42004990 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0xd (size before relaxing) + 0x42004990 RtcGetTimerValue + *fill* 0x4200499a 0x2 + .text.RtcGetTimerElapsedTime + 0x4200499c 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x13 (size before relaxing) + 0x4200499c RtcGetTimerElapsedTime + *fill* 0x420049ac 0x0 + .text.RtcStopAlarm + 0x420049ac 0xe zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x420049ac RtcStopAlarm + *fill* 0x420049ba 0x2 + .text.RtcSetAlarm + 0x420049bc 0x1a zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x420049bc RtcSetAlarm + *fill* 0x420049d6 0x2 + .text.RtcSetTimerContext + 0x420049d8 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x420049d8 RtcSetTimerContext + *fill* 0x420049ea 0x2 + .text.RtcGetTimerContext + 0x420049ec 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x420049ec RtcGetTimerContext + *fill* 0x420049f6 0x2 + .text.DelayMsMcu + 0x420049f8 0x13 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x420049f8 DelayMsMcu + *fill* 0x42004a0b 0x1 + .text.modem_release$constprop$0 + 0x42004a0c 0x3e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + *fill* 0x42004a4a 0x2 + .text.sx12xx_ev_tx_done + 0x42004a4c 0x1e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + *fill* 0x42004a6a 0x2 + .text.sx12xx_ev_tx_timed_out + 0x42004a6c 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0xb (size before relaxing) + *fill* 0x42004a74 0x0 + .text.sx12xx_ev_rx_error + 0x42004a74 0x30 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .text.sx12xx_ev_rx_done + 0x42004aa4 0xa4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .text.__sx12xx_configure_pin + 0x42004b48 0xd6 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x42004b48 __sx12xx_configure_pin + *fill* 0x42004c1e 0x2 + .text.sx12xx_airtime + 0x42004c20 0x46 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x42004c20 sx12xx_airtime + *fill* 0x42004c66 0x2 + .text.sx12xx_lora_send_async + 0x42004c68 0x36 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x42004c68 sx12xx_lora_send_async + *fill* 0x42004c9e 0x2 + .text.sx12xx_lora_send + 0x42004ca0 0x84 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x8c (size before relaxing) + 0x42004ca0 sx12xx_lora_send + .text.sx12xx_lora_recv + 0x42004d24 0xc0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0xc4 (size before relaxing) + 0x42004d24 sx12xx_lora_recv + .text.sx12xx_lora_recv_async + 0x42004de4 0x42 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x46 (size before relaxing) + 0x42004de4 sx12xx_lora_recv_async + *fill* 0x42004e26 0x2 + .text.sx12xx_lora_config + 0x42004e28 0xe0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0xe4 (size before relaxing) + 0x42004e28 sx12xx_lora_config + .text.sx12xx_lora_test_cw + 0x42004f08 0x2b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x42004f08 sx12xx_lora_test_cw + *fill* 0x42004f33 0x1 + .text.sx12xx_init + 0x42004f34 0x4a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x42004f34 sx12xx_init + *fill* 0x42004f7e 0x2 + .text.gpio_pin_configure_dt + 0x42004f80 0x48 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .text.sx126x_dio1_irq_callback + 0x42004fc8 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .text.z_impl_gpio_pin_interrupt_configure$isra$0 + 0x42004fd8 0x33 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + *fill* 0x4200500b 0x1 + .text.sx126x_reset + 0x4200500c 0x32 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x36 (size before relaxing) + 0x4200500c sx126x_reset + *fill* 0x4200503e 0x2 + .text.sx126x_is_busy + 0x42005040 0x15 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x42005040 sx126x_is_busy + *fill* 0x42005055 0x3 + .text.sx126x_get_dio1_pin_state + 0x42005058 0x15 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x42005058 sx126x_get_dio1_pin_state + *fill* 0x4200506d 0x3 + .text.sx126x_dio1_irq_enable + 0x42005070 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x16 (size before relaxing) + 0x42005070 sx126x_dio1_irq_enable + *fill* 0x42005082 0x2 + .text.sx126x_dio1_irq_disable + 0x42005084 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x16 (size before relaxing) + 0x42005084 sx126x_dio1_irq_disable + *fill* 0x42005096 0x2 + .text.sx126x_set_tx_params + 0x42005098 0xd zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x10 (size before relaxing) + 0x42005098 sx126x_set_tx_params + *fill* 0x420050a5 0x3 + .text.sx126x_variant_init + 0x420050a8 0x6d zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x75 (size before relaxing) + 0x420050a8 sx126x_variant_init + *fill* 0x42005115 0x3 + .text.TimerSetTimeout + 0x42005118 0x27 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x32 (size before relaxing) + *fill* 0x4200513f 0x1 + .text.TimerInsertNewHeadTimer + 0x42005140 0x1e zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + *fill* 0x4200515e 0x2 + .text.TimerStart + 0x42005160 0x73 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x7f (size before relaxing) + 0x42005160 TimerStart + *fill* 0x420051d3 0x1 + .text.TimerIrqHandler + 0x420051d4 0x7f zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x8a (size before relaxing) + 0x420051d4 TimerIrqHandler + *fill* 0x42005253 0x1 + .text.TimerStop + 0x42005254 0x62 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x6e (size before relaxing) + 0x42005254 TimerStop + *fill* 0x420052b6 0x2 + .text.TimerSetValue + 0x420052b8 0x1b zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x27 (size before relaxing) + 0x420052b8 TimerSetValue + *fill* 0x420052d3 0x1 + .text.TimerGetCurrentTime + 0x420052d4 0xf zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x13 (size before relaxing) + 0x420052d4 TimerGetCurrentTime + *fill* 0x420052e3 0x1 + .text.TimerGetElapsedTime + 0x420052e4 0x1a zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x26 (size before relaxing) + 0x420052e4 TimerGetElapsedTime + *fill* 0x420052fe 0x2 + .text.DelayMs 0x42005300 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + 0xe (size before relaxing) + 0x42005300 DelayMs + *fill* 0x4200530a 0x2 + .text.SX126xCheckDeviceReady + 0x4200530c 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x2e (size before relaxing) + 0x4200530c SX126xCheckDeviceReady + *fill* 0x4200532c 0x0 + .text.SX126xSetPayload + 0x4200532c 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4200532c SX126xSetPayload + *fill* 0x4200533e 0x2 + .text.SX126xSetSyncWord + 0x42005340 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42005340 SX126xSetSyncWord + .text.SX126xSetCrcSeed + 0x42005354 0x22 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42005354 SX126xSetCrcSeed + *fill* 0x42005376 0x2 + .text.SX126xSetCrcPolynomial + 0x42005378 0x22 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42005378 SX126xSetCrcPolynomial + *fill* 0x4200539a 0x2 + .text.SX126xSetWhiteningSeed + 0x4200539c 0x34 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3b (size before relaxing) + 0x4200539c SX126xSetWhiteningSeed + *fill* 0x420053d0 0x0 + .text.SX126xSetSleep + 0x420053d0 0x40 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x44 (size before relaxing) + 0x420053d0 SX126xSetSleep + .text.SX126xSetStandby + 0x42005410 0x1d zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x24 (size before relaxing) + 0x42005410 SX126xSetStandby + *fill* 0x4200542d 0x3 + .text.SX126xInit + 0x42005430 0x2a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3e (size before relaxing) + 0x42005430 SX126xInit + *fill* 0x4200545a 0x2 + .text.SX126xSetTx + 0x4200545c 0x26 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x2a (size before relaxing) + 0x4200545c SX126xSetTx + *fill* 0x42005482 0x2 + .text.SX126xSendPayload + 0x42005484 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x18 (size before relaxing) + 0x42005484 SX126xSendPayload + .text.SX126xSetRx + 0x42005498 0x32 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3a (size before relaxing) + 0x42005498 SX126xSetRx + *fill* 0x420054ca 0x2 + .text.SX126xGetRandom + 0x420054cc 0x60 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x7c (size before relaxing) + 0x420054cc SX126xGetRandom + .text.SX126xSetRxBoosted + 0x4200552c 0x32 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3a (size before relaxing) + 0x4200552c SX126xSetRxBoosted + *fill* 0x4200555e 0x2 + .text.SX126xSetRxDutyCycle + 0x42005560 0x34 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x38 (size before relaxing) + 0x42005560 SX126xSetRxDutyCycle + .text.SX126xSetCad + 0x42005594 0x16 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x1a (size before relaxing) + 0x42005594 SX126xSetCad + *fill* 0x420055aa 0x2 + .text.SX126xSetTxContinuousWave + 0x420055ac 0x16 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x1a (size before relaxing) + 0x420055ac SX126xSetTxContinuousWave + *fill* 0x420055c2 0x2 + .text.SX126xSetStopRxTimerOnPreambleDetect + 0x420055c4 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x16 (size before relaxing) + 0x420055c4 SX126xSetStopRxTimerOnPreambleDetect + *fill* 0x420055d6 0x2 + .text.SX126xSetLoRaSymbNumTimeout + 0x420055d8 0x50 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x54 (size before relaxing) + 0x420055d8 SX126xSetLoRaSymbNumTimeout + .text.SX126xSetRegulatorMode + 0x42005628 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42005628 SX126xSetRegulatorMode + .text.SX126xCalibrateImage + 0x4200563c 0x6e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x72 (size before relaxing) + 0x4200563c SX126xCalibrateImage + *fill* 0x420056aa 0x2 + .text.SX126xSetPaConfig + 0x420056ac 0x1e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x420056ac SX126xSetPaConfig + *fill* 0x420056ca 0x2 + .text.SX126xSetDioIrqParams + 0x420056cc 0x32 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x36 (size before relaxing) + 0x420056cc SX126xSetDioIrqParams + *fill* 0x420056fe 0x2 + .text.SX126xGetIrqStatus + 0x42005700 0x1d zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x21 (size before relaxing) + 0x42005700 SX126xGetIrqStatus + *fill* 0x4200571d 0x3 + .text.SX126xSetDio2AsRfSwitchCtrl + 0x42005720 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x16 (size before relaxing) + 0x42005720 SX126xSetDio2AsRfSwitchCtrl + *fill* 0x42005732 0x2 + .text.SX126xSetRfFrequency + 0x42005734 0x68 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x6c (size before relaxing) + 0x42005734 SX126xSetRfFrequency + .text.SX126xSetPacketType + 0x4200579c 0x16 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x1a (size before relaxing) + 0x4200579c SX126xSetPacketType + *fill* 0x420057b2 0x2 + .text.SX126xGetPacketType + 0x420057b4 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x420057b4 SX126xGetPacketType + *fill* 0x420057be 0x2 + .text.SX126xSetTxParams + 0x420057c0 0x7c zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8c (size before relaxing) + 0x420057c0 SX126xSetTxParams + .text.SX126xSetModulationParams + 0x4200583c 0xb0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4200583c SX126xSetModulationParams + .text.SX126xSetPacketParams + 0x420058ec 0xd4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xe0 (size before relaxing) + 0x420058ec SX126xSetPacketParams + .text.SX126xSetBufferBaseAddress + 0x420059c0 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x420059c0 SX126xSetBufferBaseAddress + .text.SX126xGetRssiInst + 0x420059d8 0x17 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x1b (size before relaxing) + 0x420059d8 SX126xGetRssiInst + *fill* 0x420059ef 0x1 + .text.SX126xGetRxBufferStatus + 0x420059f0 0x3a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3e (size before relaxing) + 0x420059f0 SX126xGetRxBufferStatus + *fill* 0x42005a2a 0x2 + .text.SX126xGetPayload + 0x42005a2c 0x26 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x2a (size before relaxing) + 0x42005a2c SX126xGetPayload + *fill* 0x42005a52 0x2 + .text.SX126xGetPacketStatus + 0x42005a54 0x86 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8a (size before relaxing) + 0x42005a54 SX126xGetPacketStatus + *fill* 0x42005ada 0x2 + .text.SX126xClearIrqStatus + 0x42005adc 0x1a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42005adc SX126xClearIrqStatus + *fill* 0x42005af6 0x2 + .text.RadioOnTxTimeoutIrq + 0x42005af8 0x13 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x42005af8 RadioOnTxTimeoutIrq + *fill* 0x42005b0b 0x1 + .text.RadioOnRxTimeoutIrq + 0x42005b0c 0x13 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x42005b0c RadioOnRxTimeoutIrq + *fill* 0x42005b1f 0x1 + .text.RadioOnDioIrq + 0x42005b20 0xd zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x42005b20 RadioOnDioIrq + *fill* 0x42005b2d 0x3 + .text.RadioStandby + 0x42005b30 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xe (size before relaxing) + 0x42005b30 RadioStandby + *fill* 0x42005b3a 0x2 + .text.RadioGetStatus + 0x42005b3c 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x1b (size before relaxing) + 0x42005b3c RadioGetStatus + *fill* 0x42005b54 0x0 + .text.RadioSetChannel + 0x42005b54 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xe (size before relaxing) + 0x42005b54 RadioSetChannel + *fill* 0x42005b5e 0x2 + .text.RadioRead + 0x42005b60 0xd zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x10 (size before relaxing) + 0x42005b60 RadioRead + *fill* 0x42005b6d 0x3 + .text.RadioWrite + 0x42005b70 0xe zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x11 (size before relaxing) + 0x42005b70 RadioWrite + *fill* 0x42005b7e 0x2 + .text.RadioSend + 0x42005b80 0x4a zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x5a (size before relaxing) + 0x42005b80 RadioSend + *fill* 0x42005bca 0x2 + .text.RadioSleep + 0x42005bcc 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x16 (size before relaxing) + 0x42005bcc RadioSleep + *fill* 0x42005bde 0x2 + .text.RadioSetRxDutyCycle + 0x42005be0 0xf zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x42005be0 RadioSetRxDutyCycle + *fill* 0x42005bef 0x1 + .text.RadioReadBuffer + 0x42005bf0 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x13 (size before relaxing) + 0x42005bf0 RadioReadBuffer + *fill* 0x42005c00 0x0 + .text.RadioWriteBuffer + 0x42005c00 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x13 (size before relaxing) + 0x42005c00 RadioWriteBuffer + *fill* 0x42005c10 0x0 + .text.RadioStartCad + 0x42005c10 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x1c (size before relaxing) + 0x42005c10 RadioStartCad + .text.RadioSetTxContinuousWave + 0x42005c28 0x32 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x42 (size before relaxing) + 0x42005c28 RadioSetTxContinuousWave + *fill* 0x42005c5a 0x2 + .text.RadioRssi + 0x42005c5c 0xb zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xe (size before relaxing) + 0x42005c5c RadioRssi + *fill* 0x42005c67 0x1 + .text.RadioGetWakeupTime + 0x42005c68 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xd (size before relaxing) + 0x42005c68 RadioGetWakeupTime + *fill* 0x42005c72 0x2 + .text.RadioIrqProcess + 0x42005c74 0x168 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x1b0 (size before relaxing) + 0x42005c74 RadioIrqProcess + .text.RadioGetFskBandwidthRegValue + 0x42005ddc 0x30 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .text.RadioSetMaxPayloadLength + 0x42005e0c 0x33 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x36 (size before relaxing) + 0x42005e0c RadioSetMaxPayloadLength + *fill* 0x42005e3f 0x1 + .text.RadioRx 0x42005e40 0x3d zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x48 (size before relaxing) + 0x42005e40 RadioRx + *fill* 0x42005e7d 0x3 + .text.RadioRxBoosted + 0x42005e80 0x3d zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x48 (size before relaxing) + 0x42005e80 RadioRxBoosted + *fill* 0x42005ebd 0x3 + .text.RadioTimeOnAir + 0x42005ec0 0xe7 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x42005ec0 RadioTimeOnAir + *fill* 0x42005fa7 0x1 + .text.RadioSetPublicNetwork + 0x42005fa8 0x3a zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x42 (size before relaxing) + 0x42005fa8 RadioSetPublicNetwork + *fill* 0x42005fe2 0x2 + .text.RadioSetModem$part$0 + 0x42005fe4 0x1c zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x23 (size before relaxing) + *fill* 0x42006000 0x0 + .text.RadioSetModem + 0x42006000 0x1e zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x21 (size before relaxing) + 0x42006000 RadioSetModem + *fill* 0x4200601e 0x2 + .text.RadioSetRxConfig + 0x42006020 0x1af zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x1e3 (size before relaxing) + 0x42006020 RadioSetRxConfig + *fill* 0x420061cf 0x1 + .text.RadioSetTxConfig + 0x420061d0 0x167 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x197 (size before relaxing) + 0x420061d0 RadioSetTxConfig + *fill* 0x42006337 0x1 + .text.RadioIsChannelFree + 0x42006338 0x67 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x82 (size before relaxing) + 0x42006338 RadioIsChannelFree + *fill* 0x4200639f 0x1 + .text.RadioRandom + 0x420063a0 0x1a zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x22 (size before relaxing) + 0x420063a0 RadioRandom + *fill* 0x420063ba 0x2 + .text.RadioAddRegisterToRetentionList + 0x420063bc 0x5b zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x420063bc RadioAddRegisterToRetentionList + *fill* 0x42006417 0x1 + .text.RadioInit + 0x42006418 0x62 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x82 (size before relaxing) + 0x42006418 RadioInit + *fill* 0x4200647a 0x2 + .text.pinctrl_configure_pins + 0x4200647c 0x38d zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + 0x4200647c pinctrl_configure_pins + *fill* 0x42006809 0x3 + .text.serial_esp32_usb_poll_in + 0x4200680c 0x24 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_fifo_fill + 0x42006830 0x35 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x42006865 0x3 + .text.serial_esp32_usb_irq_tx_enable + 0x42006868 0x34 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_irq_tx_ready + 0x4200689c 0x1a zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x420068b6 0x2 + .text.serial_esp32_usb_irq_rx_disable + 0x420068b8 0x17 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x420068cf 0x1 + .text.serial_esp32_usb_irq_tx_complete + 0x420068d0 0x10 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_irq_rx_ready + 0x420068e0 0x10 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_irq_is_pending + 0x420068f0 0x1c zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_irq_update + 0x4200690c 0x18 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_init + 0x42006924 0x7c zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_irq_tx_disable + 0x420069a0 0x17 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x420069b7 0x1 + .text.serial_esp32_usb_irq_rx_enable + 0x420069b8 0x1c zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_poll_out + 0x420069d4 0xb0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_fifo_read + 0x42006a84 0x26 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x42006aaa 0x2 + .text.uart_esp32_irq_is_pending + 0x42006aac 0x1a zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x1e (size before relaxing) + *fill* 0x42006ac6 0x2 + .text.uart_esp32_fifo_read + 0x42006ac8 0x26 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x42006aee 0x2 + .text.uart_esp32_poll_in + 0x42006af0 0x24 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x28 (size before relaxing) + .text.uart_esp32_fifo_fill + 0x42006b14 0x20 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .text.uart_esp32_poll_out + 0x42006b34 0x28 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .text.uart_esp32_config_get + 0x42006b5c 0x124 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x130 (size before relaxing) + .text.uart_esp32_configure + 0x42006c80 0x1bd zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x1dd (size before relaxing) + *fill* 0x42006e3d 0x3 + .text.uart_esp32_init + 0x42006e40 0xca zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0xda (size before relaxing) + *fill* 0x42006f0a 0x2 + .text.z_log_msg_simple_create_0 + 0x42006f0c 0x12 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + *fill* 0x42006f1e 0x2 + .text._spi_context_cs_control + 0x42006f20 0x42 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x46 (size before relaxing) + *fill* 0x42006f62 0x2 + .text.spi_context_unlock_unconditionally + 0x42006f64 0x1e zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x22 (size before relaxing) + *fill* 0x42006f82 0x2 + .text.spi_esp32_release + 0x42006f84 0xf zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + *fill* 0x42006f93 0x1 + .text.spi_esp32_gdma_config$isra$0 + 0x42006f94 0xd3 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0xd7 (size before relaxing) + *fill* 0x42007067 0x1 + .text.spi_esp32_transceive + 0x42007068 0x253 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x25b (size before relaxing) + *fill* 0x420072bb 0x1 + .text.spi_esp32_init + 0x420072bc 0x1ae zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x1c2 (size before relaxing) + *fill* 0x4200746a 0x2 + .text.fprintf 0x4200746c 0x29 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + 0x4200746c fprintf + *fill* 0x42007495 0x3 + .text.snprintf + 0x42007498 0x5e /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + 0x42007498 snprintf + *fill* 0x420074f6 0x2 + .text.__l_vfprintf + 0x420074f8 0x588 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + 0x420074f8 __l_vfprintf + .text._OffsetAbsSyms + 0x42007a80 0x5 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + 0x42007a80 _OffsetAbsSyms + *fill* 0x42007a85 0x0 + *fill* 0x42007a85 0x0 + *fill* 0x42007a85 0x3 + .text.kiss_encode_cmd + 0x42007a88 0x6a app/libapp.a(kiss.c.obj) + 0x42007a88 kiss_encode_cmd + *fill* 0x42007af2 0x2 + .text.kiss_decoder_init + 0x42007af4 0xf app/libapp.a(kiss.c.obj) + 0x42007af4 kiss_decoder_init + *fill* 0x42007b03 0x1 + .text.kiss_decoder_feed + 0x42007b04 0x8b app/libapp.a(kiss.c.obj) + 0x42007b04 kiss_decoder_feed + *fill* 0x42007b8f 0x1 + .text.params_to_cfg + 0x42007b90 0xbf app/libapp.a(lora_modem.c.obj) + *fill* 0x42007c4f 0x0 + *fill* 0x42007c4f 0x0 + *fill* 0x42007c4f 0x0 + *fill* 0x42007c4f 0x0 + *fill* 0x42007c4f 0x0 + *fill* 0x42007c4f 0x0 + *fill* 0x42007c4f 0x1 + .text.chunk_field + 0x42007c50 0x24 zephyr/libzephyr.a(heap.c.obj) + .text.chunk_set + 0x42007c74 0x24 zephyr/libzephyr.a(heap.c.obj) + *fill* 0x42007c98 0x0 + .text.set_chunk_used + 0x42007c98 0x3b zephyr/libzephyr.a(heap.c.obj) + *fill* 0x42007cd3 0x0 + *fill* 0x42007cd3 0x1 + .text.mem_to_chunkid + 0x42007cd4 0x1c zephyr/libzephyr.a(heap.c.obj) + .text.bucket_idx + 0x42007cf0 0x22 zephyr/libzephyr.a(heap.c.obj) + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x2 + .text.free_space + 0x42007d14 0x28 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.idx_inc 0x42007d3c 0x20 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + *fill* 0x42007d5c 0x0 + *fill* 0x42007d5c 0x0 + *fill* 0x42007d5c 0x0 + *fill* 0x42007d5c 0x0 + *fill* 0x42007d5c 0x0 + *fill* 0x42007d5c 0x0 + .text.mpsc_pbuf_is_pending + 0x42007d5c 0x27 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x42007d5c mpsc_pbuf_is_pending + *fill* 0x42007d83 0x1 + .text._ConfigAbsSyms + 0x42007d84 0x5 zephyr/libzephyr.a(configs.c.obj) + 0x42007d84 _ConfigAbsSyms + *fill* 0x42007d89 0x0 + *fill* 0x42007d89 0x0 + *fill* 0x42007d89 0x3 + .text.spi_flash_chip_list_check + 0x42007d8c 0x5 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + 0x42007d8c spi_flash_chip_list_check + *fill* 0x42007d91 0x3 + .text.uart_hal_get_sclk + 0x42007d94 0x1e zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007d94 uart_hal_get_sclk + *fill* 0x42007db2 0x2 + .text.uart_hal_get_baudrate + 0x42007db4 0x38 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007db4 uart_hal_get_baudrate + .text.uart_hal_set_stop_bits + 0x42007dec 0x20 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007dec uart_hal_set_stop_bits + .text.uart_hal_get_stop_bits + 0x42007e0c 0x11 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007e0c uart_hal_get_stop_bits + *fill* 0x42007e1d 0x3 + .text.uart_hal_set_data_bit_num + 0x42007e20 0x1f zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007e20 uart_hal_set_data_bit_num + *fill* 0x42007e3f 0x1 + .text.uart_hal_get_data_bit_num + 0x42007e40 0x11 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007e40 uart_hal_get_data_bit_num + *fill* 0x42007e51 0x3 + .text.uart_hal_set_parity + 0x42007e54 0x35 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007e54 uart_hal_set_parity + *fill* 0x42007e89 0x3 + .text.uart_hal_get_parity + 0x42007e8c 0x20 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007e8c uart_hal_get_parity + *fill* 0x42007eac 0x0 + .text.uart_hal_get_hw_flow_ctrl + 0x42007eac 0x24 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007eac uart_hal_get_hw_flow_ctrl + .text.uart_hal_set_rxfifo_full_thr + 0x42007ed0 0x1d zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007ed0 uart_hal_set_rxfifo_full_thr + *fill* 0x42007eed 0x0 + *fill* 0x42007eed 0x0 + *fill* 0x42007eed 0x3 + .text.uart_hal_get_symb_len + 0x42007ef0 0x43 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007ef0 uart_hal_get_symb_len + *fill* 0x42007f33 0x0 + *fill* 0x42007f33 0x0 + *fill* 0x42007f33 0x0 + *fill* 0x42007f33 0x1 + .text.uart_hal_write_txfifo + 0x42007f34 0x3a zephyr/libzephyr.a(uart_hal_iram.c.obj) + 0x42007f34 uart_hal_write_txfifo + *fill* 0x42007f6e 0x2 + .text.uart_hal_read_rxfifo + 0x42007f70 0x2d zephyr/libzephyr.a(uart_hal_iram.c.obj) + 0x42007f70 uart_hal_read_rxfifo + *fill* 0x42007f9d 0x0 + *fill* 0x42007f9d 0x0 + *fill* 0x42007f9d 0x0 + *fill* 0x42007f9d 0x0 + *fill* 0x42007f9d 0x3 + .text.spi_hal_user_start + 0x42007fa0 0x36 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x42007fa0 spi_hal_user_start + *fill* 0x42007fd6 0x2 + .text.spi_hal_usr_is_done + 0x42007fd8 0xf zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x42007fd8 spi_hal_usr_is_done + *fill* 0x42007fe7 0x1 + .text.spi_hal_push_tx_buffer + 0x42007fe8 0x46 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x42007fe8 spi_hal_push_tx_buffer + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x2 + .text.cbputc 0x42008030 0x11 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + *fill* 0x42008041 0x0 + *fill* 0x42008041 0x0 + *fill* 0x42008041 0x0 + *fill* 0x42008041 0x0 + *fill* 0x42008041 0x3 + .text.z_xt_ints_off + 0x42008044 0x14 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + *fill* 0x42008058 0x0 + *fill* 0x42008058 0x0 + *fill* 0x42008058 0x0 + *fill* 0x42008058 0x0 + *fill* 0x42008058 0x0 + *fill* 0x42008058 0x0 + *fill* 0x42008058 0x0 + *fill* 0x42008058 0x0 + .text.gpio_esp32_port_get_raw + 0x42008058 0x26 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x4200807e 0x2 + .text.gpio_esp32_port_set_masked_raw + 0x42008080 0x58 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .text.gpio_esp32_port_set_bits_raw + 0x420080d8 0x2e zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x42008106 0x2 + .text.gpio_esp32_port_clear_bits_raw + 0x42008108 0x2e zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x42008136 0x2 + .text.gpio_esp32_port_toggle_bits + 0x42008138 0x48 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x42008180 0x0 + .text.gpio_esp32_manage_callback + 0x42008180 0x58 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .text.gpio_esp32_get_pending_int + 0x420081d8 0x26 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x420081fe 0x2 + .text.gpio_esp32_sys_init + 0x42008200 0x7 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x42008207 0x0 + *fill* 0x42008207 0x0 + *fill* 0x42008207 0x0 + *fill* 0x42008207 0x0 + *fill* 0x42008207 0x1 + .text.SX126xAntSwOn + 0x42008208 0x5 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42008208 SX126xAntSwOn + *fill* 0x4200820d 0x3 + .text.SX126xAntSwOff + 0x42008210 0x5 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42008210 SX126xAntSwOff + *fill* 0x42008215 0x0 + *fill* 0x42008215 0x0 + *fill* 0x42008215 0x3 + .text.SX126xGetBoardTcxoWakeupTime + 0x42008218 0x7 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42008218 SX126xGetBoardTcxoWakeupTime + *fill* 0x4200821f 0x1 + .text.SX126xGetDeviceId + 0x42008220 0x7 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42008220 SX126xGetDeviceId + *fill* 0x42008227 0x0 + *fill* 0x42008227 0x1 + .text.SX126xIoTcxoInit + 0x42008228 0x5 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42008228 SX126xIoTcxoInit + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x3 + .text.RtcGetMinimumTimeout + 0x42008230 0x7 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x42008230 RtcGetMinimumTimeout + *fill* 0x42008237 0x0 + *fill* 0x42008237 0x0 + *fill* 0x42008237 0x0 + *fill* 0x42008237 0x0 + *fill* 0x42008237 0x0 + *fill* 0x42008237 0x1 + .text.RtcMs2Tick + 0x42008238 0x5 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x42008238 RtcMs2Tick + *fill* 0x4200823d 0x3 + .text.RtcTick2Ms + 0x42008240 0x5 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x42008240 RtcTick2Ms + *fill* 0x42008245 0x3 + .text.BoardCriticalSectionBegin + 0x42008248 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x42008248 BoardCriticalSectionBegin + *fill* 0x42008252 0x2 + .text.BoardCriticalSectionEnd + 0x42008254 0xd zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x42008254 BoardCriticalSectionEnd + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x3 + .text.gpio_pin_get + 0x42008264 0x2b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + *fill* 0x4200828f 0x1 + .text.gpio_pin_set$isra$0 + 0x42008290 0x2a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x2 + .text.TimerInit + 0x420082bc 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x420082bc TimerInit + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + .text.RadioCheckRfFrequency + 0x420082d0 0x7 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x420082d0 RadioCheckRfFrequency + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x1 + .text.pinctrl_lookup_state + 0x420082d8 0x2d zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + 0x420082d8 pinctrl_lookup_state + *fill* 0x42008305 0x0 + *fill* 0x42008305 0x3 + .text.serial_esp32_usb_err_check + 0x42008308 0x7 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x4200830f 0x0 + *fill* 0x4200830f 0x0 + *fill* 0x4200830f 0x0 + *fill* 0x4200830f 0x1 + .text.serial_esp32_usb_irq_err_enable + 0x42008310 0x5 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x42008315 0x3 + .text.serial_esp32_usb_irq_callback_set + 0x42008318 0xb zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x42008323 0x1 + .text.serial_esp32_usb_irq_err_disable + 0x42008324 0x5 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x42008329 0x0 + *fill* 0x42008329 0x0 + *fill* 0x42008329 0x3 + .text.uart_esp32_err_check + 0x4200832c 0x13 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x4200833f 0x1 + .text.uart_esp32_irq_tx_enable + 0x42008340 0x1f zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x4200835f 0x1 + .text.uart_esp32_irq_tx_disable + 0x42008360 0x18 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .text.uart_esp32_irq_tx_ready + 0x42008378 0x1e zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x42008396 0x2 + .text.uart_esp32_irq_rx_disable + 0x42008398 0x2a zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x420083c2 0x2 + .text.uart_esp32_irq_tx_complete + 0x420083c4 0x23 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x420083e7 0x1 + .text.uart_esp32_irq_rx_ready + 0x420083e8 0x16 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x420083fe 0x2 + .text.uart_esp32_irq_err_enable + 0x42008400 0x29 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x42008429 0x3 + .text.uart_esp32_irq_err_disable + 0x4200842c 0x29 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x42008455 0x0 + *fill* 0x42008455 0x3 + .text.uart_esp32_irq_update + 0x42008458 0x25 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x4200847d 0x3 + .text.uart_esp32_irq_callback_set + 0x42008480 0xb zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x4200848b 0x1 + .text.uart_esp32_irq_rx_enable + 0x4200848c 0x38 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x420084c4 0x0 + *fill* 0x420084c4 0x0 + *fill* 0x420084c4 0x0 + .text.spi_context_get_next_buf + 0x420084c4 0x2e zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + *fill* 0x420084f2 0x0 + *fill* 0x420084f2 0x2 + .text.gpio_pin_set_dt$isra$0 + 0x420084f4 0x2e zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x2 + .text.__ultoa_invert + 0x42008524 0xe4 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .text.__file_str_put + 0x42008608 0x16 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + 0x42008608 __file_str_put + 0x4200862e . = (. + 0x10) + *fill* 0x4200861e 0x10 + 0x4200862e _text_end = ABSOLUTE (.) + 0x4200862e _instruction_reserved_end = ABSOLUTE (.) + 0x4200862e __text_region_end = ABSOLUTE (.) + 0x4200862e __rom_region_end = ABSOLUTE (.) + 0x4200862e _etext = . + +.flash.rodata_dummy + 0x3c000000 0x10000 + 0x3c000000 _flash_rodata_dummy_start = ABSOLUTE (.) + 0x3c00862e . = (. + SIZEOF (.text)) + *fill* 0x3c000000 0x862e + 0x3c010000 . = ALIGN (0x10000) + *fill* 0x3c00862e 0x79d2 + 0x00020000 _image_drom_start = LOADADDR (.flash.rodata) + 0x00001e60 _image_drom_size = ((LOADADDR (.flash.rodata_end) + SIZEOF (.flash.rodata_end)) - _image_drom_start) + 0x3c010000 _image_drom_vaddr = ADDR (.flash.rodata) + +.flash.rodata 0x3c010000 0x1c24 load address 0x00020000 + 0x3c010000 _image_rodata_start = ABSOLUTE (.) + 0x3c010000 _rodata_reserved_start = ABSOLUTE (.) + 0x3c010000 _rodata_start = ABSOLUTE (.) + 0x3c010000 __rodata_region_start = ABSOLUTE (.) + 0x3c010000 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.irom1.text)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.r.*)) + *(SORT_BY_ALIGNMENT(.rodata)) + .rodata 0x3c010000 0x8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .rodata 0x3c010008 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + *(SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.kiss_rx_fn + 0x3c010010 0x1c app/libapp.a(main.c.obj) + .rodata.cbvprintf_package + 0x3c01002c 0xbc zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .rodata.rtc_io_desc + 0x3c0100e8 0x4d0 zephyr/libzephyr.a(rtc_io_periph.c.obj) + 0x3c0100e8 rtc_io_desc + .rodata.non_shared_periph_module_enable + 0x3c0105b8 0x74 zephyr/libzephyr.a(periph_ctrl.c.obj) + .rodata.non_shared_periph_module_disable + 0x3c01062c 0x74 zephyr/libzephyr.a(periph_ctrl.c.obj) + .rodata.CSWTCH$8 + 0x3c0106a0 0x2c zephyr/libzephyr.a(periph_ctrl.c.obj) + .rodata.CSWTCH$6 + 0x3c0106cc 0x2c zephyr/libzephyr.a(periph_ctrl.c.obj) + .rodata.esp_clk_tree_src_get_freq_hz + 0x3c0106f8 0x2c zephyr/libzephyr.a(esp_clk_tree.c.obj) + .rodata.intr_desc_table + 0x3c010724 0x200 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .rodata.s_submode2str + 0x3c010924 0x24 zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.g_mmu_mem_regions + 0x3c010948 0x18 zephyr/libzephyr.a(ext_mem_layout.c.obj) + 0x3c010948 g_mmu_mem_regions + .rodata.esp_reset_reason_init + 0x3c010960 0x58 zephyr/libzephyr.a(reset_reason.c.obj) + .rodata.GPIO_PIN_MUX_REG + 0x3c0109b8 0xc4 zephyr/libzephyr.a(gpio_periph.c.obj) + 0x3c0109b8 GPIO_PIN_MUX_REG + .rodata.CSWTCH$695 + 0x3c010a7c 0x2c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .rodata.esp32_clock_config0 + 0x3c010aa8 0x14 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .rodata.dev_config + 0x3c010abc 0x28 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .rodata.sx126x_gpio_dio1 + 0x3c010ae4 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .rodata.sx126x_gpio_busy + 0x3c010aec 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .rodata.sx126x_gpio_reset + 0x3c010af4 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .rodata.CSWTCH$50 + 0x3c010afc 0x2c zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .rodata.Bandwidths + 0x3c010b28 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3c010b28 Bandwidths + .rodata.FskBandwidths + 0x3c010b34 0xb0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3c010b34 FskBandwidths + .rodata.Radio 0x3c010be4 0x6c zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3c010be4 Radio + .rodata.esp32_gpio_ports_addrs + 0x3c010c50 0x8 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .rodata.spi_config_0 + 0x3c010c58 0x44 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.__compound_literal$0 + 0x3c010c9c 0x8 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.__pinctrl_dev_config__device_dts_ord_103 + 0x3c010ca4 0x8 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.__pinctrl_states__device_dts_ord_103 + 0x3c010cac 0x8 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.__pinctrl_state_pins_0__device_dts_ord_103 + 0x3c010cb4 0x18 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.cfg$0 0x3c010ccc 0xc zephyr/kernel/libkernel.a(system_work_q.c.obj) + .rodata.__l_vfprintf + 0x3c010cd8 0x90 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .rodata.lora_rx_fn.str1.1 + 0x3c010d68 0xd6c app/libapp.a(main.c.obj) + 0x47 (size before relaxing) + .rodata.kiss_rx_fn.str1.1 + 0x3c011ad4 0x132 app/libapp.a(main.c.obj) + .rodata.main.str1.1 + 0x3c011ad4 0x44 app/libapp.a(main.c.obj) + .rodata.str1.1 + 0x3c011ad4 0x5 app/libapp.a(main.c.obj) + .rodata.lora_modem_init.str1.1 + 0x3c011ad4 0x42 app/libapp.a(lora_modem.c.obj) + .rodata.lora_modem_set_params.str1.1 + 0x3c011ad4 0x31 app/libapp.a(lora_modem.c.obj) + .rodata.lora_modem_set_freq.str1.1 + 0x3c011ad4 0x17 app/libapp.a(lora_modem.c.obj) + .rodata.lora_modem_send.str1.1 + 0x3c011ad4 0x30 app/libapp.a(lora_modem.c.obj) + .rodata.lora_modem_recv.str1.1 + 0x3c011ad4 0x1b app/libapp.a(lora_modem.c.obj) + .rodata.str1.1 + 0x3c011ad4 0xb app/libapp.a(lora_modem.c.obj) + .rodata.inplace_realloc$isra$0.str1.1 + 0x3c011ad4 0x4d zephyr/libzephyr.a(heap.c.obj) + .rodata.sys_heap_free.str1.1 + 0x3c011ad4 0x25 zephyr/libzephyr.a(heap.c.obj) + .rodata.str1.1 + 0x3c011ad4 0x8 zephyr/libzephyr.a(heap.c.obj) + .rodata.cbprintf_package_convert.str1.1 + 0x3c011ad4 0xa3 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .rodata.str1.1 + 0x3c011ad4 0x11 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .rodata.str1.1 + 0x3c011ad4 0xb zephyr/libzephyr.a(getopt.c.obj) + .rodata.str1.1 + 0x3c011ad4 0x9 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.z_impl_z_log_msg_static_create.str1.1 + 0x3c011ad4 0x3f zephyr/libzephyr.a(log_msg.c.obj) + .rodata.z_log_msg_runtime_vcreate.str1.1 + 0x3c011ad4 0x38 zephyr/libzephyr.a(log_msg.c.obj) + .rodata.rtc_gpio_init.str1.1 + 0x3c011ad4 0x2a zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6 + 0x3c011ad4 0x16 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$7 + 0x3c011aea 0x15 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8 + 0x3c011aff 0x14 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$9 + 0x3c011b13 0x13 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.clk_hal_xtal_get_freq_mhz.str1.1 + 0x3c011b26 0x3f zephyr/libzephyr.a(clk_tree_hal.c.obj) + .rodata.clk_hal_cpu_get_freq_hz.str1.1 + 0x3c011b26 0x1c zephyr/libzephyr.a(clk_tree_hal.c.obj) + .rodata.rtc_io_num_map + 0x3c011b26 0x31 zephyr/libzephyr.a(rtc_io_periph.c.obj) + 0x3c011b26 rtc_io_num_map + .rodata.esp_clk_tree_src_get_freq_hz.str1.1 + 0x3c011b57 0xa8 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .rodata.__FUNCTION__$0 + 0x3c011b57 0x1d zephyr/libzephyr.a(esp_clk_tree.c.obj) + .rodata.rtc_init.str1.1 + 0x3c011b74 0x2a zephyr/libzephyr.a(rtc_init.c.obj) + .rodata.s_sleep_hook_register.str1.1 + 0x3c011b74 0x45 zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.str1.1 + 0x3c011b74 0x13d zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_sub_mode_config.str1.1 + 0x3c011b74 0x6c zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_sub_mode_dump_config.str1.1 + 0x3c011b74 0x25 zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.abort.str1.1 + 0x3c011b74 0x9 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .rodata.CSWTCH$263 + 0x3c011b74 0x6 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .rodata.str1.1 + 0x3c011b7a 0xb zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .rodata.esp32_select_rtc_slow_clk.str1.1 + 0x3c011b7a 0x16 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .rodata.esp32_cpu_clock_configure.str1.1 + 0x3c011b7a 0x1c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .rodata.clock_control_esp32_configure.str1.1 + 0x3c011b7a 0x19 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .rodata.clock_control_esp32_init.str1.1 + 0x3c011b7a 0x3c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .rodata.str1.1 + 0x3c011b7a 0x14 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .rodata.gpio_esp32_init.str1.1 + 0x3c011b7a 0x26 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .rodata.str1.1 + 0x3c011b7a 0x92 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .rodata.sx126x_dio1_irq_work_handler$part$0.str1.1 + 0x3c011b7a 0x2f zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .rodata.sx126x_lora_init.str1.1 + 0x3c011b7a 0x56 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .rodata.sx126x_spi_transceive$isra$0.str1.1 + 0x3c011b7a 0x1b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .rodata.str1.1 + 0x3c011b7a 0xe zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .rodata.__sx12xx_configure_pin.str1.1 + 0x3c011b7a 0x39 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .rodata.sx12xx_lora_send.str1.1 + 0x3c011b7a 0x1c zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .rodata.sx12xx_lora_recv.str1.1 + 0x3c011b7a 0x1e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .rodata.sx12xx_lora_config.str1.1 + 0x3c011b7a 0x1a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .rodata.str1.1 + 0x3c011b7a 0xe zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .rodata.sx126x_variant_init.str1.1 + 0x3c011b7a 0x4b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .rodata.CSWTCH$59 + 0x3c011b7a 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .rodata.str1.1 + 0x3c011b7e 0xe zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .rodata.spi_esp32_gdma_config$isra$0.str1.1 + 0x3c011b7e 0x5f zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.str1.1 + 0x3c011b7e 0x9e zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.spi_esp32_transceive.str1.1 + 0x3c011b7e 0x7c zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.spi_esp32_init.str1.1 + 0x3c011b7e 0xd6 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.boot_banner.str1.1 + 0x3c011b7e 0x3d zephyr/kernel/libkernel.a(banner.c.obj) + .rodata.str1.1 + 0x3c011b7e 0x9 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .rodata.__l_vfprintf.str1.1 + 0x3c011b7e 0xf /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + *(SORT_BY_ALIGNMENT(.rodata1)) + 0x3c011b7e __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.xt_except_table)) + *(SORT_BY_ALIGNMENT(.gcc_except_table) SORT_BY_ALIGNMENT(.gcc_except_table.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.e.*)) + *(SORT_BY_ALIGNMENT(.gnu.version_r)) + 0x3c011cb4 . = ((. + 0x3) & 0xfffffffffffffffc) + *fill* 0x3c011b7e 0x2 + 0x3c011b80 __eh_frame = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.eh_frame)) + .eh_frame 0x3c011b80 0x28 /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/libgcc.a(_divdi3.o) + .eh_frame 0x3c011ba8 0x28 /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/libgcc.a(_moddi3.o) + .eh_frame 0x3c011bd0 0x28 /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/libgcc.a(_udivdi3.o) + .eh_frame 0x3c011bf8 0x28 /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/libgcc.a(_umoddi3.o) + 0x3c011c24 . = ((. + 0x7) & 0xfffffffffffffffc) + *fill* 0x3c011c20 0x4 + 0x3c011c24 __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.xt_except_desc)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.h.*)) + 0x3c011c24 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.xt_except_desc_end)) + *(SORT_BY_ALIGNMENT(.dynamic)) + *(SORT_BY_ALIGNMENT(.gnu.version_d)) + 0x3c011c24 . = ALIGN (0x4) + 0x3c011c24 __rodata_region_end = ABSOLUTE (.) + 0x3c011c24 _lit4_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(*.lit4)) + *(SORT_BY_ALIGNMENT(.lit4.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.lit4.*)) + 0x3c011c24 _lit4_end = ABSOLUTE (.) + 0x3c011c24 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.rodata_wlog)) + *(SORT_BY_ALIGNMENT(.rodata_wlog*)) + 0x3c011c24 . = ALIGN (0x4) + [!provide] PROVIDE (__eh_frame_start = 0x0) + [!provide] PROVIDE (__eh_frame_end = 0x0) + [!provide] PROVIDE (__eh_frame_hdr_start = 0x0) + [!provide] PROVIDE (__eh_frame_hdr_end = 0x0) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.eh_frame)) + +init_array 0x3c011c24 0x0 load address 0x00021c24 + 0x3c011c24 __zephyr_init_array_start = . + *(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)) + *(SORT_BY_ALIGNMENT(.init_array) SORT_BY_ALIGNMENT(.ctors)) + 0x3c011c24 __zephyr_init_array_end = . + 0x00000001 ASSERT ((__zephyr_init_array_start == __zephyr_init_array_end), GNU-style constructors required but STATIC_INIT_GNU not enabled) + +initlevel 0x3c011c24 0x70 load address 0x00021c24 + 0x3c011c24 __init_start = . + 0x3c011c24 __init_EARLY_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY_P_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY_P_???_*))) + 0x3c011c24 __init_PRE_KERNEL_1_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1_P_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1_P_??_*))) + .z_init_PRE_KERNEL_1_P_30_SUB_00034_ + 0x3c011c24 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .z_init_PRE_KERNEL_1_P_30_SUB_0_ + 0x3c011c2c 0x8 zephyr/kernel/libkernel.a(kheap.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00015_ + 0x3c011c34 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00094_ + 0x3c011c3c 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .z_init_PRE_KERNEL_1_P_50_SUB_00064_ + 0x3c011c44 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .z_init_PRE_KERNEL_1_P_50_SUB_00067_ + 0x3c011c4c 0x8 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .z_init_PRE_KERNEL_1_P_60_SUB_0_ + 0x3c011c54 0x8 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1_P_???_*))) + 0x3c011c5c __init_PRE_KERNEL_2_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2_P_?_*))) + .z_init_PRE_KERNEL_2_P_0_SUB_0_ + 0x3c011c5c 0x8 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2_P_???_*))) + 0x3c011c64 __init_POST_KERNEL_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL_P_?_*))) + .z_init_POST_KERNEL_P_0_SUB_0_ + 0x3c011c64 0x8 zephyr/libzephyr.a(log_core.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL_P_??_*))) + .z_init_POST_KERNEL_P_35_SUB_0_ + 0x3c011c6c 0x8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .z_init_POST_KERNEL_P_40_SUB_0_ + 0x3c011c74 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .z_init_POST_KERNEL_P_40_SUB_0_ + 0x3c011c7c 0x8 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .z_init_POST_KERNEL_P_50_SUB_00103_ + 0x3c011c84 0x8 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .z_init_POST_KERNEL_P_90_SUB_00104_ + 0x3c011c8c 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL_P_???_*))) + 0x3c011c94 __init_APPLICATION_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION_P_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION_P_???_*))) + 0x3c011c94 __init_SMP_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP_P_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP_P_???_*))) + 0x3c011c94 __init_end = . + +device_area 0x3c011c94 0xc4 load address 0x00021c94 + 0x3c011c94 _device_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_??_*))) + ._device.static.1_30_ + 0x3c011c94 0x1c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x3c011c94 __device_dts_ord_34 + ._device.static.1_40_ + 0x3c011cb0 0x38 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x3c011cb0 __device_dts_ord_94 + 0x3c011ccc __device_dts_ord_15 + ._device.static.1_50_ + 0x3c011ce8 0x1c zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x3c011ce8 __device_dts_ord_67 + ._device.static.1_50_ + 0x3c011d04 0x1c zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x3c011d04 __device_dts_ord_64 + ._device.static.3_50_ + 0x3c011d20 0x1c zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x3c011d20 __device_dts_ord_103 + ._device.static.3_90_ + 0x3c011d3c 0x1c zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3c011d3c __device_dts_ord_104 + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_???_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_????_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_?????_*))) + 0x3c011d58 _device_list_end = . + +initlevel_error + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_*))) + 0x00000001 ASSERT ((SIZEOF (initlevel_error) == 0x0), Undefined initialization levels used.) + +app_shmem_regions + 0x3c011d58 0x0 load address 0x00021d58 + 0x3c011d58 __app_shmem_regions_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.app_regions.*))) + 0x3c011d58 __app_shmem_regions_end = . + +k_p4wq_initparam_area + 0x3c011d58 0x0 load address 0x00021d58 + 0x3c011d58 _k_p4wq_initparam_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_p4wq_initparam.static.*))) + 0x3c011d58 _k_p4wq_initparam_list_end = . + +_static_thread_data_area + 0x3c011d58 0x0 load address 0x00021d58 + 0x3c011d58 __static_thread_data_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.__static_thread_data.static.*))) + 0x3c011d58 __static_thread_data_list_end = . + +device_deps 0x3c011d58 0x0 load address 0x00021d58 + 0x3c011d58 __device_deps_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.__device_deps_pass2*))) + 0x3c011d58 __device_deps_end = . + +gpio_driver_api_area + 0x3c011d58 0x24 load address 0x00021d58 + 0x3c011d58 _gpio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._gpio_driver_api.static.*))) + ._gpio_driver_api.static.gpio_esp32_driver_api_ + 0x3c011d58 0x24 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x3c011d7c _gpio_driver_api_list_end = . + +spi_driver_api_area + 0x3c011d7c 0x8 load address 0x00021d7c + 0x3c011d7c _spi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._spi_driver_api.static.*))) + ._spi_driver_api.static.spi_api_ + 0x3c011d7c 0x8 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x3c011d84 _spi_driver_api_list_end = . + +shared_irq_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _shared_irq_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shared_irq_driver_api.static.*))) + 0x3c011d84 _shared_irq_driver_api_list_end = . + +crypto_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _crypto_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._crypto_driver_api.static.*))) + 0x3c011d84 _crypto_driver_api_list_end = . + +adc_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _adc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._adc_driver_api.static.*))) + 0x3c011d84 _adc_driver_api_list_end = . + +auxdisplay_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _auxdisplay_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._auxdisplay_driver_api.static.*))) + 0x3c011d84 _auxdisplay_driver_api_list_end = . + +bbram_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _bbram_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bbram_driver_api.static.*))) + 0x3c011d84 _bbram_driver_api_list_end = . + +biometric_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _biometric_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._biometric_driver_api.static.*))) + 0x3c011d84 _biometric_driver_api_list_end = . + +bt_hci_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _bt_hci_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_hci_driver_api.static.*))) + 0x3c011d84 _bt_hci_driver_api_list_end = . + +can_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _can_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._can_driver_api.static.*))) + 0x3c011d84 _can_driver_api_list_end = . + +cellular_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _cellular_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._cellular_driver_api.static.*))) + 0x3c011d84 _cellular_driver_api_list_end = . + +charger_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _charger_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._charger_driver_api.static.*))) + 0x3c011d84 _charger_driver_api_list_end = . + +clock_control_driver_api_area + 0x3c011d84 0x1c load address 0x00021d84 + 0x3c011d84 _clock_control_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._clock_control_driver_api.static.*))) + ._clock_control_driver_api.static.clock_control_esp32_api_ + 0x3c011d84 0x1c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x3c011da0 _clock_control_driver_api_list_end = . + +comparator_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _comparator_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._comparator_driver_api.static.*))) + 0x3c011da0 _comparator_driver_api_list_end = . + +coredump_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _coredump_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._coredump_driver_api.static.*))) + 0x3c011da0 _coredump_driver_api_list_end = . + +counter_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _counter_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._counter_driver_api.static.*))) + 0x3c011da0 _counter_driver_api_list_end = . + +crc_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _crc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._crc_driver_api.static.*))) + 0x3c011da0 _crc_driver_api_list_end = . + +dac_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _dac_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dac_driver_api.static.*))) + 0x3c011da0 _dac_driver_api_list_end = . + +dai_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _dai_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dai_driver_api.static.*))) + 0x3c011da0 _dai_driver_api_list_end = . + +display_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _display_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._display_driver_api.static.*))) + 0x3c011da0 _display_driver_api_list_end = . + +dma_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _dma_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dma_driver_api.static.*))) + 0x3c011da0 _dma_driver_api_list_end = . + +edac_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _edac_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._edac_driver_api.static.*))) + 0x3c011da0 _edac_driver_api_list_end = . + +eeprom_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _eeprom_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._eeprom_driver_api.static.*))) + 0x3c011da0 _eeprom_driver_api_list_end = . + +emul_bbram_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _emul_bbram_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._emul_bbram_driver_api.static.*))) + 0x3c011da0 _emul_bbram_driver_api_list_end = . + +fuel_gauge_emul_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _fuel_gauge_emul_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fuel_gauge_emul_driver_api.static.*))) + 0x3c011da0 _fuel_gauge_emul_driver_api_list_end = . + +emul_sensor_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _emul_sensor_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._emul_sensor_driver_api.static.*))) + 0x3c011da0 _emul_sensor_driver_api_list_end = . + +entropy_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _entropy_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._entropy_driver_api.static.*))) + 0x3c011da0 _entropy_driver_api_list_end = . + +espi_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _espi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._espi_driver_api.static.*))) + 0x3c011da0 _espi_driver_api_list_end = . + +espi_saf_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _espi_saf_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._espi_saf_driver_api.static.*))) + 0x3c011da0 _espi_saf_driver_api_list_end = . + +flash_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _flash_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._flash_driver_api.static.*))) + 0x3c011da0 _flash_driver_api_list_end = . + +fpga_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _fpga_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fpga_driver_api.static.*))) + 0x3c011da0 _fpga_driver_api_list_end = . + +fuel_gauge_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _fuel_gauge_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fuel_gauge_driver_api.static.*))) + 0x3c011da0 _fuel_gauge_driver_api_list_end = . + +gnss_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _gnss_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._gnss_driver_api.static.*))) + 0x3c011da0 _gnss_driver_api_list_end = . + +haptics_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _haptics_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._haptics_driver_api.static.*))) + 0x3c011da0 _haptics_driver_api_list_end = . + +hwspinlock_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _hwspinlock_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._hwspinlock_driver_api.static.*))) + 0x3c011da0 _hwspinlock_driver_api_list_end = . + +i2c_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _i2c_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2c_driver_api.static.*))) + 0x3c011da0 _i2c_driver_api_list_end = . + +i2c_target_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _i2c_target_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2c_target_driver_api.static.*))) + 0x3c011da0 _i2c_target_driver_api_list_end = . + +i2s_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _i2s_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2s_driver_api.static.*))) + 0x3c011da0 _i2s_driver_api_list_end = . + +i3c_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _i3c_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i3c_driver_api.static.*))) + 0x3c011da0 _i3c_driver_api_list_end = . + +ipm_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _ipm_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ipm_driver_api.static.*))) + 0x3c011da0 _ipm_driver_api_list_end = . + +led_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _led_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._led_driver_api.static.*))) + 0x3c011da0 _led_driver_api_list_end = . + +led_strip_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _led_strip_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._led_strip_driver_api.static.*))) + 0x3c011da0 _led_strip_driver_api_list_end = . + +lora_driver_api_area + 0x3c011da0 0x28 load address 0x00021da0 + 0x3c011da0 _lora_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._lora_driver_api.static.*))) + ._lora_driver_api.static.sx126x_lora_api_ + 0x3c011da0 0x28 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3c011dc8 _lora_driver_api_list_end = . + +mbox_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _mbox_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mbox_driver_api.static.*))) + 0x3c011dc8 _mbox_driver_api_list_end = . + +mdio_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _mdio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mdio_driver_api.static.*))) + 0x3c011dc8 _mdio_driver_api_list_end = . + +mipi_dbi_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _mipi_dbi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mipi_dbi_driver_api.static.*))) + 0x3c011dc8 _mipi_dbi_driver_api_list_end = . + +mipi_dsi_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _mipi_dsi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mipi_dsi_driver_api.static.*))) + 0x3c011dc8 _mipi_dsi_driver_api_list_end = . + +mspi_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _mspi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mspi_driver_api.static.*))) + 0x3c011dc8 _mspi_driver_api_list_end = . + +opamp_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _opamp_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._opamp_driver_api.static.*))) + 0x3c011dc8 _opamp_driver_api_list_end = . + +otp_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _otp_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._otp_driver_api.static.*))) + 0x3c011dc8 _otp_driver_api_list_end = . + +peci_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _peci_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._peci_driver_api.static.*))) + 0x3c011dc8 _peci_driver_api_list_end = . + +ps2_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _ps2_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ps2_driver_api.static.*))) + 0x3c011dc8 _ps2_driver_api_list_end = . + +ptp_clock_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _ptp_clock_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ptp_clock_driver_api.static.*))) + 0x3c011dc8 _ptp_clock_driver_api_list_end = . + +pwm_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _pwm_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pwm_driver_api.static.*))) + 0x3c011dc8 _pwm_driver_api_list_end = . + +regulator_parent_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _regulator_parent_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._regulator_parent_driver_api.static.*))) + 0x3c011dc8 _regulator_parent_driver_api_list_end = . + +regulator_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _regulator_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._regulator_driver_api.static.*))) + 0x3c011dc8 _regulator_driver_api_list_end = . + +reset_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _reset_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._reset_driver_api.static.*))) + 0x3c011dc8 _reset_driver_api_list_end = . + +retained_mem_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _retained_mem_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._retained_mem_driver_api.static.*))) + 0x3c011dc8 _retained_mem_driver_api_list_end = . + +rtc_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _rtc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._rtc_driver_api.static.*))) + 0x3c011dc8 _rtc_driver_api_list_end = . + +sdhc_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _sdhc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sdhc_driver_api.static.*))) + 0x3c011dc8 _sdhc_driver_api_list_end = . + +sensor_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _sensor_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sensor_driver_api.static.*))) + 0x3c011dc8 _sensor_driver_api_list_end = . + +smbus_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _smbus_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._smbus_driver_api.static.*))) + 0x3c011dc8 _smbus_driver_api_list_end = . + +syscon_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _syscon_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._syscon_driver_api.static.*))) + 0x3c011dc8 _syscon_driver_api_list_end = . + +tee_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _tee_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tee_driver_api.static.*))) + 0x3c011dc8 _tee_driver_api_list_end = . + +uaol_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _uaol_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._uaol_driver_api.static.*))) + 0x3c011dc8 _uaol_driver_api_list_end = . + +video_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _video_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._video_driver_api.static.*))) + 0x3c011dc8 _video_driver_api_list_end = . + +virtio_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _virtio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._virtio_driver_api.static.*))) + 0x3c011dc8 _virtio_driver_api_list_end = . + +w1_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _w1_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._w1_driver_api.static.*))) + 0x3c011dc8 _w1_driver_api_list_end = . + +wdt_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _wdt_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._wdt_driver_api.static.*))) + 0x3c011dc8 _wdt_driver_api_list_end = . + +wuc_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _wuc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._wuc_driver_api.static.*))) + 0x3c011dc8 _wuc_driver_api_list_end = . + +can_transceiver_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _can_transceiver_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._can_transceiver_driver_api.static.*))) + 0x3c011dc8 _can_transceiver_driver_api_list_end = . + +nrf_clock_control_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _nrf_clock_control_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._nrf_clock_control_driver_api.static.*))) + 0x3c011dc8 _nrf_clock_control_driver_api_list_end = . + +i3c_target_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _i3c_target_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i3c_target_driver_api.static.*))) + 0x3c011dc8 _i3c_target_driver_api_list_end = . + +its_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _its_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._its_driver_api.static.*))) + 0x3c011dc8 _its_driver_api_list_end = . + +vtd_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _vtd_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._vtd_driver_api.static.*))) + 0x3c011dc8 _vtd_driver_api_list_end = . + +renesas_elc_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _renesas_elc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._renesas_elc_driver_api.static.*))) + 0x3c011dc8 _renesas_elc_driver_api_list_end = . + +tgpio_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _tgpio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tgpio_driver_api.static.*))) + 0x3c011dc8 _tgpio_driver_api_list_end = . + +pcie_ctrl_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _pcie_ctrl_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pcie_ctrl_driver_api.static.*))) + 0x3c011dc8 _pcie_ctrl_driver_api_list_end = . + +pcie_ep_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _pcie_ep_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pcie_ep_driver_api.static.*))) + 0x3c011dc8 _pcie_ep_driver_api_list_end = . + +psi5_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _psi5_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._psi5_driver_api.static.*))) + 0x3c011dc8 _psi5_driver_api_list_end = . + +sent_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _sent_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sent_driver_api.static.*))) + 0x3c011dc8 _sent_driver_api_list_end = . + +svc_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _svc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._svc_driver_api.static.*))) + 0x3c011dc8 _svc_driver_api_list_end = . + +stepper_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _stepper_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._stepper_driver_api.static.*))) + 0x3c011dc8 _stepper_driver_api_list_end = . + +stepper_ctrl_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _stepper_ctrl_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._stepper_ctrl_driver_api.static.*))) + 0x3c011dc8 _stepper_ctrl_driver_api_list_end = . + +uart_driver_api_area + 0x3c011dc8 0x98 load address 0x00021dc8 + 0x3c011dc8 _uart_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._uart_driver_api.static.*))) + ._uart_driver_api.static.serial_esp32_usb_api_ + 0x3c011dc8 0x4c zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + ._uart_driver_api.static.uart_esp32_api_ + 0x3c011e14 0x4c zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x3c011e60 _uart_driver_api_list_end = . + +bc12_emul_driver_api_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _bc12_emul_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bc12_emul_driver_api.static.*))) + 0x3c011e60 _bc12_emul_driver_api_list_end = . + +bc12_driver_api_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _bc12_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bc12_driver_api.static.*))) + 0x3c011e60 _bc12_driver_api_list_end = . + +usbc_ppc_driver_api_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _usbc_ppc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usbc_ppc_driver_api.static.*))) + 0x3c011e60 _usbc_ppc_driver_api_list_end = . + +tcpc_driver_api_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _tcpc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tcpc_driver_api.static.*))) + 0x3c011e60 _tcpc_driver_api_list_end = . + +usbc_vbus_driver_api_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _usbc_vbus_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usbc_vbus_driver_api.static.*))) + 0x3c011e60 _usbc_vbus_driver_api_list_end = . + +ivshmem_driver_api_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _ivshmem_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ivshmem_driver_api.static.*))) + 0x3c011e60 _ivshmem_driver_api_list_end = . + +ethphy_driver_api_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _ethphy_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ethphy_driver_api.static.*))) + 0x3c011e60 _ethphy_driver_api_list_end = . + +ztest 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _ztest_expected_result_entry_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_expected_result_entry.static.*))) + 0x3c011e60 _ztest_expected_result_entry_list_end = . + 0x3c011e60 _ztest_suite_node_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_suite_node.static.*))) + 0x3c011e60 _ztest_suite_node_list_end = . + 0x3c011e60 _ztest_unit_test_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_unit_test.static.*))) + 0x3c011e60 _ztest_unit_test_list_end = . + 0x3c011e60 _ztest_test_rule_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_test_rule.static.*))) + 0x3c011e60 _ztest_test_rule_list_end = . + +bt_l2cap_fixed_chan_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _bt_l2cap_fixed_chan_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_l2cap_fixed_chan.static.*))) + 0x3c011e60 _bt_l2cap_fixed_chan_list_end = . + +bt_gatt_service_static_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _bt_gatt_service_static_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_gatt_service_static.static.*))) + 0x3c011e60 _bt_gatt_service_static_list_end = . + +tracing_backend_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _tracing_backend_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tracing_backend.static.*))) + 0x3c011e60 _tracing_backend_list_end = . + +zephyr_dbg_info + *(SORT_BY_ALIGNMENT(.dbg_thread_info)) + +symbol_to_keep 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 __symbol_to_keep_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.symbol_to_keep*))) + 0x3c011e60 __symbol_to_keep_end = . + +shell_area 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _shell_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell.static.*))) + 0x3c011e60 _shell_list_end = . + +shell_root_cmds_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _shell_root_cmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_root_cmds.static.*))) + 0x3c011e60 _shell_root_cmds_list_end = . + +shell_subcmds_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _shell_subcmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_subcmds.static.*))) + 0x3c011e60 _shell_subcmds_list_end = . + +shell_dynamic_subcmds_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _shell_dynamic_subcmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_dynamic_subcmds.static.*))) + 0x3c011e60 _shell_dynamic_subcmds_list_end = . + +cfb_font_area 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _cfb_font_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._cfb_font.static.*))) + 0x3c011e60 _cfb_font_list_end = . + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.irq_info*)) + *(SORT_BY_ALIGNMENT(.intList*)) + +.flash.rodata_end + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 . = ALIGN (0x4) + 0x3c011e60 _rodata_reserved_end = ABSOLUTE (.) + 0x3c011e60 _image_rodata_end = ABSOLUTE (.) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.irq_info*)) + *(SORT_BY_ALIGNMENT(.intList*)) + +.stab + *(SORT_BY_ALIGNMENT(.stab)) + +.stabstr + *(SORT_BY_ALIGNMENT(.stabstr)) + +.stab.excl + *(SORT_BY_ALIGNMENT(.stab.excl)) + +.stab.exclstr + *(SORT_BY_ALIGNMENT(.stab.exclstr)) + +.stab.index + *(SORT_BY_ALIGNMENT(.stab.index)) + +.stab.indexstr + *(SORT_BY_ALIGNMENT(.stab.indexstr)) + +.gnu.build.attributes + *(SORT_BY_ALIGNMENT(.gnu.build.attributes) SORT_BY_ALIGNMENT(.gnu.build.attributes.*)) + +.comment 0x00000000 0x1f + *(SORT_BY_ALIGNMENT(.comment)) + .comment 0x00000000 0x1f zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + 0x20 (size before relaxing) + .comment 0x0000001f 0x20 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .comment 0x0000001f 0x20 app/libapp.a(main.c.obj) + .comment 0x0000001f 0x20 app/libapp.a(kiss.c.obj) + .comment 0x0000001f 0x20 app/libapp.a(lora_modem.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(heap.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(printk.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(thread_entry.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(getopt.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(configs.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(soc.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(loader.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(hw_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(log_core.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(log_msg.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(log_output.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(log_backend_uart.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_flash_api.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(flash_mmap.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(flash_ops.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(cache_utils.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(uart_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(console_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(soc_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(systimer_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_clk.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(periph_ctrl.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(rtc_clk.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(rtc_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(rtc_sleep.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(rtc_time.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(systimer.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(rtc_module.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(sleep_modes.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(ext_mem_layout.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(clk.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(reset_reason.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_timer_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(efuse_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(cache_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(efuse_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(mmu_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(gpio_periph.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(flash_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(bootloader_flash.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(soc_flash_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(soc_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(soc_random.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/common/libarch__common.a(init.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .comment 0x0000001f 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .comment 0x0000001f 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .comment 0x0000001f 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .comment 0x0000001f 0x20 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .comment 0x0000001f 0x20 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(device.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(fatal.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(init.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(idle.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(mutex.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(sem.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(work.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(thread.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(sched.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(timeout.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(timer.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(poll.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(mempool.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(banner.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(kheap.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug + *(SORT_BY_ALIGNMENT(.debug)) + +.line + *(SORT_BY_ALIGNMENT(.line)) + +.debug_srcinfo + *(SORT_BY_ALIGNMENT(.debug_srcinfo)) + +.debug_sfnames + *(SORT_BY_ALIGNMENT(.debug_sfnames)) + +.debug_aranges 0x00000000 0x3808 + *(SORT_BY_ALIGNMENT(.debug_aranges)) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_aranges + 0x00000020 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .debug_aranges + 0x00000040 0x70 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .debug_aranges + 0x000000b0 0x18 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_aranges + 0x000000c8 0x20 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .debug_aranges + 0x000000e8 0x40 app/libapp.a(main.c.obj) + .debug_aranges + 0x00000128 0x38 app/libapp.a(kiss.c.obj) + .debug_aranges + 0x00000160 0x68 app/libapp.a(lora_modem.c.obj) + .debug_aranges + 0x000001c8 0xd0 zephyr/libzephyr.a(heap.c.obj) + .debug_aranges + 0x00000298 0x40 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_aranges + 0x000002d8 0x48 zephyr/libzephyr.a(printk.c.obj) + .debug_aranges + 0x00000320 0x20 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_aranges + 0x00000340 0xb0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_aranges + 0x000003f0 0x28 zephyr/libzephyr.a(getopt.c.obj) + .debug_aranges + 0x00000418 0x20 zephyr/libzephyr.a(configs.c.obj) + .debug_aranges + 0x00000438 0x38 zephyr/libzephyr.a(soc.c.obj) + .debug_aranges + 0x00000470 0x28 zephyr/libzephyr.a(loader.c.obj) + .debug_aranges + 0x00000498 0x20 zephyr/libzephyr.a(hw_init.c.obj) + .debug_aranges + 0x000004b8 0x178 zephyr/libzephyr.a(log_core.c.obj) + .debug_aranges + 0x00000630 0xb8 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_aranges + 0x000006e8 0x60 zephyr/libzephyr.a(log_msg.c.obj) + .debug_aranges + 0x00000748 0x70 zephyr/libzephyr.a(log_output.c.obj) + .debug_aranges + 0x000007b8 0x48 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_aranges + 0x00000800 0x48 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_aranges + 0x00000848 0x38 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_aranges + 0x00000880 0xb8 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_aranges + 0x00000938 0x60 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_aranges + 0x00000998 0x40 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_aranges + 0x000009d8 0x120 zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_aranges + 0x00000af8 0x48 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_aranges + 0x00000b40 0x58 zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_aranges + 0x00000b98 0x58 zephyr/libzephyr.a(flash_ops.c.obj) + .debug_aranges + 0x00000bf0 0x78 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_aranges + 0x00000c68 0x28 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_aranges + 0x00000c90 0x20 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .debug_aranges + 0x00000cb0 0x48 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_aranges + 0x00000cf8 0x110 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_aranges + 0x00000e08 0x38 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_aranges + 0x00000e40 0x30 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_aranges + 0x00000e70 0x90 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_aranges + 0x00000f00 0x28 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_aranges + 0x00000f28 0x50 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_aranges + 0x00000f78 0x40 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_aranges + 0x00000fb8 0x90 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_aranges + 0x00001048 0x88 zephyr/libzephyr.a(cache_utils.c.obj) + .debug_aranges + 0x000010d0 0xf0 zephyr/libzephyr.a(uart_hal.c.obj) + .debug_aranges + 0x000011c0 0x40 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_aranges + 0x00001200 0x48 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_aranges + 0x00001248 0x98 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_aranges + 0x000012e0 0x28 zephyr/libzephyr.a(console_init.c.obj) + .debug_aranges + 0x00001308 0x38 zephyr/libzephyr.a(soc_init.c.obj) + .debug_aranges + 0x00001340 0xd0 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_aranges + 0x00001410 0x50 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_aranges + 0x00001460 0x18 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .debug_aranges + 0x00001478 0x90 zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_aranges + 0x00001508 0x70 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_aranges + 0x00001578 0x68 zephyr/libzephyr.a(esp_clk.c.obj) + .debug_aranges + 0x000015e0 0x68 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_aranges + 0x00001648 0x28 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_aranges + 0x00001670 0xb8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_aranges + 0x00001728 0x40 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_aranges + 0x00001768 0x20 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_aranges + 0x00001788 0x120 zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_aranges + 0x000018a8 0x38 zephyr/libzephyr.a(rtc_init.c.obj) + .debug_aranges + 0x000018e0 0x40 zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_aranges + 0x00001920 0x58 zephyr/libzephyr.a(rtc_time.c.obj) + .debug_aranges + 0x00001978 0x88 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_aranges + 0x00001a00 0x28 zephyr/libzephyr.a(systimer.c.obj) + .debug_aranges + 0x00001a28 0x40 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_aranges + 0x00001a68 0x68 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_aranges + 0x00001ad0 0x40 zephyr/libzephyr.a(rtc_module.c.obj) + .debug_aranges + 0x00001b10 0x1f8 zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_aranges + 0x00001d08 0x40 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_aranges + 0x00001d48 0x48 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_aranges + 0x00001d90 0xa0 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_aranges + 0x00001e30 0x18 zephyr/libzephyr.a(ext_mem_layout.c.obj) + .debug_aranges + 0x00001e48 0x48 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_aranges + 0x00001e90 0x20 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_aranges + 0x00001eb0 0x20 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .debug_aranges + 0x00001ed0 0x30 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .debug_aranges + 0x00001f00 0x40 zephyr/libzephyr.a(clk.c.obj) + .debug_aranges + 0x00001f40 0x38 zephyr/libzephyr.a(reset_reason.c.obj) + .debug_aranges + 0x00001f78 0x68 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_aranges + 0x00001fe0 0x30 zephyr/libzephyr.a(esp_timer_init.c.obj) + .debug_aranges + 0x00002010 0x58 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_aranges + 0x00002068 0x88 zephyr/libzephyr.a(cache_hal.c.obj) + .debug_aranges + 0x000020f0 0x50 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_aranges + 0x00002140 0x68 zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_aranges + 0x000021a8 0x18 zephyr/libzephyr.a(gpio_periph.c.obj) + .debug_aranges + 0x000021c0 0x30 zephyr/libzephyr.a(flash_init.c.obj) + .debug_aranges + 0x000021f0 0xe8 zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_aranges + 0x000022d8 0x48 zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_aranges + 0x00002320 0x68 zephyr/libzephyr.a(soc_init.c.obj) + .debug_aranges + 0x00002388 0x28 zephyr/libzephyr.a(soc_random.c.obj) + .debug_aranges + 0x000023b0 0x20 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_aranges + 0x000023d0 0x28 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_aranges + 0x000023f8 0x30 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_aranges + 0x00002428 0x28 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .debug_aranges + 0x00002450 0x30 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_aranges + 0x00002480 0x38 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_aranges + 0x000024b8 0x28 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_aranges + 0x000024e0 0x90 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_aranges + 0x00002570 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .debug_aranges + 0x00002590 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_aranges + 0x000025b0 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_aranges + 0x000025d8 0x38 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_aranges + 0x00002610 0x20 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_aranges + 0x00002630 0x60 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_aranges + 0x00002690 0xa0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_aranges + 0x00002730 0x58 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_aranges + 0x00002788 0x30 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_aranges + 0x000027b8 0x80 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_aranges + 0x00002838 0xf0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_aranges + 0x00002928 0xa8 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_aranges + 0x000029d0 0x88 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_aranges + 0x00002a58 0x78 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_aranges + 0x00002ad0 0x88 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_aranges + 0x00002b58 0x28 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_aranges + 0x00002b80 0x188 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_aranges + 0x00002d08 0x120 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_aranges + 0x00002e28 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_aranges + 0x00002e48 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_aranges + 0x00002e68 0xb0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_aranges + 0x00002f18 0xc0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_aranges + 0x00002fd8 0x68 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_aranges + 0x00003040 0x48 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_aranges + 0x00003088 0x20 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_aranges + 0x000030a8 0x48 zephyr/kernel/libkernel.a(device.c.obj) + .debug_aranges + 0x000030f0 0x38 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_aranges + 0x00003128 0x40 zephyr/kernel/libkernel.a(init.c.obj) + .debug_aranges + 0x00003168 0x28 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_aranges + 0x00003190 0x38 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_aranges + 0x000031c8 0x38 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_aranges + 0x00003200 0x120 zephyr/kernel/libkernel.a(work.c.obj) + .debug_aranges + 0x00003320 0x90 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_aranges + 0x000033b0 0x190 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_aranges + 0x00003540 0x40 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_aranges + 0x00003580 0x98 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_aranges + 0x00003618 0x48 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_aranges + 0x00003660 0xa0 zephyr/kernel/libkernel.a(poll.c.obj) + .debug_aranges + 0x00003700 0x68 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_aranges + 0x00003768 0x20 zephyr/kernel/libkernel.a(banner.c.obj) + .debug_aranges + 0x00003788 0x60 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_aranges + 0x000037e8 0x20 zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_pubnames + *(SORT_BY_ALIGNMENT(.debug_pubnames)) + +.debug_info 0x00000000 0x171226 + *(SORT_BY_ALIGNMENT(.debug_info) SORT_BY_ALIGNMENT(.gnu.linkonce.wi.*)) + .debug_info 0x00000000 0x10c zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_info 0x0000010c 0xdc zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .debug_info 0x000001e8 0xb0cd app/libapp.a(main.c.obj) + .debug_info 0x0000b2b5 0x34f app/libapp.a(kiss.c.obj) + .debug_info 0x0000b604 0x6acb app/libapp.a(lora_modem.c.obj) + .debug_info 0x000120cf 0x8d28 zephyr/libzephyr.a(heap.c.obj) + .debug_info 0x0001adf7 0x2278 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_info 0x0001d06f 0x469 zephyr/libzephyr.a(printk.c.obj) + .debug_info 0x0001d4d8 0x637 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_info 0x0001db0f 0x1f07 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_info 0x0001fa16 0x1854 zephyr/libzephyr.a(getopt.c.obj) + .debug_info 0x0002126a 0x38 zephyr/libzephyr.a(configs.c.obj) + .debug_info 0x000212a2 0x224 zephyr/libzephyr.a(soc.c.obj) + .debug_info 0x000214c6 0x12d9 zephyr/libzephyr.a(loader.c.obj) + .debug_info 0x0002279f 0x5c2 zephyr/libzephyr.a(hw_init.c.obj) + .debug_info 0x00022d61 0x4557 zephyr/libzephyr.a(log_core.c.obj) + .debug_info 0x000272b8 0x21d9 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_info 0x00029491 0x2777 zephyr/libzephyr.a(log_msg.c.obj) + .debug_info 0x0002bc08 0x208c zephyr/libzephyr.a(log_output.c.obj) + .debug_info 0x0002dc94 0x1b5f zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_info 0x0002f7f3 0x44f zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_info 0x0002fc42 0x5120 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_info 0x00034d62 0x6917 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_info 0x0003b679 0x5808 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_info 0x00040e81 0x1128 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_info 0x00041fa9 0x482b zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_info 0x000467d4 0x73b4 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_info 0x0004db88 0xf03 zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_info 0x0004ea8b 0x570 zephyr/libzephyr.a(flash_ops.c.obj) + .debug_info 0x0004effb 0x56ef zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_info 0x000546ea 0xf1a zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_info 0x00055604 0xcd9 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .debug_info 0x000562dd 0x1195 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_info 0x00057472 0x2bdf zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_info 0x0005a051 0x103e zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_info 0x0005b08f 0x11ee zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_info 0x0005c27d 0x1c1b zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_info 0x0005de98 0xf1a zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_info 0x0005edb2 0x1632 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_info 0x000603e4 0x9cd zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_info 0x00060db1 0x1151 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_info 0x00061f02 0x12c1 zephyr/libzephyr.a(cache_utils.c.obj) + .debug_info 0x000631c3 0x2fa8 zephyr/libzephyr.a(uart_hal.c.obj) + .debug_info 0x0006616b 0x1c8e zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_info 0x00067df9 0x2235 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_info 0x0006a02e 0x38d0 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_info 0x0006d8fe 0x16d zephyr/libzephyr.a(console_init.c.obj) + .debug_info 0x0006da6b 0x8927 zephyr/libzephyr.a(soc_init.c.obj) + .debug_info 0x00076392 0x3e38 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_info 0x0007a1ca 0xaab zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_info 0x0007ac75 0x1ce zephyr/libzephyr.a(rtc_io_periph.c.obj) + .debug_info 0x0007ae43 0x1980 zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_info 0x0007c7c3 0x5c10 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_info 0x000823d3 0xaee zephyr/libzephyr.a(esp_clk.c.obj) + .debug_info 0x00082ec1 0x614 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_info 0x000834d5 0x46d zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_info 0x00083942 0x85df zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_info 0x0008bf21 0x855 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_info 0x0008c776 0x1da zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_info 0x0008c950 0x399d zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_info 0x000902ed 0x4a57 zephyr/libzephyr.a(rtc_init.c.obj) + .debug_info 0x00094d44 0x4479 zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_info 0x000991bd 0x1409 zephyr/libzephyr.a(rtc_time.c.obj) + .debug_info 0x0009a5c6 0x7393 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_info 0x000a1959 0xdd zephyr/libzephyr.a(systimer.c.obj) + .debug_info 0x000a1a36 0x525 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_info 0x000a1f5b 0xc72 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_info 0x000a2bcd 0x46e0 zephyr/libzephyr.a(rtc_module.c.obj) + .debug_info 0x000a72ad 0xaf13 zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_info 0x000b21c0 0x89c zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_info 0x000b2a5c 0x4a0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_info 0x000b2efc 0x2c57 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_info 0x000b5b53 0x1ba zephyr/libzephyr.a(ext_mem_layout.c.obj) + .debug_info 0x000b5d0d 0x56a zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_info 0x000b6277 0x30 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_info 0x000b62a7 0x37a zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_info 0x000b6621 0x2e3 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .debug_info 0x000b6904 0x1b4 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .debug_info 0x000b6ab8 0xd8b zephyr/libzephyr.a(clk.c.obj) + .debug_info 0x000b7843 0x44b zephyr/libzephyr.a(reset_reason.c.obj) + .debug_info 0x000b7c8e 0x6bc8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_info 0x000be856 0x14e zephyr/libzephyr.a(esp_timer_init.c.obj) + .debug_info 0x000be9a4 0x3f31 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_info 0x000c28d5 0x16bf zephyr/libzephyr.a(cache_hal.c.obj) + .debug_info 0x000c3f94 0x3a6c zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_info 0x000c7a00 0xdd2 zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_info 0x000c87d2 0xd1 zephyr/libzephyr.a(gpio_periph.c.obj) + .debug_info 0x000c88a3 0x3d77 zephyr/libzephyr.a(flash_init.c.obj) + .debug_info 0x000cc61a 0x8e24 zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_info 0x000d543e 0x8b0 zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_info 0x000d5cee 0x4629 zephyr/libzephyr.a(soc_init.c.obj) + .debug_info 0x000da317 0x8f1b zephyr/libzephyr.a(soc_random.c.obj) + .debug_info 0x000e3232 0xba zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_info 0x000e32ec 0x1e4 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_info 0x000e34d0 0x1d7 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_info 0x000e36a7 0xb8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .debug_info 0x000e375f 0x351 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_info 0x000e3ab0 0x24 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .debug_info 0x000e3ad4 0x22 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .debug_info 0x000e3af6 0x1118 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_info 0x000e4c0e 0x9b7 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_info 0x000e55c5 0xdc4a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_info 0x000f320f 0x5f7 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .debug_info 0x000f3806 0xa5 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_info 0x000f38ab 0x317 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_info 0x000f3bc2 0x3c3 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_info 0x000f3f85 0x121 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_info 0x000f40a6 0xe05 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_info 0x000f4eab 0x2e5b zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_info 0x000f7d06 0xaa89 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_info 0x0010278f 0x977 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_info 0x00103106 0x68da zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_info 0x001099e0 0x11d8b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_info 0x0011b76b 0xd9f zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_info 0x0011c50a 0x6626 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_info 0x00122b30 0x2a38 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_info 0x00125568 0x830 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_info 0x00125d98 0x13a zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_info 0x00125ed2 0x22a2 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_info 0x00128174 0x313a zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_info 0x0012b2ae 0x1b2 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_info 0x0012b460 0x2580 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_info 0x0012d9e0 0x2217 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_info 0x0012fbf7 0x5c6c zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_info 0x00135863 0x14207 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_info 0x00149a6a 0x9de zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_info 0x0014a448 0x1ab zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_info 0x0014a5f3 0x3f7 zephyr/kernel/libkernel.a(device.c.obj) + .debug_info 0x0014a9ea 0x29df zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_info 0x0014d3c9 0x16c8 zephyr/kernel/libkernel.a(init.c.obj) + .debug_info 0x0014ea91 0x246 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_info 0x0014ecd7 0x7e8b zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_info 0x00156b62 0x1232 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_info 0x00157d94 0x51e7 zephyr/kernel/libkernel.a(work.c.obj) + .debug_info 0x0015cf7b 0x2aef zephyr/kernel/libkernel.a(thread.c.obj) + .debug_info 0x0015fa6a 0x8c10 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_info 0x0016867a 0xcfd zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_info 0x00169377 0x1564 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_info 0x0016a8db 0x1355 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_info 0x0016bc30 0x2dad zephyr/kernel/libkernel.a(poll.c.obj) + .debug_info 0x0016e9dd 0xf45 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_info 0x0016f922 0xc5 zephyr/kernel/libkernel.a(banner.c.obj) + .debug_info 0x0016f9e7 0xf79 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_info 0x00170960 0x8c6 zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_abbrev 0x00000000 0x1f96a + *(SORT_BY_ALIGNMENT(.debug_abbrev)) + .debug_abbrev 0x00000000 0xc3 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_abbrev 0x000000c3 0x62 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .debug_abbrev 0x00000125 0x650 app/libapp.a(main.c.obj) + .debug_abbrev 0x00000775 0x1bf app/libapp.a(kiss.c.obj) + .debug_abbrev 0x00000934 0x561 app/libapp.a(lora_modem.c.obj) + .debug_abbrev 0x00000e95 0x595 zephyr/libzephyr.a(heap.c.obj) + .debug_abbrev 0x0000142a 0x563 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_abbrev 0x0000198d 0x277 zephyr/libzephyr.a(printk.c.obj) + .debug_abbrev 0x00001c04 0x236 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_abbrev 0x00001e3a 0x593 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_abbrev 0x000023cd 0x2aa zephyr/libzephyr.a(getopt.c.obj) + .debug_abbrev 0x00002677 0x2e zephyr/libzephyr.a(configs.c.obj) + .debug_abbrev 0x000026a5 0x14a zephyr/libzephyr.a(soc.c.obj) + .debug_abbrev 0x000027ef 0x3f9 zephyr/libzephyr.a(loader.c.obj) + .debug_abbrev 0x00002be8 0x19e zephyr/libzephyr.a(hw_init.c.obj) + .debug_abbrev 0x00002d86 0x8fc zephyr/libzephyr.a(log_core.c.obj) + .debug_abbrev 0x00003682 0x642 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_abbrev 0x00003cc4 0x5bc zephyr/libzephyr.a(log_msg.c.obj) + .debug_abbrev 0x00004280 0x5d9 zephyr/libzephyr.a(log_output.c.obj) + .debug_abbrev 0x00004859 0x44e zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_abbrev 0x00004ca7 0x1e6 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_abbrev 0x00004e8d 0x46f zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_abbrev 0x000052fc 0x543 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_abbrev 0x0000583f 0x527 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_abbrev 0x00005d66 0x40f zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_abbrev 0x00006175 0x5b1 zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_abbrev 0x00006726 0x649 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_abbrev 0x00006d6f 0x4a4 zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_abbrev 0x00007213 0x289 zephyr/libzephyr.a(flash_ops.c.obj) + .debug_abbrev 0x0000749c 0x451 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_abbrev 0x000078ed 0x1ea zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_abbrev 0x00007ad7 0x192 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .debug_abbrev 0x00007c69 0x330 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_abbrev 0x00007f99 0x542 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_abbrev 0x000084db 0x266 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_abbrev 0x00008741 0x220 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_abbrev 0x00008961 0x42b zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_abbrev 0x00008d8c 0x1ea zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_abbrev 0x00008f76 0x377 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_abbrev 0x000092ed 0x202 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_abbrev 0x000094ef 0x42f zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_abbrev 0x0000991e 0x49b zephyr/libzephyr.a(cache_utils.c.obj) + .debug_abbrev 0x00009db9 0x3fc zephyr/libzephyr.a(uart_hal.c.obj) + .debug_abbrev 0x0000a1b5 0x2c6 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_abbrev 0x0000a47b 0x3a0 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_abbrev 0x0000a81b 0x506 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_abbrev 0x0000ad21 0xc1 zephyr/libzephyr.a(console_init.c.obj) + .debug_abbrev 0x0000ade2 0x3c5 zephyr/libzephyr.a(soc_init.c.obj) + .debug_abbrev 0x0000b1a7 0x4d1 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_abbrev 0x0000b678 0x2ac zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_abbrev 0x0000b924 0xa1 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .debug_abbrev 0x0000b9c5 0x3c1 zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_abbrev 0x0000bd86 0x407 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_abbrev 0x0000c18d 0x354 zephyr/libzephyr.a(esp_clk.c.obj) + .debug_abbrev 0x0000c4e1 0x2d0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_abbrev 0x0000c7b1 0x1a4 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_abbrev 0x0000c955 0x4d1 zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_abbrev 0x0000ce26 0x1d7 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_abbrev 0x0000cffd 0x10a zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_abbrev 0x0000d107 0x64a zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_abbrev 0x0000d751 0x4f2 zephyr/libzephyr.a(rtc_init.c.obj) + .debug_abbrev 0x0000dc43 0x3b9 zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_abbrev 0x0000dffc 0x400 zephyr/libzephyr.a(rtc_time.c.obj) + .debug_abbrev 0x0000e3fc 0x3eb zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_abbrev 0x0000e7e7 0x9b zephyr/libzephyr.a(systimer.c.obj) + .debug_abbrev 0x0000e882 0x28a zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_abbrev 0x0000eb0c 0x2e2 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_abbrev 0x0000edee 0x4cc zephyr/libzephyr.a(rtc_module.c.obj) + .debug_abbrev 0x0000f2ba 0x826 zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_abbrev 0x0000fae0 0x341 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_abbrev 0x0000fe21 0x224 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_abbrev 0x00010045 0x5df zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_abbrev 0x00010624 0xbd zephyr/libzephyr.a(ext_mem_layout.c.obj) + .debug_abbrev 0x000106e1 0x259 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_abbrev 0x0001093a 0x28 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_abbrev 0x00010962 0xef zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_abbrev 0x00010a51 0x16c zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .debug_abbrev 0x00010bbd 0x114 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .debug_abbrev 0x00010cd1 0x367 zephyr/libzephyr.a(clk.c.obj) + .debug_abbrev 0x00011038 0x1bf zephyr/libzephyr.a(reset_reason.c.obj) + .debug_abbrev 0x000111f7 0x51f zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_abbrev 0x00011716 0xfd zephyr/libzephyr.a(esp_timer_init.c.obj) + .debug_abbrev 0x00011813 0x3c2 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_abbrev 0x00011bd5 0x408 zephyr/libzephyr.a(cache_hal.c.obj) + .debug_abbrev 0x00011fdd 0x210 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_abbrev 0x000121ed 0x36e zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_abbrev 0x0001255b 0x70 zephyr/libzephyr.a(gpio_periph.c.obj) + .debug_abbrev 0x000125cb 0x30a zephyr/libzephyr.a(flash_init.c.obj) + .debug_abbrev 0x000128d5 0x6df zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_abbrev 0x00012fb4 0x332 zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_abbrev 0x000132e6 0x3e3 zephyr/libzephyr.a(soc_init.c.obj) + .debug_abbrev 0x000136c9 0x3bd zephyr/libzephyr.a(soc_random.c.obj) + .debug_abbrev 0x00013a86 0x6b zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_abbrev 0x00013af1 0x136 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_abbrev 0x00013c27 0xe2 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_abbrev 0x00013d09 0x71 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .debug_abbrev 0x00013d7a 0x20a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_abbrev 0x00013f84 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .debug_abbrev 0x00013f98 0x12 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .debug_abbrev 0x00013faa 0x322 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_abbrev 0x000142cc 0x2a2 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_abbrev 0x0001456e 0x61a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_abbrev 0x00014b88 0x1ac zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .debug_abbrev 0x00014d34 0x68 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_abbrev 0x00014d9c 0x1a9 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_abbrev 0x00014f45 0x203 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_abbrev 0x00015148 0xba zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_abbrev 0x00015202 0x493 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_abbrev 0x00015695 0x618 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_abbrev 0x00015cad 0x6e1 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_abbrev 0x0001638e 0x359 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_abbrev 0x000166e7 0x6b7 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_abbrev 0x00016d9e 0x741 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_abbrev 0x000174df 0x463 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_abbrev 0x00017942 0x6f9 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_abbrev 0x0001803b 0x62a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_abbrev 0x00018665 0x34c zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_abbrev 0x000189b1 0xf6 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_abbrev 0x00018aa7 0x479 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_abbrev 0x00018f20 0x4c6 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_abbrev 0x000193e6 0xd0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_abbrev 0x000194b6 0x3c8 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_abbrev 0x0001987e 0x54b zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_abbrev 0x00019dc9 0x705 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_abbrev 0x0001a4ce 0x78a zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_abbrev 0x0001ac58 0x378 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_abbrev 0x0001afd0 0x11f zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_abbrev 0x0001b0ef 0x1c2 zephyr/kernel/libkernel.a(device.c.obj) + .debug_abbrev 0x0001b2b1 0x488 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_abbrev 0x0001b739 0x655 zephyr/kernel/libkernel.a(init.c.obj) + .debug_abbrev 0x0001bd8e 0x18c zephyr/kernel/libkernel.a(idle.c.obj) + .debug_abbrev 0x0001bf1a 0x4a4 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_abbrev 0x0001c3be 0x427 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_abbrev 0x0001c7e5 0x665 zephyr/kernel/libkernel.a(work.c.obj) + .debug_abbrev 0x0001ce4a 0x5bc zephyr/kernel/libkernel.a(thread.c.obj) + .debug_abbrev 0x0001d406 0x68a zephyr/kernel/libkernel.a(sched.c.obj) + .debug_abbrev 0x0001da90 0x3d0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_abbrev 0x0001de60 0x4b8 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_abbrev 0x0001e318 0x4b0 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_abbrev 0x0001e7c8 0x656 zephyr/kernel/libkernel.a(poll.c.obj) + .debug_abbrev 0x0001ee1e 0x433 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_abbrev 0x0001f251 0x8c zephyr/kernel/libkernel.a(banner.c.obj) + .debug_abbrev 0x0001f2dd 0x458 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_abbrev 0x0001f735 0x235 zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_line 0x00000000 0x9d8ec + *(SORT_BY_ALIGNMENT(.debug_line) SORT_BY_ALIGNMENT(.debug_line.*) SORT_BY_ALIGNMENT(.debug_line_end)) + .debug_line 0x00000000 0xa7 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .debug_line 0x000000a7 0x28a zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .debug_line 0x00000331 0x201d app/libapp.a(main.c.obj) + .debug_line 0x0000234e 0x6a5 app/libapp.a(kiss.c.obj) + .debug_line 0x000029f3 0x2c60 app/libapp.a(lora_modem.c.obj) + .debug_line 0x00005653 0x3f6a zephyr/libzephyr.a(heap.c.obj) + .debug_line 0x000095bd 0x2a51 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_line 0x0000c00e 0x545 zephyr/libzephyr.a(printk.c.obj) + .debug_line 0x0000c553 0x4cc zephyr/libzephyr.a(thread_entry.c.obj) + .debug_line 0x0000ca1f 0x267a zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_line 0x0000f099 0x819 zephyr/libzephyr.a(getopt.c.obj) + .debug_line 0x0000f8b2 0x1237 zephyr/libzephyr.a(configs.c.obj) + .debug_line 0x00010ae9 0x5a7 zephyr/libzephyr.a(soc.c.obj) + .debug_line 0x00011090 0x1197 zephyr/libzephyr.a(loader.c.obj) + .debug_line 0x00012227 0x6e5 zephyr/libzephyr.a(hw_init.c.obj) + .debug_line 0x0001290c 0x28aa zephyr/libzephyr.a(log_core.c.obj) + .debug_line 0x000151b6 0x15a4 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_line 0x0001675a 0x175a zephyr/libzephyr.a(log_msg.c.obj) + .debug_line 0x00017eb4 0x134f zephyr/libzephyr.a(log_output.c.obj) + .debug_line 0x00019203 0x93f zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_line 0x00019b42 0x5ec zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_line 0x0001a12e 0xba4 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_line 0x0001acd2 0x2812 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_line 0x0001d4e4 0x1693 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_line 0x0001eb77 0x8c7 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_line 0x0001f43e 0x3cad zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_line 0x000230eb 0x1bd9 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_line 0x00024cc4 0x126a zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_line 0x00025f2e 0x9fd zephyr/libzephyr.a(flash_ops.c.obj) + .debug_line 0x0002692b 0xfc3 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_line 0x000278ee 0x520 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_line 0x00027e0e 0x51e zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .debug_line 0x0002832c 0x7b3 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_line 0x00028adf 0x271e zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_line 0x0002b1fd 0x5ed zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_line 0x0002b7ea 0x671 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_line 0x0002be5b 0x1560 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_line 0x0002d3bb 0x51e zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_line 0x0002d8d9 0xea8 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_line 0x0002e781 0x643 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_line 0x0002edc4 0xe48 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_line 0x0002fc0c 0xe15 zephyr/libzephyr.a(cache_utils.c.obj) + .debug_line 0x00030a21 0x163b zephyr/libzephyr.a(uart_hal.c.obj) + .debug_line 0x0003205c 0x6b0 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_line 0x0003270c 0xed7 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_line 0x000335e3 0x2671 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_line 0x00035c54 0x26a zephyr/libzephyr.a(console_init.c.obj) + .debug_line 0x00035ebe 0xa10 zephyr/libzephyr.a(soc_init.c.obj) + .debug_line 0x000368ce 0x2390 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_line 0x00038c5e 0xa40 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_line 0x0003969e 0x220 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .debug_line 0x000398be 0xe58 zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_line 0x0003a716 0x16c4 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_line 0x0003bdda 0xa5a zephyr/libzephyr.a(esp_clk.c.obj) + .debug_line 0x0003c834 0x857 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_line 0x0003d08b 0x63f zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_line 0x0003d6ca 0x2e97 zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_line 0x00040561 0x936 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_line 0x00040e97 0x338 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_line 0x000411cf 0x21f3 zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_line 0x000433c2 0x193c zephyr/libzephyr.a(rtc_init.c.obj) + .debug_line 0x00044cfe 0x1270 zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_line 0x00045f6e 0xf39 zephyr/libzephyr.a(rtc_time.c.obj) + .debug_line 0x00046ea7 0xbc8 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_line 0x00047a6f 0x20b zephyr/libzephyr.a(systimer.c.obj) + .debug_line 0x00047c7a 0x93c zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_line 0x000485b6 0xa82 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_line 0x00049038 0xcd0 zephyr/libzephyr.a(rtc_module.c.obj) + .debug_line 0x00049d08 0x4a06 zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_line 0x0004e70e 0xc72 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_line 0x0004f380 0x637 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_line 0x0004f9b7 0x2c88 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_line 0x0005263f 0x32c zephyr/libzephyr.a(ext_mem_layout.c.obj) + .debug_line 0x0005296b 0x76d zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_line 0x000530d8 0x16e zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_line 0x00053246 0x272 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_line 0x000534b8 0x3e4 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .debug_line 0x0005389c 0x2dd zephyr/libzephyr.a(esp_rom_sys.c.obj) + .debug_line 0x00053b79 0xc8c zephyr/libzephyr.a(clk.c.obj) + .debug_line 0x00054805 0x69e zephyr/libzephyr.a(reset_reason.c.obj) + .debug_line 0x00054ea3 0x105b zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_line 0x00055efe 0x36a zephyr/libzephyr.a(esp_timer_init.c.obj) + .debug_line 0x00056268 0xa58 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_line 0x00056cc0 0x1180 zephyr/libzephyr.a(cache_hal.c.obj) + .debug_line 0x00057e40 0x59c zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_line 0x000583dc 0xdb6 zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_line 0x00059192 0x20a zephyr/libzephyr.a(gpio_periph.c.obj) + .debug_line 0x0005939c 0x819 zephyr/libzephyr.a(flash_init.c.obj) + .debug_line 0x00059bb5 0x2479 zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_line 0x0005c02e 0xac4 zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_line 0x0005caf2 0xcd1 zephyr/libzephyr.a(soc_init.c.obj) + .debug_line 0x0005d7c3 0xeec zephyr/libzephyr.a(soc_random.c.obj) + .debug_line 0x0005e6af 0xa2 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_line 0x0005e751 0x2d6 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_line 0x0005ea27 0x273 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_line 0x0005ec9a 0xaf zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .debug_line 0x0005ed49 0x3d7 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_line 0x0005f120 0x227 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .debug_line 0x0005f347 0x35d zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .debug_line 0x0005f6a4 0xdae zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_line 0x00060452 0x6ba zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_line 0x00060b0c 0x7a74 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_line 0x00068580 0x3b8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .debug_line 0x00068938 0xfe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_line 0x00068a36 0x305 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_line 0x00068d3b 0x424 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_line 0x0006915f 0x1ef zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_line 0x0006934e 0x9a1 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_line 0x00069cef 0x2860 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_line 0x0006c54f 0x1c49 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_line 0x0006e198 0x5a9 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_line 0x0006e741 0x2999 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_line 0x000710da 0x1b61 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_line 0x00072c3b 0x967 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_line 0x000735a2 0x2dee zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_line 0x00076390 0x12da zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_line 0x0007766a 0xb95 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_line 0x000781ff 0x275 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_line 0x00078474 0x1ee7 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_line 0x0007a35b 0x1db9 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_line 0x0007c114 0x2b8 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_line 0x0007c3cc 0x1029 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_line 0x0007d3f5 0x1256 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_line 0x0007e64b 0x21ba zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_line 0x00080805 0x4434 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_line 0x00084c39 0x908 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_line 0x00085541 0x36f zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_line 0x000858b0 0x688 zephyr/kernel/libkernel.a(device.c.obj) + .debug_line 0x00085f38 0x1c37 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_line 0x00087b6f 0xecc zephyr/kernel/libkernel.a(init.c.obj) + .debug_line 0x00088a3b 0x384 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_line 0x00088dbf 0x1006 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_line 0x00089dc5 0xf34 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_line 0x0008acf9 0x42b6 zephyr/kernel/libkernel.a(work.c.obj) + .debug_line 0x0008efaf 0x1202 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_line 0x000901b1 0x628c zephyr/kernel/libkernel.a(sched.c.obj) + .debug_line 0x0009643d 0x8a0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_line 0x00096cdd 0x1879 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_line 0x00098556 0x115c zephyr/kernel/libkernel.a(timer.c.obj) + .debug_line 0x000996b2 0x24f2 zephyr/kernel/libkernel.a(poll.c.obj) + .debug_line 0x0009bba4 0xb2a zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_line 0x0009c6ce 0xbb zephyr/kernel/libkernel.a(banner.c.obj) + .debug_line 0x0009c789 0xd63 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_line 0x0009d4ec 0x400 zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_frame 0x00000000 0x884c + *(SORT_BY_ALIGNMENT(.debug_frame)) + .debug_frame 0x00000000 0x28 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .debug_frame 0x00000028 0x88 app/libapp.a(main.c.obj) + .debug_frame 0x000000b0 0x70 app/libapp.a(kiss.c.obj) + .debug_frame 0x00000120 0x100 app/libapp.a(lora_modem.c.obj) + .debug_frame 0x00000220 0x238 zephyr/libzephyr.a(heap.c.obj) + .debug_frame 0x00000458 0x8c zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_frame 0x000004e4 0xa0 zephyr/libzephyr.a(printk.c.obj) + .debug_frame 0x00000584 0x28 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_frame 0x000005ac 0x1d8 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_frame 0x00000784 0x40 zephyr/libzephyr.a(getopt.c.obj) + .debug_frame 0x000007c4 0x28 zephyr/libzephyr.a(configs.c.obj) + .debug_frame 0x000007ec 0x70 zephyr/libzephyr.a(soc.c.obj) + .debug_frame 0x0000085c 0x40 zephyr/libzephyr.a(loader.c.obj) + .debug_frame 0x0000089c 0x28 zephyr/libzephyr.a(hw_init.c.obj) + .debug_frame 0x000008c4 0x430 zephyr/libzephyr.a(log_core.c.obj) + .debug_frame 0x00000cf4 0x1f0 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_frame 0x00000ee4 0xe8 zephyr/libzephyr.a(log_msg.c.obj) + .debug_frame 0x00000fcc 0x118 zephyr/libzephyr.a(log_output.c.obj) + .debug_frame 0x000010e4 0xa0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_frame 0x00001184 0xa0 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_frame 0x00001224 0x70 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_frame 0x00001294 0x1f0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_frame 0x00001484 0xe8 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_frame 0x0000156c 0x88 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_frame 0x000015f4 0x328 zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_frame 0x0000191c 0xa0 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_frame 0x000019bc 0xd0 zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_frame 0x00001a8c 0xd0 zephyr/libzephyr.a(flash_ops.c.obj) + .debug_frame 0x00001b5c 0x130 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_frame 0x00001c8c 0x40 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_frame 0x00001ccc 0x28 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .debug_frame 0x00001cf4 0xa0 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_frame 0x00001d94 0x2f8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_frame 0x0000208c 0x70 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_frame 0x000020fc 0x58 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_frame 0x00002154 0x178 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_frame 0x000022cc 0x40 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_frame 0x0000230c 0xb8 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_frame 0x000023c4 0x88 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_frame 0x0000244c 0x178 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_frame 0x000025c4 0x160 zephyr/libzephyr.a(cache_utils.c.obj) + .debug_frame 0x00002724 0x298 zephyr/libzephyr.a(uart_hal.c.obj) + .debug_frame 0x000029bc 0x88 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_frame 0x00002a44 0xa0 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_frame 0x00002ae4 0x190 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_frame 0x00002c74 0x40 zephyr/libzephyr.a(console_init.c.obj) + .debug_frame 0x00002cb4 0x70 zephyr/libzephyr.a(soc_init.c.obj) + .debug_frame 0x00002d24 0x238 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_frame 0x00002f5c 0xb8 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_frame 0x00003014 0x178 zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_frame 0x0000318c 0x118 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_frame 0x000032a4 0x100 zephyr/libzephyr.a(esp_clk.c.obj) + .debug_frame 0x000033a4 0x100 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_frame 0x000034a4 0x40 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_frame 0x000034e4 0x1f0 zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_frame 0x000036d4 0x88 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_frame 0x0000375c 0x28 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_frame 0x00003784 0x328 zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_frame 0x00003aac 0x70 zephyr/libzephyr.a(rtc_init.c.obj) + .debug_frame 0x00003b1c 0x88 zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_frame 0x00003ba4 0xd0 zephyr/libzephyr.a(rtc_time.c.obj) + .debug_frame 0x00003c74 0x160 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_frame 0x00003dd4 0x40 zephyr/libzephyr.a(systimer.c.obj) + .debug_frame 0x00003e14 0x88 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_frame 0x00003e9c 0x100 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_frame 0x00003f9c 0x88 zephyr/libzephyr.a(rtc_module.c.obj) + .debug_frame 0x00004024 0x5b0 zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_frame 0x000045d4 0x88 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_frame 0x0000465c 0xa0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_frame 0x000046fc 0x1a8 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_frame 0x000048a4 0xa0 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_frame 0x00004944 0x28 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_frame 0x0000496c 0x28 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .debug_frame 0x00004994 0x58 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .debug_frame 0x000049ec 0x88 zephyr/libzephyr.a(clk.c.obj) + .debug_frame 0x00004a74 0x70 zephyr/libzephyr.a(reset_reason.c.obj) + .debug_frame 0x00004ae4 0x100 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_frame 0x00004be4 0x58 zephyr/libzephyr.a(esp_timer_init.c.obj) + .debug_frame 0x00004c3c 0xd0 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_frame 0x00004d0c 0x160 zephyr/libzephyr.a(cache_hal.c.obj) + .debug_frame 0x00004e6c 0xb8 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_frame 0x00004f24 0x100 zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_frame 0x00005024 0x58 zephyr/libzephyr.a(flash_init.c.obj) + .debug_frame 0x0000507c 0x280 zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_frame 0x000052fc 0xa0 zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_frame 0x0000539c 0x100 zephyr/libzephyr.a(soc_init.c.obj) + .debug_frame 0x0000549c 0x40 zephyr/libzephyr.a(soc_random.c.obj) + .debug_frame 0x000054dc 0x28 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_frame 0x00005504 0x40 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_frame 0x00005544 0x58 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_frame 0x0000559c 0x40 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .debug_frame 0x000055dc 0x58 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_frame 0x00005634 0x70 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_frame 0x000056a4 0x40 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_frame 0x000056e4 0x178 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_frame 0x0000585c 0x28 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .debug_frame 0x00005884 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_frame 0x000058ac 0x40 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_frame 0x000058ec 0x70 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_frame 0x0000595c 0x28 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_frame 0x00005984 0xe8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_frame 0x00005a6c 0x1a8 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_frame 0x00005c14 0xd0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_frame 0x00005ce4 0x58 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_frame 0x00005d3c 0x148 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_frame 0x00005e84 0x298 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_frame 0x0000611c 0x1c0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_frame 0x000062dc 0x160 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_frame 0x0000643c 0x130 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_frame 0x0000656c 0x160 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_frame 0x000066cc 0x40 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_frame 0x0000670c 0x460 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_frame 0x00006b6c 0x328 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_frame 0x00006e94 0x28 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_frame 0x00006ebc 0x28 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_frame 0x00006ee4 0x1d8 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_frame 0x000070bc 0x208 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_frame 0x000072c4 0x100 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_frame 0x000073c4 0xa0 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_frame 0x00007464 0x28 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_frame 0x0000748c 0xa0 zephyr/kernel/libkernel.a(device.c.obj) + .debug_frame 0x0000752c 0x70 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_frame 0x0000759c 0x88 zephyr/kernel/libkernel.a(init.c.obj) + .debug_frame 0x00007624 0x40 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_frame 0x00007664 0x70 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_frame 0x000076d4 0x70 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_frame 0x00007744 0x328 zephyr/kernel/libkernel.a(work.c.obj) + .debug_frame 0x00007a6c 0x178 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_frame 0x00007be4 0x478 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_frame 0x0000805c 0x88 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_frame 0x000080e4 0x190 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_frame 0x00008274 0xa0 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_frame 0x00008314 0x1a8 zephyr/kernel/libkernel.a(poll.c.obj) + .debug_frame 0x000084bc 0x100 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_frame 0x000085bc 0x28 zephyr/kernel/libkernel.a(banner.c.obj) + .debug_frame 0x000085e4 0xe8 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_frame 0x000086cc 0x28 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_frame 0x000086f4 0x28 /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/libgcc.a(_divdi3.o) + .debug_frame 0x0000871c 0x28 /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/libgcc.a(_moddi3.o) + .debug_frame 0x00008744 0x28 /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/libgcc.a(_udivdi3.o) + .debug_frame 0x0000876c 0x28 /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/libgcc.a(_umoddi3.o) + .debug_frame 0x00008794 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + .debug_frame 0x000087bc 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + .debug_frame 0x000087e4 0x40 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .debug_frame 0x00008824 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + +.debug_str 0x00000000 0x2b1f2 + *(SORT_BY_ALIGNMENT(.debug_str)) + .debug_str 0x00000000 0x2b1f2 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + 0x263 (size before relaxing) + .debug_str 0x0002b1f2 0x347 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .debug_str 0x0002b1f2 0x1108 app/libapp.a(main.c.obj) + .debug_str 0x0002b1f2 0x303 app/libapp.a(kiss.c.obj) + .debug_str 0x0002b1f2 0x114e app/libapp.a(lora_modem.c.obj) + .debug_str 0x0002b1f2 0xe33 zephyr/libzephyr.a(heap.c.obj) + .debug_str 0x0002b1f2 0xc21 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_str 0x0002b1f2 0x506 zephyr/libzephyr.a(printk.c.obj) + .debug_str 0x0002b1f2 0x561 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_str 0x0002b1f2 0x766 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_str 0x0002b1f2 0x8f2 zephyr/libzephyr.a(getopt.c.obj) + .debug_str 0x0002b1f2 0x1b5 zephyr/libzephyr.a(configs.c.obj) + .debug_str 0x0002b1f2 0x38f zephyr/libzephyr.a(soc.c.obj) + .debug_str 0x0002b1f2 0x1988 zephyr/libzephyr.a(loader.c.obj) + .debug_str 0x0002b1f2 0xf49 zephyr/libzephyr.a(hw_init.c.obj) + .debug_str 0x0002b1f2 0x1bec zephyr/libzephyr.a(log_core.c.obj) + .debug_str 0x0002b1f2 0xee9 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_str 0x0002b1f2 0xbb8 zephyr/libzephyr.a(log_msg.c.obj) + .debug_str 0x0002b1f2 0xc28 zephyr/libzephyr.a(log_output.c.obj) + .debug_str 0x0002b1f2 0xe5a zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_str 0x0002b1f2 0x51d zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_str 0x0002b1f2 0x36e3 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_str 0x0002b1f2 0x3210 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_str 0x0002b1f2 0x2da9 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_str 0x0002b1f2 0x160d zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_str 0x0002b1f2 0x2869 zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_str 0x0002b1f2 0x4813 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_str 0x0002b1f2 0x84c zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_str 0x0002b1f2 0x777 zephyr/libzephyr.a(flash_ops.c.obj) + .debug_str 0x0002b1f2 0x3ae9 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_str 0x0002b1f2 0xc4d zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_str 0x0002b1f2 0xa06 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .debug_str 0x0002b1f2 0xd24 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_str 0x0002b1f2 0x1f0e zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_str 0x0002b1f2 0xcee zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_str 0x0002b1f2 0x1754 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_str 0x0002b1f2 0x1960 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_str 0x0002b1f2 0xc45 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_str 0x0002b1f2 0xd69 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_str 0x0002b1f2 0x773 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_str 0x0002b1f2 0xb4c zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_str 0x0002b1f2 0x1982 zephyr/libzephyr.a(cache_utils.c.obj) + .debug_str 0x0002b1f2 0x1cba zephyr/libzephyr.a(uart_hal.c.obj) + .debug_str 0x0002b1f2 0x128e zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_str 0x0002b1f2 0x11b7 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_str 0x0002b1f2 0x1a3f zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_str 0x0002b1f2 0x2ee zephyr/libzephyr.a(console_init.c.obj) + .debug_str 0x0002b1f2 0x65bb zephyr/libzephyr.a(soc_init.c.obj) + .debug_str 0x0002b1f2 0x29a9 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_str 0x0002b1f2 0x1638 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_str 0x0002b1f2 0x2e5 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .debug_str 0x0002b1f2 0xe7f zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_str 0x0002b1f2 0x3649 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_str 0x0002b1f2 0x1699 zephyr/libzephyr.a(esp_clk.c.obj) + .debug_str 0x0002b1f2 0x7c3 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_str 0x0002b1f2 0x460 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_str 0x0002b1f2 0x6729 zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_str 0x0002b1f2 0x155c zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_str 0x0002b1f2 0x353 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_str 0x0002b1f2 0x310c zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_str 0x0002b1f2 0x3caa zephyr/libzephyr.a(rtc_init.c.obj) + .debug_str 0x0002b1f2 0x385e zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_str 0x0002b1f2 0xdb5 zephyr/libzephyr.a(rtc_time.c.obj) + .debug_str 0x0002b1f2 0x5e01 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_str 0x0002b1f2 0x286 zephyr/libzephyr.a(systimer.c.obj) + .debug_str 0x0002b1f2 0x66a zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_str 0x0002b1f2 0x119b zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_str 0x0002b1f2 0x382c zephyr/libzephyr.a(rtc_module.c.obj) + .debug_str 0x0002b1f2 0x7b45 zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_str 0x0002b1f2 0x6ed zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_str 0x0002b1f2 0x639 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_str 0x0002b1f2 0x1116 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_str 0x0002b1f2 0x3a2 zephyr/libzephyr.a(ext_mem_layout.c.obj) + .debug_str 0x0002b1f2 0x4d8 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_str 0x0002b1f2 0xc8 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_str 0x0002b1f2 0x555 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_str 0x0002b1f2 0x57d zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .debug_str 0x0002b1f2 0x328 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .debug_str 0x0002b1f2 0x19e0 zephyr/libzephyr.a(clk.c.obj) + .debug_str 0x0002b1f2 0x8db zephyr/libzephyr.a(reset_reason.c.obj) + .debug_str 0x0002b1f2 0x5c6e zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_str 0x0002b1f2 0x32d zephyr/libzephyr.a(esp_timer_init.c.obj) + .debug_str 0x0002b1f2 0x2cf1 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_str 0x0002b1f2 0xa6a zephyr/libzephyr.a(cache_hal.c.obj) + .debug_str 0x0002b1f2 0x2b1a zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_str 0x0002b1f2 0x6c0 zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_str 0x0002b1f2 0x275 zephyr/libzephyr.a(gpio_periph.c.obj) + .debug_str 0x0002b1f2 0x35bf zephyr/libzephyr.a(flash_init.c.obj) + .debug_str 0x0002b1f2 0x615b zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_str 0x0002b1f2 0x95a zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_str 0x0002b1f2 0x3b11 zephyr/libzephyr.a(soc_init.c.obj) + .debug_str 0x0002b1f2 0x596c zephyr/libzephyr.a(soc_random.c.obj) + .debug_str 0x0002b1f2 0x255 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_str 0x0002b1f2 0x2d4 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_str 0x0002b1f2 0x293 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_str 0x0002b1f2 0x257 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .debug_str 0x0002b1f2 0x40b zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_str 0x0002b1f2 0x81 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .debug_str 0x0002b1f2 0x83 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .debug_str 0x0002b1f2 0x9c8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_str 0x0002b1f2 0x700 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_str 0x0002b1f2 0x1054 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_str 0x0002b1f2 0x540 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .debug_str 0x0002b1f2 0x253 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_str 0x0002b1f2 0x309 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_str 0x0002b1f2 0x4bc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_str 0x0002b1f2 0x2f9 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_str 0x0002b1f2 0x808 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_str 0x0002b1f2 0xe93 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_str 0x0002b1f2 0x6c3e zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_str 0x0002b1f2 0x6a0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_str 0x0002b1f2 0x290d zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_str 0x0002b1f2 0x2039 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_str 0x0002b1f2 0x9ee zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_str 0x0002b1f2 0x16d6 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_str 0x0002b1f2 0x12ea zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_str 0x0002b1f2 0x53c zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_str 0x0002b1f2 0x259 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_str 0x0002b1f2 0x17f5 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_str 0x0002b1f2 0x1a9d zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_str 0x0002b1f2 0x2e8 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_str 0x0002b1f2 0x17c1 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_str 0x0002b1f2 0x17fd zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_str 0x0002b1f2 0x2d6f zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_str 0x0002b1f2 0x412e zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_str 0x0002b1f2 0x59e zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_str 0x0002b1f2 0x2d8 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_str 0x0002b1f2 0x38d zephyr/kernel/libkernel.a(device.c.obj) + .debug_str 0x0002b1f2 0xcfb zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_str 0x0002b1f2 0xe70 zephyr/kernel/libkernel.a(init.c.obj) + .debug_str 0x0002b1f2 0x32a zephyr/kernel/libkernel.a(idle.c.obj) + .debug_str 0x0002b1f2 0xc96 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_str 0x0002b1f2 0x900 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_str 0x0002b1f2 0x1155 zephyr/kernel/libkernel.a(work.c.obj) + .debug_str 0x0002b1f2 0xd80 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_str 0x0002b1f2 0x1628 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_str 0x0002b1f2 0x943 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_str 0x0002b1f2 0x811 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_str 0x0002b1f2 0x9a5 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_str 0x0002b1f2 0xfe5 zephyr/kernel/libkernel.a(poll.c.obj) + .debug_str 0x0002b1f2 0x8d9 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_str 0x0002b1f2 0x23b zephyr/kernel/libkernel.a(banner.c.obj) + .debug_str 0x0002b1f2 0x7dc zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_str 0x0002b1f2 0x7da zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_loc 0x00000000 0x3e0aa + *(SORT_BY_ALIGNMENT(.debug_loc)) + .debug_loc 0x00000000 0x114f app/libapp.a(main.c.obj) + .debug_loc 0x0000114f 0x246 app/libapp.a(kiss.c.obj) + .debug_loc 0x00001395 0xf65 app/libapp.a(lora_modem.c.obj) + .debug_loc 0x000022fa 0x2923 zephyr/libzephyr.a(heap.c.obj) + .debug_loc 0x00004c1d 0x1f85 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_loc 0x00006ba2 0xf8 zephyr/libzephyr.a(printk.c.obj) + .debug_loc 0x00006c9a 0x15 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_loc 0x00006caf 0xaee zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_loc 0x0000779d 0xd3 zephyr/libzephyr.a(getopt.c.obj) + .debug_loc 0x00007870 0x2b zephyr/libzephyr.a(soc.c.obj) + .debug_loc 0x0000789b 0x393 zephyr/libzephyr.a(loader.c.obj) + .debug_loc 0x00007c2e 0x23 zephyr/libzephyr.a(hw_init.c.obj) + .debug_loc 0x00007c51 0xf5b zephyr/libzephyr.a(log_core.c.obj) + .debug_loc 0x00008bac 0xba0 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_loc 0x0000974c 0xc6b zephyr/libzephyr.a(log_msg.c.obj) + .debug_loc 0x0000a3b7 0xfc9 zephyr/libzephyr.a(log_output.c.obj) + .debug_loc 0x0000b380 0x332 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_loc 0x0000b6b2 0x158 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_loc 0x0000b80a 0x36c zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_loc 0x0000bb76 0x15a4 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_loc 0x0000d11a 0xbd3 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_loc 0x0000dced 0x15e zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_loc 0x0000de4b 0x1695 zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_loc 0x0000f4e0 0x89c zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_loc 0x0000fd7c 0xae8 zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_loc 0x00010864 0x1ad zephyr/libzephyr.a(flash_ops.c.obj) + .debug_loc 0x00010a11 0x5a2 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_loc 0x00010fb3 0xd5 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_loc 0x00011088 0x2a1 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_loc 0x00011329 0x1079 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_loc 0x000123a2 0x140 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_loc 0x000124e2 0x14f zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_loc 0x00012631 0x79c zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_loc 0x00012dcd 0xd5 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_loc 0x00012ea2 0x524 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_loc 0x000133c6 0xd7 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_loc 0x0001349d 0x48f zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_loc 0x0001392c 0x2ea zephyr/libzephyr.a(cache_utils.c.obj) + .debug_loc 0x00013c16 0xc25 zephyr/libzephyr.a(uart_hal.c.obj) + .debug_loc 0x0001483b 0x24d zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_loc 0x00014a88 0x561 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_loc 0x00014fe9 0x15bd zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_loc 0x000165a6 0x119 zephyr/libzephyr.a(soc_init.c.obj) + .debug_loc 0x000166bf 0xca5 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_loc 0x00017364 0x207 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_loc 0x0001756b 0xa52 zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_loc 0x00017fbd 0xa02 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_loc 0x000189bf 0x187 zephyr/libzephyr.a(esp_clk.c.obj) + .debug_loc 0x00018b46 0x16 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_loc 0x00018b5c 0x305 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_loc 0x00018e61 0xc48 zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_loc 0x00019aa9 0x202 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_loc 0x00019cab 0x2b zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_loc 0x00019cd6 0x80a zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_loc 0x0001a4e0 0x787 zephyr/libzephyr.a(rtc_init.c.obj) + .debug_loc 0x0001ac67 0x99 zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_loc 0x0001ad00 0x50c zephyr/libzephyr.a(rtc_time.c.obj) + .debug_loc 0x0001b20c 0x151 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_loc 0x0001b35d 0x58 zephyr/libzephyr.a(systimer.c.obj) + .debug_loc 0x0001b3b5 0x1f3 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_loc 0x0001b5a8 0x3a8 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_loc 0x0001b950 0x27b zephyr/libzephyr.a(rtc_module.c.obj) + .debug_loc 0x0001bbcb 0x131f zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_loc 0x0001ceea 0x540 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_loc 0x0001d42a 0xae zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_loc 0x0001d4d8 0x2385 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_loc 0x0001f85d 0x3a1 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_loc 0x0001fbfe 0x15 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_loc 0x0001fc13 0x385 zephyr/libzephyr.a(clk.c.obj) + .debug_loc 0x0001ff98 0x116 zephyr/libzephyr.a(reset_reason.c.obj) + .debug_loc 0x000200ae 0x374 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_loc 0x00020422 0x227 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_loc 0x00020649 0xca1 zephyr/libzephyr.a(cache_hal.c.obj) + .debug_loc 0x000212ea 0x38 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_loc 0x00021322 0xafe zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_loc 0x00021e20 0x2f zephyr/libzephyr.a(flash_init.c.obj) + .debug_loc 0x00021e4f 0x120d zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_loc 0x0002305c 0x1df zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_loc 0x0002323b 0x253 zephyr/libzephyr.a(soc_init.c.obj) + .debug_loc 0x0002348e 0x3e3 zephyr/libzephyr.a(soc_random.c.obj) + .debug_loc 0x00023871 0x15 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_loc 0x00023886 0x15 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_loc 0x0002389b 0x77 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_loc 0x00023912 0x255 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_loc 0x00023b67 0x126 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_loc 0x00023c8d 0x3940 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_loc 0x000275cd 0x6b zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_loc 0x00027638 0xa4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_loc 0x000276dc 0x2e4 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_loc 0x000279c0 0x1362 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_loc 0x00028d22 0x923 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_loc 0x00029645 0x56 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_loc 0x0002969b 0x140b zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_loc 0x0002aaa6 0xb08 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_loc 0x0002b5ae 0xa4 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_loc 0x0002b652 0x16cc zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_loc 0x0002cd1e 0x97b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_loc 0x0002d699 0x390 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_loc 0x0002da29 0x24 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_loc 0x0002da4d 0x571 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_loc 0x0002dfbe 0xbce zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_loc 0x0002eb8c 0x4e zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_loc 0x0002ebda 0x721 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_loc 0x0002f2fb 0x544 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_loc 0x0002f83f 0xf96 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_loc 0x000307d5 0x24af zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_loc 0x00032c84 0x2ba zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_loc 0x00032f3e 0x3f zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_loc 0x00032f7d 0x183 zephyr/kernel/libkernel.a(device.c.obj) + .debug_loc 0x00033100 0x655 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_loc 0x00033755 0x394 zephyr/kernel/libkernel.a(init.c.obj) + .debug_loc 0x00033ae9 0x3f zephyr/kernel/libkernel.a(idle.c.obj) + .debug_loc 0x00033b28 0x65e zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_loc 0x00034186 0x662 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_loc 0x000347e8 0x2a67 zephyr/kernel/libkernel.a(work.c.obj) + .debug_loc 0x0003724f 0x8d4 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_loc 0x00037b23 0x34d1 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_loc 0x0003aff4 0x1d5 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_loc 0x0003b1c9 0xbec zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_loc 0x0003bdb5 0x591 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_loc 0x0003c346 0x1217 zephyr/kernel/libkernel.a(poll.c.obj) + .debug_loc 0x0003d55d 0x654 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_loc 0x0003dbb1 0x4f9 zephyr/kernel/libkernel.a(kheap.c.obj) + +.debug_macinfo + *(SORT_BY_ALIGNMENT(.debug_macinfo)) + +.debug_weaknames + *(SORT_BY_ALIGNMENT(.debug_weaknames)) + +.debug_funcnames + *(SORT_BY_ALIGNMENT(.debug_funcnames)) + +.debug_typenames + *(SORT_BY_ALIGNMENT(.debug_typenames)) + +.debug_varnames + *(SORT_BY_ALIGNMENT(.debug_varnames)) + +.debug_pubtypes + *(SORT_BY_ALIGNMENT(.debug_pubtypes)) + +.debug_ranges 0x00000000 0xafa0 + *(SORT_BY_ALIGNMENT(.debug_ranges)) + .debug_ranges 0x00000000 0x68 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .debug_ranges 0x00000068 0x10 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .debug_ranges 0x00000078 0x188 app/libapp.a(main.c.obj) + .debug_ranges 0x00000200 0x40 app/libapp.a(kiss.c.obj) + .debug_ranges 0x00000240 0x5b0 app/libapp.a(lora_modem.c.obj) + .debug_ranges 0x000007f0 0x4e0 zephyr/libzephyr.a(heap.c.obj) + .debug_ranges 0x00000cd0 0x3e8 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_ranges 0x000010b8 0x50 zephyr/libzephyr.a(printk.c.obj) + .debug_ranges 0x00001108 0x10 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_ranges 0x00001118 0x1b8 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_ranges 0x000012d0 0x18 zephyr/libzephyr.a(getopt.c.obj) + .debug_ranges 0x000012e8 0x10 zephyr/libzephyr.a(configs.c.obj) + .debug_ranges 0x000012f8 0x28 zephyr/libzephyr.a(soc.c.obj) + .debug_ranges 0x00001320 0x30 zephyr/libzephyr.a(loader.c.obj) + .debug_ranges 0x00001350 0x10 zephyr/libzephyr.a(hw_init.c.obj) + .debug_ranges 0x00001360 0x410 zephyr/libzephyr.a(log_core.c.obj) + .debug_ranges 0x00001770 0x480 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_ranges 0x00001bf0 0x270 zephyr/libzephyr.a(log_msg.c.obj) + .debug_ranges 0x00001e60 0x160 zephyr/libzephyr.a(log_output.c.obj) + .debug_ranges 0x00001fc0 0x98 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_ranges 0x00002058 0x70 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_ranges 0x000020c8 0x78 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_ranges 0x00002140 0x4e8 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_ranges 0x00002628 0x1e0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_ranges 0x00002808 0x58 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_ranges 0x00002860 0x2d0 zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_ranges 0x00002b30 0x180 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_ranges 0x00002cb0 0x108 zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_ranges 0x00002db8 0x60 zephyr/libzephyr.a(flash_ops.c.obj) + .debug_ranges 0x00002e18 0x80 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_ranges 0x00002e98 0x18 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_ranges 0x00002eb0 0x10 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .debug_ranges 0x00002ec0 0x50 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_ranges 0x00002f10 0x160 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_ranges 0x00003070 0x28 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_ranges 0x00003098 0x20 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_ranges 0x000030b8 0xc8 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_ranges 0x00003180 0x18 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_ranges 0x00003198 0x88 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_ranges 0x00003220 0x30 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_ranges 0x00003250 0x80 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_ranges 0x000032d0 0x90 zephyr/libzephyr.a(cache_utils.c.obj) + .debug_ranges 0x00003360 0x1b8 zephyr/libzephyr.a(uart_hal.c.obj) + .debug_ranges 0x00003518 0x60 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_ranges 0x00003578 0x68 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_ranges 0x000035e0 0x270 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_ranges 0x00003850 0x18 zephyr/libzephyr.a(console_init.c.obj) + .debug_ranges 0x00003868 0x60 zephyr/libzephyr.a(soc_init.c.obj) + .debug_ranges 0x000038c8 0x380 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_ranges 0x00003c48 0xa0 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_ranges 0x00003ce8 0x110 zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_ranges 0x00003df8 0x180 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_ranges 0x00003f78 0x88 zephyr/libzephyr.a(esp_clk.c.obj) + .debug_ranges 0x00004000 0x58 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_ranges 0x00004058 0x30 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_ranges 0x00004088 0x2c8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_ranges 0x00004350 0x30 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_ranges 0x00004380 0x10 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_ranges 0x00004390 0x220 zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_ranges 0x000045b0 0x120 zephyr/libzephyr.a(rtc_init.c.obj) + .debug_ranges 0x000046d0 0x78 zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_ranges 0x00004748 0xb0 zephyr/libzephyr.a(rtc_time.c.obj) + .debug_ranges 0x000047f8 0xf8 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_ranges 0x000048f0 0x18 zephyr/libzephyr.a(systimer.c.obj) + .debug_ranges 0x00004908 0x50 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_ranges 0x00004958 0xd0 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_ranges 0x00004a28 0xd8 zephyr/libzephyr.a(rtc_module.c.obj) + .debug_ranges 0x00004b00 0x3e0 zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_ranges 0x00004ee0 0x78 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_ranges 0x00004f58 0x50 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_ranges 0x00004fa8 0x2f8 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_ranges 0x000052a0 0x68 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_ranges 0x00005308 0x10 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_ranges 0x00005318 0x10 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .debug_ranges 0x00005328 0x20 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .debug_ranges 0x00005348 0x60 zephyr/libzephyr.a(clk.c.obj) + .debug_ranges 0x000053a8 0x40 zephyr/libzephyr.a(reset_reason.c.obj) + .debug_ranges 0x000053e8 0x170 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_ranges 0x00005558 0x20 zephyr/libzephyr.a(esp_timer_init.c.obj) + .debug_ranges 0x00005578 0x160 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_ranges 0x000056d8 0x2a8 zephyr/libzephyr.a(cache_hal.c.obj) + .debug_ranges 0x00005980 0x90 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_ranges 0x00005a10 0x1f0 zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_ranges 0x00005c00 0x38 zephyr/libzephyr.a(flash_init.c.obj) + .debug_ranges 0x00005c38 0x2b0 zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_ranges 0x00005ee8 0x38 zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_ranges 0x00005f20 0x88 zephyr/libzephyr.a(soc_init.c.obj) + .debug_ranges 0x00005fa8 0x238 zephyr/libzephyr.a(soc_random.c.obj) + .debug_ranges 0x000061e0 0x10 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_ranges 0x000061f0 0x18 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_ranges 0x00006208 0x20 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_ranges 0x00006228 0x18 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .debug_ranges 0x00006240 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_ranges 0x00006260 0xf8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_ranges 0x00006358 0x18 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_ranges 0x00006370 0x1250 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_ranges 0x000075c0 0x10 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .debug_ranges 0x000075d0 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_ranges 0x000075e0 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_ranges 0x000075f8 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_ranges 0x00007620 0x10 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_ranges 0x00007630 0x68 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_ranges 0x00007698 0x1d0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_ranges 0x00007868 0x1b8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_ranges 0x00007a20 0x38 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_ranges 0x00007a58 0x2c8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_ranges 0x00007d20 0x1e0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_ranges 0x00007f00 0xb0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_ranges 0x00007fb0 0x498 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_ranges 0x00008448 0x108 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_ranges 0x00008550 0x78 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_ranges 0x000085c8 0x30 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_ranges 0x000085f8 0x1d8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_ranges 0x000087d0 0x140 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_ranges 0x00008910 0x10 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_ranges 0x00008920 0xd8 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_ranges 0x000089f8 0x178 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_ranges 0x00008b70 0x2d8 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_ranges 0x00008e48 0x480 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_ranges 0x000092c8 0x50 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_ranges 0x00009318 0x30 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_ranges 0x00009348 0x70 zephyr/kernel/libkernel.a(device.c.obj) + .debug_ranges 0x000093b8 0x370 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_ranges 0x00009728 0x78 zephyr/kernel/libkernel.a(init.c.obj) + .debug_ranges 0x000097a0 0x18 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_ranges 0x000097b8 0xf0 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_ranges 0x000098a8 0x190 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_ranges 0x00009a38 0x458 zephyr/kernel/libkernel.a(work.c.obj) + .debug_ranges 0x00009e90 0x180 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_ranges 0x0000a010 0x938 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_ranges 0x0000a948 0x30 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_ranges 0x0000a978 0x1f0 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_ranges 0x0000ab68 0xf8 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_ranges 0x0000ac60 0x1c8 zephyr/kernel/libkernel.a(poll.c.obj) + .debug_ranges 0x0000ae28 0x58 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_ranges 0x0000ae80 0x10 zephyr/kernel/libkernel.a(banner.c.obj) + .debug_ranges 0x0000ae90 0x100 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_ranges 0x0000af90 0x10 zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_addr + *(SORT_BY_ALIGNMENT(.debug_addr)) + +.debug_line_str + *(SORT_BY_ALIGNMENT(.debug_line_str)) + +.debug_loclists + *(SORT_BY_ALIGNMENT(.debug_loclists)) + +.debug_macro + *(SORT_BY_ALIGNMENT(.debug_macro)) + +.debug_names + *(SORT_BY_ALIGNMENT(.debug_names)) + +.debug_rnglists + *(SORT_BY_ALIGNMENT(.debug_rnglists)) + +.debug_str_offsets + *(SORT_BY_ALIGNMENT(.debug_str_offsets)) + +.debug_sup + *(SORT_BY_ALIGNMENT(.debug_sup)) + +.xtensa.info 0x00000000 0x38 + *(SORT_BY_ALIGNMENT(.xtensa.info)) + .xtensa.info 0x00000000 0x38 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj + .xtensa.info 0x00000038 0x0 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj + .xtensa.info 0x00000038 0x0 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .xtensa.info 0x00000038 0x0 app/libapp.a(main.c.obj) + .xtensa.info 0x00000038 0x0 app/libapp.a(kiss.c.obj) + .xtensa.info 0x00000038 0x0 app/libapp.a(lora_modem.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(validate_libc.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(heap.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(clock.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(printk.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(sem.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(assert.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(dec.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(hex.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rb.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(set.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(bitmask.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(getopt.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(getopt_common.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(configs.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(soc.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(loader.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(hw_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(log_core.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(log_mgmt.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(log_cache.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(log_msg.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(log_output.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(flash_encrypt.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(flash_mmap.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(flash_ops.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(cache_utils.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(uart_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(lldesc.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(mpu_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(console_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_io.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(systimer_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(cpu.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_clk.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(hw_random.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(mac_addr.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(io_mux.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_sleep.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_time.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(systimer.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_module.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(sleep_modes.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(ext_mem_layout.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_print.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_err.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(clk.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(reset_reason.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(system_internal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_timer.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_timer_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(mmu_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(gpio_periph.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_restart.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(flash_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(soc_flash_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(soc_random.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(errno.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(banner.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_ashldi3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_ashrdi3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_lshrdi3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_bswapsi2.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_bswapdi2.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_divsf3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_addsubdf3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_muldf3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_divdf3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_fixdfdi.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_floatsidf.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_floatdidf.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_truncdfsf2.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_extendsfdf2.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_popcountsi2.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_divdi3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_moddi3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_udivdi3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_umoddi3.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memcpy.S.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memset.S.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + +.xt.insn + *(SORT_BY_ALIGNMENT(.xt.insn)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.x.*)) + +.xt.prop 0x00000000 0x10a7c + *(SORT_BY_ALIGNMENT(.xt.prop)) + .xt.prop 0x00000000 0x24 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .xt.prop 0x00000024 0x330 app/libapp.a(main.c.obj) + .xt.prop 0x00000354 0x18c app/libapp.a(kiss.c.obj) + 0x198 (size before relaxing) + .xt.prop 0x000004e0 0x2f4 app/libapp.a(lora_modem.c.obj) + 0x30c (size before relaxing) + .xt.prop 0x000007d4 0x408 zephyr/libzephyr.a(heap.c.obj) + 0x750 (size before relaxing) + .xt.prop 0x00000bdc 0x684 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x6c0 (size before relaxing) + .xt.prop 0x00001260 0x0 zephyr/libzephyr.a(clock.c.obj) + 0x324 (size before relaxing) + .xt.prop 0x00001260 0x60 zephyr/libzephyr.a(printk.c.obj) + 0x138 (size before relaxing) + .xt.prop 0x000012c0 0x0 zephyr/libzephyr.a(sem.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x000012c0 0x24 zephyr/libzephyr.a(thread_entry.c.obj) + .xt.prop 0x000012e4 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + 0x900 (size before relaxing) + .xt.prop 0x000012e4 0x0 zephyr/libzephyr.a(assert.c.obj) + 0x54 (size before relaxing) + .xt.prop 0x000012e4 0x420 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x654 (size before relaxing) + .xt.prop 0x00001704 0x0 zephyr/libzephyr.a(dec.c.obj) + 0x78 (size before relaxing) + .xt.prop 0x00001704 0x0 zephyr/libzephyr.a(hex.c.obj) + 0x18c (size before relaxing) + .xt.prop 0x00001704 0x0 zephyr/libzephyr.a(rb.c.obj) + 0x5b8 (size before relaxing) + .xt.prop 0x00001704 0x0 zephyr/libzephyr.a(set.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x00001704 0x0 zephyr/libzephyr.a(timeutil.c.obj) + 0x3f0 (size before relaxing) + .xt.prop 0x00001704 0x0 zephyr/libzephyr.a(bitarray.c.obj) + 0x6d8 (size before relaxing) + .xt.prop 0x00001704 0x0 zephyr/libzephyr.a(bitmask.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x00001704 0xc zephyr/libzephyr.a(getopt.c.obj) + 0x180 (size before relaxing) + .xt.prop 0x00001710 0x0 zephyr/libzephyr.a(getopt_common.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x00001710 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + 0x24c (size before relaxing) + .xt.prop 0x00001710 0x24 zephyr/libzephyr.a(configs.c.obj) + .xt.prop 0x00001734 0x60 zephyr/libzephyr.a(soc.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x00001794 0x1e0 zephyr/libzephyr.a(loader.c.obj) + 0x1ec (size before relaxing) + .xt.prop 0x00001974 0x60 zephyr/libzephyr.a(hw_init.c.obj) + .xt.prop 0x000019d4 0x7c8 zephyr/libzephyr.a(log_core.c.obj) + 0xbb8 (size before relaxing) + .xt.prop 0x0000219c 0x78 zephyr/libzephyr.a(log_mgmt.c.obj) + 0x4e0 (size before relaxing) + .xt.prop 0x00002214 0x0 zephyr/libzephyr.a(log_cache.c.obj) + 0x198 (size before relaxing) + .xt.prop 0x00002214 0x1d4 zephyr/libzephyr.a(log_msg.c.obj) + 0x240 (size before relaxing) + .xt.prop 0x000023e8 0x360 zephyr/libzephyr.a(log_output.c.obj) + 0x3c0 (size before relaxing) + .xt.prop 0x00002748 0x168 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x18c (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + 0xb4 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_efuse_api.c.obj) + 0x5c4 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + 0x180 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + 0x5c4 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_efuse_table.c.obj) + 0x1530 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + 0xd8 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + 0x2b8 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + 0x7d4 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(flash_encrypt.c.obj) + 0x210 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x000028b0 0x120 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x12c (size before relaxing) + .xt.prop 0x000029d0 0x168 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x174 (size before relaxing) + .xt.prop 0x00002b38 0x498 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x57c (size before relaxing) + .xt.prop 0x00002fd0 0x2ac zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x2d0 (size before relaxing) + .xt.prop 0x0000327c 0x150 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0x180 (size before relaxing) + .xt.prop 0x000033cc 0x3d8 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0xf9c (size before relaxing) + .xt.prop 0x000037a4 0xf0 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x36c (size before relaxing) + .xt.prop 0x00003894 0x6c zephyr/libzephyr.a(flash_mmap.c.obj) + 0x348 (size before relaxing) + .xt.prop 0x00003900 0xd8 zephyr/libzephyr.a(flash_ops.c.obj) + 0x264 (size before relaxing) + .xt.prop 0x000039d8 0x2c4 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x348 (size before relaxing) + .xt.prop 0x00003c9c 0x60 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .xt.prop 0x00003cfc 0x3c zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .xt.prop 0x00003d38 0x138 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x144 (size before relaxing) + .xt.prop 0x00003e70 0x930 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0xa20 (size before relaxing) + .xt.prop 0x000047a0 0xc0 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x00004860 0xa8 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .xt.prop 0x00004908 0x3c0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x420 (size before relaxing) + .xt.prop 0x00004cc8 0x60 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .xt.prop 0x00004d28 0x240 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x270 (size before relaxing) + .xt.prop 0x00004f68 0x0 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x00004f68 0x78 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x00004fe0 0x180 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x378 (size before relaxing) + .xt.prop 0x00005160 0x0 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + 0x21c (size before relaxing) + .xt.prop 0x00005160 0xe4 zephyr/libzephyr.a(cache_utils.c.obj) + 0x2c4 (size before relaxing) + .xt.prop 0x00005244 0x360 zephyr/libzephyr.a(uart_hal.c.obj) + 0x558 (size before relaxing) + .xt.prop 0x000055a4 0xe4 zephyr/libzephyr.a(uart_hal_iram.c.obj) + 0x120 (size before relaxing) + .xt.prop 0x00005688 0x6c zephyr/libzephyr.a(spi_hal.c.obj) + 0x198 (size before relaxing) + .xt.prop 0x000056f4 0x2f4 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x690 (size before relaxing) + .xt.prop 0x000059e8 0x0 zephyr/libzephyr.a(lldesc.c.obj) + 0xb4 (size before relaxing) + .xt.prop 0x000059e8 0x0 zephyr/libzephyr.a(gdma_hal_top.c.obj) + 0x270 (size before relaxing) + .xt.prop 0x000059e8 0x0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + 0x480 (size before relaxing) + .xt.prop 0x000059e8 0x0 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x000059e8 0x0 zephyr/libzephyr.a(mpu_hal.c.obj) + 0x78 (size before relaxing) + .xt.prop 0x000059e8 0x0 zephyr/libzephyr.a(flash_qio_mode.c.obj) + 0x270 (size before relaxing) + .xt.prop 0x000059e8 0x0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + 0x1ec (size before relaxing) + .xt.prop 0x000059e8 0x30 zephyr/libzephyr.a(console_init.c.obj) + 0x54 (size before relaxing) + .xt.prop 0x00005a18 0x108 zephyr/libzephyr.a(soc_init.c.obj) + .xt.prop 0x00005b20 0x174 zephyr/libzephyr.a(rtc_io.c.obj) + 0x6fc (size before relaxing) + .xt.prop 0x00005c94 0x0 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + 0xc (size before relaxing) + .xt.prop 0x00005c94 0x0 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + 0x168 (size before relaxing) + .xt.prop 0x00005c94 0x15c zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x240 (size before relaxing) + .xt.prop 0x00005df0 0xc zephyr/libzephyr.a(rtc_io_periph.c.obj) + .xt.prop 0x00005dfc 0x0 zephyr/libzephyr.a(rtc_io_hal.c.obj) + 0x2f4 (size before relaxing) + .xt.prop 0x00005dfc 0x12c zephyr/libzephyr.a(systimer_hal.c.obj) + 0x2ac (size before relaxing) + .xt.prop 0x00005f28 0xfc zephyr/libzephyr.a(wdt_hal_iram.c.obj) + 0x3a8 (size before relaxing) + .xt.prop 0x00006024 0x0 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x00006024 0x0 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + 0x2dc (size before relaxing) + .xt.prop 0x00006024 0x0 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x00006024 0x0 zephyr/libzephyr.a(cpu.c.obj) + 0x1f8 (size before relaxing) + .xt.prop 0x00006024 0x30 zephyr/libzephyr.a(esp_clk.c.obj) + 0x228 (size before relaxing) + .xt.prop 0x00006054 0x0 zephyr/libzephyr.a(hw_random.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x00006054 0x0 zephyr/libzephyr.a(mac_addr.c.obj) + 0x4b0 (size before relaxing) + .xt.prop 0x00006054 0x120 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x1bc (size before relaxing) + .xt.prop 0x00006174 0x78 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .xt.prop 0x000061ec 0x81c zephyr/libzephyr.a(periph_ctrl.c.obj) + 0xac8 (size before relaxing) + .xt.prop 0x00006a08 0x0 zephyr/libzephyr.a(cpu_region_protect.c.obj) + 0x48 (size before relaxing) + .xt.prop 0x00006a08 0x198 zephyr/libzephyr.a(esp_clk_tree.c.obj) + 0x228 (size before relaxing) + .xt.prop 0x00006ba0 0x54 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .xt.prop 0x00006bf4 0x0 zephyr/libzephyr.a(io_mux.c.obj) + 0xfc (size before relaxing) + .xt.prop 0x00006bf4 0x6cc zephyr/libzephyr.a(rtc_clk.c.obj) + 0xa20 (size before relaxing) + .xt.prop 0x000072c0 0x0 zephyr/libzephyr.a(rtc_clk_init.c.obj) + 0x54 (size before relaxing) + .xt.prop 0x000072c0 0x168 zephyr/libzephyr.a(rtc_init.c.obj) + 0x1e0 (size before relaxing) + .xt.prop 0x00007428 0x60 zephyr/libzephyr.a(rtc_sleep.c.obj) + 0x294 (size before relaxing) + .xt.prop 0x00007488 0x27c zephyr/libzephyr.a(rtc_time.c.obj) + 0x33c (size before relaxing) + .xt.prop 0x00007704 0x30 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + 0x2a0 (size before relaxing) + .xt.prop 0x00007734 0x48 zephyr/libzephyr.a(systimer.c.obj) + .xt.prop 0x0000777c 0x180 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x1a4 (size before relaxing) + .xt.prop 0x000078fc 0x198 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x258 (size before relaxing) + .xt.prop 0x00007a94 0x90 zephyr/libzephyr.a(rtc_module.c.obj) + 0x1ec (size before relaxing) + .xt.prop 0x00007b24 0x0 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + 0xe4 (size before relaxing) + .xt.prop 0x00007b24 0xe4 zephyr/libzephyr.a(sleep_modes.c.obj) + 0x12b4 (size before relaxing) + .xt.prop 0x00007c08 0x18c zephyr/libzephyr.a(esp_cache_msync.c.obj) + 0x258 (size before relaxing) + .xt.prop 0x00007d94 0x90 zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x12c (size before relaxing) + .xt.prop 0x00007e24 0x15c zephyr/libzephyr.a(esp_mmu_map.c.obj) + 0x918 (size before relaxing) + .xt.prop 0x00007f80 0xc zephyr/libzephyr.a(ext_mem_layout.c.obj) + .xt.prop 0x00007f8c 0x174 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x1b0 (size before relaxing) + .xt.prop 0x00008100 0x54 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .xt.prop 0x00008154 0x0 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + 0x48 (size before relaxing) + .xt.prop 0x00008154 0x0 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + 0x3c (size before relaxing) + .xt.prop 0x00008154 0x0 zephyr/libzephyr.a(esp_rom_print.c.obj) + 0x630 (size before relaxing) + .xt.prop 0x00008154 0x30 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .xt.prop 0x00008184 0x54 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .xt.prop 0x000081d8 0x78 zephyr/libzephyr.a(esp_rom_sys.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x00008250 0x0 zephyr/libzephyr.a(esp_err.c.obj) + 0x54 (size before relaxing) + .xt.prop 0x00008250 0x90 zephyr/libzephyr.a(clk.c.obj) + 0x1a4 (size before relaxing) + .xt.prop 0x000082e0 0x150 zephyr/libzephyr.a(reset_reason.c.obj) + 0x1bc (size before relaxing) + .xt.prop 0x00008430 0x0 zephyr/libzephyr.a(system_internal.c.obj) + 0xc0 (size before relaxing) + .xt.prop 0x00008430 0x0 zephyr/libzephyr.a(esp_timer.c.obj) + 0x9c0 (size before relaxing) + .xt.prop 0x00008430 0x0 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x00008430 0x48 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + 0x270 (size before relaxing) + .xt.prop 0x00008478 0x24 zephyr/libzephyr.a(esp_timer_init.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x0000849c 0x0 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + 0x18c (size before relaxing) + .xt.prop 0x0000849c 0x84 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x210 (size before relaxing) + .xt.prop 0x00008520 0x2b8 zephyr/libzephyr.a(cache_hal.c.obj) + 0x3c0 (size before relaxing) + .xt.prop 0x000087d8 0x24 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x168 (size before relaxing) + .xt.prop 0x000087fc 0x138 zephyr/libzephyr.a(mmu_hal.c.obj) + 0x27c (size before relaxing) + .xt.prop 0x00008934 0xc zephyr/libzephyr.a(gpio_periph.c.obj) + 0x18 (size before relaxing) + .xt.prop 0x00008940 0x0 zephyr/libzephyr.a(esp_restart.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x00008940 0x60 zephyr/libzephyr.a(flash_init.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x000089a0 0x354 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x810 (size before relaxing) + .xt.prop 0x00008cf4 0x0 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + 0x588 (size before relaxing) + .xt.prop 0x00008cf4 0x234 zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x24c (size before relaxing) + .xt.prop 0x00008f28 0x1ec zephyr/libzephyr.a(soc_init.c.obj) + 0x228 (size before relaxing) + .xt.prop 0x00009114 0x60 zephyr/libzephyr.a(soc_random.c.obj) + .xt.prop 0x00009174 0x24 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .xt.prop 0x00009198 0x48 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + 0x60 (size before relaxing) + .xt.prop 0x000091e0 0x54 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x00009234 0x24 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + 0x48 (size before relaxing) + .xt.prop 0x00009258 0x6c zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x000092c4 0xa8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + 0xe4 (size before relaxing) + .xt.prop 0x0000936c 0x318 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .xt.prop 0x00009684 0x30 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x000096b4 0x54 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .xt.prop 0x00009708 0x318 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x3a8 (size before relaxing) + .xt.prop 0x00009a20 0x18 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + 0x24 (size before relaxing) + .xt.prop 0x00009a38 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + 0x24 (size before relaxing) + .xt.prop 0x00009a50 0x54 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .xt.prop 0x00009aa4 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + 0x24 (size before relaxing) + .xt.prop 0x00009aa4 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x00009aa4 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x00009aa4 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + 0x1ec (size before relaxing) + .xt.prop 0x00009aa4 0x9c zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0xfc (size before relaxing) + .xt.prop 0x00009b40 0x24 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .xt.prop 0x00009b64 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + 0x3c (size before relaxing) + .xt.prop 0x00009b64 0x48 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + 0x234 (size before relaxing) + .xt.prop 0x00009bac 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + 0x504 (size before relaxing) + .xt.prop 0x00009bac 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x00009bac 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x00009bac 0x618 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x8c4 (size before relaxing) + .xt.prop 0x0000a1c4 0x3d8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x3fc (size before relaxing) + .xt.prop 0x0000a59c 0x78 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x0000a614 0x66c zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .xt.prop 0x0000ac80 0x57c zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x63c (size before relaxing) + .xt.prop 0x0000b1fc 0x27c zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x354 (size before relaxing) + .xt.prop 0x0000b478 0x408 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x45c (size before relaxing) + .xt.prop 0x0000b880 0x2a0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x2f4 (size before relaxing) + .xt.prop 0x0000bb20 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + 0x294 (size before relaxing) + .xt.prop 0x0000bb20 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + 0x2d0 (size before relaxing) + .xt.prop 0x0000bb20 0x360 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x48c (size before relaxing) + .xt.prop 0x0000be80 0x24 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + 0x60 (size before relaxing) + .xt.prop 0x0000bea4 0x7bc zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xae0 (size before relaxing) + .xt.prop 0x0000c660 0x8ac zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x99c (size before relaxing) + .xt.prop 0x0000cf0c 0x54 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .xt.prop 0x0000cf60 0x294 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .xt.prop 0x0000d1f4 0x3cc zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x45c (size before relaxing) + .xt.prop 0x0000d5c0 0x690 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x6cc (size before relaxing) + .xt.prop 0x0000dc50 0x78c zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x7b0 (size before relaxing) + .xt.prop 0x0000e3dc 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + 0x48 (size before relaxing) + .xt.prop 0x0000e3dc 0x108 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x144 (size before relaxing) + .xt.prop 0x0000e4e4 0x30 zephyr/kernel/libkernel.a(busy_wait.c.obj) + 0x3c (size before relaxing) + .xt.prop 0x0000e514 0x78 zephyr/kernel/libkernel.a(device.c.obj) + 0x180 (size before relaxing) + .xt.prop 0x0000e58c 0x0 zephyr/kernel/libkernel.a(errno.c.obj) + 0x3c (size before relaxing) + .xt.prop 0x0000e58c 0x90 zephyr/kernel/libkernel.a(fatal.c.obj) + 0xb4 (size before relaxing) + .xt.prop 0x0000e61c 0x18c zephyr/kernel/libkernel.a(init.c.obj) + 0x1ec (size before relaxing) + .xt.prop 0x0000e7a8 0x24 zephyr/kernel/libkernel.a(idle.c.obj) + 0x54 (size before relaxing) + .xt.prop 0x0000e7cc 0x1bc zephyr/kernel/libkernel.a(mutex.c.obj) + 0x1d4 (size before relaxing) + .xt.prop 0x0000e988 0xf0 zephyr/kernel/libkernel.a(sem.c.obj) + 0x15c (size before relaxing) + .xt.prop 0x0000ea78 0x318 zephyr/kernel/libkernel.a(work.c.obj) + 0x93c (size before relaxing) + .xt.prop 0x0000ed90 0x108 zephyr/kernel/libkernel.a(thread.c.obj) + 0x2f4 (size before relaxing) + .xt.prop 0x0000ee98 0x828 zephyr/kernel/libkernel.a(sched.c.obj) + 0xdbc (size before relaxing) + .xt.prop 0x0000f6c0 0xfc zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x138 (size before relaxing) + .xt.prop 0x0000f7bc 0x324 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x54c (size before relaxing) + .xt.prop 0x0000fae0 0x174 zephyr/kernel/libkernel.a(timer.c.obj) + 0x1e0 (size before relaxing) + .xt.prop 0x0000fc54 0x390 zephyr/kernel/libkernel.a(poll.c.obj) + 0x5f4 (size before relaxing) + .xt.prop 0x0000ffe4 0x12c zephyr/kernel/libkernel.a(mempool.c.obj) + 0x2b8 (size before relaxing) + .xt.prop 0x00010110 0x30 zephyr/kernel/libkernel.a(banner.c.obj) + .xt.prop 0x00010140 0xcc zephyr/kernel/libkernel.a(kheap.c.obj) + 0x234 (size before relaxing) + .xt.prop 0x0001020c 0x60 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_ashldi3.o) + 0x3c (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_ashrdi3.o) + 0x3c (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_lshrdi3.o) + 0x3c (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_bswapsi2.o) + 0x24 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_bswapdi2.o) + 0x24 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_divsf3.o) + 0x24 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_addsubdf3.o) + 0x420 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_muldf3.o) + 0x228 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_divdf3.o) + 0x264 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_fixdfdi.o) + 0xa8 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_floatsidf.o) + 0x54 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_floatdidf.o) + 0x9c (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_truncdfsf2.o) + 0xb4 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_extendsfdf2.o) + 0x6c (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_popcountsi2.o) + 0x30 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_divdi3.o) + 0x18c (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_moddi3.o) + 0x168 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_udivdi3.o) + 0x174 (size before relaxing) + .xt.prop 0x0001026c 0x0 /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/libgcc.a(_umoddi3.o) + 0x144 (size before relaxing) + .xt.prop 0x0001026c 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memcpy.S.o) + 0x15c (size before relaxing) + .xt.prop 0x0001026c 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memset.S.o) + 0xd8 (size before relaxing) + .xt.prop 0x0001026c 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + 0x120 (size before relaxing) + .xt.prop 0x0001026c 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + 0xc0 (size before relaxing) + .xt.prop 0x0001026c 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + 0x54 (size before relaxing) + .xt.prop 0x0001026c 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + 0x54 (size before relaxing) + .xt.prop 0x0001026c 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + 0x48 (size before relaxing) + .xt.prop 0x0001026c 0x24 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + 0x30 (size before relaxing) + .xt.prop 0x00010290 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + 0x3c (size before relaxing) + .xt.prop 0x00010290 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + 0x60 (size before relaxing) + .xt.prop 0x00010290 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + 0x30 (size before relaxing) + .xt.prop 0x00010290 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + 0x78 (size before relaxing) + .xt.prop 0x00010290 0x60 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + .xt.prop 0x000102f0 0x75c /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + 0x768 (size before relaxing) + .xt.prop 0x00010a4c 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + 0x540 (size before relaxing) + .xt.prop 0x00010a4c 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + 0x60 (size before relaxing) + .xt.prop 0x00010a4c 0x30 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + .xt.prop 0x00010a7c 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + 0x54 (size before relaxing) + *(SORT_BY_ALIGNMENT(.xt.prop.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.prop.*)) + +.xt.lit 0x00000000 0xa48 + *(SORT_BY_ALIGNMENT(.xt.lit)) + .xt.lit 0x00000000 0x28 app/libapp.a(main.c.obj) + .xt.lit 0x00000028 0x0 app/libapp.a(kiss.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000028 0x38 app/libapp.a(lora_modem.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000060 0x10 zephyr/libzephyr.a(heap.c.obj) + 0x90 (size before relaxing) + .xt.lit 0x00000070 0x10 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000080 0x0 zephyr/libzephyr.a(clock.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000080 0x8 zephyr/libzephyr.a(printk.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000088 0x0 zephyr/libzephyr.a(sem.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000088 0x8 zephyr/libzephyr.a(thread_entry.c.obj) + .xt.lit 0x00000090 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000090 0x0 zephyr/libzephyr.a(assert.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000090 0x18 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(dec.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(hex.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(rb.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(set.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(timeutil.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(bitarray.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(getopt.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(getopt_common.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x000000a8 0x10 zephyr/libzephyr.a(soc.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000000b8 0x10 zephyr/libzephyr.a(loader.c.obj) + .xt.lit 0x000000c8 0x8 zephyr/libzephyr.a(hw_init.c.obj) + .xt.lit 0x000000d0 0x88 zephyr/libzephyr.a(log_core.c.obj) + 0x128 (size before relaxing) + .xt.lit 0x00000158 0x10 zephyr/libzephyr.a(log_mgmt.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x00000168 0x18 zephyr/libzephyr.a(log_msg.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000180 0x28 zephyr/libzephyr.a(log_output.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(esp_efuse_api.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(flash_encrypt.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000001a8 0x20 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000001c8 0x18 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000001e0 0x18 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x000001f8 0x10 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000208 0x20 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000228 0x18 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0xf0 (size before relaxing) + .xt.lit 0x00000240 0x10 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000250 0x8 zephyr/libzephyr.a(flash_mmap.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000258 0x10 zephyr/libzephyr.a(flash_ops.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000268 0x10 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000278 0x10 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000288 0x20 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x000002a8 0x8 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000002b0 0x10 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x000002c0 0x8 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000002c8 0x0 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000002c8 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000002c8 0x8 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x000002d0 0x0 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x000002d0 0x18 zephyr/libzephyr.a(cache_utils.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x000002e8 0x28 zephyr/libzephyr.a(uart_hal.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00000310 0x10 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .xt.lit 0x00000320 0x8 zephyr/libzephyr.a(spi_hal.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000328 0x28 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000350 0x0 zephyr/libzephyr.a(lldesc.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000350 0x0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000350 0x0 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000350 0x0 zephyr/libzephyr.a(flash_qio_mode.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00000350 0x0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000350 0x8 zephyr/libzephyr.a(console_init.c.obj) + .xt.lit 0x00000358 0x20 zephyr/libzephyr.a(soc_init.c.obj) + .xt.lit 0x00000378 0x28 zephyr/libzephyr.a(rtc_io.c.obj) + 0xb8 (size before relaxing) + .xt.lit 0x000003a0 0x0 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000003a0 0x28 zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x000003c8 0x0 zephyr/libzephyr.a(rtc_io_hal.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x000003c8 0x8 zephyr/libzephyr.a(systimer_hal.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000003d0 0x8 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000003d8 0x0 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000003d8 0x0 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x000003d8 0x0 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000003d8 0x0 zephyr/libzephyr.a(cpu.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000003d8 0x8 zephyr/libzephyr.a(esp_clk.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x000003e0 0x0 zephyr/libzephyr.a(hw_random.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000003e0 0x0 zephyr/libzephyr.a(mac_addr.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x000003e0 0x8 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000003e8 0x10 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .xt.lit 0x000003f8 0x30 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0xa0 (size before relaxing) + .xt.lit 0x00000428 0x0 zephyr/libzephyr.a(cpu_region_protect.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000428 0x8 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .xt.lit 0x00000430 0x8 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .xt.lit 0x00000438 0x0 zephyr/libzephyr.a(io_mux.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000438 0x60 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x108 (size before relaxing) + .xt.lit 0x00000498 0x0 zephyr/libzephyr.a(rtc_clk_init.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000498 0x10 zephyr/libzephyr.a(rtc_init.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000004a8 0x8 zephyr/libzephyr.a(rtc_sleep.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000004b0 0x18 zephyr/libzephyr.a(rtc_time.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x000004c8 0x8 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x000004d0 0x10 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000004e0 0x28 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000508 0x8 zephyr/libzephyr.a(rtc_module.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000510 0x0 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000510 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + 0x1c0 (size before relaxing) + .xt.lit 0x00000520 0x10 zephyr/libzephyr.a(esp_cache_msync.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000530 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000530 0x10 zephyr/libzephyr.a(esp_mmu_map.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x00000540 0x28 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000568 0x8 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .xt.lit 0x00000570 0x0 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000570 0x0 zephyr/libzephyr.a(esp_rom_print.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000570 0x8 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .xt.lit 0x00000578 0x8 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .xt.lit 0x00000580 0x8 zephyr/libzephyr.a(esp_rom_sys.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000588 0x0 zephyr/libzephyr.a(esp_err.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000588 0x10 zephyr/libzephyr.a(clk.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000598 0x10 zephyr/libzephyr.a(reset_reason.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000005a8 0x0 zephyr/libzephyr.a(system_internal.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000005a8 0x0 zephyr/libzephyr.a(esp_timer.c.obj) + 0xd8 (size before relaxing) + .xt.lit 0x000005a8 0x0 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000005a8 0x8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x000005b0 0x0 zephyr/libzephyr.a(esp_timer_init.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000005b0 0x0 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000005b0 0x8 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x000005b8 0x38 zephyr/libzephyr.a(cache_hal.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x000005f0 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x000005f0 0x18 zephyr/libzephyr.a(mmu_hal.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000608 0x0 zephyr/libzephyr.a(esp_restart.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000608 0x8 zephyr/libzephyr.a(flash_init.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000610 0x28 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x00000638 0x0 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + 0x90 (size before relaxing) + .xt.lit 0x00000638 0x20 zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000658 0x38 zephyr/libzephyr.a(soc_init.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000690 0x10 zephyr/libzephyr.a(soc_random.c.obj) + .xt.lit 0x000006a0 0x0 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000006a0 0x8 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000006a8 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000006b0 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .xt.lit 0x000006b8 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000006c0 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .xt.lit 0x000006c8 0x28 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x000006f0 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000006f0 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000006f0 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .xt.lit 0x000006f8 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000006f8 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000006f8 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000006f8 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x000006f8 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000708 0x8 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .xt.lit 0x00000710 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000710 0x8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000718 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000718 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000718 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000718 0x30 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00000748 0x28 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000770 0x10 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .xt.lit 0x00000780 0x20 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .xt.lit 0x000007a0 0x30 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xb0 (size before relaxing) + .xt.lit 0x000007d0 0x28 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x000007f8 0x38 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x00000830 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000848 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000848 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000848 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00000850 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000850 0x30 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x170 (size before relaxing) + .xt.lit 0x00000880 0x60 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x100 (size before relaxing) + .xt.lit 0x000008e0 0x8 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .xt.lit 0x000008e8 0x18 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x00000900 0x18 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000918 0x28 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000940 0x10 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000950 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000950 0x0 zephyr/kernel/libkernel.a(device.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000950 0x0 zephyr/kernel/libkernel.a(errno.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000950 0x10 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000960 0x20 zephyr/kernel/libkernel.a(init.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000980 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000980 0x8 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000988 0x8 zephyr/kernel/libkernel.a(sem.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000990 0x18 zephyr/kernel/libkernel.a(work.c.obj) + 0xf0 (size before relaxing) + .xt.lit 0x000009a8 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x000009a8 0x10 zephyr/kernel/libkernel.a(sched.c.obj) + 0x160 (size before relaxing) + .xt.lit 0x000009b8 0x18 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000009d0 0x18 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x000009e8 0x8 zephyr/kernel/libkernel.a(timer.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000009f0 0x18 zephyr/kernel/libkernel.a(poll.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x00000a08 0x8 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000a10 0x8 zephyr/kernel/libkernel.a(banner.c.obj) + .xt.lit 0x00000a18 0x18 zephyr/kernel/libkernel.a(kheap.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000a30 0x8 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .xt.lit 0x00000a38 0x0 /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/libgcc.a(_addsubdf3.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /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/libgcc.a(_muldf3.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /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/libgcc.a(_divdf3.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /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/libgcc.a(_fixdfdi.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /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/libgcc.a(_truncdfsf2.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /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/libgcc.a(_extendsfdf2.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /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/libgcc.a(_popcountsi2.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x8 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + .xt.lit 0x00000a40 0x8 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .xt.lit 0x00000a48 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + 0x18 (size before relaxing) + *(SORT_BY_ALIGNMENT(.xt.lit.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.p.*)) + +.xt.profile_range + *(SORT_BY_ALIGNMENT(.xt.profile_range)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.profile_range.*)) + +.xt.profile_ranges + *(SORT_BY_ALIGNMENT(.xt.profile_ranges)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.xt.profile_ranges.*)) + +.xt.profile_files + *(SORT_BY_ALIGNMENT(.xt.profile_files)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.xt.profile_files.*)) + 0x00000001 ASSERT (((_iram_end - ORIGIN (iram0_0_seg)) <= LENGTH (iram0_0_seg)), IRAM0 segment data does not fit.) + 0x00000001 ASSERT (((_end - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) + [!provide] PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char) + [!provide] PROVIDE (esp_rom_uart_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_uart_attach = uartAttach) + [!provide] PROVIDE (esp_rom_uart_tx_wait_idle = uart_tx_wait_idle) + [!provide] PROVIDE (esp_rom_intr_matrix_set = intr_matrix_set) + 0x40001a94 PROVIDE (esp_rom_gpio_matrix_in = rom_gpio_matrix_in) + 0x40001aa0 PROVIDE (esp_rom_gpio_matrix_out = rom_gpio_matrix_out) + [!provide] PROVIDE (esp_rom_ets_set_appcpu_boot_addr = ets_set_appcpu_boot_addr) + [!provide] PROVIDE (esp_rom_i2c_readReg = rom_i2c_readReg) + [!provide] PROVIDE (esp_rom_i2c_writeReg = rom_i2c_writeReg) + [!provide] PROVIDE (esp_rom_ets_printf = ets_printf) + [!provide] PROVIDE (esp_rom_ets_delay_us = ets_delay_us) + [!provide] PROVIDE (esp_rom_Cache_Disable_ICache = Cache_Disable_ICache) + [!provide] PROVIDE (esp_rom_Cache_Disable_DCache = Cache_Disable_DCache) + [!provide] PROVIDE (esp_rom_Cache_Allocate_SRAM = Cache_Allocate_SRAM) + [!provide] PROVIDE (esp_rom_Cache_Suspend_ICache = Cache_Suspend_ICache) + [!provide] PROVIDE (esp_rom_Cache_Dbus_MMU_Set = Cache_Dbus_MMU_Set) + [!provide] PROVIDE (esp_rom_Cache_Ibus_MMU_Set = Cache_Ibus_MMU_Set) + [!provide] PROVIDE (esp_rom_Cache_Set_ICache_Mode = Cache_Set_ICache_Mode) + [!provide] PROVIDE (esp_rom_Cache_Invalidate_ICache_All = Cache_Invalidate_ICache_All) + [!provide] PROVIDE (esp_rom_Cache_Resume_ICache = Cache_Resume_ICache) + [!provide] PROVIDE (esp_rom_Cache_Invalidate_Addr = Cache_Invalidate_Addr) + [!provide] PROVIDE (esp_rom_Cache_Set_DCache_Mode = Cache_Set_DCache_Mode) + [!provide] PROVIDE (esp_rom_Cache_Invalidate_DCache_All = Cache_Invalidate_DCache_All) + [!provide] PROVIDE (esp_rom_Cache_Enable_DCache = Cache_Enable_DCache) + [!provide] PROVIDE (esp_rom_Cache_Set_DCache_Mode = Cache_Set_DCache_Mode) + 0x4000057c rtc_get_reset_reason = 0x4000057c + 0x40000588 analog_super_wdt_reset_happened = 0x40000588 + 0x40000594 jtag_cpu_reset_happened = 0x40000594 + 0x400005a0 rtc_get_wakeup_cause = 0x400005a0 + 0x400005ac rtc_select_apb_bridge = 0x400005ac + 0x400005b8 rtc_unhold_all_pads = 0x400005b8 + 0x400005c4 ets_is_print_boot = 0x400005c4 + 0x400005d0 ets_printf = 0x400005d0 + 0x400005dc ets_install_putc1 = 0x400005dc + 0x400005e8 ets_install_uart_printf = 0x400005e8 + 0x400005f4 ets_install_putc2 = 0x400005f4 + 0x40000600 PROVIDE (ets_delay_us = 0x40000600) + 0x4000060c ets_get_stack_info = 0x4000060c + 0x40000618 ets_install_lock = 0x40000618 + 0x40000624 ets_backup_dma_copy = 0x40000624 + 0x40000630 ets_apb_backup_init_lock_func = 0x40000630 + 0x4000063c UartRxString = 0x4000063c + 0x40000648 uart_tx_one_char = 0x40000648 + 0x40000654 uart_tx_one_char2 = 0x40000654 + 0x40000660 uart_rx_one_char = 0x40000660 + 0x4000066c uart_rx_one_char_block = 0x4000066c + 0x40000678 uart_rx_readbuff = 0x40000678 + 0x40000684 uartAttach = 0x40000684 + 0x40000690 uart_tx_flush = 0x40000690 + 0x4000069c uart_tx_wait_idle = 0x4000069c + 0x400006a8 uart_div_modify = 0x400006a8 + 0x400006b4 ets_write_char_uart = 0x400006b4 + 0x400006c0 uart_tx_switch = 0x400006c0 + 0x400006cc multofup = 0x400006cc + 0x400006d8 software_reset = 0x400006d8 + 0x400006e4 software_reset_cpu = 0x400006e4 + 0x400006f0 assist_debug_clock_enable = 0x400006f0 + 0x400006fc assist_debug_record_enable = 0x400006fc + 0x40000708 clear_super_wdt_reset_flag = 0x40000708 + 0x40000714 disable_default_watchdog = 0x40000714 + 0x40000720 ets_set_appcpu_boot_addr = 0x40000720 + 0x4000072c esp_rom_set_rtc_wake_addr = 0x4000072c + 0x40000738 esp_rom_get_rtc_wake_addr = 0x40000738 + 0x40000744 send_packet = 0x40000744 + 0x40000750 recv_packet = 0x40000750 + 0x4000075c GetUartDevice = 0x4000075c + 0x40000768 UartDwnLdProc = 0x40000768 + 0x40000774 Uart_Init = 0x40000774 + 0x40000780 ets_set_user_start = 0x40000780 + 0x3ff1fffc ets_rom_layout_p = 0x3ff1fffc + 0x3fcefffc ets_ops_table_ptr = 0x3fcefffc + 0x4000078c mz_adler32 = 0x4000078c + 0x40000798 mz_crc32 = 0x40000798 + 0x400007a4 mz_free = 0x400007a4 + 0x400007b0 tdefl_compress = 0x400007b0 + 0x400007bc tdefl_compress_buffer = 0x400007bc + 0x400007c8 tdefl_compress_mem_to_heap = 0x400007c8 + 0x400007d4 tdefl_compress_mem_to_mem = 0x400007d4 + 0x400007e0 tdefl_compress_mem_to_output = 0x400007e0 + 0x400007ec tdefl_get_adler32 = 0x400007ec + 0x400007f8 tdefl_get_prev_return_status = 0x400007f8 + 0x40000804 tdefl_init = 0x40000804 + 0x40000810 tdefl_write_image_to_png_file_in_memory = 0x40000810 + 0x4000081c tdefl_write_image_to_png_file_in_memory_ex = 0x4000081c + 0x40000828 tinfl_decompress = 0x40000828 + 0x40000834 tinfl_decompress_mem_to_callback = 0x40000834 + 0x40000840 tinfl_decompress_mem_to_heap = 0x40000840 + 0x4000084c tinfl_decompress_mem_to_mem = 0x4000084c + [!provide] PROVIDE (jd_prepare = 0x40000858) + [!provide] PROVIDE (jd_decomp = 0x40000864) + 0x3fcefff8 dsps_fft2r_w_table_fc32_1024 = 0x3fcefff8 + [!provide] PROVIDE (opi_flash_set_lock_func = 0x40000870) + [!provide] PROVIDE (esp_rom_spi_cmd_config = 0x4000087c) + [!provide] PROVIDE (esp_rom_spi_cmd_start = 0x40000888) + 0x40000894 PROVIDE (esp_rom_opiflash_pin_config = 0x40000894) + 0x400008a0 PROVIDE (esp_rom_spi_set_op_mode = 0x400008a0) + [!provide] PROVIDE (esp_rom_opiflash_mode_reset = 0x400008ac) + 0x400008b8 PROVIDE (esp_rom_opiflash_exec_cmd = 0x400008b8) + [!provide] PROVIDE (esp_rom_opiflash_soft_reset = 0x400008c4) + [!provide] PROVIDE (esp_rom_opiflash_read_id = 0x400008d0) + [!provide] PROVIDE (esp_rom_opiflash_rdsr = 0x400008dc) + 0x400008e8 PROVIDE (esp_rom_opiflash_wait_idle = 0x400008e8) + 0x400008f4 PROVIDE (esp_rom_opiflash_wren = 0x400008f4) + 0x40000900 PROVIDE (esp_rom_opiflash_erase_sector = 0x40000900) + 0x4000090c PROVIDE (esp_rom_opiflash_erase_block_64k = 0x4000090c) + 0x40000918 PROVIDE (esp_rom_opiflash_erase_area = 0x40000918) + 0x40000924 PROVIDE (esp_rom_opiflash_read = 0x40000924) + 0x40000930 PROVIDE (esp_rom_opiflash_write = 0x40000930) + 0x4000093c PROVIDE (esp_rom_spi_set_dtr_swap_mode = 0x4000093c) + [!provide] PROVIDE (esp_rom_opiflash_exit_continuous_read_mode = 0x40000948) + 0x40000954 PROVIDE (esp_rom_opiflash_legacy_driver_init = 0x40000954) + [!provide] PROVIDE (esp_rom_opiflash_read_raw = 0x4004d9d4) + 0x3fcefff4 PROVIDE (rom_opiflash_cmd_def = 0x3fcefff4) + [!provide] PROVIDE (rom_spi_usr_cmd_legacy_funcs = 0x3fcefff0) + 0x40000960 PROVIDE (esp_rom_spiflash_wait_idle = 0x40000960) + 0x4000096c PROVIDE (esp_rom_spiflash_write_encrypted = 0x4000096c) + [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_dest = 0x40000978) + [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_enable = 0x40000984) + [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_disable = 0x40000990) + [!provide] PROVIDE (esp_rom_spiflash_erase_chip = 0x4000099c) + [!provide] PROVIDE (_esp_rom_spiflash_erase_sector = 0x400009a8) + [!provide] PROVIDE (_esp_rom_spiflash_erase_block = 0x400009b4) + [!provide] PROVIDE (_esp_rom_spiflash_write = 0x400009c0) + [!provide] PROVIDE (_esp_rom_spiflash_read = 0x400009cc) + [!provide] PROVIDE (_esp_rom_spiflash_unlock = 0x400009d8) + [!provide] PROVIDE (_SPIEraseArea = 0x400009e4) + [!provide] PROVIDE (_SPI_write_enable = 0x400009f0) + 0x400009fc PROVIDE (esp_rom_spiflash_erase_sector = 0x400009fc) + 0x40000a08 PROVIDE (esp_rom_spiflash_erase_block = 0x40000a08) + 0x40000a14 PROVIDE (esp_rom_spiflash_write = 0x40000a14) + 0x40000a20 PROVIDE (esp_rom_spiflash_read = 0x40000a20) + [!provide] PROVIDE (esp_rom_spiflash_unlock = 0x40000a2c) + [!provide] PROVIDE (SPIEraseArea = 0x40000a38) + 0x40000a44 PROVIDE (SPI_write_enable = 0x40000a44) + 0x40000a50 PROVIDE (esp_rom_spiflash_config_param = 0x40000a50) + [!provide] PROVIDE (esp_rom_spiflash_read_user_cmd = 0x40000a5c) + 0x40000a68 PROVIDE (esp_rom_spiflash_select_qio_pins = 0x40000a68) + [!provide] PROVIDE (esp_rom_spi_flash_auto_sus_res = 0x40000a74) + [!provide] PROVIDE (esp_rom_spi_flash_send_resume = 0x40000a80) + [!provide] PROVIDE (esp_rom_spi_flash_update_id = 0x40000a8c) + 0x40000a98 PROVIDE (esp_rom_spiflash_config_clk = 0x40000a98) + 0x40000aa4 PROVIDE (esp_rom_spiflash_config_readmode = 0x40000aa4) + [!provide] PROVIDE (esp_rom_spiflash_read_status = 0x40000ab0) + [!provide] PROVIDE (esp_rom_spiflash_read_statushigh = 0x40000abc) + [!provide] PROVIDE (esp_rom_spiflash_write_status = 0x40000ac8) + [!provide] PROVIDE (esp_rom_opiflash_cache_mode_config = 0x40000ad4) + [!provide] PROVIDE (esp_rom_spiflash_auto_wait_idle = 0x40000ae0) + [!provide] PROVIDE (spi_flash_attach = 0x40000aec) + [!provide] PROVIDE (spi_flash_get_chip_size = 0x40000af8) + [!provide] PROVIDE (spi_flash_guard_set = 0x40000b04) + [!provide] PROVIDE (spi_flash_guard_get = 0x40000b10) + [!provide] PROVIDE (spi_flash_write_config_set = 0x40000b1c) + [!provide] PROVIDE (spi_flash_write_config_get = 0x40000b28) + [!provide] PROVIDE (spi_flash_safe_write_address_func_set = 0x40000b34) + [!provide] PROVIDE (spi_flash_unlock = 0x40000b40) + [!provide] PROVIDE (spi_flash_erase_range = 0x40000b4c) + [!provide] PROVIDE (spi_flash_erase_sector = 0x40000b58) + [!provide] PROVIDE (spi_flash_write = 0x40000b64) + [!provide] PROVIDE (spi_flash_read = 0x40000b70) + [!provide] PROVIDE (spi_flash_write_encrypted = 0x40000b7c) + [!provide] PROVIDE (spi_flash_read_encrypted = 0x40000b88) + [!provide] PROVIDE (spi_flash_mmap_os_func_set = 0x40000b94) + [!provide] PROVIDE (spi_flash_mmap_page_num_init = 0x40000ba0) + [!provide] PROVIDE (spi_flash_mmap = 0x40000bac) + [!provide] PROVIDE (spi_flash_mmap_pages = 0x40000bb8) + [!provide] PROVIDE (spi_flash_munmap = 0x40000bc4) + [!provide] PROVIDE (spi_flash_mmap_dump = 0x40000bd0) + [!provide] PROVIDE (spi_flash_check_and_flush_cache = 0x40000bdc) + [!provide] PROVIDE (spi_flash_mmap_get_free_pages = 0x40000be8) + [!provide] PROVIDE (spi_flash_cache2phys = 0x40000bf4) + [!provide] PROVIDE (spi_flash_phys2cache = 0x40000c00) + [!provide] PROVIDE (spi_flash_disable_cache = 0x40000c0c) + [!provide] PROVIDE (spi_flash_restore_cache = 0x40000c18) + [!provide] PROVIDE (spi_flash_cache_enabled = 0x40000c24) + [!provide] PROVIDE (spi_flash_enable_cache = 0x40000c30) + [!provide] PROVIDE (spi_cache_mode_switch = 0x40000c3c) + [!provide] PROVIDE (spi_common_set_dummy_output = 0x40000c48) + [!provide] PROVIDE (spi_common_set_flash_cs_timing = 0x40000c54) + 0x40000c60 PROVIDE (esp_rom_spi_set_address_bit_len = 0x40000c60) + [!provide] PROVIDE (esp_enable_cache_flash_wrap = 0x40000c6c) + [!provide] PROVIDE (SPILock = 0x40000c78) + [!provide] PROVIDE (SPIMasterReadModeCnfig = 0x40000c84) + [!provide] PROVIDE (SPI_Common_Command = 0x40000c90) + [!provide] PROVIDE (SPI_WakeUp = 0x40000c9c) + [!provide] PROVIDE (SPI_block_erase = 0x40000ca8) + [!provide] PROVIDE (SPI_chip_erase = 0x40000cb4) + [!provide] PROVIDE (SPI_init = 0x40000cc0) + [!provide] PROVIDE (SPI_page_program = 0x40000ccc) + [!provide] PROVIDE (SPI_read_data = 0x40000cd8) + [!provide] PROVIDE (SPI_sector_erase = 0x40000ce4) + [!provide] PROVIDE (SelectSpiFunction = 0x40000cf0) + [!provide] PROVIDE (SetSpiDrvs = 0x40000cfc) + [!provide] PROVIDE (Wait_SPI_Idle = 0x40000d08) + [!provide] PROVIDE (spi_dummy_len_fix = 0x40000d14) + [!provide] PROVIDE (Disable_QMode = 0x40000d20) + [!provide] PROVIDE (Enable_QMode = 0x40000d2c) + 0x3fceffe8 PROVIDE (rom_spiflash_legacy_funcs = 0x3fceffe8) + 0x3fceffe4 PROVIDE (rom_spiflash_legacy_data = 0x3fceffe4) + [!provide] PROVIDE (g_flash_guard_ops = 0x3fceffec) + [!provide] PROVIDE (spi_flash_hal_poll_cmd_done = 0x40000d38) + [!provide] PROVIDE (spi_flash_hal_device_config = 0x40000d44) + [!provide] PROVIDE (spi_flash_hal_configure_host_io_mode = 0x40000d50) + [!provide] PROVIDE (spi_flash_hal_common_command = 0x40000d5c) + [!provide] PROVIDE (spi_flash_hal_read = 0x40000d68) + [!provide] PROVIDE (spi_flash_hal_erase_chip = 0x40000d74) + [!provide] PROVIDE (spi_flash_hal_erase_sector = 0x40000d80) + [!provide] PROVIDE (spi_flash_hal_erase_block = 0x40000d8c) + [!provide] PROVIDE (spi_flash_hal_program_page = 0x40000d98) + [!provide] PROVIDE (spi_flash_hal_set_write_protect = 0x40000da4) + [!provide] PROVIDE (spi_flash_hal_host_idle = 0x40000db0) + [!provide] PROVIDE (spi_flash_chip_generic_probe = 0x40000ed0) + [!provide] PROVIDE (spi_flash_chip_generic_detect_size = 0x40000edc) + [!provide] PROVIDE (spi_flash_chip_generic_write = 0x40000ee8) + [!provide] PROVIDE (spi_flash_chip_generic_write_encrypted = 0x40000ef4) + [!provide] PROVIDE (spi_flash_chip_generic_set_write_protect = 0x40000f00) + [!provide] PROVIDE (spi_flash_common_write_status_16b_wrsr = 0x40000f0c) + [!provide] PROVIDE (spi_flash_chip_generic_reset = 0x40000f18) + [!provide] PROVIDE (spi_flash_chip_generic_erase_chip = 0x40000f24) + [!provide] PROVIDE (spi_flash_chip_generic_erase_sector = 0x40000f30) + [!provide] PROVIDE (spi_flash_chip_generic_erase_block = 0x40000f3c) + [!provide] PROVIDE (spi_flash_chip_generic_page_program = 0x40000f48) + [!provide] PROVIDE (spi_flash_chip_generic_get_write_protect = 0x40000f54) + [!provide] PROVIDE (spi_flash_common_read_status_16b_rdsr_rdsr2 = 0x40000f60) + [!provide] PROVIDE (spi_flash_chip_generic_read_reg = 0x40000f6c) + [!provide] PROVIDE (spi_flash_chip_generic_yield = 0x40000f78) + [!provide] PROVIDE (spi_flash_generic_wait_host_idle = 0x40000f84) + [!provide] PROVIDE (spi_flash_chip_generic_wait_idle = 0x40000f90) + [!provide] PROVIDE (spi_flash_chip_generic_config_host_io_mode = 0x40000f9c) + [!provide] PROVIDE (spi_flash_chip_generic_read = 0x40000fa8) + [!provide] PROVIDE (spi_flash_common_read_status_8b_rdsr2 = 0x40000fb4) + [!provide] PROVIDE (spi_flash_chip_generic_get_io_mode = 0x40000fc0) + [!provide] PROVIDE (spi_flash_common_read_status_8b_rdsr = 0x40000fcc) + [!provide] PROVIDE (spi_flash_common_write_status_8b_wrsr = 0x40000fd8) + [!provide] PROVIDE (spi_flash_common_write_status_8b_wrsr2 = 0x40000fe4) + [!provide] PROVIDE (spi_flash_common_set_io_mode = 0x40000ff0) + [!provide] PROVIDE (spi_flash_chip_generic_set_io_mode = 0x40000ffc) + [!provide] PROVIDE (spi_flash_chip_gd_get_io_mode = 0x40001008) + [!provide] PROVIDE (spi_flash_chip_gd_probe = 0x40001014) + [!provide] PROVIDE (spi_flash_chip_gd_set_io_mode = 0x40001020) + [!provide] PROVIDE (spi_flash_chip_generic_config_data = 0x3fceffe0) + [!provide] PROVIDE (memspi_host_read_id_hs = 0x4000102c) + [!provide] PROVIDE (memspi_host_read_status_hs = 0x40001038) + [!provide] PROVIDE (memspi_host_flush_cache = 0x40001044) + [!provide] PROVIDE (memspi_host_erase_chip = 0x40001050) + [!provide] PROVIDE (memspi_host_erase_sector = 0x4000105c) + [!provide] PROVIDE (memspi_host_erase_block = 0x40001068) + [!provide] PROVIDE (memspi_host_program_page = 0x40001074) + [!provide] PROVIDE (memspi_host_read = 0x40001080) + [!provide] PROVIDE (memspi_host_set_write_protect = 0x4000108c) + [!provide] PROVIDE (memspi_host_set_max_read_len = 0x40001098) + [!provide] PROVIDE (memspi_host_read_data_slicer = 0x400010a4) + [!provide] PROVIDE (memspi_host_write_data_slicer = 0x400010b0) + [!provide] PROVIDE (esp_flash_chip_driver_initialized = 0x400010bc) + [!provide] PROVIDE (esp_flash_read_id = 0x400010c8) + [!provide] PROVIDE (esp_flash_get_size = 0x400010d4) + [!provide] PROVIDE (esp_flash_erase_chip = 0x400010e0) + [!provide] PROVIDE (rom_esp_flash_erase_region = 0x400010ec) + [!provide] PROVIDE (esp_flash_get_chip_write_protect = 0x400010f8) + [!provide] PROVIDE (esp_flash_set_chip_write_protect = 0x40001104) + [!provide] PROVIDE (esp_flash_get_protectable_regions = 0x40001110) + [!provide] PROVIDE (esp_flash_get_protected_region = 0x4000111c) + [!provide] PROVIDE (esp_flash_set_protected_region = 0x40001128) + [!provide] PROVIDE (esp_flash_read = 0x40001134) + [!provide] PROVIDE (rom_esp_flash_write = 0x40001140) + [!provide] PROVIDE (rom_esp_flash_write_encrypted = 0x4000114c) + [!provide] PROVIDE (esp_flash_read_encrypted = 0x40001158) + [!provide] PROVIDE (esp_flash_get_io_mode = 0x40001164) + [!provide] PROVIDE (esp_flash_set_io_mode = 0x40001170) + [!provide] PROVIDE (spi_flash_boot_attach = 0x4000117c) + [!provide] PROVIDE (spi_flash_dump_counters = 0x40001188) + [!provide] PROVIDE (spi_flash_get_counters = 0x40001194) + [!provide] PROVIDE (spi_flash_op_counters_config = 0x400011a0) + [!provide] PROVIDE (spi_flash_reset_counters = 0x400011ac) + [!provide] PROVIDE (esp_flash_read_chip_id = 0x400011b8) + [!provide] PROVIDE (detect_spi_flash_chip = 0x400011c4) + [!provide] PROVIDE (esp_rom_spiflash_write_disable = 0x400011d0) + [!provide] PROVIDE (esp_flash_default_chip = 0x3fceffdc) + [!provide] PROVIDE (esp_flash_api_funcs = 0x3fceffd8) + 0x400015fc PROVIDE (Cache_Get_ICache_Line_Size = 0x400015fc) + 0x40001608 PROVIDE (Cache_Get_DCache_Line_Size = 0x40001608) + [!provide] PROVIDE (Cache_Get_Mode = 0x40001614) + 0x40001620 PROVIDE (Cache_Set_ICache_Mode = 0x40001620) + 0x4000162c PROVIDE (Cache_Set_DCache_Mode = 0x4000162c) + [!provide] PROVIDE (Cache_Address_Through_ICache = 0x40001638) + [!provide] PROVIDE (Cache_Address_Through_DCache = 0x40001644) + [!provide] PROVIDE (Cache_Set_Default_Mode = 0x40001650) + [!provide] PROVIDE (Cache_Enable_Default_ICache_Mode = 0x4000165c) + 0x40001668 PROVIDE (ROM_Boot_Cache_Init = 0x40001668) + [!provide] PROVIDE (Cache_Invalidate_ICache_Items = 0x40001674) + [!provide] PROVIDE (Cache_Invalidate_DCache_Items = 0x40001680) + [!provide] PROVIDE (Cache_Clean_Items = 0x4000168c) + [!provide] PROVIDE (Cache_WriteBack_Items = 0x40001698) + [!provide] PROVIDE (Cache_Op_Addr = 0x400016a4) + 0x400016b0 PROVIDE (Cache_Invalidate_Addr = 0x400016b0) + [!provide] PROVIDE (Cache_Clean_Addr = 0x400016bc) + 0x400016c8 PROVIDE (rom_Cache_WriteBack_Addr = 0x400016c8) + 0x400016d4 PROVIDE (Cache_Invalidate_ICache_All = 0x400016d4) + 0x400016e0 PROVIDE (Cache_Invalidate_DCache_All = 0x400016e0) + [!provide] PROVIDE (Cache_Clean_All = 0x400016ec) + [!provide] PROVIDE (Cache_WriteBack_All = 0x400016f8) + [!provide] PROVIDE (Cache_Mask_All = 0x40001704) + [!provide] PROVIDE (Cache_UnMask_Dram0 = 0x40001710) + [!provide] PROVIDE (Cache_Suspend_ICache_Autoload = 0x4000171c) + [!provide] PROVIDE (Cache_Resume_ICache_Autoload = 0x40001728) + 0x40001734 PROVIDE (Cache_Suspend_DCache_Autoload = 0x40001734) + 0x40001740 PROVIDE (Cache_Resume_DCache_Autoload = 0x40001740) + [!provide] PROVIDE (Cache_Start_ICache_Preload = 0x4000174c) + [!provide] PROVIDE (Cache_ICache_Preload_Done = 0x40001758) + [!provide] PROVIDE (Cache_End_ICache_Preload = 0x40001764) + [!provide] PROVIDE (Cache_Start_DCache_Preload = 0x40001770) + [!provide] PROVIDE (Cache_DCache_Preload_Done = 0x4000177c) + [!provide] PROVIDE (Cache_End_DCache_Preload = 0x40001788) + [!provide] PROVIDE (Cache_Config_ICache_Autoload = 0x40001794) + [!provide] PROVIDE (Cache_Config_ICache_Region_Autoload = 0x400017a0) + [!provide] PROVIDE (Cache_Enable_ICache_Autoload = 0x400017ac) + [!provide] PROVIDE (Cache_Disable_ICache_Autoload = 0x400017b8) + [!provide] PROVIDE (Cache_Config_DCache_Autoload = 0x400017c4) + [!provide] PROVIDE (Cache_Config_DCache_Region_Autoload = 0x400017d0) + [!provide] PROVIDE (Cache_Enable_DCache_Autoload = 0x400017dc) + [!provide] PROVIDE (Cache_Disable_DCache_Autoload = 0x400017e8) + [!provide] PROVIDE (Cache_Enable_ICache_PreLock = 0x400017f4) + [!provide] PROVIDE (Cache_Disable_ICache_PreLock = 0x40001800) + [!provide] PROVIDE (Cache_Lock_ICache_Items = 0x4000180c) + [!provide] PROVIDE (Cache_Unlock_ICache_Items = 0x40001818) + [!provide] PROVIDE (Cache_Enable_DCache_PreLock = 0x40001824) + [!provide] PROVIDE (Cache_Disable_DCache_PreLock = 0x40001830) + [!provide] PROVIDE (Cache_Lock_DCache_Items = 0x4000183c) + [!provide] PROVIDE (Cache_Unlock_DCache_Items = 0x40001848) + [!provide] PROVIDE (Cache_Lock_Addr = 0x40001854) + [!provide] PROVIDE (Cache_Unlock_Addr = 0x40001860) + 0x4000186c PROVIDE (Cache_Disable_ICache = 0x4000186c) + 0x40001878 PROVIDE (Cache_Enable_ICache = 0x40001878) + 0x40001884 PROVIDE (Cache_Disable_DCache = 0x40001884) + 0x40001890 PROVIDE (Cache_Enable_DCache = 0x40001890) + 0x4000189c PROVIDE (rom_Cache_Suspend_ICache = 0x4000189c) + 0x400018a8 PROVIDE (Cache_Resume_ICache = 0x400018a8) + 0x400018b4 PROVIDE (rom_Cache_Suspend_DCache = 0x400018b4) + 0x400018c0 PROVIDE (Cache_Resume_DCache = 0x400018c0) + [!provide] PROVIDE (Cache_Occupy_Items = 0x400018cc) + [!provide] PROVIDE (Cache_Occupy_Addr = 0x400018d8) + 0x400018e4 PROVIDE (rom_Cache_Freeze_ICache_Enable = 0x400018e4) + 0x400018f0 PROVIDE (Cache_Freeze_ICache_Disable = 0x400018f0) + 0x400018fc PROVIDE (rom_Cache_Freeze_DCache_Enable = 0x400018fc) + 0x40001908 PROVIDE (Cache_Freeze_DCache_Disable = 0x40001908) + 0x40001914 PROVIDE (Cache_Set_IDROM_MMU_Size = 0x40001914) + [!provide] PROVIDE (flash2spiram_instruction_offset = 0x40001920) + [!provide] PROVIDE (flash2spiram_rodata_offset = 0x4000192c) + [!provide] PROVIDE (flash_instr_rodata_start_page = 0x40001938) + [!provide] PROVIDE (flash_instr_rodata_end_page = 0x40001944) + [!provide] PROVIDE (Cache_Set_IDROM_MMU_Info = 0x40001950) + [!provide] PROVIDE (Cache_Get_IROM_MMU_End = 0x4000195c) + [!provide] PROVIDE (Cache_Get_DROM_MMU_End = 0x40001968) + [!provide] PROVIDE (Cache_Owner_Init = 0x40001974) + 0x40001980 PROVIDE (Cache_Occupy_ICache_MEMORY = 0x40001980) + 0x4000198c PROVIDE (Cache_Occupy_DCache_MEMORY = 0x4000198c) + [!provide] PROVIDE (Cache_MMU_Init = 0x40001998) + [!provide] PROVIDE (Cache_Ibus_MMU_Set = 0x400019a4) + [!provide] PROVIDE (Cache_Dbus_MMU_Set = 0x400019b0) + 0x400019bc PROVIDE (rom_Cache_Count_Flash_Pages = 0x400019bc) + [!provide] PROVIDE (Cache_Flash_To_SPIRAM_Copy = 0x400019c8) + [!provide] PROVIDE (Cache_Travel_Tag_Memory = 0x400019d4) + [!provide] PROVIDE (Cache_Travel_Tag_Memory2 = 0x400019e0) + [!provide] PROVIDE (Cache_Get_Virtual_Addr = 0x400019ec) + [!provide] PROVIDE (Cache_Get_Memory_BaseAddr = 0x400019f8) + [!provide] PROVIDE (Cache_Get_Memory_Addr = 0x40001a04) + [!provide] PROVIDE (Cache_Get_Memory_value = 0x40001a10) + [!provide] PROVIDE (rom_config_instruction_cache_mode = 0x40001a1c) + [!provide] PROVIDE (rom_config_data_cache_mode = 0x40001a28) + [!provide] PROVIDE (rom_cache_op_cb = 0x3fceffc8) + [!provide] PROVIDE (rom_cache_internal_table_ptr = 0x3fceffc4) + 0x40001a34 ets_get_apb_freq = 0x40001a34 + 0x40001a40 ets_get_cpu_frequency = 0x40001a40 + 0x40001a4c ets_update_cpu_frequency = 0x40001a4c + 0x40001a58 ets_get_printf_channel = 0x40001a58 + 0x40001a64 ets_get_xtal_div = 0x40001a64 + 0x40001a70 ets_set_xtal_div = 0x40001a70 + 0x40001a7c ets_get_xtal_freq = 0x40001a7c + 0x40001a88 rom_gpio_input_get = 0x40001a88 + 0x40001a94 rom_gpio_matrix_in = 0x40001a94 + 0x40001aa0 rom_gpio_matrix_out = 0x40001aa0 + 0x40001aac rom_gpio_output_disable = 0x40001aac + 0x40001ab8 rom_gpio_output_enable = 0x40001ab8 + 0x40001ac4 rom_gpio_output_set = 0x40001ac4 + 0x40001ad0 rom_gpio_pad_hold = 0x40001ad0 + 0x40001adc rom_gpio_pad_input_disable = 0x40001adc + 0x40001ae8 rom_gpio_pad_input_enable = 0x40001ae8 + 0x40001af4 rom_gpio_pad_pulldown = 0x40001af4 + 0x40001b00 rom_gpio_pad_pullup = 0x40001b00 + 0x40001b0c rom_gpio_pad_select_gpio = 0x40001b0c + 0x40001b18 rom_gpio_pad_set_drv = 0x40001b18 + 0x40001b24 rom_gpio_pad_unhold = 0x40001b24 + 0x40001b30 rom_gpio_pin_wakeup_disable = 0x40001b30 + 0x40001b3c rom_gpio_pin_wakeup_enable = 0x40001b3c + 0x40001b48 rom_gpio_bypass_matrix_in = 0x40001b48 + 0x40001b54 intr_matrix_set = 0x40001b54 + 0x40001b60 ets_intr_lock = 0x40001b60 + 0x40001b6c ets_intr_unlock = 0x40001b6c + 0x40001b78 ets_isr_attach = 0x40001b78 + 0x40001b84 ets_isr_mask = 0x40001b84 + 0x40001b90 ets_isr_unmask = 0x40001b90 + 0x40001b9c xthal_bcopy = 0x40001b9c + 0x40001ba8 xthal_memcpy = 0x40001ba8 + 0x40001bb4 xthal_get_ccompare = 0x40001bb4 + 0x40001bc0 xthal_set_ccompare = 0x40001bc0 + 0x40001bcc xthal_get_ccount = 0x40001bcc + 0x40001bd8 xthal_get_interrupt = 0x40001bd8 + 0x40001be4 xthal_set_intclear = 0x40001be4 + 0x40001bf0 _xtos_ints_off = 0x40001bf0 + 0x40001bfc _xtos_ints_on = 0x40001bfc + 0x40001c08 _xtos_restore_intlevel = 0x40001c08 + 0x40001c14 _xtos_set_exception_handler = 0x40001c14 + 0x40001c20 _xtos_set_interrupt_handler = 0x40001c20 + 0x40001c2c _xtos_set_interrupt_handler_arg = 0x40001c2c + 0x40001c38 _xtos_set_intlevel = 0x40001c38 + 0x40001c44 _xtos_set_vpri = 0x40001c44 + 0x40001c50 md5_vector = 0x40001c50 + 0x40001c5c MD5Init = 0x40001c5c + 0x40001c68 MD5Update = 0x40001c68 + 0x40001c74 MD5Final = 0x40001c74 + 0x40001c98 crc32_le = 0x40001c98 + 0x40001ca4 crc32_be = 0x40001ca4 + 0x40001cb0 crc16_le = 0x40001cb0 + 0x40001cbc crc16_be = 0x40001cbc + 0x40001cc8 crc8_le = 0x40001cc8 + 0x40001cd4 crc8_be = 0x40001cd4 + 0x40001ce0 esp_crc8 = 0x40001ce0 + 0x40001cec ets_sha_enable = 0x40001cec + 0x40001cf8 ets_sha_disable = 0x40001cf8 + 0x40001d04 ets_sha_get_state = 0x40001d04 + 0x40001d10 ets_sha_init = 0x40001d10 + 0x40001d1c ets_sha_process = 0x40001d1c + 0x40001d28 ets_sha_starts = 0x40001d28 + 0x40001d34 ets_sha_update = 0x40001d34 + 0x40001d40 ets_sha_finish = 0x40001d40 + 0x40001d4c ets_sha_clone = 0x40001d4c + 0x40001d58 ets_hmac_enable = 0x40001d58 + 0x40001d64 ets_hmac_disable = 0x40001d64 + 0x40001d70 ets_hmac_calculate_message = 0x40001d70 + 0x40001d7c ets_hmac_calculate_downstream = 0x40001d7c + 0x40001d88 ets_hmac_invalidate_downstream = 0x40001d88 + 0x40001d94 ets_jtag_enable_temporarily = 0x40001d94 + 0x40001da0 ets_aes_enable = 0x40001da0 + 0x40001dac ets_aes_disable = 0x40001dac + 0x40001db8 ets_aes_setkey = 0x40001db8 + 0x40001dc4 ets_aes_block = 0x40001dc4 + 0x40001dd0 ets_bigint_enable = 0x40001dd0 + 0x40001ddc ets_bigint_disable = 0x40001ddc + 0x40001de8 ets_bigint_multiply = 0x40001de8 + 0x40001df4 ets_bigint_modmult = 0x40001df4 + 0x40001e00 ets_bigint_modexp = 0x40001e00 + 0x40001e0c ets_bigint_wait_finish = 0x40001e0c + 0x40001e18 ets_bigint_getz = 0x40001e18 + 0x40001e24 ets_ds_enable = 0x40001e24 + 0x40001e30 ets_ds_disable = 0x40001e30 + 0x40001e3c ets_ds_start_sign = 0x40001e3c + 0x40001e48 ets_ds_is_busy = 0x40001e48 + 0x40001e54 ets_ds_finish_sign = 0x40001e54 + 0x40001e60 ets_ds_encrypt_params = 0x40001e60 + 0x40001e6c ets_aes_setkey_dec = 0x40001e6c + 0x40001e78 ets_aes_setkey_enc = 0x40001e78 + 0x40001e84 ets_mgf1_sha256 = 0x40001e84 + 0x40001e90 ets_efuse_read = 0x40001e90 + 0x40001e9c ets_efuse_program = 0x40001e9c + 0x40001ea8 ets_efuse_clear_program_registers = 0x40001ea8 + 0x40001eb4 ets_efuse_write_key = 0x40001eb4 + 0x40001ec0 ets_efuse_get_read_register_address = 0x40001ec0 + 0x40001ecc ets_efuse_get_key_purpose = 0x40001ecc + 0x40001ed8 ets_efuse_key_block_unused = 0x40001ed8 + 0x40001ee4 ets_efuse_find_unused_key_block = 0x40001ee4 + 0x40001ef0 ets_efuse_rs_calculate = 0x40001ef0 + 0x40001efc ets_efuse_count_unused_key_blocks = 0x40001efc + 0x40001f08 ets_efuse_secure_boot_enabled = 0x40001f08 + 0x40001f14 ets_efuse_secure_boot_aggressive_revoke_enabled = 0x40001f14 + 0x40001f20 ets_efuse_cache_encryption_enabled = 0x40001f20 + 0x40001f2c ets_efuse_download_modes_disabled = 0x40001f2c + 0x40001f38 ets_efuse_find_purpose = 0x40001f38 + 0x40001f44 ets_efuse_flash_opi_5pads_power_sel_vddspi = 0x40001f44 + 0x40001f50 ets_efuse_force_send_resume = 0x40001f50 + 0x40001f5c ets_efuse_get_flash_delay_us = 0x40001f5c + 0x40001f68 ets_efuse_get_mac = 0x40001f68 + 0x40001f74 ets_efuse_get_spiconfig = 0x40001f74 + 0x40001f80 ets_efuse_usb_print_is_disabled = 0x40001f80 + 0x40001f8c ets_efuse_usb_serial_jtag_print_is_disabled = 0x40001f8c + 0x40001f98 ets_efuse_get_uart_print_control = 0x40001f98 + 0x40001fa4 ets_efuse_get_wp_pad = 0x40001fa4 + 0x40001fb0 ets_efuse_legacy_spi_boot_mode_disabled = 0x40001fb0 + 0x40001fbc ets_efuse_security_download_modes_enabled = 0x40001fbc + 0x40001fc8 ets_efuse_set_timing = 0x40001fc8 + 0x40001fd4 ets_efuse_jtag_disabled = 0x40001fd4 + 0x40001fe0 ets_efuse_usb_download_mode_disabled = 0x40001fe0 + 0x40001fec ets_efuse_usb_module_disabled = 0x40001fec + 0x40001ff8 ets_efuse_usb_device_disabled = 0x40001ff8 + 0x40002004 ets_efuse_flash_octal_mode = 0x40002004 + 0x40002010 ets_efuse_ecc_en = 0x40002010 + 0x4000201c ets_efuse_ecc_flash_page_size = 0x4000201c + 0x40002028 ets_efuse_ecc_16to17_mode = 0x40002028 + 0x40002034 ets_ecc_flash_enable = 0x40002034 + 0x40002040 ets_ecc_flash_enable_all = 0x40002040 + 0x4000204c ets_ecc_flash_disable = 0x4000204c + 0x40002058 ets_ecc_flash_disable_all = 0x40002058 + 0x40002064 ets_ecc_get_flash_page_size = 0x40002064 + 0x40002070 ets_ecc_set_flash_page_size = 0x40002070 + 0x4000207c ets_ecc_set_flash_byte_mode = 0x4000207c + 0x40002088 ets_ecc_get_flash_byte_mode = 0x40002088 + 0x40002094 ets_ecc_set_flash_range = 0x40002094 + 0x400020a0 ets_ecc_get_flash_range = 0x400020a0 + 0x400020ac ets_ecc_sram_enable = 0x400020ac + 0x400020b8 ets_ecc_sram_disable = 0x400020b8 + 0x400020c4 ets_ecc_sram_enable_all = 0x400020c4 + 0x400020d0 ets_ecc_sram_disable_all = 0x400020d0 + 0x400020dc ets_ecc_get_sram_page_size = 0x400020dc + 0x400020e8 ets_ecc_set_sram_page_size = 0x400020e8 + 0x400020f4 ets_ecc_get_sram_byte_mode = 0x400020f4 + 0x40002100 ets_ecc_set_sram_byte_mode = 0x40002100 + 0x4000210c ets_ecc_set_sram_range = 0x4000210c + 0x40002118 ets_ecc_get_sram_range = 0x40002118 + 0x3fceffc0 ets_ecc_table_ptr = 0x3fceffc0 + 0x40002124 ets_emsa_pss_verify = 0x40002124 + 0x40002130 ets_rsa_pss_verify = 0x40002130 + 0x4000213c ets_secure_boot_verify_bootloader_with_keys = 0x4000213c + 0x40002148 ets_secure_boot_verify_signature = 0x40002148 + 0x40002154 ets_secure_boot_read_key_digests = 0x40002154 + 0x40002160 ets_secure_boot_revoke_public_key_digest = 0x40002160 + [!provide] PROVIDE (usb_uart_otg_rx_one_char = 0x400025a4) + [!provide] PROVIDE (usb_uart_otg_rx_one_char_block = 0x400025b0) + [!provide] PROVIDE (usb_uart_otg_tx_flush = 0x400025bc) + [!provide] PROVIDE (usb_uart_otg_tx_one_char = 0x400025c8) + [!provide] PROVIDE (usb_uart_device_rx_one_char = 0x400025d4) + [!provide] PROVIDE (usb_uart_device_rx_one_char_block = 0x400025e0) + [!provide] PROVIDE (usb_uart_device_tx_flush = 0x400025ec) + [!provide] PROVIDE (usb_uart_device_tx_one_char = 0x400025f8) + [!provide] PROVIDE (Uart_Init_USB = 0x40002604) + [!provide] PROVIDE (uart_acm_dev = 0x3fceffbc) + 0x3fceffb9 PROVIDE (g_uart_print = 0x3fceffb9) + 0x3fceffb8 PROVIDE (g_usb_print = 0x3fceffb8) + 0x40002610 cdc_acm_class_handle_req = 0x40002610 + 0x4000261c cdc_acm_init = 0x4000261c + 0x40002628 cdc_acm_fifo_fill = 0x40002628 + 0x40002634 cdc_acm_rx_fifo_cnt = 0x40002634 + 0x40002640 cdc_acm_fifo_read = 0x40002640 + 0x4000264c cdc_acm_irq_tx_enable = 0x4000264c + 0x40002658 cdc_acm_irq_tx_disable = 0x40002658 + 0x40002664 cdc_acm_irq_state_enable = 0x40002664 + 0x40002670 cdc_acm_irq_state_disable = 0x40002670 + 0x4000267c cdc_acm_irq_tx_ready = 0x4000267c + 0x40002688 cdc_acm_irq_rx_enable = 0x40002688 + 0x40002694 cdc_acm_irq_rx_disable = 0x40002694 + 0x400026a0 cdc_acm_irq_rx_ready = 0x400026a0 + 0x400026ac cdc_acm_irq_is_pending = 0x400026ac + 0x400026b8 cdc_acm_irq_callback_set = 0x400026b8 + 0x400026c4 cdc_acm_line_ctrl_set = 0x400026c4 + 0x400026d0 cdc_acm_line_ctrl_get = 0x400026d0 + 0x400026dc cdc_acm_poll_out = 0x400026dc + 0x400026e8 chip_usb_dw_did_persist = 0x400026e8 + 0x400026f4 chip_usb_dw_init = 0x400026f4 + 0x40002700 chip_usb_detach = 0x40002700 + 0x4000270c chip_usb_dw_prepare_persist = 0x4000270c + 0x40002718 chip_usb_get_persist_flags = 0x40002718 + 0x40002724 chip_usb_set_persist_flags = 0x40002724 + 0x40002730 cpio_start = 0x40002730 + 0x4000273c cpio_feed = 0x4000273c + 0x40002748 cpio_done = 0x40002748 + 0x40002754 cpio_destroy = 0x40002754 + 0x40002760 dfu_flash_init = 0x40002760 + 0x4000276c dfu_flash_erase = 0x4000276c + 0x40002778 dfu_flash_program = 0x40002778 + 0x40002784 dfu_flash_read = 0x40002784 + 0x40002790 dfu_flash_attach = 0x40002790 + 0x4000279c dfu_cpio_callback = 0x4000279c + 0x400027a8 dfu_updater_get_err = 0x400027a8 + 0x400027b4 dfu_updater_clear_err = 0x400027b4 + 0x400027c0 dfu_updater_enable = 0x400027c0 + 0x400027cc dfu_updater_begin = 0x400027cc + 0x400027d8 dfu_updater_feed = 0x400027d8 + 0x400027e4 dfu_updater_end = 0x400027e4 + 0x400027f0 dfu_updater_set_raw_addr = 0x400027f0 + 0x400027fc dfu_updater_flash_read = 0x400027fc + 0x40002808 usb_dc_prepare_persist = 0x40002808 + 0x40002814 usb_dw_isr_handler = 0x40002814 + 0x40002820 usb_dc_attach = 0x40002820 + 0x4000282c usb_dc_detach = 0x4000282c + 0x40002838 usb_dc_reset = 0x40002838 + 0x40002844 usb_dc_set_address = 0x40002844 + 0x40002850 usb_dc_ep_check_cap = 0x40002850 + 0x4000285c usb_dc_ep_configure = 0x4000285c + 0x40002868 usb_dc_ep_set_stall = 0x40002868 + 0x40002874 usb_dc_ep_clear_stall = 0x40002874 + 0x40002880 usb_dc_ep_halt = 0x40002880 + 0x4000288c usb_dc_ep_is_stalled = 0x4000288c + 0x40002898 usb_dc_ep_enable = 0x40002898 + 0x400028a4 usb_dc_ep_disable = 0x400028a4 + 0x400028b0 usb_dc_ep_flush = 0x400028b0 + 0x400028bc usb_dc_ep_write_would_block = 0x400028bc + 0x400028c8 usb_dc_ep_write = 0x400028c8 + 0x400028d4 usb_dc_ep_read_wait = 0x400028d4 + 0x400028e0 usb_dc_ep_read_continue = 0x400028e0 + 0x400028ec usb_dc_ep_read = 0x400028ec + 0x400028f8 usb_dc_ep_set_callback = 0x400028f8 + 0x40002904 usb_dc_set_status_callback = 0x40002904 + 0x40002910 usb_dc_ep_mps = 0x40002910 + 0x4000291c usb_dc_check_poll_for_interrupts = 0x4000291c + 0x40002928 mac_addr_to_serial_str_desc = 0x40002928 + 0x40002934 usb_set_current_descriptor = 0x40002934 + 0x40002940 usb_get_descriptor = 0x40002940 + 0x4000294c usb_dev_resume = 0x4000294c + 0x40002958 usb_dev_get_configuration = 0x40002958 + 0x40002964 usb_set_config = 0x40002964 + 0x40002970 usb_deconfig = 0x40002970 + 0x4000297c usb_enable = 0x4000297c + 0x40002988 usb_disable = 0x40002988 + 0x40002994 usb_write_would_block = 0x40002994 + 0x400029a0 usb_write = 0x400029a0 + 0x400029ac usb_read = 0x400029ac + 0x400029b8 usb_ep_set_stall = 0x400029b8 + 0x400029c4 usb_ep_clear_stall = 0x400029c4 + 0x400029d0 usb_ep_read_wait = 0x400029d0 + 0x400029dc usb_ep_read_continue = 0x400029dc + 0x400029e8 usb_transfer_ep_callback = 0x400029e8 + 0x400029f4 usb_transfer = 0x400029f4 + 0x40002a00 usb_cancel_transfer = 0x40002a00 + 0x40002a0c usb_transfer_sync = 0x40002a0c + 0x40002a18 usb_dfu_set_detach_cb = 0x40002a18 + 0x40002a24 dfu_class_handle_req = 0x40002a24 + 0x40002a30 dfu_status_cb = 0x40002a30 + 0x40002a3c dfu_custom_handle_req = 0x40002a3c + 0x40002a48 usb_dfu_init = 0x40002a48 + 0x40002a54 usb_dfu_force_detach = 0x40002a54 + 0x40002a60 usb_dev_deinit = 0x40002a60 + 0x40002a6c usb_dw_ctrl_deinit = 0x40002a6c + 0x3fceffac rom_usb_osglue = 0x3fceffac + 0x3fceffa8 bt_rf_coex_cfg_p = 0x3fceffa8 + 0x3fceffa4 bt_rf_coex_hooks_p = 0x3fceffa4 + 0x3fceffa0 btdm_env_p = 0x3fceffa0 + 0x3fceff9c g_rw_controller_task_handle = 0x3fceff9c + 0x3fceff98 g_rw_init_sem = 0x3fceff98 + 0x3fceff94 g_rw_schd_queue = 0x3fceff94 + 0x3fceff90 lld_init_env = 0x3fceff90 + 0x3fceff8c lld_rpa_renew_env = 0x3fceff8c + 0x3fceff88 lld_scan_env = 0x3fceff88 + 0x3fceff84 lld_scan_sync_env = 0x3fceff84 + 0x3fceff80 lld_test_env = 0x3fceff80 + 0x3fceff7c p_ble_util_buf_env = 0x3fceff7c + 0x3fceff78 p_lld_env = 0x3fceff78 + 0x3fceff74 p_llm_env = 0x3fceff74 + 0x3fceff70 r_h4tl_eif_p = 0x3fceff70 + 0x3fceff6c r_hli_funcs_p = 0x3fceff6c + 0x3fceff68 r_ip_funcs_p = 0x3fceff68 + 0x3fceff64 r_modules_funcs_p = 0x3fceff64 + 0x3fceff60 r_osi_funcs_p = 0x3fceff60 + 0x3fceff5c r_plf_funcs_p = 0x3fceff5c + 0x3fceff58 vhci_env_p = 0x3fceff58 + 0x3fceff54 aa_gen = 0x3fceff54 + 0x3fceff48 aes_env = 0x3fceff48 + 0x3fcefef8 bt_rf_coex_cfg_cb = 0x3fcefef8 + 0x3fcefef4 btdm_pwr_state = 0x3fcefef4 + 0x3fcefef0 btdm_slp_err = 0x3fcefef0 + 0x3fcefee8 ecc_env = 0x3fcefee8 + 0x3fcefee0 esp_handler = 0x3fcefee0 + 0x3fcefed8 esp_vendor_cmd = 0x3fcefed8 + 0x3fcefed4 g_adv_delay_dis = 0x3fcefed4 + 0x3fcefed0 g_conflict_elt = 0x3fcefed0 + 0x3fcefec0 g_eif_api = 0x3fcefec0 + 0x3fcefeb4 g_event_empty = 0x3fcefeb4 + 0x3fcefeaa g_llc_state = 0x3fcefeaa + 0x3fcefea9 g_llm_state = 0x3fcefea9 + 0x3fcefea7 g_max_evt_env = 0x3fcefea7 + 0x3fcefea6 g_misc_state = 0x3fcefea6 + 0x3fcefe8a g_rma_rule_db = 0x3fcefe8a + 0x3fcefe6e g_rtp_rule_db = 0x3fcefe6e + 0x3fcefe6d g_scan_forever = 0x3fcefe6d + 0x3fcefe6c g_time_msb = 0x3fcefe6c + 0x3fcefe44 h4tl_env = 0x3fcefe44 + 0x3fcefe21 hci_env = 0x3fcefe21 + 0x3fcefe20 hci_ext_host = 0x3fcefe20 + 0x3fcefe18 hci_fc_env = 0x3fcefe18 + 0x3fcefdec hci_tl_env = 0x3fcefdec + 0x3fcefdbc ke_env = 0x3fcefdbc + 0x3fcefd7c ke_event_env = 0x3fcefd7c + 0x3fcefd00 ke_task_env = 0x3fcefd00 + 0x3fcefcd8 llc_env = 0x3fcefcd8 + 0x3fcefcb0 lld_adv_env = 0x3fcefcb0 + 0x3fcefc88 lld_con_env = 0x3fcefc88 + 0x3fcefc80 lld_exp_sync_pos_tab = 0x3fcefc80 + 0x3fcefc58 lld_per_adv_env = 0x3fcefc58 + 0x3fcefc30 lld_sync_env = 0x3fcefc30 + 0x3fcefc24 llm_le_adv_flow_env = 0x3fcefc24 + 0x3fcefc20 rw_sleep_enable = 0x3fcefc20 + 0x3fcefc18 rwble_env = 0x3fcefc18 + 0x3fcefbfc rwip_env = 0x3fcefbfc + 0x3fcefbf0 rwip_param = 0x3fcefbf0 + 0x3fcefbec rwip_prog_delay = 0x3fcefbec + 0x3fcefbb4 rwip_rf = 0x3fcefbb4 + 0x3fcefbac sch_alarm_env = 0x3fcefbac + 0x3fcefb98 sch_arb_env = 0x3fcefb98 + 0x3fcefb90 sch_plan_env = 0x3fcefb90 + 0x3fcefa8c sch_prog_env = 0x3fcefa8c + 0x3fcefa2c sch_slice_env = 0x3fcefa2c + 0x3fcefa24 sch_slice_params = 0x3fcefa24 + 0x3fcefa1c timer_env = 0x3fcefa1c + 0x3fcefa18 unloaded_area = 0x3fcefa18 + 0x3fcefa14 vshci_state = 0x3fcefa14 + 0x3fcefa08 TASK_DESC_LLC = 0x3fcefa08 + 0x3fcef9fc TASK_DESC_LLM = 0x3fcef9fc + 0x3fcef9f0 TASK_DESC_VSHCI = 0x3fcef9f0 + 0x3fcef9e8 co_default_bdaddr = 0x3fcef9e8 + 0x3fcef9e4 dbg_assert_block = 0x3fcef9e4 + 0x3fcef9e0 g_bt_plf_log_level = 0x3fcef9e0 + 0x3fcef9bc hci_cmd_desc_tab_vs_esp = 0x3fcef9bc + 0x3fcef9a4 hci_command_handler_tab_esp = 0x3fcef9a4 + 0x3fcef9a0 privacy_en = 0x3fcef9a0 + 0x3fcef958 sdk_cfg_priv_opts = 0x3fcef958 + 0x3ff1ffdc BasePoint_x_256 = 0x3ff1ffdc + 0x3ff1ffbc BasePoint_y_256 = 0x3ff1ffbc + 0x3ff1ff9c DebugE256PublicKey_x = 0x3ff1ff9c + 0x3ff1ff7c DebugE256PublicKey_y = 0x3ff1ff7c + 0x3ff1ff5c DebugE256SecretKey = 0x3ff1ff5c + 0x3ff1f7a0 ECC_4Win_Look_up_table = 0x3ff1f7a0 + 0x3ff1f79a LLM_AA_CT1 = 0x3ff1f79a + 0x3ff1f798 LLM_AA_CT2 = 0x3ff1f798 + 0x3ff1f790 RF_TX_PW_CONV_TBL = 0x3ff1f790 + 0x3ff1f784 TASK_DESC_MISC = 0x3ff1f784 + 0x3ff1f766 adv_evt_prop2type = 0x3ff1f766 + 0x3ff1f761 adv_evt_type2prop = 0x3ff1f761 + 0x3ff1f751 aes_cmac_zero = 0x3ff1f751 + 0x3ff1f741 aes_k2_salt = 0x3ff1f741 + 0x3ff1f73c aes_k3_id64 = 0x3ff1f73c + 0x3ff1f72c aes_k3_salt = 0x3ff1f72c + 0x3ff1f728 aes_k4_id6 = 0x3ff1f728 + 0x3ff1f718 aes_k4_salt = 0x3ff1f718 + 0x3ff1f6ec bigHexP256 = 0x3ff1f6ec + 0x3ff1f6e2 byte_tx_time = 0x3ff1f6e2 + 0x3ff1f6dc co_null_bdaddr = 0x3ff1f6dc + 0x3ff1f6d7 co_phy_mask_to_rate = 0x3ff1f6d7 + 0x3ff1f6d2 co_phy_mask_to_value = 0x3ff1f6d2 + 0x3ff1f6ce co_phy_to_rate = 0x3ff1f6ce + 0x3ff1f6ca co_phy_value_to_mask = 0x3ff1f6ca + 0x3ff1f6c5 co_rate_to_byte_dur_us = 0x3ff1f6c5 + 0x3ff1f6c0 co_rate_to_phy = 0x3ff1f6c0 + 0x3ff1f6bc co_rate_to_phy_mask = 0x3ff1f6bc + 0x3ff1f6ac co_sca2ppm = 0x3ff1f6ac + 0x3ff1f680 coef_B = 0x3ff1f680 + 0x3ff1f678 connect_req_dur_tab = 0x3ff1f678 + 0x3ff1f5f4 ecc_Jacobian_InfinityPoint256 = 0x3ff1f5f4 + 0x3ff1f526 em_base_reg_lut = 0x3ff1f526 + 0x3ff1f51e fixed_tx_time = 0x3ff1f51e + 0x3ff1f518 h4tl_msgtype2hdrlen = 0x3ff1f518 + 0x3ff1f4e8 hci_cmd_desc_root_tab = 0x3ff1f4e8 + 0x3ff1f47c hci_cmd_desc_tab_ctrl_bb = 0x3ff1f47c + 0x3ff1f44c hci_cmd_desc_tab_info_par = 0x3ff1f44c + 0x3ff1f0b0 hci_cmd_desc_tab_le = 0x3ff1f0b0 + 0x3ff1f098 hci_cmd_desc_tab_lk_ctrl = 0x3ff1f098 + 0x3ff1f08c hci_cmd_desc_tab_stat_par = 0x3ff1f08c + 0x3ff1f050 hci_cmd_desc_tab_vs = 0x3ff1f050 + 0x3ff1f008 hci_evt_desc_tab = 0x3ff1f008 + 0x3ff1ef68 hci_evt_le_desc_tab = 0x3ff1ef68 + 0x3ff1ef60 hci_evt_le_desc_tab_esp = 0x3ff1ef60 + 0x3ff1ef57 hci_rsvd_evt_msk = 0x3ff1ef57 + 0x3ff1ef54 lld_aux_phy_to_rate = 0x3ff1ef54 + 0x3ff1ef4c lld_init_max_aux_dur_tab = 0x3ff1ef4c + 0x3ff1ef44 lld_scan_map_legacy_pdu_to_evt_type = 0x3ff1ef44 + 0x3ff1ef3c lld_scan_max_aux_dur_tab = 0x3ff1ef3c + 0x3ff1ef34 lld_sync_max_aux_dur_tab = 0x3ff1ef34 + 0x3ff1ef2c llm_local_le_feats = 0x3ff1ef2c + 0x3ff1ef24 llm_local_le_states = 0x3ff1ef24 + 0x3ff1eefc llm_local_supp_cmds = 0x3ff1eefc + 0x3ff1eedc maxSecretKey_256 = 0x3ff1eedc + 0x3ff1eed4 max_data_tx_time = 0x3ff1eed4 + 0x3ff1eec3 one_bits = 0x3ff1eec3 + 0x3ff1eebe rwip_coex_cfg = 0x3ff1eebe + 0x3ff1eea8 rwip_priority = 0x3ff1eea8 + 0x3ff1ee5c veryBigHexP256 = 0x3ff1ee5c + 0x40005250 esp_pp_rom_version_get = 0x40005250 + 0x4000525c RC_GetBlockAckTime = 0x4000525c + 0x40005268 ebuf_list_remove = 0x40005268 + 0x40005298 GetAccess = 0x40005298 + 0x400052a4 hal_mac_is_low_rate_enabled = 0x400052a4 + 0x400052b0 hal_mac_tx_get_blockack = 0x400052b0 + 0x400052c8 ic_get_trc = 0x400052c8 + 0x400052ec ic_interface_enabled = 0x400052ec + 0x400052f8 is_lmac_idle = 0x400052f8 + 0x40005310 lmacDiscardAgedMSDU = 0x40005310 + 0x40005334 lmacIsIdle = 0x40005334 + 0x40005340 lmacIsLongFrame = 0x40005340 + 0x40005358 lmacPostTxComplete = 0x40005358 + 0x40005364 lmacProcessAllTxTimeout = 0x40005364 + 0x40005370 lmacProcessCollisions = 0x40005370 + 0x4000537c lmacProcessRxSucData = 0x4000537c + 0x40005388 lmacReachLongLimit = 0x40005388 + 0x40005394 lmacReachShortLimit = 0x40005394 + 0x400053a0 lmacRecycleMPDU = 0x400053a0 + 0x400053ac lmacRxDone = 0x400053ac + 0x400053dc mac_tx_set_duration = 0x400053dc + 0x400053f4 mac_tx_set_plcp0 = 0x400053f4 + 0x4000540c mac_tx_set_plcp2 = 0x4000540c + 0x40005424 pm_disable_dream_timer = 0x40005424 + 0x40005430 pm_disable_sleep_delay_timer = 0x40005430 + 0x40005448 pm_mac_wakeup = 0x40005448 + 0x40005454 pm_mac_sleep = 0x40005454 + 0x40005460 pm_enable_active_timer = 0x40005460 + 0x4000546c pm_enable_sleep_delay_timer = 0x4000546c + 0x40005478 pm_local_tsf_process = 0x40005478 + 0x40005484 //pm_set_beacon_filter = 0x40005484 + 0x4000549c pm_is_waked = 0x4000549c + 0x400054c0 pm_on_data_rx = 0x400054c0 + 0x400054cc pm_on_tbtt = 0x400054cc + 0x40005514 pm_sleep_for = 0x40005514 + 0x4000552c ppAMPDU2Normal = 0x4000552c + 0x40005544 ppCalFrameTimes = 0x40005544 + 0x40005550 ppCalSubFrameLength = 0x40005550 + 0x40005568 ppCheckTxAMPDUlength = 0x40005568 + 0x40005574 ppDequeueRxq_Locked = 0x40005574 + 0x40005580 ppDequeueTxQ = 0x40005580 + 0x4000558c ppEmptyDelimiterLength = 0x4000558c + 0x40005598 ppEnqueueRxq = 0x40005598 + 0x400055a4 ppEnqueueTxDone = 0x400055a4 + 0x400055b0 ppGetTxQFirstAvail_Locked = 0x400055b0 + 0x400055bc ppGetTxframe = 0x400055bc + 0x400055e0 ppProcessRxPktHdr = 0x400055e0 + 0x400055f8 ppRecordBarRRC = 0x400055f8 + 0x40005604 lmacRequestTxopQueue = 0x40005604 + 0x40005610 lmacReleaseTxopQueue = 0x40005610 + 0x4000561c ppRecycleAmpdu = 0x4000561c + 0x40005628 ppRecycleRxPkt = 0x40005628 + 0x40005634 ppResortTxAMPDU = 0x40005634 + 0x40005640 ppResumeTxAMPDU = 0x40005640 + 0x40005670 ppSearchTxQueue = 0x40005670 + 0x4000567c ppSearchTxframe = 0x4000567c + 0x40005688 ppSelectNextQueue = 0x40005688 + 0x40005694 ppSubFromAMPDU = 0x40005694 + 0x400056ac ppTxPkt = 0x400056ac + 0x400056b8 ppTxProtoProc = 0x400056b8 + 0x400056c4 ppTxqUpdateBitmap = 0x400056c4 + 0x400056dc pp_hdrsize = 0x400056dc + 0x400056e8 pp_post = 0x400056e8 + 0x400056f4 pp_process_hmac_waiting_txq = 0x400056f4 + 0x40005700 rcGetAmpduSched = 0x40005700 + 0x4000570c rcUpdateRxDone = 0x4000570c + 0x40005718 rc_get_trc = 0x40005718 + 0x40005724 rc_get_trc_by_index = 0x40005724 + 0x40005730 rcAmpduLowerRate = 0x40005730 + 0x4000573c rcampduuprate = 0x4000573c + 0x40005748 rcClearCurAMPDUSched = 0x40005748 + 0x40005754 rcClearCurSched = 0x40005754 + 0x40005760 rcClearCurStat = 0x40005760 + 0x40005778 rcLowerSched = 0x40005778 + 0x40005784 rcSetTxAmpduLimit = 0x40005784 + 0x4000579c rcUpdateAckSnr = 0x4000579c + 0x400057cc rcUpSched = 0x400057cc + 0x400057d8 rssi_margin = 0x400057d8 + 0x400057e4 rx11NRate2AMPDULimit = 0x400057e4 + 0x400057f0 TRC_AMPDU_PER_DOWN_THRESHOLD = 0x400057f0 + 0x400057fc TRC_AMPDU_PER_UP_THRESHOLD = 0x400057fc + 0x40005808 trc_calc_duration = 0x40005808 + 0x40005814 trc_isTxAmpduOperational = 0x40005814 + 0x40005820 trc_onAmpduOp = 0x40005820 + 0x4000582c TRC_PER_IS_GOOD = 0x4000582c + 0x40005838 trc_SetTxAmpduState = 0x40005838 + 0x40005844 trc_tid_isTxAmpduOperational = 0x40005844 + 0x40005850 trcAmpduSetState = 0x40005850 + 0x4000585c wDevCheckBlockError = 0x4000585c + 0x40005874 wDev_DiscardFrame = 0x40005874 + 0x40005880 wDev_GetNoiseFloor = 0x40005880 + 0x4000588c wDev_IndicateAmpdu = 0x4000588c + 0x400058a4 wdev_bank_store = 0x400058a4 + 0x400058b0 wdev_bank_load = 0x400058b0 + 0x400058bc wdev_mac_reg_load = 0x400058bc + 0x400058c8 wdev_mac_reg_store = 0x400058c8 + 0x400058d4 wdev_mac_special_reg_load = 0x400058d4 + 0x400058e0 wdev_mac_special_reg_store = 0x400058e0 + 0x400058ec wdev_mac_wakeup = 0x400058ec + 0x400058f8 wdev_mac_sleep = 0x400058f8 + 0x40005904 hal_mac_is_dma_enable = 0x40005904 + 0x40005928 wdevProcessRxSucDataAll = 0x40005928 + 0x40005934 wdev_csi_len_align = 0x40005934 + 0x40005940 ppDequeueTxDone_Locked = 0x40005940 + 0x40005964 config_is_cache_tx_buf_enabled = 0x40005964 + 0x40005970 //ppMapWaitTxq = 0x40005970 + 0x4000597c ppProcessWaitingQueue = 0x4000597c + 0x40005988 ppDisableQueue = 0x40005988 + 0x40005994 pm_allow_tx = 0x40005994 + 0x400059a0 wdev_is_data_in_rxlist = 0x400059a0 + 0x400059ac ppProcTxCallback = 0x400059ac + 0x3ff1ee58 our_instances_ptr = 0x3ff1ee58 + 0x3fcef954 pTxRx = 0x3fcef954 + 0x3fcef950 lmacConfMib_ptr = 0x3fcef950 + 0x3fcef94c our_wait_eb = 0x3fcef94c + 0x3fcef948 our_tx_eb = 0x3fcef948 + 0x3fcef944 pp_wdev_funcs = 0x3fcef944 + 0x3fcef940 g_osi_funcs_p = 0x3fcef940 + 0x3fcef93c wDevCtrl_ptr = 0x3fcef93c + 0x3ff1ee54 g_wdev_last_desc_reset_ptr = 0x3ff1ee54 + 0x3fcef938 wDevMacSleep_ptr = 0x3fcef938 + 0x3fcef934 g_lmac_cnt_ptr = 0x3fcef934 + 0x3ff1ee50 our_controls_ptr = 0x3ff1ee50 + 0x3fcef930 pp_sig_cnt_ptr = 0x3fcef930 + 0x3fcef92c g_eb_list_desc_ptr = 0x3fcef92c + 0x3fcef928 s_fragment_ptr = 0x3fcef928 + 0x3fcef924 if_ctrl_ptr = 0x3fcef924 + 0x3fcef920 g_intr_lock_mux = 0x3fcef920 + 0x3fcef91c g_wifi_global_lock = 0x3fcef91c + 0x3fcef918 s_wifi_queue = 0x3fcef918 + 0x3fcef914 pp_task_hdl = 0x3fcef914 + 0x3fcef910 s_pp_task_create_sem = 0x3fcef910 + 0x3fcef90c s_pp_task_del_sem = 0x3fcef90c + 0x3fcef908 g_wifi_menuconfig_ptr = 0x3fcef908 + 0x3fcef904 xphyQueue = 0x3fcef904 + 0x3fcef900 ap_no_lr_ptr = 0x3fcef900 + 0x3fcef8fc rc11BSchedTbl_ptr = 0x3fcef8fc + 0x3fcef8f8 rc11NSchedTbl_ptr = 0x3fcef8f8 + 0x3fcef8f4 rcLoRaSchedTbl_ptr = 0x3fcef8f4 + 0x3fcef8f0 BasicOFDMSched_ptr = 0x3fcef8f0 + 0x3fcef8ec trc_ctl_ptr = 0x3fcef8ec + 0x3fcef8e8 g_pm_cnt_ptr = 0x3fcef8e8 + 0x3fcef8e4 g_pm_ptr = 0x3fcef8e4 + 0x3fcef8e0 g_pm_cfg_ptr = 0x3fcef8e0 + 0x3fcef8dc g_esp_mesh_quick_funcs_ptr = 0x3fcef8dc + 0x3fcef8d8 g_txop_queue_status_ptr = 0x3fcef8d8 + 0x3fcef8d4 g_mac_sleep_en_ptr = 0x3fcef8d4 + 0x3fcef8d0 g_mesh_is_root_ptr = 0x3fcef8d0 + 0x3fcef8cc g_mesh_topology_ptr = 0x3fcef8cc + 0x3fcef8c8 g_mesh_init_ps_type_ptr = 0x3fcef8c8 + 0x3fcef8c4 g_mesh_is_started_ptr = 0x3fcef8c4 + 0x3fcef8c0 g_config_func = 0x3fcef8c0 + 0x3fcef8bc g_net80211_tx_func = 0x3fcef8bc + 0x3fcef8b8 g_timer_func = 0x3fcef8b8 + 0x3fcef8b4 s_michael_mic_failure_cb = 0x3fcef8b4 + 0x3fcef8b0 wifi_sta_rx_probe_req = 0x3fcef8b0 + 0x3fcef8ac g_tx_done_cb_func = 0x3fcef8ac + 0x3fcef860 g_per_conn_trc = 0x3fcef860 + 0x3fcef85c s_encap_amsdu_func = 0x3fcef85c + 0x400059b8 esp_net80211_rom_version_get = 0x400059b8 + 0x400059c4 ampdu_dispatch = 0x400059c4 + 0x400059d0 ampdu_dispatch_all = 0x400059d0 + 0x400059dc ampdu_dispatch_as_many_as_possible = 0x400059dc + 0x400059e8 ampdu_dispatch_movement = 0x400059e8 + 0x400059f4 ampdu_dispatch_upto = 0x400059f4 + 0x40005a00 chm_is_at_home_channel = 0x40005a00 + 0x40005a0c cnx_node_is_existing = 0x40005a0c + 0x40005a18 cnx_node_search = 0x40005a18 + 0x40005a24 ic_ebuf_recycle_rx = 0x40005a24 + 0x40005a30 ic_ebuf_recycle_tx = 0x40005a30 + 0x40005a3c ic_reset_rx_ba = 0x40005a3c + 0x40005a48 ieee80211_align_eb = 0x40005a48 + 0x40005a60 ieee80211_ampdu_start_age_timer = 0x40005a60 + 0x40005a78 ieee80211_is_tx_allowed = 0x40005a78 + 0x40005a84 ieee80211_output_pending_eb = 0x40005a84 + 0x40005a9c ieee80211_set_tx_desc = 0x40005a9c + 0x40005ab4 wifi_get_macaddr = 0x40005ab4 + 0x40005ac0 wifi_rf_phy_disable = 0x40005ac0 + 0x40005acc wifi_rf_phy_enable = 0x40005acc + 0x40005ad8 ic_ebuf_alloc = 0x40005ad8 + 0x40005af0 ieee80211_copy_eb_header = 0x40005af0 + 0x40005afc ieee80211_recycle_cache_eb = 0x40005afc + 0x40005b08 ieee80211_search_node = 0x40005b08 + 0x40005b14 roundup2 = 0x40005b14 + 0x40005b20 ieee80211_crypto_encap = 0x40005b20 + 0x40005b44 ieee80211_set_tx_pti = 0x40005b44 + 0x40005b50 wifi_is_started = 0x40005b50 + 0x40005b5c ieee80211_gettid = 0x40005b5c + 0x3fcef858 net80211_funcs = 0x3fcef858 + 0x3fcef854 g_scan = 0x3fcef854 + 0x3fcef850 g_chm = 0x3fcef850 + 0x3fcef84c g_ic_ptr = 0x3fcef84c + 0x3fcef848 g_hmac_cnt_ptr = 0x3fcef848 + 0x3fcef844 g_tx_cacheq_ptr = 0x3fcef844 + 0x3fcef840 s_netstack_free = 0x3fcef840 + 0x3fcef83c mesh_rxcb = 0x3fcef83c + 0x3fcef838 sta_rxcb = 0x3fcef838 + 0x40005b68 esp_coex_rom_version_get = 0x40005b68 + 0x40005b74 coex_bt_release = 0x40005b74 + 0x40005b80 coex_bt_request = 0x40005b80 + 0x40005b8c coex_core_ble_conn_dyn_prio_get = 0x40005b8c + 0x40005ba4 coex_core_pti_get = 0x40005ba4 + 0x40005bb0 coex_core_release = 0x40005bb0 + 0x40005bbc coex_core_request = 0x40005bbc + 0x40005bc8 coex_core_status_get = 0x40005bc8 + 0x40005be0 coex_event_duration_get = 0x40005be0 + 0x40005bec coex_hw_timer_disable = 0x40005bec + 0x40005bf8 coex_hw_timer_enable = 0x40005bf8 + 0x40005c04 coex_hw_timer_set = 0x40005c04 + 0x40005c10 coex_schm_interval_set = 0x40005c10 + 0x40005c1c coex_schm_lock = 0x40005c1c + 0x40005c28 coex_schm_unlock = 0x40005c28 + 0x40005c40 coex_wifi_release = 0x40005c40 + 0x40005c4c esp_coex_ble_conn_dynamic_prio_get = 0x40005c4c + 0x3fcef834 coex_env_ptr = 0x3fcef834 + 0x3fcef830 coex_pti_tab_ptr = 0x3fcef830 + 0x3fcef82c coex_schm_env_ptr = 0x3fcef82c + 0x3fcef828 coexist_funcs = 0x3fcef828 + 0x3fcef824 g_coa_funcs_p = 0x3fcef824 + 0x3fcef820 g_coex_param_ptr = 0x3fcef820 + 0x40005c58 phy_get_romfuncs = 0x40005c58 + 0x40005c64 rom_abs_temp = 0x40005c64 + 0x40005c70 rom_bb_bss_cbw40_dig = 0x40005c70 + 0x40005c7c rom_bb_wdg_test_en = 0x40005c7c + 0x40005c88 rom_bb_wdt_get_status = 0x40005c88 + 0x40005c94 rom_bb_wdt_int_enable = 0x40005c94 + 0x40005ca0 rom_bb_wdt_rst_enable = 0x40005ca0 + 0x40005cac rom_bb_wdt_timeout_clear = 0x40005cac + 0x40005cb8 rom_cbw2040_cfg = 0x40005cb8 + 0x40005cc4 rom_check_noise_floor = 0x40005cc4 + 0x40005cd0 rom_chip_i2c_readReg = 0x40005cd0 + 0x40005cdc rom_chip_i2c_writeReg = 0x40005cdc + 0x40005ce8 rom_dc_iq_est = 0x40005ce8 + 0x40005cf4 rom_disable_agc = 0x40005cf4 + 0x40005d00 rom_en_pwdet = 0x40005d00 + 0x40005d0c rom_enable_agc = 0x40005d0c + 0x40005d18 rom_get_bbgain_db = 0x40005d18 + 0x40005d24 rom_get_data_sat = 0x40005d24 + 0x40005d30 rom_get_i2c_read_mask = 0x40005d30 + 0x40005d3c rom_get_pwctrl_correct = 0x40005d3c + 0x40005d48 rom_i2c_readReg = 0x40005d48 + 0x40005d54 rom_i2c_readReg_Mask = 0x40005d54 + 0x40005d60 rom_i2c_writeReg = 0x40005d60 + 0x40005d6c rom_i2c_writeReg_Mask = 0x40005d6c + 0x40005d78 rom_index_to_txbbgain = 0x40005d78 + 0x40005d84 rom_iq_est_disable = 0x40005d84 + 0x40005d90 rom_iq_est_enable = 0x40005d90 + 0x40005d9c rom_linear_to_db = 0x40005d9c + 0x40005da8 rom_loopback_mode_en = 0x40005da8 + 0x40005db4 rom_mhz2ieee = 0x40005db4 + 0x40005dc0 rom_noise_floor_auto_set = 0x40005dc0 + 0x40005dcc rom_pbus_debugmode = 0x40005dcc + 0x40005dd8 rom_pbus_force_mode = 0x40005dd8 + 0x40005de4 rom_pbus_force_test = 0x40005de4 + 0x40005df0 rom_pbus_rd = 0x40005df0 + 0x40005dfc rom_pbus_rd_addr = 0x40005dfc + 0x40005e08 rom_pbus_rd_shift = 0x40005e08 + 0x40005e14 rom_pbus_set_dco = 0x40005e14 + 0x40005e20 rom_pbus_set_rxgain = 0x40005e20 + 0x40005e2c rom_pbus_workmode = 0x40005e2c + 0x40005e38 rom_pbus_xpd_rx_off = 0x40005e38 + 0x40005e44 rom_pbus_xpd_rx_on = 0x40005e44 + 0x40005e50 rom_pbus_xpd_tx_off = 0x40005e50 + 0x40005e5c rom_pbus_xpd_tx_on = 0x40005e5c + 0x40005e68 rom_phy_byte_to_word = 0x40005e68 + 0x40005e74 rom_phy_disable_cca = 0x40005e74 + 0x40005e80 rom_phy_enable_cca = 0x40005e80 + 0x40005e8c rom_phy_get_noisefloor = 0x40005e8c + 0x40005e98 rom_phy_get_rx_freq = 0x40005e98 + 0x40005ea4 rom_phy_set_bbfreq_init = 0x40005ea4 + 0x40005eb0 rom_pow_usr = 0x40005eb0 + 0x40005ebc rom_pwdet_sar2_init = 0x40005ebc + 0x40005ec8 rom_read_hw_noisefloor = 0x40005ec8 + 0x40005ed4 rom_read_sar_dout = 0x40005ed4 + 0x40005ee0 rom_set_cal_rxdc = 0x40005ee0 + 0x40005eec rom_set_chan_cal_interp = 0x40005eec + 0x40005ef8 rom_set_loopback_gain = 0x40005ef8 + 0x40005f04 rom_set_noise_floor = 0x40005f04 + 0x40005f10 rom_set_rxclk_en = 0x40005f10 + 0x40005f1c rom_set_tx_dig_gain = 0x40005f1c + 0x40005f28 rom_set_txcap_reg = 0x40005f28 + 0x40005f34 rom_set_txclk_en = 0x40005f34 + 0x40005f40 rom_spur_cal = 0x40005f40 + 0x40005f4c rom_spur_reg_write_one_tone = 0x40005f4c + 0x40005f58 rom_target_power_add_backoff = 0x40005f58 + 0x40005f64 rom_tx_pwctrl_bg_init = 0x40005f64 + 0x40005f70 rom_txbbgain_to_index = 0x40005f70 + 0x40005f7c rom_wifi_11g_rate_chg = 0x40005f7c + 0x40005f88 rom_write_gain_mem = 0x40005f88 + 0x40005f94 chip728_phyrom_version = 0x40005f94 + 0x40005fa0 rom_disable_wifi_agc = 0x40005fa0 + 0x40005fac rom_enable_wifi_agc = 0x40005fac + 0x40005fb8 rom_bt_index_to_bb = 0x40005fb8 + 0x40005fc4 rom_bt_bb_to_index = 0x40005fc4 + 0x40005fd0 rom_spur_coef_cfg = 0x40005fd0 + 0x40005fdc rom_bb_bss_cbw40 = 0x40005fdc + 0x40005fe8 rom_set_cca = 0x40005fe8 + 0x40005ff4 rom_tx_paon_set = 0x40005ff4 + 0x40006000 rom_i2cmst_reg_init = 0x40006000 + 0x4000600c rom_iq_corr_enable = 0x4000600c + 0x40006018 rom_fe_reg_init = 0x40006018 + 0x40006024 rom_agc_reg_init = 0x40006024 + 0x40006030 rom_bb_reg_init = 0x40006030 + 0x4000603c rom_mac_enable_bb = 0x4000603c + 0x40006048 rom_bb_wdg_cfg = 0x40006048 + 0x40006054 rom_force_txon = 0x40006054 + 0x40006060 rom_fe_txrx_reset = 0x40006060 + 0x4000606c rom_set_rx_comp = 0x4000606c + 0x40006078 rom_set_pbus_reg = 0x40006078 + 0x40006084 rom_write_chan_freq = 0x40006084 + 0x40006090 rom_phy_xpd_rf = 0x40006090 + 0x4000609c rom_set_xpd_sar = 0x4000609c + 0x400060a8 rom_get_target_power_offset = 0x400060a8 + 0x400060b4 rom_write_txrate_power_offset = 0x400060b4 + 0x400060c0 rom_get_rate_fcc_index = 0x400060c0 + 0x400060cc rom_get_rate_target_power = 0x400060cc + 0x400060d8 rom_pkdet_vol_start = 0x400060d8 + 0x400060e4 rom_read_sar2_code = 0x400060e4 + 0x400060f0 rom_get_sar2_vol = 0x400060f0 + 0x400060fc rom_get_pll_vol = 0x400060fc + 0x40006108 rom_get_phy_target_power = 0x40006108 + 0x40006114 rom_temp_to_power = 0x40006114 + 0x40006120 rom_phy_track_pll_cap = 0x40006120 + 0x4000612c rom_phy_pwdet_always_en = 0x4000612c + 0x40006138 rom_phy_pwdet_onetime_en = 0x40006138 + 0x40006144 rom_get_i2c_mst0_mask = 0x40006144 + 0x40006150 rom_get_i2c_hostid = 0x40006150 + 0x4000615c rom_enter_critical_phy = 0x4000615c + 0x40006168 rom_exit_critical_phy = 0x40006168 + 0x40006174 rom_chip_i2c_readReg_org = 0x40006174 + 0x40006180 rom_i2c_paral_set_mst0 = 0x40006180 + 0x4000618c rom_i2c_paral_set_read = 0x4000618c + 0x40006198 rom_i2c_paral_read = 0x40006198 + 0x400061a4 rom_i2c_paral_write = 0x400061a4 + 0x400061b0 rom_i2c_paral_write_num = 0x400061b0 + 0x400061bc rom_i2c_paral_write_mask = 0x400061bc + 0x400061c8 rom_bb_bss_cbw40_ana = 0x400061c8 + 0x400061d4 rom_chan_to_freq = 0x400061d4 + 0x400061e0 rom_open_i2c_xpd = 0x400061e0 + 0x400061ec rom_dac_rate_set = 0x400061ec + 0x400061f8 rom_tsens_read_init = 0x400061f8 + 0x40006204 rom_tsens_code_read = 0x40006204 + 0x40006210 rom_tsens_index_to_dac = 0x40006210 + 0x4000621c rom_tsens_index_to_offset = 0x4000621c + 0x40006228 rom_tsens_dac_cal = 0x40006228 + 0x40006234 rom_code_to_temp = 0x40006234 + 0x40006240 rom_write_pll_cap_mem = 0x40006240 + 0x4000624c rom_pll_correct_dcap = 0x4000624c + 0x40006258 rom_phy_en_hw_set_freq = 0x40006258 + 0x40006264 rom_phy_dis_hw_set_freq = 0x40006264 + 0x40006270 rom_pll_vol_cal = 0x40006270 + 0x4000627c rom_wrtie_pll_cap = 0x4000627c + 0x40006288 rom_set_tx_gain_mem = 0x40006288 + 0x40006294 rom_bt_tx_dig_gain = 0x40006294 + 0x400062a0 rom_bt_get_tx_gain = 0x400062a0 + 0x400062ac rom_get_chan_target_power = 0x400062ac + 0x400062b8 rom_get_tx_gain_value = 0x400062b8 + 0x400062c4 rom_wifi_tx_dig_gain = 0x400062c4 + 0x400062d0 rom_wifi_get_tx_gain = 0x400062d0 + 0x400062dc rom_fe_i2c_reg_renew = 0x400062dc + 0x400062e8 rom_wifi_agc_sat_gain = 0x400062e8 + 0x400062f4 rom_i2c_master_reset = 0x400062f4 + 0x40006300 rom_bt_filter_reg = 0x40006300 + 0x4000630c rom_phy_bbpll_cal = 0x4000630c + 0x40006318 rom_i2c_sar2_init_code = 0x40006318 + 0x40006324 rom_phy_param_addr = 0x40006324 + 0x40006330 rom_phy_reg_init = 0x40006330 + 0x4000633c rom_set_chan_reg = 0x4000633c + 0x40006348 rom_phy_wakeup_init = 0x40006348 + 0x40006354 rom_phy_i2c_init1 = 0x40006354 + 0x40006360 rom_tsens_temp_read = 0x40006360 + 0x4000636c rom_bt_track_pll_cap = 0x4000636c + 0x40006378 rom_wifi_track_pll_cap = 0x40006378 + 0x40006384 rom_wifi_set_tx_gain = 0x40006384 + 0x40006390 rom_txpwr_cal_track = 0x40006390 + 0x4000639c rom_tx_pwctrl_background = 0x4000639c + 0x400063a8 rom_bt_set_tx_gain = 0x400063a8 + 0x400063b4 rom_noise_check_loop = 0x400063b4 + 0x400063c0 rom_phy_close_rf = 0x400063c0 + 0x400063cc rom_phy_xpd_tsens = 0x400063cc + 0x400063d8 rom_phy_freq_mem_backup = 0x400063d8 + 0x400063e4 rom_phy_ant_init = 0x400063e4 + 0x400063f0 rom_bt_track_tx_power = 0x400063f0 + 0x400063fc rom_wifi_track_tx_power = 0x400063fc + 0x40006408 rom_phy_dig_reg_backup = 0x40006408 + 0x40006414 chip728_phyrom_version_num = 0x40006414 + 0x40006420 rom_mac_tx_chan_offset = 0x40006420 + 0x4000642c rom_rx_gain_force = 0x4000642c + 0x3fcef81c phy_param_rom = 0x3fcef81c + [!provide] PROVIDE (esp_rom_crc32_le = crc32_le) + [!provide] PROVIDE (esp_rom_crc16_le = crc16_le) + [!provide] PROVIDE (esp_rom_crc8_le = crc8_le) + [!provide] PROVIDE (esp_rom_crc32_be = crc32_be) + [!provide] PROVIDE (esp_rom_crc16_be = crc16_be) + [!provide] PROVIDE (esp_rom_crc8_be = crc8_be) + [!provide] PROVIDE (esp_rom_gpio_pad_select_gpio = rom_gpio_pad_select_gpio) + [!provide] PROVIDE (esp_rom_gpio_pad_pullup_only = rom_gpio_pad_pullup) + 0x40001b18 PROVIDE (esp_rom_gpio_pad_set_drv = rom_gpio_pad_set_drv) + [!provide] PROVIDE (esp_rom_gpio_pad_unhold = rom_gpio_pad_unhold) + 0x40001a94 PROVIDE (esp_rom_gpio_connect_in_signal = rom_gpio_matrix_in) + 0x40001aa0 PROVIDE (esp_rom_gpio_connect_out_signal = rom_gpio_matrix_out) + [!provide] PROVIDE (esp_rom_efuse_mac_address_crc8 = esp_crc8) + 0x40001f74 PROVIDE (esp_rom_efuse_get_flash_gpio_info = ets_efuse_get_spiconfig) + 0x40001fa4 PROVIDE (esp_rom_efuse_get_flash_wp_gpio = ets_efuse_get_wp_pad) + [!provide] PROVIDE (esp_rom_efuse_is_secure_boot_enabled = ets_efuse_secure_boot_enabled) + [!provide] PROVIDE (esp_rom_uart_flush_tx = uart_tx_flush) + [!provide] PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char) + [!provide] PROVIDE (esp_rom_uart_tx_wait_idle = uart_tx_wait_idle) + [!provide] PROVIDE (esp_rom_uart_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_uart_rx_string = UartRxString) + [!provide] PROVIDE (esp_rom_uart_set_as_console = uart_tx_switch) + [!provide] PROVIDE (esp_rom_uart_usb_acm_init = Uart_Init_USB) + [!provide] PROVIDE (esp_rom_uart_putc = ets_write_char_uart) + [!provide] PROVIDE (esp_rom_output_flush_tx = uart_tx_flush) + 0x40000648 PROVIDE (esp_rom_output_tx_one_char = uart_tx_one_char) + 0x4000069c PROVIDE (esp_rom_output_tx_wait_idle = uart_tx_wait_idle) + [!provide] PROVIDE (esp_rom_output_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_output_rx_string = UartRxString) + 0x400006c0 PROVIDE (esp_rom_output_set_as_console = uart_tx_switch) + [!provide] PROVIDE (esp_rom_output_usb_acm_init = Uart_Init_USB) + 0x400006b4 PROVIDE (esp_rom_output_putc = ets_write_char_uart) + [!provide] PROVIDE (esp_rom_md5_init = MD5Init) + [!provide] PROVIDE (esp_rom_md5_update = MD5Update) + [!provide] PROVIDE (esp_rom_md5_final = MD5Final) + 0x400006d8 PROVIDE (esp_rom_software_reset_system = software_reset) + 0x400006e4 PROVIDE (esp_rom_software_reset_cpu = software_reset_cpu) + 0x400005d0 PROVIDE (esp_rom_printf = ets_printf) + 0x40000600 PROVIDE (esp_rom_delay_us = ets_delay_us) + [!provide] PROVIDE (esp_rom_install_uart_printf = ets_install_uart_printf) + 0x4000057c PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason) + 0x40001b54 PROVIDE (esp_rom_route_intr_matrix = intr_matrix_set) + 0x40001a40 PROVIDE (esp_rom_get_cpu_ticks_per_us = ets_get_cpu_frequency) + 0x40001a4c PROVIDE (esp_rom_set_cpu_ticks_per_us = ets_update_cpu_frequency) + [!provide] PROVIDE (esp_rom_spiflash_attach = spi_flash_attach) + [!provide] PROVIDE (esp_rom_spiflash_clear_bp = esp_rom_spiflash_unlock) + 0x40000a44 PROVIDE (esp_rom_spiflash_write_enable = SPI_write_enable) + [!provide] PROVIDE (esp_rom_spiflash_erase_area = SPIEraseArea) + [!provide] PROVIDE (esp_rom_spiflash_fix_dummylen = spi_dummy_len_fix) + [!provide] PROVIDE (esp_rom_spiflash_set_drvs = SetSpiDrvs) + [!provide] PROVIDE (esp_rom_spiflash_select_padsfunc = SelectSpiFunction) + [!provide] PROVIDE (esp_rom_spiflash_common_cmd = SPI_Common_Command) + 0x40005d48 PROVIDE (esp_rom_regi2c_read = rom_i2c_readReg) + 0x40005d54 PROVIDE (esp_rom_regi2c_read_mask = rom_i2c_readReg_Mask) + 0x40005d60 PROVIDE (esp_rom_regi2c_write = rom_i2c_writeReg) + 0x40005d6c PROVIDE (esp_rom_regi2c_write_mask = rom_i2c_writeReg_Mask) + 0x4000216c __absvdi2 = 0x4000216c + 0x40002178 __absvsi2 = 0x40002178 + 0x40002184 __adddf3 = 0x40002184 + 0x40002190 __addsf3 = 0x40002190 + 0x4000219c __addvdi3 = 0x4000219c + 0x400021a8 __addvsi3 = 0x400021a8 + 0x400021b4 __ashldi3 = 0x400021b4 + 0x400021c0 __ashrdi3 = 0x400021c0 + 0x400021cc __bswapdi2 = 0x400021cc + 0x400021d8 __bswapsi2 = 0x400021d8 + 0x400021e4 __clear_cache = 0x400021e4 + 0x400021f0 __clrsbdi2 = 0x400021f0 + 0x400021fc __clrsbsi2 = 0x400021fc + 0x40002208 __clzdi2 = 0x40002208 + 0x40002214 __clzsi2 = 0x40002214 + 0x40002220 __cmpdi2 = 0x40002220 + 0x4000222c __ctzdi2 = 0x4000222c + 0x40002238 __ctzsi2 = 0x40002238 + 0x40002244 __divdc3 = 0x40002244 + 0x40002250 __divdf3 = 0x40002250 + 0x4000225c __divdi3 = 0x4000225c + 0x40002268 __divsc3 = 0x40002268 + 0x40002274 __divsf3 = 0x40002274 + 0x40002280 __divsi3 = 0x40002280 + 0x4000228c __eqdf2 = 0x4000228c + 0x40002298 __eqsf2 = 0x40002298 + 0x400022a4 __extendsfdf2 = 0x400022a4 + 0x400022b0 __ffsdi2 = 0x400022b0 + 0x400022bc __ffssi2 = 0x400022bc + 0x400022c8 __fixdfdi = 0x400022c8 + 0x400022d4 __fixdfsi = 0x400022d4 + 0x400022e0 __fixsfdi = 0x400022e0 + 0x400022ec __fixsfsi = 0x400022ec + 0x400022f8 __fixunsdfsi = 0x400022f8 + 0x40002304 __fixunssfdi = 0x40002304 + 0x40002310 __fixunssfsi = 0x40002310 + 0x4000231c __floatdidf = 0x4000231c + 0x40002328 __floatdisf = 0x40002328 + 0x40002334 __floatsidf = 0x40002334 + 0x40002340 __floatsisf = 0x40002340 + 0x4000234c __floatundidf = 0x4000234c + 0x40002358 __floatundisf = 0x40002358 + 0x40002364 __floatunsidf = 0x40002364 + 0x40002370 __floatunsisf = 0x40002370 + 0x4000237c __gcc_bcmp = 0x4000237c + 0x40002388 __gedf2 = 0x40002388 + 0x40002394 __gesf2 = 0x40002394 + 0x400023a0 __gtdf2 = 0x400023a0 + 0x400023ac __gtsf2 = 0x400023ac + 0x400023b8 __ledf2 = 0x400023b8 + 0x400023c4 __lesf2 = 0x400023c4 + 0x400023d0 __lshrdi3 = 0x400023d0 + 0x400023dc __ltdf2 = 0x400023dc + 0x400023e8 __ltsf2 = 0x400023e8 + 0x400023f4 __moddi3 = 0x400023f4 + 0x40002400 __modsi3 = 0x40002400 + 0x4000240c __muldc3 = 0x4000240c + 0x40002418 __muldf3 = 0x40002418 + 0x40002424 __muldi3 = 0x40002424 + 0x40002430 __mulsc3 = 0x40002430 + 0x4000243c __mulsf3 = 0x4000243c + 0x40002448 __mulsi3 = 0x40002448 + 0x40002454 __mulvdi3 = 0x40002454 + 0x40002460 __mulvsi3 = 0x40002460 + 0x4000246c __nedf2 = 0x4000246c + 0x40002478 __negdf2 = 0x40002478 + 0x40002484 __negdi2 = 0x40002484 + 0x40002490 __negsf2 = 0x40002490 + 0x4000249c __negvdi2 = 0x4000249c + 0x400024a8 __negvsi2 = 0x400024a8 + 0x400024b4 __nesf2 = 0x400024b4 + 0x400024c0 __paritysi2 = 0x400024c0 + 0x400024cc __popcountdi2 = 0x400024cc + 0x400024d8 __popcountsi2 = 0x400024d8 + 0x400024e4 __powidf2 = 0x400024e4 + 0x400024f0 __powisf2 = 0x400024f0 + 0x400024fc __subdf3 = 0x400024fc + 0x40002508 __subsf3 = 0x40002508 + 0x40002514 __subvdi3 = 0x40002514 + 0x40002520 __subvsi3 = 0x40002520 + 0x4000252c __truncdfsf2 = 0x4000252c + 0x40002538 __ucmpdi2 = 0x40002538 + 0x40002544 __udivdi3 = 0x40002544 + 0x40002550 __udivmoddi4 = 0x40002550 + 0x4000255c __udivsi3 = 0x4000255c + 0x40002568 __udiv_w_sdiv = 0x40002568 + 0x40002574 __umoddi3 = 0x40002574 + 0x40002580 __umodsi3 = 0x40002580 + 0x4000258c __unorddf2 = 0x4000258c + 0x40002598 __unordsf2 = 0x40002598 + [!provide] PROVIDE (atoi = 0x400014d0) + [!provide] PROVIDE (atol = 0x400014dc) + [!provide] PROVIDE (strdup = 0x40001380) + [!provide] PROVIDE (strndup = 0x400013ec) + [!provide] PROVIDE (rand_r = 0x40001494) + [!provide] PROVIDE (rand = 0x400014a0) + [!provide] PROVIDE (srand = 0x400014ac) + [!provide] PROVIDE (strtol = 0x400014e8) + [!provide] PROVIDE (strtoul = 0x400014f4) + [!provide] PROVIDE (longjmp = 0x40001440) + [!provide] PROVIDE (setjmp = 0x4000144c) + [!provide] PROVIDE (fflush = 0x40001500) + [!provide] PROVIDE (_fflush_r = 0x4000150c) + [!provide] PROVIDE (_fwalk = 0x40001518) + [!provide] PROVIDE (_fwalk_reent = 0x40001524) + [!provide] PROVIDE (__swbuf_r = 0x40001548) + 0x40001554 __swbuf = 0x40001554 + 0x40001314 toupper = 0x40001314 + 0x40001320 tolower = 0x40001320 + 0x40001284 isalnum = 0x40001284 + 0x40001290 isalpha = 0x40001290 + 0x400012c0 isdigit = 0x400012c0 + 0x400012cc islower = 0x400012cc + 0x400012fc isspace = 0x400012fc + 0x40001308 isupper = 0x40001308 + 0x4000135c strcasecmp = 0x4000135c + 0x400013a4 strcoll = 0x400013a4 + 0x400013c8 strlwr = 0x400013c8 + 0x400013d4 strncasecmp = 0x400013d4 + 0x40001434 strupr = 0x40001434 + 0x40001c80 hmac_md5_vector = 0x40001c80 + 0x40001c8c hmac_md5 = 0x40001c8c + 0x40000570 _rom_chip_id = 0x40000570 + 0x40000574 _rom_eco_version = 0x40000574 + 0x400011dc esp_rom_newlib_init_common_mutexes = 0x400011dc + 0x400011e8 memset = 0x400011e8 + 0x400011f4 memcpy = 0x400011f4 + 0x40001200 memmove = 0x40001200 + 0x4000120c memcmp = 0x4000120c + 0x40001218 strcpy = 0x40001218 + 0x40001224 strncpy = 0x40001224 + 0x40001230 strcmp = 0x40001230 + 0x4000123c strncmp = 0x4000123c + 0x40001248 strlen = 0x40001248 + 0x40001254 strstr = 0x40001254 + 0x40001260 bzero = 0x40001260 + 0x40001278 sbrk = 0x40001278 + 0x4000129c isascii = 0x4000129c + 0x400012a8 isblank = 0x400012a8 + 0x400012b4 iscntrl = 0x400012b4 + 0x400012d8 isgraph = 0x400012d8 + 0x400012e4 isprint = 0x400012e4 + 0x400012f0 ispunct = 0x400012f0 + 0x4000132c toascii = 0x4000132c + 0x40001338 memccpy = 0x40001338 + 0x40001344 memchr = 0x40001344 + 0x40001350 memrchr = 0x40001350 + 0x40001368 strcasestr = 0x40001368 + 0x40001374 strcat = 0x40001374 + 0x4000138c strchr = 0x4000138c + 0x40001398 strcspn = 0x40001398 + 0x400013b0 strlcat = 0x400013b0 + 0x400013bc strlcpy = 0x400013bc + 0x400013e0 strncat = 0x400013e0 + 0x400013f8 strnlen = 0x400013f8 + 0x40001404 strrchr = 0x40001404 + 0x40001410 strsep = 0x40001410 + 0x4000141c strspn = 0x4000141c + 0x40001428 strtok_r = 0x40001428 + 0x40001440 longjmp = 0x40001440 + 0x4000144c setjmp = 0x4000144c + 0x40001458 abs = 0x40001458 + 0x40001464 div = 0x40001464 + 0x40001470 labs = 0x40001470 + 0x4000147c ldiv = 0x4000147c + 0x40001488 qsort = 0x40001488 + 0x40001494 rand_r = 0x40001494 + 0x400014b8 utoa = 0x400014b8 + 0x400014c4 itoa = 0x400014c4 + 0x3fceffd4 syscall_table_ptr = 0x3fceffd4 + 0x3fceffd0 _global_impure_ptr = 0x3fceffd0 + 0x60000000 PROVIDE (UART0 = 0x60000000) + 0x60002000 PROVIDE (SPIMEM1 = 0x60002000) + 0x60003000 PROVIDE (SPIMEM0 = 0x60003000) + 0x60004000 PROVIDE (GPIO = 0x60004000) + [!provide] PROVIDE (SDM = 0x60004f00) + 0x60007000 PROVIDE (EFUSE = 0x60007000) + 0x60008000 PROVIDE (RTCCNTL = 0x60008000) + 0x60008400 PROVIDE (RTCIO = 0x60008400) + 0x60008800 PROVIDE (SENS = 0x60008800) + [!provide] PROVIDE (RTC_I2C = 0x60008c00) + [!provide] PROVIDE (HINF = 0x6000b000) + [!provide] PROVIDE (I2S0 = 0x6000f000) + [!provide] PROVIDE (I2S1 = 0x6002d000) + 0x60010000 PROVIDE (UART1 = 0x60010000) + [!provide] PROVIDE (I2C0 = 0x60013000) + [!provide] PROVIDE (UHCI0 = 0x60014000) + [!provide] PROVIDE (HOST = 0x60015000) + [!provide] PROVIDE (RMT = 0x60016000) + [!provide] PROVIDE (RMTMEM = 0x60016800) + [!provide] PROVIDE (PCNT = 0x60017000) + [!provide] PROVIDE (SLC = 0x60018000) + [!provide] PROVIDE (LEDC = 0x60019000) + [!provide] PROVIDE (MCPWM0 = 0x6001e000) + [!provide] PROVIDE (MCPWM1 = 0x6002c000) + [!provide] PROVIDE (MCP = 0x600c3000) + 0x6001f000 PROVIDE (TIMERG0 = 0x6001f000) + 0x60020000 PROVIDE (TIMERG1 = 0x60020000) + 0x60023000 PROVIDE (SYSTIMER = 0x60023000) + 0x60024000 PROVIDE (GPSPI2 = 0x60024000) + 0x60025000 PROVIDE (GPSPI3 = 0x60025000) + [!provide] PROVIDE (SYSCON = 0x60026000) + [!provide] PROVIDE (I2C1 = 0x60027000) + [!provide] PROVIDE (SDMMC = 0x60028000) + [!provide] PROVIDE (TWAI = 0x6002b000) + 0x6003f000 PROVIDE (GDMA = 0x6003f000) + 0x6002e000 PROVIDE (UART2 = 0x6002e000) + [!provide] PROVIDE (DMA = 0x6003f000) + 0x60040000 PROVIDE (APB_SARADC = 0x60040000) + [!provide] PROVIDE (LCD_CAM = 0x60041000) + 0x60038000 PROVIDE (USB_SERIAL_JTAG = 0x60038000) + [!provide] PROVIDE (USB0 = 0x60080000) + [!provide] PROVIDE (USB_DWC = 0x60080000) + [!provide] PROVIDE (USB_WRAP = 0x60039000) + [!provide] PROVIDE (WORLD_CONTROLLER = 0x600d0000) + 0x600c0000 PROVIDE (SYSTEM = 0x600c0000) +OUTPUT(zephyr/zephyr.elf elf32-xtensa-le) diff --git a/build/zephyr/zephyr_pre0.elf b/build/zephyr/zephyr_pre0.elf new file mode 100755 index 0000000..13a17ac Binary files /dev/null and b/build/zephyr/zephyr_pre0.elf differ diff --git a/build/zephyr/zephyr_pre0.map b/build/zephyr/zephyr_pre0.map new file mode 100644 index 0000000..aed3d2d --- /dev/null +++ b/build/zephyr/zephyr_pre0.map @@ -0,0 +1,18616 @@ +Archive member included to satisfy reference by file (symbol) + +app/libapp.a(main.c.obj) (--whole-archive) +app/libapp.a(kiss.c.obj) (--whole-archive) +app/libapp.a(lora_modem.c.obj) + (--whole-archive) +zephyr/libzephyr.a(validate_libc.c.obj) + (--whole-archive) +zephyr/libzephyr.a(heap.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cbprintf_packaged.c.obj) + (--whole-archive) +zephyr/libzephyr.a(clock.c.obj) + (--whole-archive) +zephyr/libzephyr.a(printk.c.obj) + (--whole-archive) +zephyr/libzephyr.a(sem.c.obj) + (--whole-archive) +zephyr/libzephyr.a(thread_entry.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cbprintf_complete.c.obj) + (--whole-archive) +zephyr/libzephyr.a(assert.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mpsc_pbuf.c.obj) + (--whole-archive) +zephyr/libzephyr.a(dec.c.obj) + (--whole-archive) +zephyr/libzephyr.a(hex.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rb.c.obj) (--whole-archive) +zephyr/libzephyr.a(set.c.obj) + (--whole-archive) +zephyr/libzephyr.a(timeutil.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bitarray.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bitmask.c.obj) + (--whole-archive) +zephyr/libzephyr.a(getopt.c.obj) + (--whole-archive) +zephyr/libzephyr.a(getopt_common.c.obj) + (--whole-archive) +zephyr/libzephyr.a(ring_buffer.c.obj) + (--whole-archive) +zephyr/libzephyr.a(configs.c.obj) + (--whole-archive) +zephyr/libzephyr.a(soc.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp32s3-mp.c.obj) + (--whole-archive) +zephyr/libzephyr.a(loader.c.obj) + (--whole-archive) +zephyr/libzephyr.a(hw_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_core.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_mgmt.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_cache.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_msg.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_output.c.obj) + (--whole-archive) +zephyr/libzephyr.a(log_backend_uart.c.obj) + (--whole-archive) +zephyr/libzephyr.a(tracing_none.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_efuse_api.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_efuse_fields.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_efuse_utility.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_efuse_table.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_efuse_fields.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_efuse_utility.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + (--whole-archive) +zephyr/libzephyr.a(flash_encrypt.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_flash_api.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(flash_mmap.c.obj) + (--whole-archive) +zephyr/libzephyr.a(flash_ops.c.obj) + (--whole-archive) +zephyr/libzephyr.a(memspi_host_driver.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_flash_wrap.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cache_utils.c.obj) + (--whole-archive) +zephyr/libzephyr.a(uart_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(uart_hal_iram.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(spi_hal_iram.c.obj) + (--whole-archive) +zephyr/libzephyr.a(lldesc.c.obj) + (--whole-archive) +zephyr/libzephyr.a(gdma_hal_top.c.obj) + (--whole-archive) +zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bootloader_clock_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mpu_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(flash_qio_mode.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + (--whole-archive) +zephyr/libzephyr.a(console_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(soc_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_io.c.obj) + (--whole-archive) +zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + (--whole-archive) +zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(clk_tree_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_io_periph.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_io_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(systimer_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(wdt_hal_iram.c.obj) + (--whole-archive) +zephyr/libzephyr.a(xt_wdt_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + (--whole-archive) +zephyr/libzephyr.a(clk_ctrl_os.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cpu.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_clk.c.obj) + (--whole-archive) +zephyr/libzephyr.a(hw_random.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mac_addr.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mspi_timing_config.c.obj) + (--whole-archive) +zephyr/libzephyr.a(periph_ctrl.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cpu_region_protect.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_clk_tree.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_cpu_intr.c.obj) + (--whole-archive) +zephyr/libzephyr.a(io_mux.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_clk.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_clk_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_sleep.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_time.c.obj) + (--whole-archive) +zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + (--whole-archive) +zephyr/libzephyr.a(systimer.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + (--whole-archive) +zephyr/libzephyr.a(regi2c_ctrl.c.obj) + (--whole-archive) +zephyr/libzephyr.a(rtc_module.c.obj) + (--whole-archive) +zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + (--whole-archive) +zephyr/libzephyr.a(sleep_modes.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_cache_msync.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_cache_utils.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_mmu_map.c.obj) + (--whole-archive) +zephyr/libzephyr.a(ext_mem_layout.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_crc.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_efuse.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_gpio.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_print.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_rom_sys.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_err.c.obj) + (--whole-archive) +zephyr/libzephyr.a(clk.c.obj) + (--whole-archive) +zephyr/libzephyr.a(reset_reason.c.obj) + (--whole-archive) +zephyr/libzephyr.a(system_internal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_timer.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_timer_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(ets_timer_legacy.c.obj) + (--whole-archive) +zephyr/libzephyr.a(efuse_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(cache_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(efuse_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(mmu_hal.c.obj) + (--whole-archive) +zephyr/libzephyr.a(gpio_periph.c.obj) + (--whole-archive) +zephyr/libzephyr.a(esp_restart.c.obj) + (--whole-archive) +zephyr/libzephyr.a(flash_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(bootloader_flash.c.obj) + (--whole-archive) +zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + (--whole-archive) +zephyr/libzephyr.a(soc_flash_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(soc_init.c.obj) + (--whole-archive) +zephyr/libzephyr.a(soc_random.c.obj) + (--whole-archive) +zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + (--whole-archive) +zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + (--whole-archive) +zephyr/arch/common/libarch__common.a(init.c.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + (--whole-archive) +zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + (--whole-archive) +zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + (--whole-archive) +zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + (--whole-archive) +zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + (--whole-archive) +zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + (--whole-archive) +zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + (--whole-archive) +zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + (--whole-archive) +zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + (--whole-archive) +zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + (--whole-archive) +zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + (--whole-archive) +zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + (--whole-archive) +zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + (--whole-archive) +zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + (--whole-archive) +zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + (--whole-archive) +zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + (--whole-archive) +zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + (--whole-archive) +zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + (--whole-archive) +zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + (--whole-archive) +zephyr/kernel/libkernel.a(busy_wait.c.obj) + zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) (z_impl_k_busy_wait) +zephyr/kernel/libkernel.a(device.c.obj) + app/libapp.a(lora_modem.c.obj) (z_impl_device_is_ready) +zephyr/kernel/libkernel.a(errno.c.obj) + zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) (z_impl_z_errno) +zephyr/kernel/libkernel.a(fatal.c.obj) + zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) (z_fatal_error) +zephyr/kernel/libkernel.a(init.c.obj) + zephyr/libzephyr.a(loader.c.obj) (_kernel) +zephyr/kernel/libkernel.a(idle.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (idle) +zephyr/kernel/libkernel.a(mutex.c.obj) + zephyr/libzephyr.a(esp_mmu_map.c.obj) (z_impl_k_mutex_init) +zephyr/kernel/libkernel.a(sem.c.obj) + zephyr/libzephyr.a(sem.c.obj) (z_impl_k_sem_init) +zephyr/kernel/libkernel.a(work.c.obj) + zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) (k_work_init) +zephyr/kernel/libkernel.a(thread.c.obj) + zephyr/libzephyr.a(mpsc_pbuf.c.obj) (k_is_in_isr) +zephyr/kernel/libkernel.a(sched.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_thread_timeout) +zephyr/kernel/libkernel.a(timeslicing.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_reset_time_slice) +zephyr/kernel/libkernel.a(timeout.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (z_add_timeout) +zephyr/kernel/libkernel.a(timer.c.obj) + zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) (z_timer_expiration_handler) +zephyr/kernel/libkernel.a(poll.c.obj) + zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) (z_impl_k_poll) +zephyr/kernel/libkernel.a(mempool.c.obj) + zephyr/libzephyr.a(flash_mmap.c.obj) (k_free) +zephyr/kernel/libkernel.a(banner.c.obj) + zephyr/kernel/libkernel.a(init.c.obj) (boot_banner) +zephyr/kernel/libkernel.a(kheap.c.obj) + zephyr/kernel/libkernel.a(mempool.c.obj) (k_heap_free) +zephyr/kernel/libkernel.a(system_work_q.c.obj) + zephyr/kernel/libkernel.a(work.c.obj) (k_sys_work_q) +zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) (_sw_isr_table) +/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/libgcc.a(_ashldi3.o) + zephyr/libzephyr.a(esp_efuse_fields.c.obj) (__ashldi3) +/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/libgcc.a(_ashrdi3.o) + zephyr/libzephyr.a(rtc_io.c.obj) (__ashrdi3) +/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/libgcc.a(_lshrdi3.o) + zephyr/libzephyr.a(esp_efuse_utility.c.obj) (__lshrdi3) +/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/libgcc.a(_bswapsi2.o) + app/libapp.a(main.c.obj) (__bswapsi2) +/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/libgcc.a(_bswapdi2.o) + zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) (__bswapdi2) +/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/libgcc.a(_divsf3.o) + zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) (__divsf3) +/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/libgcc.a(_addsubdf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__subdf3) +/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/libgcc.a(_muldf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__muldf3) +/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/libgcc.a(_divdf3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__divdf3) +/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/libgcc.a(_fixdfdi.o) + zephyr/libzephyr.a(timeutil.c.obj) (__fixdfdi) +/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/libgcc.a(_floatsidf.o) + zephyr/libzephyr.a(timeutil.c.obj) (__floatunsidf) +/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/libgcc.a(_floatdidf.o) + zephyr/libzephyr.a(timeutil.c.obj) (__floatundidf) +/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/libgcc.a(_truncdfsf2.o) + zephyr/libzephyr.a(timeutil.c.obj) (__truncdfsf2) +/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/libgcc.a(_extendsfdf2.o) + zephyr/libzephyr.a(timeutil.c.obj) (__extendsfdf2) +/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/libgcc.a(_popcountsi2.o) + zephyr/libzephyr.a(bitarray.c.obj) (__popcountsi2) +/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/libgcc.a(_divdi3.o) + zephyr/libzephyr.a(timeutil.c.obj) (__divdi3) +/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/libgcc.a(_moddi3.o) + zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) (__moddi3) +/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/libgcc.a(_udivdi3.o) + zephyr/libzephyr.a(clock.c.obj) (__udivdi3) +/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/libgcc.a(_umoddi3.o) + zephyr/libzephyr.a(clock.c.obj) (__umoddi3) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memcpy.S.o) + zephyr/libzephyr.a(heap.c.obj) (memcpy) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memset.S.o) + zephyr/libzephyr.a(heap.c.obj) (memset) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + zephyr/libzephyr.a(log_mgmt.c.obj) (strcmp) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + zephyr/libzephyr.a(cbprintf_packaged.c.obj) (strlen) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + zephyr/libzephyr.a(esp_efuse_utility.c.obj) (memcmp) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + zephyr/libzephyr.a(getopt.c.obj) (strchr) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + zephyr/libzephyr.a(cbprintf_complete.c.obj) (strnlen) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + zephyr/libzephyr.a(sleep_modes.c.obj) (fprintf) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + zephyr/libzephyr.a(esp_mmu_map.c.obj) (fputc) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + zephyr/libzephyr.a(esp_mmu_map.c.obj) (fputs) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + zephyr/libzephyr.a(heap_caps_zephyr.c.obj) (printf) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) (puts) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + zephyr/libzephyr.a(log_output.c.obj) (snprintf) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + (__l_vfprintf) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + (__l_vfscanf) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) (getc) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) (__file_str_put) +/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) (ungetc) + +Discarded input sections + + .text 0x00000000 0x0 zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj + .data 0x00000000 0x0 zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj + .bss 0x00000000 0x0 zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj + .debug_line 0x00000000 0x0 zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj + .debug_str 0x00000000 0x18f zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj + .comment 0x00000000 0x20 zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj + .text 0x00000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .data 0x00000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .bss 0x00000000 0x0 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .text 0x00000000 0x0 app/libapp.a(main.c.obj) + .data 0x00000000 0x0 app/libapp.a(main.c.obj) + .bss 0x00000000 0x0 app/libapp.a(main.c.obj) + .text 0x00000000 0x0 app/libapp.a(kiss.c.obj) + .data 0x00000000 0x0 app/libapp.a(kiss.c.obj) + .bss 0x00000000 0x0 app/libapp.a(kiss.c.obj) + .text 0x00000000 0x0 app/libapp.a(lora_modem.c.obj) + .data 0x00000000 0x0 app/libapp.a(lora_modem.c.obj) + .bss 0x00000000 0x0 app/libapp.a(lora_modem.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(validate_libc.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(validate_libc.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(validate_libc.c.obj) + .debug_info 0x00000000 0x79 zephyr/libzephyr.a(validate_libc.c.obj) + .debug_abbrev 0x00000000 0x26 zephyr/libzephyr.a(validate_libc.c.obj) + .debug_aranges + 0x00000000 0x18 zephyr/libzephyr.a(validate_libc.c.obj) + .debug_line 0x00000000 0x5e zephyr/libzephyr.a(validate_libc.c.obj) + .debug_str 0x00000000 0x231 zephyr/libzephyr.a(validate_libc.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(validate_libc.c.obj) + .literal.inplace_realloc$isra$0 + 0x00000000 0x60 zephyr/libzephyr.a(heap.c.obj) + .literal.sys_heap_usable_size + 0x00000000 0x8 zephyr/libzephyr.a(heap.c.obj) + .literal.sys_heap_aligned_alloc + 0x00000000 0x24 zephyr/libzephyr.a(heap.c.obj) + .literal.sys_heap_realloc + 0x00000000 0x1c zephyr/libzephyr.a(heap.c.obj) + .literal.sys_heap_aligned_realloc + 0x00000000 0x1c zephyr/libzephyr.a(heap.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(heap.c.obj) + .text.inplace_realloc$isra$0 + 0x00000000 0x194 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_usable_size + 0x00000000 0x3e zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_aligned_alloc + 0x00000000 0x10c zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_realloc + 0x00000000 0x76 zephyr/libzephyr.a(heap.c.obj) + .text.sys_heap_aligned_realloc + 0x00000000 0x85 zephyr/libzephyr.a(heap.c.obj) + .literal.cbprintf_package + 0x00000000 0x4 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .text.cbprintf_package + 0x00000000 0x2d zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .literal.timespec_add + 0x00000000 0x4 zephyr/libzephyr.a(clock.c.obj) + .literal.z_impl_sys_clock_getrtoffset + 0x00000000 0x4 zephyr/libzephyr.a(clock.c.obj) + .literal.sys_clock_gettime + 0x00000000 0x28 zephyr/libzephyr.a(clock.c.obj) + .literal.z_impl_sys_clock_settime + 0x00000000 0x20 zephyr/libzephyr.a(clock.c.obj) + .literal.z_impl_sys_clock_nanosleep + 0x00000000 0x54 zephyr/libzephyr.a(clock.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(clock.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(clock.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(clock.c.obj) + .text.timespec_compare + 0x00000000 0x48 zephyr/libzephyr.a(clock.c.obj) + .text.timespec_add + 0x00000000 0x78 zephyr/libzephyr.a(clock.c.obj) + .text.sys_clock_from_clockid + 0x00000000 0xa zephyr/libzephyr.a(clock.c.obj) + .text.z_impl_sys_clock_getrtoffset + 0x00000000 0x21 zephyr/libzephyr.a(clock.c.obj) + .rodata 0x00000000 0x20 zephyr/libzephyr.a(clock.c.obj) + .text.sys_clock_gettime + 0x00000000 0xb5 zephyr/libzephyr.a(clock.c.obj) + .text.z_impl_sys_clock_settime + 0x00000000 0x86 zephyr/libzephyr.a(clock.c.obj) + .text.z_impl_sys_clock_nanosleep + 0x00000000 0x1fc zephyr/libzephyr.a(clock.c.obj) + .bss.rt_clock_offset + 0x00000000 0x10 zephyr/libzephyr.a(clock.c.obj) + .debug_frame 0x00000000 0xb8 zephyr/libzephyr.a(clock.c.obj) + .debug_info 0x00000000 0xd48 zephyr/libzephyr.a(clock.c.obj) + .debug_abbrev 0x00000000 0x41f zephyr/libzephyr.a(clock.c.obj) + .debug_loc 0x00000000 0x5ab zephyr/libzephyr.a(clock.c.obj) + .debug_aranges + 0x00000000 0x50 zephyr/libzephyr.a(clock.c.obj) + .debug_ranges 0x00000000 0x140 zephyr/libzephyr.a(clock.c.obj) + .debug_line 0x00000000 0x1003 zephyr/libzephyr.a(clock.c.obj) + .debug_str 0x00000000 0x75f zephyr/libzephyr.a(clock.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(clock.c.obj) + .literal.__printk_get_hook + 0x00000000 0x4 zephyr/libzephyr.a(printk.c.obj) + .literal.vprintk + 0x00000000 0x4 zephyr/libzephyr.a(printk.c.obj) + .literal.z_impl_k_str_out + 0x00000000 0x4 zephyr/libzephyr.a(printk.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(printk.c.obj) + .text.arch_printk_char_out + 0x00000000 0x7 zephyr/libzephyr.a(printk.c.obj) + .text.__printk_get_hook + 0x00000000 0xa zephyr/libzephyr.a(printk.c.obj) + .text.vprintk 0x00000000 0x13 zephyr/libzephyr.a(printk.c.obj) + .text.z_impl_k_str_out + 0x00000000 0x1d zephyr/libzephyr.a(printk.c.obj) + .literal.sys_sem_init + 0x00000000 0x4 zephyr/libzephyr.a(sem.c.obj) + .literal.sys_sem_give + 0x00000000 0x4 zephyr/libzephyr.a(sem.c.obj) + .literal.sys_sem_take + 0x00000000 0x4 zephyr/libzephyr.a(sem.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_init + 0x00000000 0x14 zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_give + 0x00000000 0x10 zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_take + 0x00000000 0x2e zephyr/libzephyr.a(sem.c.obj) + .text.sys_sem_count_get + 0x00000000 0x7 zephyr/libzephyr.a(sem.c.obj) + .debug_frame 0x00000000 0x70 zephyr/libzephyr.a(sem.c.obj) + .debug_info 0x00000000 0x4de zephyr/libzephyr.a(sem.c.obj) + .debug_abbrev 0x00000000 0x23e zephyr/libzephyr.a(sem.c.obj) + .debug_loc 0x00000000 0x18b zephyr/libzephyr.a(sem.c.obj) + .debug_aranges + 0x00000000 0x38 zephyr/libzephyr.a(sem.c.obj) + .debug_ranges 0x00000000 0x60 zephyr/libzephyr.a(sem.c.obj) + .debug_line 0x00000000 0x4d5 zephyr/libzephyr.a(sem.c.obj) + .debug_str 0x00000000 0x399 zephyr/libzephyr.a(sem.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(sem.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .literal.encode_uint + 0x00000000 0x8 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .literal.z_cbvprintf_impl + 0x00000000 0x20 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text.encode_uint + 0x00000000 0xa6 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .rodata.z_cbvprintf_impl.str1.1 + 0x00000000 0x6 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .text.z_cbvprintf_impl + 0x00000000 0x8e9 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .rodata.z_cbvprintf_impl + 0x00000000 0x58 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_info 0x00000000 0x10f4 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_abbrev 0x00000000 0x42d zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_loc 0x00000000 0x16ef zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_ranges 0x00000000 0x1e0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_line 0x00000000 0x1b49 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .debug_str 0x00000000 0x674 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .literal.assert_post_action + 0x00000000 0x4 zephyr/libzephyr.a(assert.c.obj) + .literal.assert_print + 0x00000000 0x4 zephyr/libzephyr.a(assert.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(assert.c.obj) + .text.assert_post_action + 0x00000000 0xc zephyr/libzephyr.a(assert.c.obj) + .text.assert_print + 0x00000000 0x27 zephyr/libzephyr.a(assert.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(assert.c.obj) + .debug_info 0x00000000 0x1ba zephyr/libzephyr.a(assert.c.obj) + .debug_abbrev 0x00000000 0x12d zephyr/libzephyr.a(assert.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(assert.c.obj) + .debug_ranges 0x00000000 0x18 zephyr/libzephyr.a(assert.c.obj) + .debug_line 0x00000000 0x263 zephyr/libzephyr.a(assert.c.obj) + .debug_str 0x00000000 0x334 zephyr/libzephyr.a(assert.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(assert.c.obj) + .literal.mpsc_pbuf_put_word + 0x00000000 0x18 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .literal.mpsc_pbuf_put_word_ext + 0x00000000 0x1c zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .literal.mpsc_pbuf_put_data + 0x00000000 0x20 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .literal.mpsc_pbuf_get_utilization + 0x00000000 0x4 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_put_word + 0x00000000 0xa1 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_put_word_ext + 0x00000000 0xb9 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_put_data + 0x00000000 0xc5 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_get_utilization + 0x00000000 0x25 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.mpsc_pbuf_get_max_utilization + 0x00000000 0x21 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .literal.u8_to_dec + 0x00000000 0x4 zephyr/libzephyr.a(dec.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(dec.c.obj) + .text.u8_to_dec + 0x00000000 0x6a zephyr/libzephyr.a(dec.c.obj) + .debug_frame 0x00000000 0x28 zephyr/libzephyr.a(dec.c.obj) + .debug_info 0x00000000 0x12b zephyr/libzephyr.a(dec.c.obj) + .debug_abbrev 0x00000000 0x9c zephyr/libzephyr.a(dec.c.obj) + .debug_loc 0x00000000 0xdc zephyr/libzephyr.a(dec.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(dec.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/libzephyr.a(dec.c.obj) + .debug_line 0x00000000 0x30b zephyr/libzephyr.a(dec.c.obj) + .debug_str 0x00000000 0x264 zephyr/libzephyr.a(dec.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(dec.c.obj) + .literal.bin2hex + 0x00000000 0x8 zephyr/libzephyr.a(hex.c.obj) + .literal.hex2bin + 0x00000000 0xc zephyr/libzephyr.a(hex.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(hex.c.obj) + .text.char2hex + 0x00000000 0x3e zephyr/libzephyr.a(hex.c.obj) + .text.hex2char + 0x00000000 0x26 zephyr/libzephyr.a(hex.c.obj) + .text.bin2hex 0x00000000 0x45 zephyr/libzephyr.a(hex.c.obj) + .text.hex2bin 0x00000000 0x72 zephyr/libzephyr.a(hex.c.obj) + .debug_frame 0x00000000 0x70 zephyr/libzephyr.a(hex.c.obj) + .debug_info 0x00000000 0x2a1 zephyr/libzephyr.a(hex.c.obj) + .debug_abbrev 0x00000000 0x12a zephyr/libzephyr.a(hex.c.obj) + .debug_loc 0x00000000 0x30e zephyr/libzephyr.a(hex.c.obj) + .debug_aranges + 0x00000000 0x38 zephyr/libzephyr.a(hex.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/libzephyr.a(hex.c.obj) + .debug_line 0x00000000 0x5c9 zephyr/libzephyr.a(hex.c.obj) + .debug_str 0x00000000 0x26b zephyr/libzephyr.a(hex.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(hex.c.obj) + .literal.rotate + 0x00000000 0x10 zephyr/libzephyr.a(rb.c.obj) + .literal.rb_insert + 0x00000000 0x10 zephyr/libzephyr.a(rb.c.obj) + .literal.rb_remove + 0x00000000 0x24 zephyr/libzephyr.a(rb.c.obj) + .literal.z_rb_walk + 0x00000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .literal.z_rb_foreach_next + 0x00000000 0x4 zephyr/libzephyr.a(rb.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rb.c.obj) + .text.find_and_stack + 0x00000000 0x36 zephyr/libzephyr.a(rb.c.obj) + .text.stack_left_limb + 0x00000000 0x4e zephyr/libzephyr.a(rb.c.obj) + .text.set_child + 0x00000000 0x16 zephyr/libzephyr.a(rb.c.obj) + .text.rotate 0x00000000 0x7a zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_get_minmax + 0x00000000 0x23 zephyr/libzephyr.a(rb.c.obj) + .text.rb_insert + 0x00000000 0x138 zephyr/libzephyr.a(rb.c.obj) + .text.rb_remove + 0x00000000 0x31d zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_walk + 0x00000000 0x23 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_child + 0x00000000 0x16 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_is_black + 0x00000000 0xa zephyr/libzephyr.a(rb.c.obj) + .text.rb_contains + 0x00000000 0x30 zephyr/libzephyr.a(rb.c.obj) + .text.z_rb_foreach_next + 0x00000000 0x64 zephyr/libzephyr.a(rb.c.obj) + .debug_frame 0x00000000 0x130 zephyr/libzephyr.a(rb.c.obj) + .debug_info 0x00000000 0x243d zephyr/libzephyr.a(rb.c.obj) + .debug_abbrev 0x00000000 0x4b8 zephyr/libzephyr.a(rb.c.obj) + .debug_loc 0x00000000 0x22bc zephyr/libzephyr.a(rb.c.obj) + .debug_aranges + 0x00000000 0x78 zephyr/libzephyr.a(rb.c.obj) + .debug_ranges 0x00000000 0x620 zephyr/libzephyr.a(rb.c.obj) + .debug_line 0x00000000 0x2857 zephyr/libzephyr.a(rb.c.obj) + .debug_str 0x00000000 0x45b zephyr/libzephyr.a(rb.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(rb.c.obj) + .literal.sys_set_union + 0x00000000 0x8 zephyr/libzephyr.a(set.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(set.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(set.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(set.c.obj) + .text.sys_set_find + 0x00000000 0x13 zephyr/libzephyr.a(set.c.obj) + .text.sys_set_union + 0x00000000 0x3b zephyr/libzephyr.a(set.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(set.c.obj) + .debug_info 0x00000000 0x170 zephyr/libzephyr.a(set.c.obj) + .debug_abbrev 0x00000000 0xf9 zephyr/libzephyr.a(set.c.obj) + .debug_loc 0x00000000 0x6e zephyr/libzephyr.a(set.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(set.c.obj) + .debug_ranges 0x00000000 0x18 zephyr/libzephyr.a(set.c.obj) + .debug_line 0x00000000 0x30c zephyr/libzephyr.a(set.c.obj) + .debug_str 0x00000000 0x276 zephyr/libzephyr.a(set.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(set.c.obj) + .literal.timeutil_timegm64 + 0x00000000 0x14 zephyr/libzephyr.a(timeutil.c.obj) + .literal.timeutil_timegm + 0x00000000 0x8 zephyr/libzephyr.a(timeutil.c.obj) + .literal.timeutil_sync_state_update + 0x00000000 0xc zephyr/libzephyr.a(timeutil.c.obj) + .literal.timeutil_sync_state_set_skew + 0x00000000 0xc zephyr/libzephyr.a(timeutil.c.obj) + .literal.timeutil_sync_estimate_skew + 0x00000000 0x20 zephyr/libzephyr.a(timeutil.c.obj) + .literal.timeutil_sync_ref_from_local + 0x00000000 0x24 zephyr/libzephyr.a(timeutil.c.obj) + .literal.timeutil_sync_local_from_ref + 0x00000000 0x24 zephyr/libzephyr.a(timeutil.c.obj) + .literal.timeutil_sync_skew_to_ppb + 0x00000000 0x14 zephyr/libzephyr.a(timeutil.c.obj) + .literal.timespec_normalize + 0x00000000 0x14 zephyr/libzephyr.a(timeutil.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_timegm64 + 0x00000000 0x108 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_timegm + 0x00000000 0x1c zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_state_update + 0x00000000 0x78 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_state_set_skew + 0x00000000 0x40 zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_estimate_skew + 0x00000000 0xbc zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_ref_from_local + 0x00000000 0xbc zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_local_from_ref + 0x00000000 0xae zephyr/libzephyr.a(timeutil.c.obj) + .text.timeutil_sync_skew_to_ppb + 0x00000000 0x42 zephyr/libzephyr.a(timeutil.c.obj) + .text.timespec_normalize + 0x00000000 0xa3 zephyr/libzephyr.a(timeutil.c.obj) + .debug_frame 0x00000000 0xe8 zephyr/libzephyr.a(timeutil.c.obj) + .debug_info 0x00000000 0x8ec zephyr/libzephyr.a(timeutil.c.obj) + .debug_abbrev 0x00000000 0x20c zephyr/libzephyr.a(timeutil.c.obj) + .debug_loc 0x00000000 0x6ca zephyr/libzephyr.a(timeutil.c.obj) + .debug_aranges + 0x00000000 0x60 zephyr/libzephyr.a(timeutil.c.obj) + .debug_ranges 0x00000000 0x70 zephyr/libzephyr.a(timeutil.c.obj) + .debug_line 0x00000000 0xdee zephyr/libzephyr.a(timeutil.c.obj) + .debug_str 0x00000000 0x53d zephyr/libzephyr.a(timeutil.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(timeutil.c.obj) + .literal.match_region + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.is_region_set_clear + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.set_region + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.set_clear_region + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_popcount_region + 0x00000000 0x10 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_xor + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_alloc + 0x00000000 0xc zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_find_nth_set + 0x00000000 0x10 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_free + 0x00000000 0x8 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_is_region_set + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_is_region_cleared + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_test_and_set_region + 0x00000000 0x8 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_set_region + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .literal.sys_bitarray_clear_region + 0x00000000 0x4 zephyr/libzephyr.a(bitarray.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .text.setup_bundle_data$isra$0 + 0x00000000 0x3f zephyr/libzephyr.a(bitarray.c.obj) + .text.match_region + 0x00000000 0x7e zephyr/libzephyr.a(bitarray.c.obj) + .text.is_region_set_clear + 0x00000000 0x54 zephyr/libzephyr.a(bitarray.c.obj) + .text.set_region + 0x00000000 0x9c zephyr/libzephyr.a(bitarray.c.obj) + .text.set_clear_region + 0x00000000 0x50 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_popcount_region + 0x00000000 0x98 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_xor + 0x00000000 0x9e zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_set_bit + 0x00000000 0x30 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_clear_bit + 0x00000000 0x30 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_bit + 0x00000000 0x30 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_set_bit + 0x00000000 0x45 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_clear_bit + 0x00000000 0x45 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_alloc + 0x00000000 0xe4 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_find_nth_set + 0x00000000 0xbc zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_free + 0x00000000 0x9c zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_is_region_set + 0x00000000 0x15 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_is_region_cleared + 0x00000000 0x15 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_test_and_set_region + 0x00000000 0x70 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_set_region + 0x00000000 0x15 zephyr/libzephyr.a(bitarray.c.obj) + .text.sys_bitarray_clear_region + 0x00000000 0x15 zephyr/libzephyr.a(bitarray.c.obj) + .debug_frame 0x00000000 0x1f0 zephyr/libzephyr.a(bitarray.c.obj) + .debug_info 0x00000000 0x1a96 zephyr/libzephyr.a(bitarray.c.obj) + .debug_abbrev 0x00000000 0x455 zephyr/libzephyr.a(bitarray.c.obj) + .debug_loc 0x00000000 0x1010 zephyr/libzephyr.a(bitarray.c.obj) + .debug_aranges + 0x00000000 0xb8 zephyr/libzephyr.a(bitarray.c.obj) + .debug_ranges 0x00000000 0x200 zephyr/libzephyr.a(bitarray.c.obj) + .debug_line 0x00000000 0x2522 zephyr/libzephyr.a(bitarray.c.obj) + .debug_str 0x00000000 0x609 zephyr/libzephyr.a(bitarray.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(bitarray.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(bitmask.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(bitmask.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(bitmask.c.obj) + .text.bitmask_find_gap + 0x00000000 0x93 zephyr/libzephyr.a(bitmask.c.obj) + .debug_frame 0x00000000 0x28 zephyr/libzephyr.a(bitmask.c.obj) + .debug_info 0x00000000 0x1eb zephyr/libzephyr.a(bitmask.c.obj) + .debug_abbrev 0x00000000 0x107 zephyr/libzephyr.a(bitmask.c.obj) + .debug_loc 0x00000000 0x1b5 zephyr/libzephyr.a(bitmask.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(bitmask.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/libzephyr.a(bitmask.c.obj) + .debug_line 0x00000000 0x501 zephyr/libzephyr.a(bitmask.c.obj) + .debug_str 0x00000000 0x2ae zephyr/libzephyr.a(bitmask.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(bitmask.c.obj) + .literal.sys_getopt_init + 0x00000000 0x1c zephyr/libzephyr.a(getopt.c.obj) + .literal.sys_getopt + 0x00000000 0x20 zephyr/libzephyr.a(getopt.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(getopt.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(getopt.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(getopt.c.obj) + .rodata.sys_getopt_init.str1.1 + 0x00000000 0x1 zephyr/libzephyr.a(getopt.c.obj) + .text.sys_getopt_init + 0x00000000 0x37 zephyr/libzephyr.a(getopt.c.obj) + .text.sys_getopt + 0x00000000 0x11e zephyr/libzephyr.a(getopt.c.obj) + .literal.z_getopt_global_state_update + 0x00000000 0x18 zephyr/libzephyr.a(getopt_common.c.obj) + .literal.sys_getopt_state_get + 0x00000000 0x4 zephyr/libzephyr.a(getopt_common.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(getopt_common.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(getopt_common.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(getopt_common.c.obj) + .text.z_getopt_global_state_update + 0x00000000 0x30 zephyr/libzephyr.a(getopt_common.c.obj) + .text.sys_getopt_state_get + 0x00000000 0x8 zephyr/libzephyr.a(getopt_common.c.obj) + .rodata.str1.1 + 0x00000000 0x1 zephyr/libzephyr.a(getopt_common.c.obj) + .data.m_getopt_common_state + 0x00000000 0x18 zephyr/libzephyr.a(getopt_common.c.obj) + .bss.sys_getopt_optarg + 0x00000000 0x4 zephyr/libzephyr.a(getopt_common.c.obj) + .bss.sys_getopt_optreset + 0x00000000 0x4 zephyr/libzephyr.a(getopt_common.c.obj) + .bss.sys_getopt_optopt + 0x00000000 0x4 zephyr/libzephyr.a(getopt_common.c.obj) + .data.sys_getopt_optind + 0x00000000 0x4 zephyr/libzephyr.a(getopt_common.c.obj) + .data.sys_getopt_opterr + 0x00000000 0x4 zephyr/libzephyr.a(getopt_common.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(getopt_common.c.obj) + .debug_info 0x00000000 0x271 zephyr/libzephyr.a(getopt_common.c.obj) + .debug_abbrev 0x00000000 0x13e zephyr/libzephyr.a(getopt_common.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(getopt_common.c.obj) + .debug_ranges 0x00000000 0x18 zephyr/libzephyr.a(getopt_common.c.obj) + .debug_line 0x00000000 0x2d2 zephyr/libzephyr.a(getopt_common.c.obj) + .debug_str 0x00000000 0x4e6 zephyr/libzephyr.a(getopt_common.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(getopt_common.c.obj) + .literal.ring_buf_put_claim + 0x00000000 0x4 zephyr/libzephyr.a(ring_buffer.c.obj) + .literal.ring_buf_get_claim + 0x00000000 0x4 zephyr/libzephyr.a(ring_buffer.c.obj) + .literal.ring_buf_put + 0x00000000 0xc zephyr/libzephyr.a(ring_buffer.c.obj) + .literal.ring_buf_get + 0x00000000 0xc zephyr/libzephyr.a(ring_buffer.c.obj) + .literal.ring_buf_peek + 0x00000000 0xc zephyr/libzephyr.a(ring_buffer.c.obj) + .literal.ring_buf_item_put + 0x00000000 0x10 zephyr/libzephyr.a(ring_buffer.c.obj) + .literal.ring_buf_item_get + 0x00000000 0x14 zephyr/libzephyr.a(ring_buffer.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_area_claim + 0x00000000 0x39 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_put_claim + 0x00000000 0x28 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_get_claim + 0x00000000 0x22 zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_area_finish + 0x00000000 0x3e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_put + 0x00000000 0x3e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_get + 0x00000000 0x3e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_peek + 0x00000000 0x3e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_item_put + 0x00000000 0x7e zephyr/libzephyr.a(ring_buffer.c.obj) + .text.ring_buf_item_get + 0x00000000 0x90 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_frame 0x00000000 0xe8 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_info 0x00000000 0xcb7 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_abbrev 0x00000000 0x2aa zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_loc 0x00000000 0x8b4 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_aranges + 0x00000000 0x60 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_ranges 0x00000000 0xe8 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_line 0x00000000 0xd99 zephyr/libzephyr.a(ring_buffer.c.obj) + .debug_str 0x00000000 0x477 zephyr/libzephyr.a(ring_buffer.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(ring_buffer.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(configs.c.obj) + .iram1.2.literal + 0x00000000 0x4 zephyr/libzephyr.a(soc.c.obj) + .literal.sys_arch_reboot + 0x00000000 0x4 zephyr/libzephyr.a(soc.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(soc.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(soc.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(soc.c.obj) + .iram1.2 0x00000000 0x9 zephyr/libzephyr.a(soc.c.obj) + .text.sys_arch_reboot + 0x00000000 0x9 zephyr/libzephyr.a(soc.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .debug_info 0x00000000 0x79 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .debug_abbrev 0x00000000 0x26 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .debug_aranges + 0x00000000 0x18 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .debug_line 0x00000000 0x68 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .debug_str 0x00000000 0x23b zephyr/libzephyr.a(esp32s3-mp.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(loader.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(loader.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(loader.c.obj) + .entry_addr 0x00000000 0x4 zephyr/libzephyr.a(loader.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(hw_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(hw_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(hw_init.c.obj) + .literal.z_log_timestamp + 0x00000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .literal.log_format_set_all_active_backends + 0x00000000 0xc zephyr/libzephyr.a(log_core.c.obj) + .literal.log_init + 0x00000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .literal.log_thread_trigger + 0x00000000 0x10 zephyr/libzephyr.a(log_core.c.obj) + .literal.unordered_notify + 0x00000000 0x10 zephyr/libzephyr.a(log_core.c.obj) + .literal.z_impl_log_buffered_cnt + 0x00000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .literal.z_log_dropped_pending + 0x00000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .literal.z_log_msg_claim_oldest + 0x00000000 0x20 zephyr/libzephyr.a(log_core.c.obj) + .literal.z_log_msg_claim + 0x00000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .literal.z_log_msg_enqueue + 0x00000000 0x18 zephyr/libzephyr.a(log_core.c.obj) + .literal.log_mem_get_usage + 0x00000000 0x8 zephyr/libzephyr.a(log_core.c.obj) + .literal.log_mem_get_max_usage + 0x00000000 0x8 zephyr/libzephyr.a(log_core.c.obj) + .literal.log_flush + 0x00000000 0xc zephyr/libzephyr.a(log_core.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(log_core.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(log_core.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(log_core.c.obj) + .text.log_format_table_size + 0x00000000 0x7 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_timestamp + 0x00000000 0x10 zephyr/libzephyr.a(log_core.c.obj) + .text.log_format_set_all_active_backends + 0x00000000 0x41 zephyr/libzephyr.a(log_core.c.obj) + .text.log_init + 0x00000000 0xf zephyr/libzephyr.a(log_core.c.obj) + .text.log_thread_trigger + 0x00000000 0x17 zephyr/libzephyr.a(log_core.c.obj) + .text.log_thread_set + 0x00000000 0x5 zephyr/libzephyr.a(log_core.c.obj) + .rodata.unordered_notify.str1.1 + 0x00000000 0x28 zephyr/libzephyr.a(log_core.c.obj) + .text.unordered_notify + 0x00000000 0x2b zephyr/libzephyr.a(log_core.c.obj) + .text.z_impl_log_buffered_cnt + 0x00000000 0xa zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_dropped_pending + 0x00000000 0xf zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_claim_oldest + 0x00000000 0x61 zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_claim + 0x00000000 0xd zephyr/libzephyr.a(log_core.c.obj) + .text.z_log_msg_enqueue + 0x00000000 0x78 zephyr/libzephyr.a(log_core.c.obj) + .text.log_set_tag + 0x00000000 0x8 zephyr/libzephyr.a(log_core.c.obj) + .text.log_mem_get_usage + 0x00000000 0x14 zephyr/libzephyr.a(log_core.c.obj) + .text.log_mem_get_max_usage + 0x00000000 0x12 zephyr/libzephyr.a(log_core.c.obj) + .text.log_flush + 0x00000000 0x2c zephyr/libzephyr.a(log_core.c.obj) + .bss.unordered_cnt + 0x00000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.prev_timestamp + 0x00000000 0x4 zephyr/libzephyr.a(log_core.c.obj) + .literal.source_id_cmp + 0x00000000 0x4 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.z_log_link_get_dynamic_filter + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.z_log_ext_domain_count + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.log_src_cnt_get + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.log_domain_name_get + 0x00000000 0x4 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.log_compiled_level_get + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.z_log_link_set_runtime_level + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.z_log_runtime_filters_init + 0x00000000 0xc zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.log_source_id_get + 0x00000000 0xc zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.filter_set + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.z_impl_log_filter_set + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.z_impl_log_frontend_filter_set + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.log_backend_get_by_name + 0x00000000 0xc zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.log_filter_get + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.z_log_links_initiate + 0x00000000 0x24 zephyr/libzephyr.a(log_mgmt.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(log_mgmt.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.domain_id_cmp + 0x00000000 0xe zephyr/libzephyr.a(log_mgmt.c.obj) + .text.source_id_cmp + 0x00000000 0x14 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_link_get_dynamic_filter + 0x00000000 0x45 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_ext_domain_count + 0x00000000 0x1f zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_src_cnt_get + 0x00000000 0x11 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.log_domain_name_get.str1.1 + 0x00000000 0x1 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_domain_name_get + 0x00000000 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_compiled_level_get + 0x00000000 0x1c zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_link_set_runtime_level + 0x00000000 0x45 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_runtime_filters_init + 0x00000000 0x34 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_source_id_get + 0x00000000 0x33 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.filter_set + 0x00000000 0x1f zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_impl_log_filter_set + 0x00000000 0x1f zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_impl_log_frontend_filter_set + 0x00000000 0x1f zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_backend_get_by_name + 0x00000000 0x26 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_backend_disable + 0x00000000 0xc zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_filter_get + 0x00000000 0x1f zephyr/libzephyr.a(log_mgmt.c.obj) + .text.log_frontend_filter_get + 0x00000000 0x7 zephyr/libzephyr.a(log_mgmt.c.obj) + .text.z_log_links_initiate + 0x00000000 0x43 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.sname_cache_config$0 + 0x00000000 0x10 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.dname_cache_config$1 + 0x00000000 0x10 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.sname_cache + 0x00000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.dname_cache + 0x00000000 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.sname_cache_buffer + 0x00000000 0x9 zephyr/libzephyr.a(log_mgmt.c.obj) + .bss.dname_cache_buffer + 0x00000000 0x9 zephyr/libzephyr.a(log_mgmt.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(log_cache.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(log_cache.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_init + 0x00000000 0x56 zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_get + 0x00000000 0xa6 zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_put + 0x00000000 0x14 zephyr/libzephyr.a(log_cache.c.obj) + .text.log_cache_release + 0x00000000 0x14 zephyr/libzephyr.a(log_cache.c.obj) + .debug_frame 0x00000000 0x70 zephyr/libzephyr.a(log_cache.c.obj) + .debug_info 0x00000000 0x10a7 zephyr/libzephyr.a(log_cache.c.obj) + .debug_abbrev 0x00000000 0x2be zephyr/libzephyr.a(log_cache.c.obj) + .debug_loc 0x00000000 0x9c4 zephyr/libzephyr.a(log_cache.c.obj) + .debug_aranges + 0x00000000 0x38 zephyr/libzephyr.a(log_cache.c.obj) + .debug_ranges 0x00000000 0x1d8 zephyr/libzephyr.a(log_cache.c.obj) + .debug_line 0x00000000 0xf44 zephyr/libzephyr.a(log_cache.c.obj) + .debug_str 0x00000000 0x4b8 zephyr/libzephyr.a(log_cache.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(log_cache.c.obj) + .literal.z_impl_z_log_msg_simple_create_2 + 0x00000000 0x4 zephyr/libzephyr.a(log_msg.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(log_msg.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(log_msg.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(log_msg.c.obj) + .text.z_impl_z_log_msg_simple_create_2 + 0x00000000 0x1a zephyr/libzephyr.a(log_msg.c.obj) + .literal.log_output_timestamp_to_us + 0x00000000 0xc zephyr/libzephyr.a(log_output.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(log_output.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(log_output.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(log_output.c.obj) + .text.log_output_timestamp_to_us + 0x00000000 0x2a zephyr/libzephyr.a(log_output.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_enter + 0x00000000 0x5 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_exit + 0x00000000 0x5 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_isr_exit_to_scheduler + 0x00000000 0x5 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_idle + 0x00000000 0x5 zephyr/libzephyr.a(tracing_none.c.obj) + .text.sys_trace_idle_exit + 0x00000000 0x5 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_frame 0x00000000 0x88 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_info 0x00000000 0xb9 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_abbrev 0x00000000 0x5e zephyr/libzephyr.a(tracing_none.c.obj) + .debug_aranges + 0x00000000 0x40 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_ranges 0x00000000 0x30 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_line 0x00000000 0xc3 zephyr/libzephyr.a(tracing_none.c.obj) + .debug_str 0x00000000 0x2a0 zephyr/libzephyr.a(tracing_none.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(tracing_none.c.obj) + .literal.k_mutex_lock$constprop$0$isra$0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.k_mutex_unlock$constprop$0$isra$0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_blob + 0x00000000 0x14 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_bit + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_cnt + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_blob + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_cnt + 0x00000000 0x30 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_bit + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_reg + 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_block + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_reg + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_block + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_begin + 0x00000000 0x1c zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_cancel + 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_commit + 0x00000000 0x28 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_check_errors + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_destroy_block + 0x00000000 0x4c zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.k_mutex_lock$constprop$0$isra$0 + 0x00000000 0x12 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.k_mutex_unlock$constprop$0$isra$0 + 0x00000000 0xe zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_blob + 0x00000000 0x62 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_bit + 0x00000000 0x26 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_cnt + 0x00000000 0x46 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_blob + 0x00000000 0x70 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_write_field_cnt.str1.1 + 0x00000000 0x48 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_cnt + 0x00000000 0x90 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_bit + 0x00000000 0x42 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_get_field_size + 0x00000000 0x1e zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_reg + 0x00000000 0x4e zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_block + 0x00000000 0x46 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_reg + 0x00000000 0x22 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_block + 0x00000000 0x46 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_begin.str1.1 + 0x00000000 0x31 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_begin + 0x00000000 0x39 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_cancel.str1.1 + 0x00000000 0x57 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_cancel + 0x00000000 0x45 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_commit.str1.1 + 0x00000000 0x33 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_commit + 0x00000000 0x56 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_check_errors + 0x00000000 0xd zephyr/libzephyr.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_destroy_block.str1.1 + 0x00000000 0x10b zephyr/libzephyr.a(esp_efuse_api.c.obj) + .text.esp_efuse_destroy_block + 0x00000000 0xd6 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .bss.s_batch_writing_mode + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api.c.obj) + ._k_mutex.static.s_efuse_lock_ + 0x00000000 0x14 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_frame 0x00000000 0x1c0 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_info 0x00000000 0x1793 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_abbrev 0x00000000 0x502 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_loc 0x00000000 0x69f zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_aranges + 0x00000000 0xa8 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_ranges 0x00000000 0x98 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_line 0x00000000 0x149a zephyr/libzephyr.a(esp_efuse_api.c.obj) + .debug_str 0x00000000 0xd48 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .literal.esp_efuse_reset + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_read_secure_version + 0x00000000 0x14 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_check_secure_version + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_update_secure_version + 0x00000000 0x40 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .iram1.0.literal + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_reset + 0x00000000 0xb zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_read_secure_version + 0x00000000 0x40 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_check_secure_version + 0x00000000 0xb1 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .rodata.esp_efuse_update_secure_version.str1.1 + 0x00000000 0x121 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_update_secure_version + 0x00000000 0xae zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .iram1.0 0x00000000 0xd zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_frame 0x00000000 0x88 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_info 0x00000000 0x61c zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x00000000 0x1f2 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_loc 0x00000000 0x20f zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_aranges + 0x00000000 0x40 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_ranges 0x00000000 0x30 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_line 0x00000000 0xa1d zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_str 0x00000000 0x66e zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.write_reg + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_process + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_reset + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_efuses + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_update_virt_blocks + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_single_block + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_pending + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_blocks + 0x00000000 0x14 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_read_reg + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_fill_buff + 0x00000000 0x10 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_count_once + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_cnt + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_reg + 0x00000000 0x14 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_blob + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_get_read_register_address + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_is_correct_written_data + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.write_reg + 0x00000000 0x3c zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_process.str1.1 + 0x00000000 0x3e zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_process + 0x00000000 0x104 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_reset + 0x00000000 0x47 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_efuses + 0x00000000 0x28 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_erase_virt_blocks + 0x00000000 0x5 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_update_virt_blocks.str1.1 + 0x00000000 0x23 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_update_virt_blocks + 0x00000000 0x11 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_single_block.str1.1 + 0x00000000 0xd zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_single_block + 0x00000000 0x66 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_pending + 0x00000000 0x36 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_blocks.str1.1 + 0x00000000 0xd zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_blocks + 0x00000000 0x2a zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_number_of_items + 0x00000000 0x12 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_read_reg + 0x00000000 0x2b zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_fill_buff + 0x00000000 0xaa zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_count_once + 0x00000000 0x3c zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_cnt + 0x00000000 0x71 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_write_reg.str1.1 + 0x00000000 0x4e zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_reg + 0x00000000 0x36 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_blob + 0x00000000 0x9e zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_read_register_address + 0x00000000 0x18 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_is_correct_written_data.str1.1 + 0x00000000 0xab zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_is_correct_written_data + 0x00000000 0x6e zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .bss.s_burn_counter + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_frame 0x00000000 0x1c0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_info 0x00000000 0x12c3 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00000000 0x44a zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_loc 0x00000000 0xf6e zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x00000000 0xa8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00000000 0x270 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_line 0x00000000 0x189b zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_str 0x00000000 0xa2e zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SYS_DATA_PART2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY5 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY4 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USER_DATA_MAC_CUSTOM + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USER_DATA + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_OCODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_TEMP_CALIB + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLK_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_OPTIONAL_UNIQUE_ID + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MINOR_HI + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIG_DBIAS_HVT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_V_DIG_DBIAS20 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_V_RTC_DBIAS20 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_K_DIG_LDO + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_K_RTC_LDO + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PSRAM_VENDOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PSRAM_TEMP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PSRAM_CAP + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_VENDOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_TEMP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_CAP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLK_VERSION_MINOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PKG_VERSION + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MINOR_LO + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D7 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D6 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D5 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D4 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_DQS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_WP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_HD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_Q + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CLK + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC + 0x00000000 0x1c zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_OTG_DOWNLOAD_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_VERSION + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FORCE_SEND_RESUME + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_ECC_EN + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_PAGE_SIZE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_TYPE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PIN_POWER_SELECTION + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_UART_PRINT_CONTROL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_ECC_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DIRECT_BOOT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_TPUW + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USB_PHY_SEL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_STRAP_JTAG_SEL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_SERIAL_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_EN + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_5 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_4 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_BOOT_CRYPT_CNT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WDT_DELAY_SEL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VDD_SPI_FORCE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VDD_SPI_TIEH + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VDD_SPI_XPD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USB_EXT_PHY_ENABLE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USB_EXCHG_PINS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_PAD_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SOFT_DIS_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_APP_CPU + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_TWAI + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_OTG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_FORCE_DOWNLOAD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_DCACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_ICACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DCACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_ICACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY5 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY4 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK_KEY0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SOFT_DIS_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_USB_EXT_PHY_ENABLE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_USB_EXCHG_PINS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY5 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY4 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_KEY0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CUSTOM_MAC + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK_USR_DATA + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_INIT_CODE_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_OCODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_TEMP_CALIB + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_OPTIONAL_UNIQUE_ID + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SYS_DATA_PART1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_CAL_VOL_ATTEN3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WAFER_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_HI + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIG_DBIAS_HVT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_V_DIG_DBIAS20 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_V_RTC_DBIAS20 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_K_DIG_LDO + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_K_RTC_LDO + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PSRAM_VENDOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PSRAM_TEMP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PSRAM_CAP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_VENDOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_TEMP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_CAP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK_VERSION_MINOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PKG_VERSION + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_LO + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D7 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D6 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D5 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D4 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_DQS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_WP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_HD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_Q + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CLK + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_OTG_DOWNLOAD_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_VERSION + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FORCE_SEND_RESUME + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_ECC_EN + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_PAGE_SIZE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_TYPE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_PIN_POWER_SELECTION + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_UART_PRINT_CONTROL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_ECC_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DIRECT_BOOT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MODE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_TPUW + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_EN + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_5 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_4 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_3 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_PURPOSE_0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WDT_DELAY_SEL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_VDD_SPI_FORCE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_VDD_SPI_TIEH + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_VDD_SPI_XPD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_USB_PHY_SEL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_STRAP_JTAG_SEL + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_PAD_JTAG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_APP_CPU + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_TWAI + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_USB_OTG + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_FORCE_DOWNLOAD + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_DCACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_ICACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_DCACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_ICACHE + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_RD_DIS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SYS_DATA_PART2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY5 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY4 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY3 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY2 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY1 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY0 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.USER_DATA_MAC_CUSTOM + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.USER_DATA + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.OCODE 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.TEMP_CALIB + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.BLK_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.OPTIONAL_UNIQUE_ID + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MINOR_HI + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIG_DBIAS_HVT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.V_DIG_DBIAS20 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.V_RTC_DBIAS20 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.K_DIG_LDO + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.K_RTC_LDO + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.PSRAM_VENDOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.PSRAM_TEMP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.PSRAM_CAP + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_VENDOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_TEMP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_CAP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.BLK_VERSION_MINOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.PKG_VERSION + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MINOR_LO + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D7 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D6 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D5 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D4 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_DQS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_WP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_HD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_Q + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CLK + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.MAC 0x00000000 0x18 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_OTG_DOWNLOAD_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SECURE_VERSION + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FORCE_SEND_RESUME + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_ECC_EN + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_PAGE_SIZE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_TYPE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.PIN_POWER_SELECTION + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.UART_PRINT_CONTROL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_ECC_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_DIRECT_BOOT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.FLASH_TPUW + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.USB_PHY_SEL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.STRAP_JTAG_SEL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_SERIAL_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_EN + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_5 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_4 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SPI_BOOT_CRYPT_CNT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WDT_DELAY_SEL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.VDD_SPI_FORCE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.VDD_SPI_TIEH + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.VDD_SPI_XPD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.USB_EXT_PHY_ENABLE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.USB_EXCHG_PINS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_PAD_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.SOFT_DIS_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_APP_CPU + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_TWAI + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_OTG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_FORCE_DOWNLOAD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_DCACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_ICACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_DCACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.DIS_ICACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY5 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY4 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK_KEY0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.RD_DIS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SOFT_DIS_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_USB_EXT_PHY_ENABLE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_USB_EXCHG_PINS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_SYS_DATA2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY5 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY4 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_KEY0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CUSTOM_MAC + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK_USR_DATA + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_CAL_VOL_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_CAL_VOL_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_CAL_VOL_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_CAL_VOL_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_CAL_VOL_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_CAL_VOL_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_CAL_VOL_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_INIT_CODE_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_INIT_CODE_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_INIT_CODE_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_INIT_CODE_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_INIT_CODE_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_INIT_CODE_ATTEN2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_INIT_CODE_ATTEN1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_INIT_CODE_ATTEN0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_OCODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_TEMP_CALIB + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_OPTIONAL_UNIQUE_ID + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SYS_DATA_PART1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_CAL_VOL_ATTEN3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WAFER_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WAFER_VERSION_MINOR_HI + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIG_DBIAS_HVT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_V_DIG_DBIAS20 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_V_RTC_DBIAS20 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_K_DIG_LDO + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_K_RTC_LDO + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PSRAM_VENDOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PSRAM_TEMP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PSRAM_CAP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_VENDOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_TEMP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_CAP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK_VERSION_MINOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PKG_VERSION + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WAFER_VERSION_MINOR_LO + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D7 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D6 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D5 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D4 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_DQS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_WP + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_HD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_CS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_Q + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_CLK + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_BLK_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_WAFER_VERSION_MAJOR + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_OTG_DOWNLOAD_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_VERSION + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FORCE_SEND_RESUME + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_ECC_EN + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_PAGE_SIZE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_TYPE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_PIN_POWER_SELECTION + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_UART_PRINT_CONTROL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ENABLE_SECURITY_DOWNLOAD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_ECC_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DIRECT_BOOT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DOWNLOAD_MODE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_TPUW + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_EN + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_5 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_4 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_3 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_PURPOSE_0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_KEY_REVOKE2 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_KEY_REVOKE1 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_KEY_REVOKE0 + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_BOOT_CRYPT_CNT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WDT_DELAY_SEL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_VDD_SPI_FORCE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_VDD_SPI_TIEH + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_VDD_SPI_XPD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_USB_PHY_SEL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_STRAP_JTAG_SEL + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_SERIAL_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_PAD_JTAG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_APP_CPU + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_TWAI + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_USB_OTG + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_FORCE_DOWNLOAD + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DOWNLOAD_DCACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DOWNLOAD_ICACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_DCACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_ICACHE + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_RD_DIS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .rodata.WR_DIS + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .debug_info 0x00000000 0x2e13 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .debug_abbrev 0x00000000 0x119 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .debug_aranges + 0x00000000 0x18 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .debug_line 0x00000000 0x29e zephyr/libzephyr.a(esp_efuse_table.c.obj) + .debug_str 0x00000000 0x3007 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .literal.esp_efuse_get_pkg_ver + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_disable_rom_download_mode + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_set_rom_log_scheme + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_enable_rom_secure_download_mode + 0x00000000 0x10 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_get_pkg_ver + 0x00000000 0x1c zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_rom_download_mode + 0x00000000 0x10 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_set_rom_log_scheme + 0x00000000 0x38 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .text.esp_efuse_enable_rom_secure_download_mode + 0x00000000 0x1e zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_frame 0x00000000 0x70 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_info 0x00000000 0x3c0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x00000000 0x184 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_loc 0x00000000 0x15 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_aranges + 0x00000000 0x38 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_line 0x00000000 0x519 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .debug_str 0x00000000 0x629 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_utility_clear_program_registers + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_chip_opt + 0x00000000 0x88 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_chip + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_new_coding_scheme + 0x00000000 0x1c zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_clear_program_registers + 0x00000000 0x11 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_check_errors + 0x00000000 0x7 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_burn_chip_opt.str1.1 + 0x00000000 0x187 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip_opt + 0x00000000 0x1e3 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip + 0x00000000 0x11 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_apply_new_coding_scheme.str1.1 + 0x00000000 0x3b zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_new_coding_scheme + 0x00000000 0x76 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.range_write_addr_blocks + 0x00000000 0x58 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .bss.write_mass_blocks + 0x00000000 0x160 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .rodata.range_read_addr_blocks + 0x00000000 0x58 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_frame 0x00000000 0x88 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_info 0x00000000 0x87f zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00000000 0x260 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_loc 0x00000000 0x333 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x00000000 0x40 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00000000 0xf0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_line 0x00000000 0xb93 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .debug_str 0x00000000 0x779 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_block_is_empty + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_write_protect + 0x00000000 0x18 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_read_protect + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_purpose_field + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_read + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_read + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_write + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_write + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_purpose + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_purpose + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_keypurpose_dis_write + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_keypurpose_dis_write + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_find_purpose + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_key_block_unused + 0x00000000 0x14 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_find_unused_key_block + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_count_unused_key_blocks + 0x00000000 0x4 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_key + 0x00000000 0x34 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_keys + 0x00000000 0x34 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_digest_revoke + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_digest_revoke + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_write_protect_of_digest_revoke + 0x00000000 0xc zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_write_protect_of_digest_revoke + 0x00000000 0x8 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_secure_boot_read_key_digests + 0x00000000 0x18 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_block_is_empty + 0x00000000 0x31 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect + 0x00000000 0x54 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_read_protect + 0x00000000 0x32 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_coding_scheme + 0x00000000 0xa zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_purpose_field + 0x00000000 0x18 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key + 0x00000000 0x18 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_read + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_read + 0x00000000 0x22 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_write + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_write + 0x00000000 0x22 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_purpose + 0x00000000 0x3c zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_purpose + 0x00000000 0x32 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_keypurpose_dis_write + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_keypurpose_dis_write + 0x00000000 0x22 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_purpose + 0x00000000 0x25 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_key_block_unused + 0x00000000 0x48 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_unused_key_block + 0x00000000 0x16 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_count_unused_key_blocks + 0x00000000 0x19 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_key.str1.1 + 0x00000000 0x5f zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_key + 0x00000000 0xe6 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_keys.str1.1 + 0x00000000 0xc0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_keys + 0x00000000 0xca zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_digest_revoke + 0x00000000 0x21 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_digest_revoke + 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_write_protect_of_digest_revoke + 0x00000000 0x21 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect_of_digest_revoke + 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .text.esp_secure_boot_read_key_digests + 0x00000000 0x62 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .rodata.s_revoke_table + 0x00000000 0x24 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .rodata.s_table + 0x00000000 0x78 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_frame 0x00000000 0x268 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_info 0x00000000 0x1397 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_abbrev 0x00000000 0x338 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_loc 0x00000000 0xa01 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_aranges + 0x00000000 0xe0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_ranges 0x00000000 0x128 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_line 0x00000000 0x1519 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .debug_str 0x00000000 0x107d zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .literal.esp_flash_write_protect_crypt_cnt + 0x00000000 0x8 zephyr/libzephyr.a(flash_encrypt.c.obj) + .literal.esp_get_flash_encryption_mode + 0x00000000 0x2c zephyr/libzephyr.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_init_checks + 0x00000000 0x14 zephyr/libzephyr.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_set_release_mode + 0x00000000 0x64 zephyr/libzephyr.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_cfg_verify_release_mode + 0x00000000 0xb0 zephyr/libzephyr.a(flash_encrypt.c.obj) + .iram1.0.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_encrypt.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(flash_encrypt.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(flash_encrypt.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(flash_encrypt.c.obj) + .text.esp_flash_write_protect_crypt_cnt + 0x00000000 0xe zephyr/libzephyr.a(flash_encrypt.c.obj) + .text.esp_get_flash_encryption_mode + 0x00000000 0x72 zephyr/libzephyr.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_init_checks.str1.1 + 0x00000000 0x73 zephyr/libzephyr.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_init_checks + 0x00000000 0x26 zephyr/libzephyr.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_set_release_mode.str1.1 + 0x00000000 0x6f zephyr/libzephyr.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_set_release_mode + 0x00000000 0xaa zephyr/libzephyr.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_cfg_verify_release_mode.str1.1 + 0x00000000 0x2d1 zephyr/libzephyr.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_cfg_verify_release_mode + 0x00000000 0x162 zephyr/libzephyr.a(flash_encrypt.c.obj) + .iram1.0 0x00000000 0xd zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_frame 0x00000000 0xa0 zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_info 0x00000000 0x8bf zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_abbrev 0x00000000 0x290 zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_loc 0x00000000 0x1b6 zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_aranges + 0x00000000 0x48 zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_ranges 0x00000000 0x38 zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_line 0x00000000 0xba1 zephyr/libzephyr.a(flash_encrypt.c.obj) + .debug_str 0x00000000 0xa00 zephyr/libzephyr.a(flash_encrypt.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(flash_encrypt.c.obj) + .literal.esp_gpio_reserve + 0x00000000 0x4 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .literal.esp_gpio_revoke + 0x00000000 0x4 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .literal.esp_gpio_is_reserved + 0x00000000 0x4 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .text.esp_gpio_reserve + 0x00000000 0x23 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .text.esp_gpio_revoke + 0x00000000 0x29 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .text.esp_gpio_is_reserved + 0x00000000 0x1a zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .data.s_reserved_pin_mask + 0x00000000 0x8 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_frame 0x00000000 0x58 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_info 0x00000000 0x258 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_abbrev 0x00000000 0x133 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_loc 0x00000000 0x136 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_ranges 0x00000000 0x50 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_line 0x00000000 0x3a9 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .debug_str 0x00000000 0x2df zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .literal.spi_flash_hal_setup_auto_resume_mode + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .literal.spi_flash_hal_disable_auto_resume_mode + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .text.spi_flash_hal_enter_dpd_mode + 0x00000000 0x26 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .text.spi_flash_hal_exit_dpd_mode + 0x00000000 0x26 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .text.spi_flash_hal_setup_auto_resume_mode + 0x00000000 0x1a zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .text.spi_flash_hal_disable_auto_resume_mode + 0x00000000 0x1a zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .literal.esp_opiflash_set_required_regs + 0x00000000 0x8 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .text.esp_opiflash_set_required_regs + 0x00000000 0x16 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .literal.read_unique_id + 0x00000000 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.find_region + 0x00000000 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_read_id + 0x00000000 0x8 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_read_unique_chip_id + 0x00000000 0x1c zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_get_size + 0x00000000 0x8 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_erase_region + 0x00000000 0xc zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_erase_chip + 0x00000000 0x14 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_get_chip_write_protect + 0x00000000 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_set_chip_write_protect + 0x00000000 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_get_protectable_regions + 0x00000000 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_get_protected_region + 0x00000000 0xc zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_set_protected_region + 0x00000000 0xc zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_read + 0x00000000 0x10 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_write + 0x00000000 0x1c zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_read_encrypted + 0x00000000 0x14 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_get_io_mode + 0x00000000 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_set_io_mode + 0x00000000 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_write_encrypted + 0x00000000 0x38 zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_suspend_cmd_init + 0x00000000 0x1c zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_app_disable_protect + 0x00000000 0xc zephyr/libzephyr.a(esp_flash_api.c.obj) + .literal.esp_flash_init + 0x00000000 0x3c zephyr/libzephyr.a(esp_flash_api.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.read_unique_id + 0x00000000 0x30 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.find_region + 0x00000000 0x3b zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_chip_driver_initialized + 0x00000000 0xc zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_read_id + 0x00000000 0x36 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_read_unique_chip_id + 0x00000000 0x64 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_get_size + 0x00000000 0x36 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_erase_region + 0x00000000 0x1e9 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_erase_chip + 0x00000000 0x38 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_get_chip_write_protect + 0x00000000 0x4c zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_set_chip_write_protect + 0x00000000 0x4e zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_get_protectable_regions + 0x00000000 0x46 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_get_protected_region + 0x00000000 0x8d zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_set_protected_region + 0x00000000 0x9d zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_read + 0x00000000 0x116 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_write + 0x00000000 0x162 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_read_encrypted + 0x00000000 0x64 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_get_io_mode + 0x00000000 0x5b zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_set_io_mode + 0x00000000 0x52 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_write_encrypted + 0x00000000 0x1e6 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_suspend_cmd_init + 0x00000000 0x52 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_app_disable_protect + 0x00000000 0x21 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.esp_flash_init + 0x00000000 0x104 zephyr/libzephyr.a(esp_flash_api.c.obj) + .iram1.0.literal + 0x00000000 0x18 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_remove_flash_device + 0x00000000 0x2c zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_add_flash_device + 0x00000000 0x7c zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .iram1.0 0x00000000 0x13f zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .text.spi_bus_remove_flash_device + 0x00000000 0x8e zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .rodata.spi_bus_add_flash_device.str1.1 + 0x00000000 0x77 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .text.spi_bus_add_flash_device + 0x00000000 0x287 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .text.esp_flash_spi_init_include_func + 0x00000000 0x5 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .rodata.CSWTCH$57 + 0x00000000 0xc zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .literal.spi_flash_mmap + 0x00000000 0x14 zephyr/libzephyr.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_pages + 0x00000000 0x24 zephyr/libzephyr.a(flash_mmap.c.obj) + .literal.spi_flash_munmap + 0x00000000 0x10 zephyr/libzephyr.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_dump + 0x00000000 0x8 zephyr/libzephyr.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_get_free_pages + 0x00000000 0x4 zephyr/libzephyr.a(flash_mmap.c.obj) + .literal.spi_flash_cache2phys + 0x00000000 0x4 zephyr/libzephyr.a(flash_mmap.c.obj) + .literal.spi_flash_phys2cache + 0x00000000 0x8 zephyr/libzephyr.a(flash_mmap.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(flash_mmap.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(flash_mmap.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(flash_mmap.c.obj) + .text.spi_flash_mmap + 0x00000000 0x8b zephyr/libzephyr.a(flash_mmap.c.obj) + .text.spi_flash_mmap_pages + 0x00000000 0x15f zephyr/libzephyr.a(flash_mmap.c.obj) + .text.spi_flash_munmap + 0x00000000 0x3a zephyr/libzephyr.a(flash_mmap.c.obj) + .text.spi_flash_mmap_dump + 0x00000000 0x10 zephyr/libzephyr.a(flash_mmap.c.obj) + .text.spi_flash_mmap_get_free_pages + 0x00000000 0x1d zephyr/libzephyr.a(flash_mmap.c.obj) + .text.spi_flash_cache2phys + 0x00000000 0x24 zephyr/libzephyr.a(flash_mmap.c.obj) + .text.spi_flash_phys2cache + 0x00000000 0x30 zephyr/libzephyr.a(flash_mmap.c.obj) + .iram1.3.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_ops.c.obj) + .iram1.6.literal + 0x00000000 0x8 zephyr/libzephyr.a(flash_ops.c.obj) + .literal.esp_mspi_get_io + 0x00000000 0x14 zephyr/libzephyr.a(flash_ops.c.obj) + .literal.esp_mspi_pin_reserve + 0x00000000 0x10 zephyr/libzephyr.a(flash_ops.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(flash_ops.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(flash_ops.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(flash_ops.c.obj) + .iram1.3 0x00000000 0xa zephyr/libzephyr.a(flash_ops.c.obj) + .iram1.6 0x00000000 0x1f zephyr/libzephyr.a(flash_ops.c.obj) + .text.esp_mspi_get_io + 0x00000000 0x63 zephyr/libzephyr.a(flash_ops.c.obj) + .text.esp_mspi_pin_reserve + 0x00000000 0x4a zephyr/libzephyr.a(flash_ops.c.obj) + .rodata.s_mspi_io_num_default + 0x00000000 0xb zephyr/libzephyr.a(flash_ops.c.obj) + .dram1.1 0x00000000 0x8 zephyr/libzephyr.a(flash_ops.c.obj) + .literal.memspi_host_read + 0x00000000 0x4 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .text.memspi_host_read + 0x00000000 0x30 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .literal.spi_flash_hpm_get_dummy + 0x00000000 0x8 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .text.spi_flash_enable_high_performance_mode + 0x00000000 0x7 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .text.spi_flash_hpm_dummy_adjust + 0x00000000 0x7 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .text.spi_flash_hpm_get_dummy_generic + 0x00000000 0x1a zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .text.spi_flash_hpm_get_dummy + 0x00000000 0x10 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .bss.s_dummy_conf + 0x00000000 0x5 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .debug_frame 0x00000000 0x70 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .debug_info 0x00000000 0x45f zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .debug_abbrev 0x00000000 0x114 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .debug_aranges + 0x00000000 0x38 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .debug_line 0x00000000 0x421 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .debug_str 0x00000000 0xe6f zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .literal.esp_flash_app_disable_os_functions + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .text.get_temp_buffer_not_supported + 0x00000000 0x7 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .text.esp_flash_app_disable_os_functions + 0x00000000 0xc zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .literal.spi23_end + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .literal.spi23_start + 0x00000000 0x8 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .literal.esp_flash_init_os_functions + 0x00000000 0x10 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .literal.esp_flash_deinit_os_functions + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text.spi23_end + 0x00000000 0x10 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text.spi23_start + 0x00000000 0x1e zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_os_functions + 0x00000000 0x47 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_deinit_os_functions + 0x00000000 0x1e zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_main_bus_lock + 0x00000000 0x8 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_set_dangerous_write_protection + 0x00000000 0x23 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .rodata.esp_flash_spi23_default_os_functions + 0x00000000 0x28 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .literal.spi_flash_wrap_probe_c0 + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_enable_c0 + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_enable_77 + 0x00000000 0x8 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_clear_c0 + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_clear_77 + 0x00000000 0x8 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_probe + 0x00000000 0xc zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_enable + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_wrap_disable + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_support_wrap_size + 0x00000000 0x18 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_probe_c0 + 0x00000000 0x12 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_enable_c0 + 0x00000000 0x2e zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_enable_77 + 0x00000000 0x5a zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_clear_c0 + 0x00000000 0x1e zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_clear_77 + 0x00000000 0x46 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_probe + 0x00000000 0x47 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_enable + 0x00000000 0x30 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_wrap_disable + 0x00000000 0x2d zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .rodata.spi_flash_support_wrap_size.str1.1 + 0x00000000 0x3d zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .text.spi_flash_support_wrap_size + 0x00000000 0x49 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .bss.chip_wrap + 0x00000000 0x4 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .rodata.str1.1 + 0x00000000 0xf zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .rodata.spi_flash_wrap_list + 0x00000000 0x20 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_frame 0x00000000 0xe8 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_info 0x00000000 0x8d8 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_abbrev 0x00000000 0x234 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_loc 0x00000000 0x2ea zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_aranges + 0x00000000 0x60 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_ranges 0x00000000 0x50 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_line 0x00000000 0x800 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .debug_str 0x00000000 0x10a4 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .literal.spi_flash_op_lock + 0x00000000 0x8 zephyr/libzephyr.a(cache_utils.c.obj) + .literal.spi_flash_op_unlock + 0x00000000 0x8 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.2.literal + 0x00000000 0x8 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.3.literal + 0x00000000 0x8 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.4.literal + 0x00000000 0x4 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.5.literal + 0x00000000 0x4 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.6.literal + 0x00000000 0x4 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.7.literal + 0x00000000 0x4 zephyr/libzephyr.a(cache_utils.c.obj) + .literal.esp_enable_cache_wrap + 0x00000000 0x14 zephyr/libzephyr.a(cache_utils.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(cache_utils.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(cache_utils.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(cache_utils.c.obj) + .text.spi_flash_op_lock + 0x00000000 0x12 zephyr/libzephyr.a(cache_utils.c.obj) + .text.spi_flash_op_unlock + 0x00000000 0xe zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.2 0x00000000 0x11 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.3 0x00000000 0x11 zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.4 0x00000000 0xb zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.5 0x00000000 0xb zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.6 0x00000000 0xb zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.7 0x00000000 0x11 zephyr/libzephyr.a(cache_utils.c.obj) + .rodata.esp_enable_cache_wrap.str1.1 + 0x00000000 0x79 zephyr/libzephyr.a(cache_utils.c.obj) + .text.esp_enable_cache_wrap + 0x00000000 0x32 zephyr/libzephyr.a(cache_utils.c.obj) + ._k_mutex.static.s_flash_op_mutex_ + 0x00000000 0x14 zephyr/libzephyr.a(cache_utils.c.obj) + .literal.uart_hal_set_sw_flow_ctrl + 0x00000000 0x4 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_set_at_cmd_char + 0x00000000 0x4 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_set_tx_idle_num + 0x00000000 0x4 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_init + 0x00000000 0xc zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_get_max_rx_timeout_thrd + 0x00000000 0x4 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_get_port_num + 0x00000000 0xc zephyr/libzephyr.a(uart_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(uart_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(uart_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_set_sw_flow_ctrl + 0x00000000 0xcb zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_set_at_cmd_char + 0x00000000 0xe2 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_set_tx_idle_num + 0x00000000 0x22 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_set_dtr + 0x00000000 0x20 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_set_wakeup_edge_thrd + 0x00000000 0x20 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_get_wakeup_edge_thrd + 0x00000000 0x13 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_is_hw_rts_en + 0x00000000 0xf zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_set_loop_back + 0x00000000 0x22 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_init + 0x00000000 0xbb zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_get_max_rx_timeout_thrd + 0x00000000 0x17 zephyr/libzephyr.a(uart_hal.c.obj) + .text.uart_hal_get_port_num + 0x00000000 0x22 zephyr/libzephyr.a(uart_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .text.uart_hal_tx_break + 0x00000000 0x53 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .literal.spi_hal_set_data_pin_idle_level + 0x00000000 0x10 zephyr/libzephyr.a(spi_hal.c.obj) + .literal.spi_hal_sct_init + 0x00000000 0x4 zephyr/libzephyr.a(spi_hal.c.obj) + .literal.spi_hal_sct_deinit + 0x00000000 0x4 zephyr/libzephyr.a(spi_hal.c.obj) + .literal.spi_hal_master_cal_clock + 0x00000000 0x8 zephyr/libzephyr.a(spi_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_hal.c.obj) + .text.spi_hal_set_data_pin_idle_level + 0x00000000 0x7e zephyr/libzephyr.a(spi_hal.c.obj) + .text.spi_hal_deinit + 0x00000000 0x2e zephyr/libzephyr.a(spi_hal.c.obj) + .text.spi_hal_sct_init + 0x00000000 0x70 zephyr/libzephyr.a(spi_hal.c.obj) + .text.spi_hal_sct_deinit + 0x00000000 0x64 zephyr/libzephyr.a(spi_hal.c.obj) + .text.spi_hal_master_cal_clock + 0x00000000 0x14a zephyr/libzephyr.a(spi_hal.c.obj) + .literal.spi_hal_hw_prepare_rx + 0x00000000 0x4 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .literal.spi_hal_sct_set_conf_bits_len + 0x00000000 0x4 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .literal.spi_hal_sct_init_conf_buffer + 0x00000000 0x4 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .literal.spi_hal_sct_format_conf_buffer + 0x00000000 0x28 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text.spi_hal_hw_prepare_rx + 0x00000000 0x48 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text.spi_hal_hw_prepare_tx + 0x00000000 0x47 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text.spi_hal_get_intr_mask + 0x00000000 0xb0 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text.spi_hal_clear_intr_mask + 0x00000000 0xfa zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text.spi_hal_sct_set_conf_bits_len + 0x00000000 0x23 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text.spi_hal_sct_init_conf_buffer + 0x00000000 0x6e zephyr/libzephyr.a(spi_hal_iram.c.obj) + .text.spi_hal_sct_format_conf_buffer + 0x00000000 0x252 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .literal.lldesc_setup_link_constrained + 0x00000000 0xc zephyr/libzephyr.a(lldesc.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(lldesc.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(lldesc.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(lldesc.c.obj) + .text.lldesc_setup_link_constrained + 0x00000000 0xc7 zephyr/libzephyr.a(lldesc.c.obj) + .text.lldesc_get_received_len + 0x00000000 0x2a zephyr/libzephyr.a(lldesc.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(lldesc.c.obj) + .debug_info 0x00000000 0x2bb zephyr/libzephyr.a(lldesc.c.obj) + .debug_abbrev 0x00000000 0x1a9 zephyr/libzephyr.a(lldesc.c.obj) + .debug_loc 0x00000000 0x15c zephyr/libzephyr.a(lldesc.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(lldesc.c.obj) + .debug_ranges 0x00000000 0x38 zephyr/libzephyr.a(lldesc.c.obj) + .debug_line 0x00000000 0x498 zephyr/libzephyr.a(lldesc.c.obj) + .debug_str 0x00000000 0x315 zephyr/libzephyr.a(lldesc.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(lldesc.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_deinit + 0x00000000 0x9 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_start_with_desc + 0x00000000 0x12 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_stop + 0x00000000 0x10 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_append + 0x00000000 0x10 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_reset + 0x00000000 0x10 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_set_priority + 0x00000000 0x12 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_connect_peri + 0x00000000 0x12 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_connect_mem + 0x00000000 0x12 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_disconnect_all + 0x00000000 0x10 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_enable_burst + 0x00000000 0x16 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_set_burst_size + 0x00000000 0x14 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_set_strategy + 0x00000000 0x1a zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_enable_intr + 0x00000000 0x16 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_clear_intr + 0x00000000 0x12 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_read_intr_status + 0x00000000 0x16 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_get_intr_status_reg + 0x00000000 0x12 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .text.gdma_hal_get_eof_desc_addr + 0x00000000 0x16 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_frame 0x00000000 0x1a8 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_info 0x00000000 0x20aa zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_abbrev 0x00000000 0x2c9 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_loc 0x00000000 0x81 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_aranges + 0x00000000 0xa0 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_ranges 0x00000000 0x90 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_line 0x00000000 0x6d2 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .debug_str 0x00000000 0xe09 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .literal.gdma_ahb_hal_init + 0x00000000 0x48 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_start_with_desc + 0x00000000 0x76 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_stop + 0x00000000 0x41 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_append + 0x00000000 0x41 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_reset + 0x00000000 0x54 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_set_priority + 0x00000000 0x45 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_connect_peri + 0x00000000 0x55 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_connect_mem + 0x00000000 0x56 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_disconnect_all + 0x00000000 0x4a zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_enable_burst + 0x00000000 0x7d zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_set_strategy + 0x00000000 0x8f zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_clear_intr + 0x00000000 0x21 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_read_intr_status + 0x00000000 0x3c zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_get_intr_status_reg + 0x00000000 0x1a zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_set_burst_size + 0x00000000 0x6b zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_get_eof_desc_addr + 0x00000000 0x36 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_enable_intr + 0x00000000 0x56 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .text.gdma_ahb_hal_init + 0x00000000 0x67 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .data.gdma_ahb_hal_priv_data + 0x00000000 0x4 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_frame 0x00000000 0x1a8 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_info 0x00000000 0x312b zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_abbrev 0x00000000 0x469 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_loc 0x00000000 0x10a9 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_aranges + 0x00000000 0xa0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_ranges 0x00000000 0x228 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_line 0x00000000 0x12b0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .debug_str 0x00000000 0x130c zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .literal.bootloader_clock_configure + 0x00000000 0x34 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .rodata 0x00000000 0x8 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .text.bootloader_clock_configure + 0x00000000 0xce zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .debug_frame 0x00000000 0x28 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .debug_info 0x00000000 0x361 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .debug_abbrev 0x00000000 0x12c zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .debug_line 0x00000000 0x4c9 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .debug_str 0x00000000 0x7a0 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(mpu_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(mpu_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(mpu_hal.c.obj) + .text.mpu_hal_set_region_access + 0x00000000 0x38 zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_frame 0x00000000 0x28 zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_info 0x00000000 0x233 zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_abbrev 0x00000000 0x158 zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_loc 0x00000000 0x7f zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_line 0x00000000 0x37d zephyr/libzephyr.a(mpu_hal.c.obj) + .debug_str 0x00000000 0x336 zephyr/libzephyr.a(mpu_hal.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(mpu_hal.c.obj) + .iram1.3.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.4.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.6.literal + 0x00000000 0x8 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.7.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.8.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.10.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.11.literal + 0x00000000 0x14 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.12.literal + 0x00000000 0x18 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .literal.bootloader_enable_qio_mode + 0x00000000 0x50 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.5.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.9.literal + 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.3 0x00000000 0x15 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.4 0x00000000 0x15 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.6 0x00000000 0x29 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.7 0x00000000 0x13 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.8 0x00000000 0x13 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.10 0x00000000 0x13 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.11 0x00000000 0x3c zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.12 0x00000000 0x42 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .rodata.bootloader_enable_qio_mode.str1.1 + 0x00000000 0x90 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .text.bootloader_enable_qio_mode + 0x00000000 0x15a zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.5 0x00000000 0x15 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .iram1.9 0x00000000 0x13 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .dram1.2 0x00000000 0x1 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .dram1.1 0x00000000 0x4 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .rodata.str1.1 + 0x00000000 0x22 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .dram1.0 0x00000000 0x7e zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_frame 0x00000000 0x118 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_info 0x00000000 0xc91 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_abbrev 0x00000000 0x31a zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_loc 0x00000000 0x173 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_aranges + 0x00000000 0x70 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_ranges 0x00000000 0x78 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_line 0x00000000 0xb34 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .debug_str 0x00000000 0x1464 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .literal.bootloader_flash_update_id + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .literal.bootloader_flash_update_size + 0x00000000 0x4 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.0.literal + 0x00000000 0x10 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.1.literal + 0x00000000 0xc zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.2.literal + 0x00000000 0xc zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.4.literal + 0x00000000 0x20 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.3.literal + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .literal.bootloader_init_spi_flash + 0x00000000 0x68 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .text.bootloader_flash_update_id + 0x00000000 0x12 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .text.bootloader_flash_update_size + 0x00000000 0xc zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.0 0x00000000 0x99 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.1 0x00000000 0x28 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.2 0x00000000 0x28 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.4 0x00000000 0x7a zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.3 0x00000000 0x14 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.bootloader_init_spi_flash.str1.1 + 0x00000000 0x72 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .text.bootloader_init_spi_flash + 0x00000000 0xee zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.CSWTCH$30 + 0x00000000 0x10 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.CSWTCH$25 + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.str1.1 + 0x00000000 0x57 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.CSWTCH$23 + 0x00000000 0x20 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.CSWTCH$22 + 0x00000000 0x14 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .rodata.CSWTCH$21 + 0x00000000 0x40 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_frame 0x00000000 0xd0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_info 0x00000000 0xd1b zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_abbrev 0x00000000 0x2d2 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_loc 0x00000000 0x229 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_aranges + 0x00000000 0x58 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_ranges 0x00000000 0x48 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_line 0x00000000 0xbc0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .debug_str 0x00000000 0x175f zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(console_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(console_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(console_init.c.obj) + .text.esp_console_deinit + 0x00000000 0x5 zephyr/libzephyr.a(console_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .literal.rtcio_ll_iomux_func_sel + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_io_number_get + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_init + 0x00000000 0x2c zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_deinit + 0x00000000 0x24 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_set_level + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_get_level + 0x00000000 0x1c zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_set_drive_capability + 0x00000000 0x2c zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_get_drive_capability + 0x00000000 0x28 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction_in_sleep + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_iomux_func_sel + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_en + 0x00000000 0x24 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_dis + 0x00000000 0x24 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_force_hold_en_all + 0x00000000 0x8 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_force_hold_dis_all + 0x00000000 0xc zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_isolate + 0x00000000 0x28 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_wakeup_enable + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_wakeup_disable + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_io.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_io.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtcio_ll_iomux_func_sel + 0x00000000 0x36 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_io_number_get + 0x00000000 0x10 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_init + 0x00000000 0x9e zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_deinit + 0x00000000 0x6c zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_set_level + 0x00000000 0x5f zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_get_level + 0x00000000 0x44 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.rtc_gpio_set_drive_capability.str1.1 + 0x00000000 0x4f zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_set_drive_capability + 0x00000000 0xd0 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.rtc_gpio_get_drive_capability.str1.1 + 0x00000000 0x2a zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_get_drive_capability + 0x00000000 0xa5 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction + 0x00000000 0x50 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction_in_sleep + 0x00000000 0x50 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_iomux_func_sel + 0x00000000 0x4e zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_hold_en + 0x00000000 0x62 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_hold_dis + 0x00000000 0x65 zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_en_all + 0x00000000 0x2c zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_dis_all + 0x00000000 0x2a zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_isolate + 0x00000000 0x6b zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_enable + 0x00000000 0x7e zephyr/libzephyr.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_disable + 0x00000000 0x6d zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x18 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x17 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0x11 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0x12 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x11 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$5 + 0x00000000 0x18 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$10 + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$11 + 0x00000000 0x17 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$12 + 0x00000000 0x1e zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$13 + 0x00000000 0x1e zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$14 + 0x00000000 0x13 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$15 + 0x00000000 0x13 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$16 + 0x00000000 0x10 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$17 + 0x00000000 0xe zephyr/libzephyr.a(rtc_io.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .rodata.temperature_sensor_attributes + 0x00000000 0x64 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .debug_info 0x00000000 0xf6 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .debug_abbrev 0x00000000 0x90 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .debug_aranges + 0x00000000 0x18 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .debug_line 0x00000000 0x123 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .debug_str 0x00000000 0x2c6 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .literal.temperature_sensor_ll_set_range + 0x00000000 0x4 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .literal.temperature_sensor_hal_get_raw_value + 0x00000000 0x1c zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .literal.temperature_sensor_hal_get_degree + 0x00000000 0x24 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .literal.temperature_sensor_hal_init + 0x00000000 0xc zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .literal.temperature_sensor_hal_sync_tsens_idx + 0x00000000 0x4 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .text.temperature_sensor_ll_set_range + 0x00000000 0x1a zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .text.temperature_sensor_hal_get_raw_value + 0x00000000 0x82 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .text.temperature_sensor_hal_get_degree + 0x00000000 0x95 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .text.temperature_sensor_hal_init + 0x00000000 0x1c zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .text.temperature_sensor_hal_sync_tsens_idx + 0x00000000 0xb zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .data.s_hal_tsens_idx + 0x00000000 0x1 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .data.s_hal_record_max + 0x00000000 0x4 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .data.s_hal_record_min + 0x00000000 0x4 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_frame 0x00000000 0x88 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_info 0x00000000 0x1f29 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_abbrev 0x00000000 0x2d8 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_loc 0x00000000 0x9f zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_aranges + 0x00000000 0x40 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_ranges 0x00000000 0x78 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_line 0x00000000 0x7f2 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .debug_str 0x00000000 0x144f zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .literal.clk_hal_clock_output_setup + 0x00000000 0x4 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .literal.clk_hal_clock_output_teardown + 0x00000000 0x4 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .text.clk_hal_clock_output_setup + 0x00000000 0x5c zephyr/libzephyr.a(clk_tree_hal.c.obj) + .text.clk_hal_clock_output_teardown + 0x00000000 0x37 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .literal.rtcio_ll_input_enable + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_input_disable + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_enable_output_in_sleep + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_disable_output_in_sleep + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_disable_input_in_sleep + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_enable_sleep_setting + 0x00000000 0x4 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_set_direction + 0x00000000 0x10 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_set_direction_in_sleep + 0x00000000 0x20 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_isolate + 0x00000000 0x10 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_ll_input_enable + 0x00000000 0x1f zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_ll_input_disable + 0x00000000 0x22 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_ll_enable_output_in_sleep + 0x00000000 0x22 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_ll_disable_output_in_sleep + 0x00000000 0x24 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_ll_disable_input_in_sleep + 0x00000000 0x22 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_ll_enable_sleep_setting + 0x00000000 0x1f zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction + 0x00000000 0xc3 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .rodata.rtcio_hal_set_direction + 0x00000000 0x18 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction_in_sleep + 0x00000000 0xac zephyr/libzephyr.a(rtc_io_hal.c.obj) + .text.rtcio_hal_isolate + 0x00000000 0x86 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_frame 0x00000000 0xe8 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_info 0x00000000 0x1948 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_abbrev 0x00000000 0x301 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_loc 0x00000000 0x342 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_aranges + 0x00000000 0x60 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_ranges 0x00000000 0x80 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_line 0x00000000 0xa43 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .debug_str 0x00000000 0xda7 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .literal.systimer_hal_get_time + 0x00000000 0x4 zephyr/libzephyr.a(systimer_hal.c.obj) + .literal.systimer_hal_counter_value_advance + 0x00000000 0x4 zephyr/libzephyr.a(systimer_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(systimer_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(systimer_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_deinit + 0x00000000 0x1a zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_get_clock_source + 0x00000000 0x7 zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_get_counter_value + 0x00000000 0x50 zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_get_time + 0x00000000 0x1a zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_set_alarm_target + 0x00000000 0x6c zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_set_alarm_period + 0x00000000 0x67 zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_get_alarm_value + 0x00000000 0x1c zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_enable_alarm_int + 0x00000000 0x1e zephyr/libzephyr.a(systimer_hal.c.obj) + .text.systimer_hal_counter_value_advance + 0x00000000 0x55 zephyr/libzephyr.a(systimer_hal.c.obj) + .literal.wdt_hal_init + 0x00000000 0x34 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .literal.wdt_hal_deinit + 0x00000000 0x4 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .literal.wdt_hal_config_stage + 0x00000000 0x24 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text.wdt_hal_init + 0x00000000 0x28e zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text.wdt_hal_deinit + 0x00000000 0xc6 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text.wdt_hal_config_stage + 0x00000000 0x12e zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text.wdt_hal_enable + 0x00000000 0x4c zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text.wdt_hal_handle_intr + 0x00000000 0x51 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text.wdt_hal_feed + 0x00000000 0x2a zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .text.wdt_hal_is_enabled + 0x00000000 0x1f zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .literal.xt_wdt_hal_init + 0x00000000 0x8 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .literal.xt_wdt_hal_enable_backup_clk + 0x00000000 0x4 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .literal.xt_wdt_hal_enable + 0x00000000 0x4 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .text.xt_wdt_hal_init + 0x00000000 0x38 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .text.xt_wdt_hal_enable_backup_clk + 0x00000000 0x6d zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .text.xt_wdt_hal_enable + 0x00000000 0x38 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_frame 0x00000000 0x58 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_info 0x00000000 0x3fc8 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_abbrev 0x00000000 0x38b zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_loc 0x00000000 0x2ce zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_ranges 0x00000000 0xa0 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_line 0x00000000 0x690 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .debug_str 0x00000000 0x29f4 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .literal.adc_calc_hw_calibration_code + 0x00000000 0x24 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .iram1.0.literal + 0x00000000 0x8 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .literal.adc_lock_acquire + 0x00000000 0xc zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .literal.adc_lock_release + 0x00000000 0x20 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .literal.adc_lock_try_acquire + 0x00000000 0xc zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .literal.adc_apb_periph_claim + 0x00000000 0x18 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .literal.adc_apb_periph_free + 0x00000000 0x28 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc_calc_hw_calibration_code + 0x00000000 0x7a zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .iram1.0 0x00000000 0x18 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc_lock_acquire + 0x00000000 0x24 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .rodata.adc_lock_release.str1.1 + 0x00000000 0x7c zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc_lock_release + 0x00000000 0x4e zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc_lock_try_acquire + 0x00000000 0x2e zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc2_wifi_acquire + 0x00000000 0x7 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc2_wifi_release + 0x00000000 0x7 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc_apb_periph_claim + 0x00000000 0x48 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .rodata.adc_apb_periph_free.str1.1 + 0x00000000 0x34 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .text.adc_apb_periph_free + 0x00000000 0x62 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .rodata.__func__$0 + 0x00000000 0x14 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x11 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .bss.s_adc_digi_ctrlr_cnt + 0x00000000 0x4 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .bss.s_spinlock + 0x00000000 0x4 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + ._k_mutex.static.adc2_lock_ + 0x00000000 0x14 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + ._k_mutex.static.adc1_lock_ + 0x00000000 0x14 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .bss.s_adc_cali_param + 0x00000000 0x20 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_frame 0x00000000 0xe8 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_info 0x00000000 0x7b39 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_abbrev 0x00000000 0x4cc zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_loc 0x00000000 0x309 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_aranges + 0x00000000 0x60 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_ranges 0x00000000 0xd8 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_line 0x00000000 0xfd6 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .debug_str 0x00000000 0x612c zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .literal.periph_rtc_dig_clk8m_enable + 0x00000000 0x18 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .literal.periph_rtc_dig_clk8m_get_freq + 0x00000000 0x4 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .literal.periph_rtc_dig_clk8m_disable + 0x00000000 0x14 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .text.periph_rtc_dig_clk8m_enable + 0x00000000 0x50 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .text.periph_rtc_dig_clk8m_get_freq + 0x00000000 0xa zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .text.periph_rtc_dig_clk8m_disable + 0x00000000 0x38 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .bss.s_rc_fast_freq_hz + 0x00000000 0x4 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .bss.s_periph_ref_counts + 0x00000000 0x1 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .bss.periph_spinlock + 0x00000000 0x4 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_frame 0x00000000 0x58 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_info 0x00000000 0x826 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_abbrev 0x00000000 0x216 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_loc 0x00000000 0x6c zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_ranges 0x00000000 0x50 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_line 0x00000000 0x841 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .debug_str 0x00000000 0x15d4 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .literal.esp_cpu_stall + 0x00000000 0xc zephyr/libzephyr.a(cpu.c.obj) + .literal.esp_cpu_unstall + 0x00000000 0xc zephyr/libzephyr.a(cpu.c.obj) + .literal.esp_cpu_reset + 0x00000000 0x8 zephyr/libzephyr.a(cpu.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(cpu.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(cpu.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_stall + 0x00000000 0x79 zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_unstall + 0x00000000 0x49 zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_reset + 0x00000000 0x25 zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_wait_for_intr + 0x00000000 0x8 zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_set_breakpoint + 0x00000000 0x24 zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_clear_breakpoint + 0x00000000 0x27 zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_set_watchpoint + 0x00000000 0x6a zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_clear_watchpoint + 0x00000000 0x1b zephyr/libzephyr.a(cpu.c.obj) + .text.esp_cpu_compare_and_set + 0x00000000 0x14 zephyr/libzephyr.a(cpu.c.obj) + .debug_frame 0x00000000 0xe8 zephyr/libzephyr.a(cpu.c.obj) + .debug_info 0x00000000 0x6f8 zephyr/libzephyr.a(cpu.c.obj) + .debug_abbrev 0x00000000 0x201 zephyr/libzephyr.a(cpu.c.obj) + .debug_loc 0x00000000 0x52e zephyr/libzephyr.a(cpu.c.obj) + .debug_aranges + 0x00000000 0x60 zephyr/libzephyr.a(cpu.c.obj) + .debug_ranges 0x00000000 0x90 zephyr/libzephyr.a(cpu.c.obj) + .debug_line 0x00000000 0xaf3 zephyr/libzephyr.a(cpu.c.obj) + .debug_str 0x00000000 0x56d zephyr/libzephyr.a(cpu.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(cpu.c.obj) + .literal.calc_checksum + 0x00000000 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .iram1.1.literal + 0x00000000 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .iram1.2.literal + 0x00000000 0x8 zephyr/libzephyr.a(esp_clk.c.obj) + .iram1.3.literal + 0x00000000 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .literal.esp_rtc_get_time_us + 0x00000000 0x20 zephyr/libzephyr.a(esp_clk.c.obj) + .literal.esp_clk_slowclk_cal_get + 0x00000000 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .literal.esp_clk_private_lock + 0x00000000 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .literal.esp_clk_private_unlock + 0x00000000 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_clk.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_clk.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_clk.c.obj) + .text.calc_checksum + 0x00000000 0x1c zephyr/libzephyr.a(esp_clk.c.obj) + .iram1.1 0x00000000 0x14 zephyr/libzephyr.a(esp_clk.c.obj) + .iram1.2 0x00000000 0x1a zephyr/libzephyr.a(esp_clk.c.obj) + .iram1.3 0x00000000 0x14 zephyr/libzephyr.a(esp_clk.c.obj) + .text.esp_rtc_get_time_us + 0x00000000 0xa2 zephyr/libzephyr.a(esp_clk.c.obj) + .text.esp_clk_slowclk_cal_get + 0x00000000 0xd zephyr/libzephyr.a(esp_clk.c.obj) + .text.esp_clk_rtc_time + 0x00000000 0x9 zephyr/libzephyr.a(esp_clk.c.obj) + .text.esp_clk_private_lock + 0x00000000 0xd zephyr/libzephyr.a(esp_clk.c.obj) + .text.esp_clk_private_unlock + 0x00000000 0x10 zephyr/libzephyr.a(esp_clk.c.obj) + .data.first_call$0 + 0x00000000 0x1 zephyr/libzephyr.a(esp_clk.c.obj) + .rtc_timer_data_in_rtc_mem + 0x00000000 0x18 zephyr/libzephyr.a(esp_clk.c.obj) + .bss.s_esp_rtc_time_lock + 0x00000000 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .iram1.0.literal + 0x00000000 0x1c zephyr/libzephyr.a(hw_random.c.obj) + .literal.esp_fill_random + 0x00000000 0xc zephyr/libzephyr.a(hw_random.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(hw_random.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(hw_random.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(hw_random.c.obj) + .iram1.0 0x00000000 0x81 zephyr/libzephyr.a(hw_random.c.obj) + .text.esp_fill_random + 0x00000000 0x2e zephyr/libzephyr.a(hw_random.c.obj) + .bss.last_ccount$0 + 0x00000000 0x4 zephyr/libzephyr.a(hw_random.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(hw_random.c.obj) + .debug_info 0x00000000 0x34c zephyr/libzephyr.a(hw_random.c.obj) + .debug_abbrev 0x00000000 0x201 zephyr/libzephyr.a(hw_random.c.obj) + .debug_loc 0x00000000 0x117 zephyr/libzephyr.a(hw_random.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(hw_random.c.obj) + .debug_ranges 0x00000000 0x98 zephyr/libzephyr.a(hw_random.c.obj) + .debug_line 0x00000000 0x7cc zephyr/libzephyr.a(hw_random.c.obj) + .debug_str 0x00000000 0x3c2 zephyr/libzephyr.a(hw_random.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(hw_random.c.obj) + .literal.get_idx + 0x00000000 0x10 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.get_efuse_factory_mac + 0x00000000 0x10 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.get_efuse_mac_custom + 0x00000000 0x20 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.get_mac_addr_from_mac_table + 0x00000000 0x1c zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_mac_addr_len_get + 0x00000000 0x4 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_iface_mac_addr_set + 0x00000000 0x20 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_base_mac_addr_set + 0x00000000 0x4 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_efuse_mac_get_custom + 0x00000000 0x4 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_efuse_mac_get_default + 0x00000000 0x4 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_derive_local_mac + 0x00000000 0x10 zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_read_mac + 0x00000000 0x4c zephyr/libzephyr.a(mac_addr.c.obj) + .literal.esp_base_mac_addr_get + 0x00000000 0x4 zephyr/libzephyr.a(mac_addr.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(mac_addr.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(mac_addr.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(mac_addr.c.obj) + .rodata.get_idx.str1.1 + 0x00000000 0x39 zephyr/libzephyr.a(mac_addr.c.obj) + .text.get_idx 0x00000000 0x2e zephyr/libzephyr.a(mac_addr.c.obj) + .text.get_efuse_factory_mac + 0x00000000 0x28 zephyr/libzephyr.a(mac_addr.c.obj) + .rodata.get_efuse_mac_custom.str1.1 + 0x00000000 0x23 zephyr/libzephyr.a(mac_addr.c.obj) + .text.get_efuse_mac_custom + 0x00000000 0x54 zephyr/libzephyr.a(mac_addr.c.obj) + .rodata.get_mac_addr_from_mac_table.str1.1 + 0x00000000 0x37 zephyr/libzephyr.a(mac_addr.c.obj) + .text.get_mac_addr_from_mac_table + 0x00000000 0x8c zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_mac_addr_len_get + 0x00000000 0x24 zephyr/libzephyr.a(mac_addr.c.obj) + .rodata.esp_iface_mac_addr_set.str1.1 + 0x00000000 0x7c zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_iface_mac_addr_set + 0x00000000 0x7a zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_base_mac_addr_set + 0x00000000 0x11 zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_efuse_mac_get_custom + 0x00000000 0x10 zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_efuse_mac_get_default + 0x00000000 0x10 zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_derive_local_mac + 0x00000000 0x5a zephyr/libzephyr.a(mac_addr.c.obj) + .rodata.esp_read_mac.str1.1 + 0x00000000 0x6c zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_read_mac + 0x00000000 0x10d zephyr/libzephyr.a(mac_addr.c.obj) + .text.esp_base_mac_addr_get + 0x00000000 0x11 zephyr/libzephyr.a(mac_addr.c.obj) + .data.s_mac_table + 0x00000000 0x38 zephyr/libzephyr.a(mac_addr.c.obj) + .debug_frame 0x00000000 0x130 zephyr/libzephyr.a(mac_addr.c.obj) + .debug_info 0x00000000 0xb5a zephyr/libzephyr.a(mac_addr.c.obj) + .debug_abbrev 0x00000000 0x36e zephyr/libzephyr.a(mac_addr.c.obj) + .debug_loc 0x00000000 0x653 zephyr/libzephyr.a(mac_addr.c.obj) + .debug_aranges + 0x00000000 0x78 zephyr/libzephyr.a(mac_addr.c.obj) + .debug_ranges 0x00000000 0xb8 zephyr/libzephyr.a(mac_addr.c.obj) + .debug_line 0x00000000 0xebc zephyr/libzephyr.a(mac_addr.c.obj) + .debug_str 0x00000000 0x6c5 zephyr/libzephyr.a(mac_addr.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(mac_addr.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .text.s_register_config_driver + 0x00000000 0x5 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_psram_tuning + 0x00000000 0x5 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_get_psram_low_speed_freq_mhz + 0x00000000 0x7 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .literal.periph_rcc_release_enter + 0x00000000 0x8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .literal.periph_rcc_release_exit + 0x00000000 0x8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .literal.periph_module_reset + 0x00000000 0x1c zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.5.literal + 0x00000000 0x14 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.6.literal + 0x00000000 0x14 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.7.literal + 0x00000000 0x1c zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.8.literal + 0x00000000 0x18 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.9.literal + 0x00000000 0x10 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.10.literal + 0x00000000 0x8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.11.literal + 0x00000000 0x8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + .text.periph_rcc_release_enter + 0x00000000 0x1a zephyr/libzephyr.a(periph_ctrl.c.obj) + .text.periph_rcc_release_exit + 0x00000000 0x13 zephyr/libzephyr.a(periph_ctrl.c.obj) + .text.periph_module_reset + 0x00000000 0x6e zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.5 0x00000000 0x34 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.6 0x00000000 0x34 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.7 0x00000000 0x7e zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.8 0x00000000 0x58 zephyr/libzephyr.a(periph_ctrl.c.obj) + .rodata.str1.1 + 0x00000000 0x3f zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.9 0x00000000 0x22 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.10 0x00000000 0x11 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.11 0x00000000 0x11 zephyr/libzephyr.a(periph_ctrl.c.obj) + .literal.esp_cpu_configure_region_protection + 0x00000000 0x10 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .rodata 0x00000000 0x14 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .text.esp_cpu_configure_region_protection + 0x00000000 0x32 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_frame 0x00000000 0x28 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_info 0x00000000 0x174 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_abbrev 0x00000000 0x10b zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_loc 0x00000000 0x3f zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_line 0x00000000 0x24a zephyr/libzephyr.a(cpu_region_protect.c.obj) + .debug_str 0x00000000 0x308 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .text.esp_clk_tree_initialize + 0x00000000 0x5 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .text.esp_clk_tree_is_power_on + 0x00000000 0x7 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .text.esp_clk_tree_enable_power + 0x00000000 0x7 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .text.esp_clk_tree_enable_src + 0x00000000 0x7 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .literal.io_mux_enable_lp_io_clock + 0x00000000 0x20 zephyr/libzephyr.a(io_mux.c.obj) + .literal.io_mux_force_disable_lp_io_clock + 0x00000000 0x1c zephyr/libzephyr.a(io_mux.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(io_mux.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(io_mux.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(io_mux.c.obj) + .text.io_mux_set_clock_source + 0x00000000 0x7 zephyr/libzephyr.a(io_mux.c.obj) + .text.io_mux_enable_lp_io_clock + 0x00000000 0xaa zephyr/libzephyr.a(io_mux.c.obj) + .text.io_mux_force_disable_lp_io_clock + 0x00000000 0x60 zephyr/libzephyr.a(io_mux.c.obj) + .bss.s_rtc_io_status + 0x00000000 0x1c zephyr/libzephyr.a(io_mux.c.obj) + .bss.s_io_mux_spinlock + 0x00000000 0x4 zephyr/libzephyr.a(io_mux.c.obj) + .debug_frame 0x00000000 0x58 zephyr/libzephyr.a(io_mux.c.obj) + .debug_info 0x00000000 0x2445 zephyr/libzephyr.a(io_mux.c.obj) + .debug_abbrev 0x00000000 0x34e zephyr/libzephyr.a(io_mux.c.obj) + .debug_loc 0x00000000 0x19f zephyr/libzephyr.a(io_mux.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/libzephyr.a(io_mux.c.obj) + .debug_ranges 0x00000000 0x70 zephyr/libzephyr.a(io_mux.c.obj) + .debug_line 0x00000000 0x985 zephyr/libzephyr.a(io_mux.c.obj) + .debug_str 0x00000000 0x2293 zephyr/libzephyr.a(io_mux.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(io_mux.c.obj) + .literal.rtc_clk_bbpll_add_consumer + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_bbpll_remove_consumer + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_disable_external + 0x00000000 0x10 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_bootstrap + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enabled + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_8m_enabled + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_8md256_enabled + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_slow_freq_get_hz + 0x00000000 0xc zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_fast_src_get + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_config_fast + 0x00000000 0x10 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_xtal_for_sleep + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_apb_freq_get + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_dig_clk8m_enable + 0x00000000 0x8 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_dig_clk8m_disable + 0x00000000 0x8 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_dig_8m_enabled + 0x00000000 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_bbpll_add_consumer + 0x00000000 0xe zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_bbpll_remove_consumer + 0x00000000 0xe zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_32k_disable_external + 0x00000000 0x50 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_32k_bootstrap + 0x00000000 0xe zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enabled + 0x00000000 0x1e zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_8m_enabled + 0x00000000 0x18 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_8md256_enabled + 0x00000000 0x18 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_slow_freq_get_hz + 0x00000000 0x1d zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_fast_src_get + 0x00000000 0x10 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_config_fast + 0x00000000 0x38 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_xtal_for_sleep + 0x00000000 0xb zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_clk_apb_freq_get + 0x00000000 0xa zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_enable + 0x00000000 0x20 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_disable + 0x00000000 0x20 zephyr/libzephyr.a(rtc_clk.c.obj) + .text.rtc_dig_8m_enabled + 0x00000000 0x10 zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_init + 0x00000000 0x5c zephyr/libzephyr.a(rtc_clk_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .rodata.rtc_clk_init.str1.1 + 0x00000000 0x32 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .text.rtc_clk_init + 0x00000000 0x13a zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_frame 0x00000000 0x28 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_info 0x00000000 0x8c4 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_abbrev 0x00000000 0x2f3 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_loc 0x00000000 0x108 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_line 0x00000000 0x844 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .debug_str 0x00000000 0xd2f zephyr/libzephyr.a(rtc_clk_init.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .literal.rtc_vddsdio_get_config + 0x00000000 0x8 zephyr/libzephyr.a(rtc_init.c.obj) + .literal.rtc_vddsdio_set_config + 0x00000000 0x4 zephyr/libzephyr.a(rtc_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_init.c.obj) + .text.rtc_vddsdio_get_config + 0x00000000 0x63 zephyr/libzephyr.a(rtc_init.c.obj) + .text.rtc_vddsdio_set_config + 0x00000000 0x48 zephyr/libzephyr.a(rtc_init.c.obj) + .literal.rtc_sleep_get_default_config + 0x00000000 0x14 zephyr/libzephyr.a(rtc_sleep.c.obj) + .literal.rtc_sleep_init + 0x00000000 0x90 zephyr/libzephyr.a(rtc_sleep.c.obj) + .literal.rtc_sleep_low_init + 0x00000000 0xc zephyr/libzephyr.a(rtc_sleep.c.obj) + .literal.rtc_sleep_start + 0x00000000 0x28 zephyr/libzephyr.a(rtc_sleep.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_sleep.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_sleep.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_sleep.c.obj) + .text.rtc_sleep_get_default_config + 0x00000000 0x14b zephyr/libzephyr.a(rtc_sleep.c.obj) + .text.rtc_sleep_init + 0x00000000 0x3dd zephyr/libzephyr.a(rtc_sleep.c.obj) + .text.rtc_sleep_low_init + 0x00000000 0x7a zephyr/libzephyr.a(rtc_sleep.c.obj) + .text.rtc_sleep_start + 0x00000000 0xbd zephyr/libzephyr.a(rtc_sleep.c.obj) + .literal.rtc_clk_cal_ratio + 0x00000000 0xc zephyr/libzephyr.a(rtc_time.c.obj) + .literal.rtc_clk_wait_for_slow_cycle + 0x00000000 0x8 zephyr/libzephyr.a(rtc_time.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_time.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_time.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_time.c.obj) + .text.rtc_clk_cal_ratio + 0x00000000 0x2c zephyr/libzephyr.a(rtc_time.c.obj) + .text.rtc_time_slowclk_to_us + 0x00000000 0x19 zephyr/libzephyr.a(rtc_time.c.obj) + .text.rtc_clk_wait_for_slow_cycle + 0x00000000 0x2e zephyr/libzephyr.a(rtc_time.c.obj) + .literal.s_sar_power_acquire + 0x00000000 0x10 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.s_sar_power_release + 0x00000000 0x28 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_power_enable + 0x00000000 0xc zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_power_disable + 0x00000000 0x10 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_pwdet_power_acquire + 0x00000000 0x4 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_pwdet_power_release + 0x00000000 0x4 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_oneshot_power_acquire + 0x00000000 0x4 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_oneshot_power_release + 0x00000000 0x4 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_continuous_power_acquire + 0x00000000 0x4 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_continuous_power_release + 0x00000000 0x4 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_reset + 0x00000000 0x10 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.s_sar_power_acquire + 0x00000000 0x50 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .rodata.s_sar_power_release.str1.1 + 0x00000000 0x40 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.s_sar_power_release + 0x00000000 0x6c zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_power_enable + 0x00000000 0x3a zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_power_disable + 0x00000000 0x40 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_pwdet_power_acquire + 0x00000000 0xb zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_pwdet_power_release + 0x00000000 0xb zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_oneshot_power_acquire + 0x00000000 0xb zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_oneshot_power_release + 0x00000000 0xb zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_continuous_power_acquire + 0x00000000 0xb zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_continuous_power_release + 0x00000000 0xb zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_reset + 0x00000000 0x36 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.adc_reset_lock_acquire + 0x00000000 0x5 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text.adc_reset_lock_release + 0x00000000 0x5 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .rodata.__func__$0 + 0x00000000 0x14 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .bss.s_sar_power_on_cnt + 0x00000000 0x4 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(systimer.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(systimer.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(systimer.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .literal.regi2c_ctrl_read_reg + 0x00000000 0x4 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .iram1.3.literal + 0x00000000 0x8 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .iram1.4.literal + 0x00000000 0x8 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .text.regi2c_ctrl_read_reg + 0x00000000 0x1f zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .iram1.3 0x00000000 0x21 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .iram1.4 0x00000000 0x21 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .dram1.2 0x00000000 0x8 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .iram1.5.literal + 0x00000000 0x10 zephyr/libzephyr.a(rtc_module.c.obj) + .literal.rtc_isr_register + 0x00000000 0x2c zephyr/libzephyr.a(rtc_module.c.obj) + .literal.rtc_isr_deregister + 0x00000000 0x10 zephyr/libzephyr.a(rtc_module.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(rtc_module.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(rtc_module.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(rtc_module.c.obj) + .iram1.5 0x00000000 0x4c zephyr/libzephyr.a(rtc_module.c.obj) + .text.rtc_isr_register + 0x00000000 0x9a zephyr/libzephyr.a(rtc_module.c.obj) + .text.rtc_isr_deregister + 0x00000000 0x6f zephyr/libzephyr.a(rtc_module.c.obj) + .bss.s_rtc_isr_handle + 0x00000000 0x4 zephyr/libzephyr.a(rtc_module.c.obj) + .dram1.4 0x00000000 0x4 zephyr/libzephyr.a(rtc_module.c.obj) + .dram1.3 0x00000000 0x4 zephyr/libzephyr.a(rtc_module.c.obj) + .bss.rtc_spinlock + 0x00000000 0x4 zephyr/libzephyr.a(rtc_module.c.obj) + .literal.temperature_sensor_power_acquire + 0x00000000 0x30 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .literal.temperature_sensor_power_release + 0x00000000 0x28 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .literal.temp_sensor_get_raw_value + 0x00000000 0x20 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .text.temperature_sensor_power_acquire + 0x00000000 0xd3 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .text.temperature_sensor_power_release + 0x00000000 0x92 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .text.temp_sensor_get_raw_value + 0x00000000 0x67 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .bss.timer1 0x00000000 0x8 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .bss.s_first_temp_read + 0x00000000 0x1 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .bss.s_temperature_sensor_power_cnt + 0x00000000 0x4 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_frame 0x00000000 0x58 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_info 0x00000000 0x249d zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_abbrev 0x00000000 0x3bf zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_loc 0x00000000 0x195 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_ranges 0x00000000 0x68 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_line 0x00000000 0xb96 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .debug_str 0x00000000 0x2185 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .rtc.entry.literal + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.s_sleep_hook_deregister + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.get_power_down_flags + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.get_sleep_flags + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.s_sleep_hook_register + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.9.literal + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.10.literal + 0x00000000 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.sleep_rtc_wdt_prepare + 0x00000000 0x24 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.rtcio_ll_function_select$constprop$0 + 0x00000000 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.12.literal + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_overhead_out_time_refresh + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.5.literal + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.6.literal + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.11.literal + 0x00000000 0x18 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_start$constprop$0 + 0x00000000 0xa0 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_light_sleep_inner$constprop$0 + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_get_deep_sleep_wake_stub + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.13.literal + 0x00000000 0x48 zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.7.literal + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_register_hook + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_deregister_hook + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_register_phy_hook + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_deregister_phy_hook + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.14.literal + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.15.literal + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_light_sleep_start + 0x00000000 0xa4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_wakeup_source + 0x00000000 0x28 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_timer_wakeup + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_deep_sleep + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_try + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_touchpad_wakeup + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_is_valid_wakeup_gpio + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext0_wakeup + 0x00000000 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext1_wakeup_io + 0x00000000 0x18 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_ext1_wakeup_io + 0x00000000 0x18 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext1_wakeup + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_gpio_wakeup + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_uart_wakeup + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_wifi_wakeup + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_wifi_wakeup + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_bt_wakeup + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_bt_wakeup + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_get_wakeup_cause + 0x00000000 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_get_wakeup_causes + 0x00000000 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_get_touchpad_wakeup_status + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_get_ext1_wakeup_status + 0x00000000 0x14 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_pd_config + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_acquire_lp_use_xtal + 0x00000000 0x1c zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_release_lp_use_xtal + 0x00000000 0x1c zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.16.literal + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_periph_use_8m + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_adc_tsens_monitor + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.rtc_sleep_enable_ultra_low + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(sleep_modes.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(sleep_modes.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.entry.text + 0x00000000 0xb zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.8 0x00000000 0x5 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.s_sleep_hook_deregister + 0x00000000 0x30 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.get_power_down_flags + 0x00000000 0x4c zephyr/libzephyr.a(sleep_modes.c.obj) + .text.get_sleep_flags + 0x00000000 0x58 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.s_sleep_hook_register + 0x00000000 0x4c zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.9 0x00000000 0x1f zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.10 0x00000000 0x27 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.sleep_rtc_wdt_prepare + 0x00000000 0x5f zephyr/libzephyr.a(sleep_modes.c.obj) + .text.rtcio_ll_function_select$constprop$0 + 0x00000000 0x63 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.12 0x00000000 0x1d zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_overhead_out_time_refresh + 0x00000000 0x18 zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.5 0x00000000 0xf zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.6 0x00000000 0x17 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.11 0x00000000 0x42 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_start$constprop$0 + 0x00000000 0x32e zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_light_sleep_inner$constprop$0 + 0x00000000 0x3b zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_get_deep_sleep_wake_stub + 0x00000000 0x17 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.13 0x00000000 0xaf zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.7 0x00000000 0xa zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_deep_sleep_register_hook + 0x00000000 0x12 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_deep_sleep_deregister_hook + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_deep_sleep_register_phy_hook + 0x00000000 0x12 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_deep_sleep_deregister_phy_hook + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.14 0x00000000 0x12 zephyr/libzephyr.a(sleep_modes.c.obj) + .iram1.15 0x00000000 0x11 zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_light_sleep_start.str1.1 + 0x00000000 0x40 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_light_sleep_start + 0x00000000 0x29c zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_disable_wakeup_source.str1.1 + 0x00000000 0x32 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wakeup_source + 0x00000000 0xde zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ulp_wakeup + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_timer_wakeup + 0x00000000 0x69 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_deep_sleep + 0x00000000 0x13 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_deep_sleep_try + 0x00000000 0x18 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_touchpad_wakeup + 0x00000000 0x16 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_is_valid_wakeup_gpio + 0x00000000 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext0_wakeup + 0x00000000 0x52 zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_ext1_wakeup_io.str1.1 + 0x00000000 0x1f zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext1_wakeup_io + 0x00000000 0xbf zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_disable_ext1_wakeup_io.str1.1 + 0x00000000 0x33 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_disable_ext1_wakeup_io + 0x00000000 0xc0 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext1_wakeup + 0x00000000 0x2c zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_gpio_wakeup + 0x00000000 0x15 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_uart_wakeup + 0x00000000 0x30 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_wifi_wakeup + 0x00000000 0x15 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wifi_wakeup + 0x00000000 0x16 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_wifi_beacon_wakeup + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wifi_beacon_wakeup + 0x00000000 0x8 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_bt_wakeup + 0x00000000 0x16 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_disable_bt_wakeup + 0x00000000 0x16 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_get_wakeup_cause + 0x00000000 0x63 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_get_wakeup_causes + 0x00000000 0x96 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_get_touchpad_wakeup_status + 0x00000000 0x1c zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_get_ext1_wakeup_status + 0x00000000 0x52 zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_pd_config.str1.1 + 0x00000000 0x7b zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_pd_config + 0x00000000 0x9a zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_acquire_lp_use_xtal.str1.1 + 0x00000000 0x5c zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_acquire_lp_use_xtal + 0x00000000 0x3f zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_release_lp_use_xtal.str1.1 + 0x00000000 0x5e zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_release_lp_use_xtal + 0x00000000 0x3f zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.text.16 0x00000000 0x18 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_periph_use_8m + 0x00000000 0x22 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.esp_sleep_enable_adc_tsens_monitor + 0x00000000 0x22 zephyr/libzephyr.a(sleep_modes.c.obj) + .text.rtc_sleep_enable_ultra_low + 0x00000000 0x22 zephyr/libzephyr.a(sleep_modes.c.obj) + .bss.s_cache_suspend_cnt + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .rtc.force_fast.4 + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .bss.spinlock_rtc_deep_sleep + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .bss.s_light_sleep_wakeup + 0x00000000 0x1 zephyr/libzephyr.a(sleep_modes.c.obj) + .bss.s_lightsleep_cnt + 0x00000000 0x4 zephyr/libzephyr.a(sleep_modes.c.obj) + .bss.s_dslp_phy_cb + 0x00000000 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + .bss.s_dslp_cb + 0x00000000 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + .literal.esp_cache_get_alignment + 0x00000000 0x14 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .literal.esp_cache_get_line_size_by_addr + 0x00000000 0x10 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .text.esp_cache_get_alignment + 0x00000000 0x32 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .text.esp_cache_get_line_size_by_addr + 0x00000000 0x5a zephyr/libzephyr.a(esp_cache_msync.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x18 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .literal.esp_cache_freeze_caches_disable_interrupts + 0x00000000 0x18 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .literal.esp_cache_unfreeze_caches_enable_interrupts + 0x00000000 0xc zephyr/libzephyr.a(esp_cache_utils.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .text.esp_cache_freeze_caches_disable_interrupts + 0x00000000 0x2e zephyr/libzephyr.a(esp_cache_utils.c.obj) + .text.esp_cache_unfreeze_caches_enable_interrupts + 0x00000000 0x1c zephyr/libzephyr.a(esp_cache_utils.c.obj) + .bss.s_spinlock + 0x00000000 0x4 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .iram1.2.literal + 0x00000000 0x4 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.4.literal + 0x00000000 0xc zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.3.literal + 0x00000000 0x4 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.5.literal + 0x00000000 0x20 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.6.literal + 0x00000000 0xc zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.k_mutex_unlock$constprop$0$isra$0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_get_max_consecutive_free_block_size + 0x00000000 0x18 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_reserve_block_with_caps + 0x00000000 0x20 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map + 0x00000000 0x68 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.esp_mmu_unmap + 0x00000000 0x38 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_dump_mapped_blocks + 0x00000000 0x74 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.7.literal + 0x00000000 0x54 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.esp_mmu_vaddr_to_paddr + 0x00000000 0x30 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .literal.esp_mmu_paddr_to_vaddr + 0x00000000 0x28 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.2 0x00000000 0xb zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.4 0x00000000 0x1c zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.3 0x00000000 0xb zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.5 0x00000000 0x80 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.6 0x00000000 0x1d zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.k_mutex_unlock$constprop$0$isra$0 + 0x00000000 0xe zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_get_max_consecutive_free_block_size.str1.1 + 0x00000000 0x3c zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_get_max_consecutive_free_block_size + 0x00000000 0x67 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_reserve_block_with_caps.str1.1 + 0x00000000 0x1d zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_reserve_block_with_caps + 0x00000000 0xb8 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map.str1.1 + 0x00000000 0xe5 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.esp_mmu_map + 0x00000000 0x310 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_unmap.str1.1 + 0x00000000 0x82 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.esp_mmu_unmap + 0x00000000 0xe1 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_dump_mapped_blocks.str1.1 + 0x00000000 0x139 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_dump_mapped_blocks + 0x00000000 0x111 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.str1.1 + 0x00000000 0xf5 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.7 0x00000000 0xaa zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_vaddr_to_paddr.str1.1 + 0x00000000 0x5a zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.esp_mmu_vaddr_to_paddr + 0x00000000 0xa2 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_paddr_to_vaddr.str1.1 + 0x00000000 0x24 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text.esp_mmu_paddr_to_vaddr + 0x00000000 0x6e zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x17 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x17 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0xe zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0xc zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x24 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$5 + 0x00000000 0x30 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .dram1.0 0x00000000 0x4 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(ext_mem_layout.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(ext_mem_layout.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(ext_mem_layout.c.obj) + .literal.Cache_Count_Flash_Pages + 0x00000000 0x4 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text.Cache_Count_Flash_Pages + 0x00000000 0x17 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .debug_info 0x00000000 0x64 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .debug_abbrev 0x00000000 0x26 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .debug_aranges + 0x00000000 0x18 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .debug_line 0x00000000 0x7d zephyr/libzephyr.a(esp_rom_crc.c.obj) + .debug_str 0x00000000 0x239 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .literal.esp_rom_efuse_get_opiconfig + 0x00000000 0x8 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .text.esp_rom_efuse_get_opiconfig + 0x00000000 0x3a zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_frame 0x00000000 0x28 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_info 0x00000000 0xee zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_abbrev 0x00000000 0x78 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_loc 0x00000000 0x3c zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_line 0x00000000 0x219 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .debug_str 0x00000000 0x2ab zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .debug_info 0x00000000 0x6b zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .debug_abbrev 0x00000000 0x26 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .debug_aranges + 0x00000000 0x18 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .debug_line 0x00000000 0x7e zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .debug_str 0x00000000 0x246 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .text 0x00000000 0x81 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .debug_line 0x00000000 0x1c9 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .debug_info 0x00000000 0x32 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .debug_abbrev 0x00000000 0x28 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .debug_str 0x00000000 0xaa zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .literal.esp_rom_cvt$part$0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_rom_print.c.obj) + .literal.esp_rom_cvt + 0x00000000 0x4 zephyr/libzephyr.a(esp_rom_print.c.obj) + .literal.esp_rom_vprintf + 0x00000000 0x50 zephyr/libzephyr.a(esp_rom_print.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_print.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_print.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_print.c.obj) + .text.esp_rom_cvt$part$0 + 0x00000000 0x99 zephyr/libzephyr.a(esp_rom_print.c.obj) + .text.esp_rom_cvt + 0x00000000 0x3a zephyr/libzephyr.a(esp_rom_print.c.obj) + .rodata.esp_rom_vprintf.str1.1 + 0x00000000 0x34 zephyr/libzephyr.a(esp_rom_print.c.obj) + .text.esp_rom_vprintf + 0x00000000 0x4cf zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_frame 0x00000000 0x58 zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_info 0x00000000 0x732 zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_abbrev 0x00000000 0x22e zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_loc 0x00000000 0x1114 zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_ranges 0x00000000 0x40 zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_line 0x00000000 0xdef zephyr/libzephyr.a(esp_rom_print.c.obj) + .debug_str 0x00000000 0x375 zephyr/libzephyr.a(esp_rom_print.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_rom_print.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_output_to_channels + 0x00000000 0x8 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .literal.esp_rom_install_uart_printf + 0x00000000 0x14 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .text.esp_rom_output_to_channels + 0x00000000 0x22 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .text.esp_rom_install_uart_printf + 0x00000000 0x22 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .literal._esp_error_check_failed_without_abort + 0x00000000 0x24 zephyr/libzephyr.a(esp_err.c.obj) + .literal._esp_error_check_failed + 0x00000000 0x28 zephyr/libzephyr.a(esp_err.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_err.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_err.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_err.c.obj) + .rodata._esp_error_check_failed_without_abort.str1.1 + 0x00000000 0x70 zephyr/libzephyr.a(esp_err.c.obj) + .text._esp_error_check_failed_without_abort + 0x00000000 0x47 zephyr/libzephyr.a(esp_err.c.obj) + .rodata._esp_error_check_failed.str1.1 + 0x00000000 0x10 zephyr/libzephyr.a(esp_err.c.obj) + .text._esp_error_check_failed + 0x00000000 0x4b zephyr/libzephyr.a(esp_err.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(esp_err.c.obj) + .debug_info 0x00000000 0x51e zephyr/libzephyr.a(esp_err.c.obj) + .debug_abbrev 0x00000000 0x1d3 zephyr/libzephyr.a(esp_err.c.obj) + .debug_loc 0x00000000 0x28a zephyr/libzephyr.a(esp_err.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(esp_err.c.obj) + .debug_ranges 0x00000000 0x48 zephyr/libzephyr.a(esp_err.c.obj) + .debug_line 0x00000000 0x580 zephyr/libzephyr.a(esp_err.c.obj) + .debug_str 0x00000000 0x335 zephyr/libzephyr.a(esp_err.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_err.c.obj) + .literal.select_rtc_slow_clk + 0x00000000 0x2c zephyr/libzephyr.a(clk.c.obj) + .literal.esp_clk_init + 0x00000000 0x2c zephyr/libzephyr.a(clk.c.obj) + .literal.rtc_clk_select_rtc_slow_clk + 0x00000000 0x4 zephyr/libzephyr.a(clk.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(clk.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(clk.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(clk.c.obj) + .rodata.select_rtc_slow_clk.str1.1 + 0x00000000 0x4d zephyr/libzephyr.a(clk.c.obj) + .text.select_rtc_slow_clk + 0x00000000 0x88 zephyr/libzephyr.a(clk.c.obj) + .text.esp_clk_init + 0x00000000 0x7d zephyr/libzephyr.a(clk.c.obj) + .text.rtc_clk_select_rtc_slow_clk + 0x00000000 0xe zephyr/libzephyr.a(clk.c.obj) + .literal.esp_reset_reason + 0x00000000 0x4 zephyr/libzephyr.a(reset_reason.c.obj) + .literal.esp_reset_reason_set_hint + 0x00000000 0x8 zephyr/libzephyr.a(reset_reason.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(reset_reason.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(reset_reason.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(reset_reason.c.obj) + .text.esp_reset_reason + 0x00000000 0xa zephyr/libzephyr.a(reset_reason.c.obj) + .text.esp_reset_reason_set_hint + 0x00000000 0x29 zephyr/libzephyr.a(reset_reason.c.obj) + .literal.esp_system_reset_modules_on_exit + 0x00000000 0x1c zephyr/libzephyr.a(system_internal.c.obj) + .literal.esp_restart_noos + 0x00000000 0x68 zephyr/libzephyr.a(system_internal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(system_internal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(system_internal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(system_internal.c.obj) + .text.esp_system_reset_modules_on_exit + 0x00000000 0xa9 zephyr/libzephyr.a(system_internal.c.obj) + .rodata 0x00000000 0x10 zephyr/libzephyr.a(system_internal.c.obj) + .text.esp_restart_noos + 0x00000000 0x107 zephyr/libzephyr.a(system_internal.c.obj) + .debug_frame 0x00000000 0x40 zephyr/libzephyr.a(system_internal.c.obj) + .debug_info 0x00000000 0x4d77 zephyr/libzephyr.a(system_internal.c.obj) + .debug_abbrev 0x00000000 0x3f2 zephyr/libzephyr.a(system_internal.c.obj) + .debug_loc 0x00000000 0x106 zephyr/libzephyr.a(system_internal.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/libzephyr.a(system_internal.c.obj) + .debug_ranges 0x00000000 0x30 zephyr/libzephyr.a(system_internal.c.obj) + .debug_line 0x00000000 0xaf2 zephyr/libzephyr.a(system_internal.c.obj) + .debug_str 0x00000000 0x3288 zephyr/libzephyr.a(system_internal.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(system_internal.c.obj) + .literal.timer_list_lock + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.timer_list_unlock + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.timer_remove + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.timer_alarm_handler + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.deinit_timer_task + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .literal.timer_insert$isra$0 + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.timer_init + 0x00000000 0x10 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.timer_restart + 0x00000000 0x1c zephyr/libzephyr.a(esp_timer.c.obj) + .literal.timer_task + 0x00000000 0x30 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_create + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_restart + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_restart_at + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_start_once + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_start_once_at + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_start_periodic + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_start_periodic_at + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_stop + 0x00000000 0x10 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_stop_blocking + 0x00000000 0x3c zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_delete + 0x00000000 0x14 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_init + 0x00000000 0x40 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_deinit + 0x00000000 0x10 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_dump + 0x00000000 0x40 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_get_next_alarm + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_get_next_alarm_for_wake_up + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_get_period + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_get_expiry_time + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_is_active + 0x00000000 0xc zephyr/libzephyr.a(esp_timer.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_timer.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_timer.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_list_lock + 0x00000000 0x10 zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_list_unlock + 0x00000000 0x13 zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_remove + 0x00000000 0x50 zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_alarm_handler + 0x00000000 0xe zephyr/libzephyr.a(esp_timer.c.obj) + .text.deinit_timer_task + 0x00000000 0x1b zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_insert$isra$0 + 0x00000000 0x73 zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_init + 0x00000000 0x60 zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_restart + 0x00000000 0xca zephyr/libzephyr.a(esp_timer.c.obj) + .text.timer_task + 0x00000000 0x153 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_create + 0x00000000 0x76 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_restart + 0x00000000 0x18 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_restart_at + 0x00000000 0x41 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_start_once + 0x00000000 0x22 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_start_once_at + 0x00000000 0x3e zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_start_periodic + 0x00000000 0x39 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_start_periodic_at + 0x00000000 0x5e zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_stop + 0x00000000 0x42 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_stop_blocking + 0x00000000 0xfa zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_delete + 0x00000000 0x6e zephyr/libzephyr.a(esp_timer.c.obj) + .rodata.esp_timer_init.str1.1 + 0x00000000 0x48 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_init + 0x00000000 0x81 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_deinit + 0x00000000 0x26 zephyr/libzephyr.a(esp_timer.c.obj) + .rodata.esp_timer_dump.str1.1 + 0x00000000 0x54 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_dump + 0x00000000 0xca zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_get_next_alarm + 0x00000000 0x3e zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_get_next_alarm_for_wake_up + 0x00000000 0x4e zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_get_period + 0x00000000 0x42 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_get_expiry_time + 0x00000000 0x52 zephyr/libzephyr.a(esp_timer.c.obj) + .text.esp_timer_is_active + 0x00000000 0x3e zephyr/libzephyr.a(esp_timer.c.obj) + .bss.s_timer_lock_key + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer.c.obj) + .bss.s_timer_task_created + 0x00000000 0x1 zephyr/libzephyr.a(esp_timer.c.obj) + .bss.s_timer_semaphore + 0x00000000 0x18 zephyr/libzephyr.a(esp_timer.c.obj) + .bss.s_timer_task + 0x00000000 0x68 zephyr/libzephyr.a(esp_timer.c.obj) + .bss.timer_task_stack + 0x00000000 0x1000 zephyr/libzephyr.a(esp_timer.c.obj) + .bss.s_timers 0x00000000 0x4 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_frame 0x00000000 0x298 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_info 0x00000000 0x27e2 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_abbrev 0x00000000 0x638 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_loc 0x00000000 0x1132 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_aranges + 0x00000000 0xf0 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_ranges 0x00000000 0x2a0 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_line 0x00000000 0x2859 zephyr/libzephyr.a(esp_timer.c.obj) + .debug_str 0x00000000 0xf7a zephyr/libzephyr.a(esp_timer.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_timer.c.obj) + .literal.esp_timer_impl_lock + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .literal.esp_timer_impl_unlock + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .literal.esp_timer_impl_set_alarm + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_lock + 0x00000000 0xd zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_unlock + 0x00000000 0x10 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_set_alarm + 0x00000000 0x12 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_get_min_period_us + 0x00000000 0x9 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .data.timestamp_id + 0x00000000 0x10 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .bss.s_time_update_lock + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_frame 0x00000000 0x70 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_info 0x00000000 0x298 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_abbrev 0x00000000 0x1b0 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_loc 0x00000000 0x49 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_aranges + 0x00000000 0x38 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_ranges 0x00000000 0x40 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_line 0x00000000 0x3d3 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .debug_str 0x00000000 0x4d9 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .literal.timer_alarm_isr + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_get_counter_reg + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_get_time + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_set_alarm_id + 0x00000000 0x14 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_set + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_advance + 0x00000000 0xc zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_init + 0x00000000 0x34 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_deinit + 0x00000000 0x18 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_get_alarm_reg + 0x00000000 0xc zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.timer_alarm_isr + 0x00000000 0x26 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_get_counter_reg + 0x00000000 0x14 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_get_time + 0x00000000 0x1a zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_set_alarm_id + 0x00000000 0x4a zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_set + 0x00000000 0x47 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_advance + 0x00000000 0x24 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .rodata.esp_timer_impl_init.str1.1 + 0x00000000 0x87 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_init + 0x00000000 0x74 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_deinit + 0x00000000 0x4d zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_get_alarm_reg + 0x00000000 0x24 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .bss.s_alarm_handler + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .bss.s_timer_interrupt_handle + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .literal.__esp_system_init_fn_esp_timer_init_nonos + 0x00000000 0x4 zephyr/libzephyr.a(esp_timer_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_timer_init.c.obj) + .text.__esp_system_init_fn_esp_timer_init_nonos + 0x00000000 0xd zephyr/libzephyr.a(esp_timer_init.c.obj) + .text.esp_timer_init_include_func + 0x00000000 0x5 zephyr/libzephyr.a(esp_timer_init.c.obj) + .esp_system_init_fn.101 + 0x00000000 0x8 zephyr/libzephyr.a(esp_timer_init.c.obj) + .literal.ets_timer_setfn + 0x00000000 0x24 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .literal.ets_timer_arm_us + 0x00000000 0x28 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .literal.ets_timer_arm + 0x00000000 0x28 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .literal.ets_timer_done + 0x00000000 0x8 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .literal.ets_timer_disarm + 0x00000000 0x8 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .rodata.ets_timer_setfn.str1.1 + 0x00000000 0xa6 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text.ets_timer_setfn + 0x00000000 0x56 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .rodata.ets_timer_arm_us.str1.1 + 0x00000000 0x66 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text.ets_timer_arm_us + 0x00000000 0x53 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text.ets_timer_arm + 0x00000000 0x5f zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text.ets_timer_done + 0x00000000 0x1c zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text.ets_timer_disarm + 0x00000000 0x16 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text.ets_timer_init + 0x00000000 0x5 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .text.ets_timer_deinit + 0x00000000 0x5 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_frame 0x00000000 0xb8 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_info 0x00000000 0x785 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_abbrev 0x00000000 0x2d4 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_loc 0x00000000 0x190 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_aranges + 0x00000000 0x50 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_ranges 0x00000000 0x90 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_line 0x00000000 0x7c1 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .debug_str 0x00000000 0x4f1 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .literal.efuse_hal_set_timing + 0x00000000 0x8 zephyr/libzephyr.a(efuse_hal.c.obj) + .literal.efuse_hal_read + 0x00000000 0x8 zephyr/libzephyr.a(efuse_hal.c.obj) + .literal.efuse_hal_clear_program_registers + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .literal.efuse_hal_program + 0x00000000 0x10 zephyr/libzephyr.a(efuse_hal.c.obj) + .literal.efuse_hal_rs_calculate + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .literal.efuse_hal_is_coding_error_in_block + 0x00000000 0xc zephyr/libzephyr.a(efuse_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .text.efuse_hal_set_timing + 0x00000000 0xb6 zephyr/libzephyr.a(efuse_hal.c.obj) + .text.efuse_hal_read + 0x00000000 0x64 zephyr/libzephyr.a(efuse_hal.c.obj) + .text.efuse_hal_clear_program_registers + 0x00000000 0xb zephyr/libzephyr.a(efuse_hal.c.obj) + .text.efuse_hal_program + 0x00000000 0x78 zephyr/libzephyr.a(efuse_hal.c.obj) + .text.efuse_hal_rs_calculate + 0x00000000 0xf zephyr/libzephyr.a(efuse_hal.c.obj) + .text.efuse_hal_is_coding_error_in_block + 0x00000000 0x52 zephyr/libzephyr.a(efuse_hal.c.obj) + .literal.s_cache_hal_init_ctx + 0x00000000 0xc zephyr/libzephyr.a(cache_hal.c.obj) + .literal.cache_hal_init + 0x00000000 0x18 zephyr/libzephyr.a(cache_hal.c.obj) + .literal.cache_hal_is_cache_enabled + 0x00000000 0x8 zephyr/libzephyr.a(cache_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + .text.s_cache_hal_init_ctx + 0x00000000 0x3a zephyr/libzephyr.a(cache_hal.c.obj) + .text.cache_hal_init + 0x00000000 0x7d zephyr/libzephyr.a(cache_hal.c.obj) + .text.cache_hal_is_cache_enabled + 0x00000000 0x2e zephyr/libzephyr.a(cache_hal.c.obj) + .literal.efuse_hal_get_mac + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.1.literal + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.2.literal + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.3.literal + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.4.literal + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.5.literal + 0x00000000 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .text.efuse_hal_get_mac + 0x00000000 0x19 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.1 0x00000000 0x23 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.2 0x00000000 0x11 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.3 0x00000000 0x11 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.4 0x00000000 0x11 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.5 0x00000000 0x22 zephyr/libzephyr.a(efuse_hal.c.obj) + .literal.mmu_hal_init + 0x00000000 0xc zephyr/libzephyr.a(mmu_hal.c.obj) + .literal.mmu_hal_check_valid_ext_vaddr_region + 0x00000000 0x8 zephyr/libzephyr.a(mmu_hal.c.obj) + .literal.mmu_hal_unmap_region + 0x00000000 0x4 zephyr/libzephyr.a(mmu_hal.c.obj) + .literal.mmu_hal_vaddr_to_paddr + 0x00000000 0x4 zephyr/libzephyr.a(mmu_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(mmu_hal.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(mmu_hal.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(mmu_hal.c.obj) + .text.mmu_hal_init + 0x00000000 0x1a zephyr/libzephyr.a(mmu_hal.c.obj) + .text.mmu_hal_pages_to_bytes + 0x00000000 0x8 zephyr/libzephyr.a(mmu_hal.c.obj) + .text.mmu_hal_bytes_to_pages + 0x00000000 0x8 zephyr/libzephyr.a(mmu_hal.c.obj) + .text.mmu_hal_check_valid_ext_vaddr_region + 0x00000000 0x55 zephyr/libzephyr.a(mmu_hal.c.obj) + .text.mmu_hal_unmap_region + 0x00000000 0x35 zephyr/libzephyr.a(mmu_hal.c.obj) + .text.mmu_hal_vaddr_to_paddr + 0x00000000 0x3a zephyr/libzephyr.a(mmu_hal.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(gpio_periph.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(gpio_periph.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(gpio_periph.c.obj) + .rodata.GPIO_HOLD_MASK + 0x00000000 0xc4 zephyr/libzephyr.a(gpio_periph.c.obj) + .literal.esp_register_shutdown_handler + 0x00000000 0x4 zephyr/libzephyr.a(esp_restart.c.obj) + .literal.esp_unregister_shutdown_handler + 0x00000000 0x4 zephyr/libzephyr.a(esp_restart.c.obj) + .literal.esp_restart + 0x00000000 0x8 zephyr/libzephyr.a(esp_restart.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(esp_restart.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(esp_restart.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(esp_restart.c.obj) + .text.esp_register_shutdown_handler + 0x00000000 0x31 zephyr/libzephyr.a(esp_restart.c.obj) + .text.esp_unregister_shutdown_handler + 0x00000000 0x2a zephyr/libzephyr.a(esp_restart.c.obj) + .text.esp_restart + 0x00000000 0x1e zephyr/libzephyr.a(esp_restart.c.obj) + .bss.shutdown_handlers + 0x00000000 0x14 zephyr/libzephyr.a(esp_restart.c.obj) + .debug_frame 0x00000000 0x58 zephyr/libzephyr.a(esp_restart.c.obj) + .debug_info 0x00000000 0x456 zephyr/libzephyr.a(esp_restart.c.obj) + .debug_abbrev 0x00000000 0x145 zephyr/libzephyr.a(esp_restart.c.obj) + .debug_loc 0x00000000 0x13a zephyr/libzephyr.a(esp_restart.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/libzephyr.a(esp_restart.c.obj) + .debug_ranges 0x00000000 0x38 zephyr/libzephyr.a(esp_restart.c.obj) + .debug_line 0x00000000 0x46d zephyr/libzephyr.a(esp_restart.c.obj) + .debug_str 0x00000000 0xdf1 zephyr/libzephyr.a(esp_restart.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(esp_restart.c.obj) + .literal.spi_flash_init_chip_state + 0x00000000 0xc zephyr/libzephyr.a(flash_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(flash_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(flash_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(flash_init.c.obj) + .text.spi_flash_init_chip_state + 0x00000000 0x22 zephyr/libzephyr.a(flash_init.c.obj) + .literal.bootloader_mmap_get_free_pages + 0x00000000 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_mmap + 0x00000000 0x1c zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_munmap + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_flash_read + 0x00000000 0xc zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_flash_write + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_sector + 0x00000000 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_range + 0x00000000 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.esp_rom_flash_mmap + 0x00000000 0x28 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.esp_rom_flash_unmmap + 0x00000000 0x10 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.esp_rom_flash_erase_sector + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.esp_rom_flash_erase_range + 0x00000000 0xc zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.esp_rom_flash_write + 0x00000000 0x28 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_spi_flash_reset + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash.c.obj) + .iram1.7.literal + 0x00000000 0x14 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.bootloader_flash_get_spi_mode + 0x00000000 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_mmap_get_free_pages + 0x00000000 0x10 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_mmap + 0x00000000 0x4c zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_munmap + 0x00000000 0x18 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_flash_read + 0x00000000 0x36 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_flash_write + 0x00000000 0x2c zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_sector + 0x00000000 0x18 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_range + 0x00000000 0x14 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.esp_rom_flash_mmap_get_free_pages + 0x00000000 0x8 zephyr/libzephyr.a(bootloader_flash.c.obj) + .rodata.esp_rom_flash_mmap.str1.1 + 0x00000000 0x41 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.esp_rom_flash_mmap + 0x00000000 0x91 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.esp_rom_flash_unmmap + 0x00000000 0x2a zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.esp_rom_flash_erase_sector + 0x00000000 0x1c zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.esp_rom_flash_erase_range + 0x00000000 0x62 zephyr/libzephyr.a(bootloader_flash.c.obj) + .rodata.esp_rom_flash_write.str1.1 + 0x00000000 0xbd zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.esp_rom_flash_write + 0x00000000 0x84 zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_spi_flash_reset + 0x00000000 0x23 zephyr/libzephyr.a(bootloader_flash.c.obj) + .iram1.7 0x00000000 0x9e zephyr/libzephyr.a(bootloader_flash.c.obj) + .text.bootloader_flash_get_spi_mode + 0x00000000 0x2e zephyr/libzephyr.a(bootloader_flash.c.obj) + .bss.mapped 0x00000000 0x1 zephyr/libzephyr.a(bootloader_flash.c.obj) + .bss.map 0x00000000 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + .literal.heap_caps_alloc_failed + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_malloc_base + 0x00000000 0xc zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_realloc_base + 0x00000000 0xc zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_register_failed_alloc_callback + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_malloc + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_malloc_default + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_malloc_prefer + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_realloc + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_realloc_default + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_realloc_prefer + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_free + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_calloc + 0x00000000 0xc zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_calloc_prefer + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_get_info + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_print_heap_info + 0x00000000 0x8 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_aligned_alloc + 0x00000000 0xc zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_aligned_free + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .literal.heap_caps_aligned_calloc + 0x00000000 0x8 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_alloc_failed + 0x00000000 0x16 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_malloc_base + 0x00000000 0x23 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_realloc_base + 0x00000000 0x22 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_register_failed_alloc_callback + 0x00000000 0x13 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_malloc + 0x00000000 0x11 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_malloc_extmem_enable + 0x00000000 0x5 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_malloc_default + 0x00000000 0x14 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_malloc_prefer + 0x00000000 0x14 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_realloc + 0x00000000 0x14 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_realloc_default + 0x00000000 0x16 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_realloc_prefer + 0x00000000 0x16 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_free + 0x00000000 0xe zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_calloc + 0x00000000 0x2c zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_calloc_prefer + 0x00000000 0x1b zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_get_total_size + 0x00000000 0xa zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_get_free_size + 0x00000000 0x7 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_get_minimum_free_size + 0x00000000 0x7 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_get_largest_free_block + 0x00000000 0x7 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_get_info + 0x00000000 0x12 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .rodata.heap_caps_print_heap_info.str1.1 + 0x00000000 0x3e zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_print_heap_info + 0x00000000 0xe zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_check_integrity + 0x00000000 0x7 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_check_integrity_all + 0x00000000 0x7 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_check_integrity_addr + 0x00000000 0x7 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_dump + 0x00000000 0x5 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_dump_all + 0x00000000 0x5 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_get_allocated_size + 0x00000000 0x7 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_aligned_alloc + 0x00000000 0x22 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_aligned_free + 0x00000000 0xe zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text.heap_caps_aligned_calloc + 0x00000000 0x2e zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .rodata.__func__$0 + 0x00000000 0x18 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .rodata.__func__$1 + 0x00000000 0x11 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .rodata.__func__$2 + 0x00000000 0x17 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .rodata.__func__$3 + 0x00000000 0x16 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .bss.alloc_failed_callback + 0x00000000 0x4 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_frame 0x00000000 0x2c8 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_info 0x00000000 0xd5f zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_abbrev 0x00000000 0x349 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_loc 0x00000000 0x4d0 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_aranges + 0x00000000 0x100 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_ranges 0x00000000 0x138 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_line 0x00000000 0xbc9 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .debug_str 0x00000000 0x87b zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .comment 0x00000000 0x20 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(soc_flash_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(soc_flash_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(soc_flash_init.c.obj) + .literal.ana_bod_reset_config + 0x00000000 0x8 zephyr/libzephyr.a(soc_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .text.ana_bod_reset_config + 0x00000000 0x34 zephyr/libzephyr.a(soc_init.c.obj) + .text 0x00000000 0x0 zephyr/libzephyr.a(soc_random.c.obj) + .data 0x00000000 0x0 zephyr/libzephyr.a(soc_random.c.obj) + .bss 0x00000000 0x0 zephyr/libzephyr.a(soc_random.c.obj) + .text 0x00000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .data 0x00000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .bss 0x00000000 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .text 0x00000000 0x0 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .data 0x00000000 0x0 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .bss 0x00000000 0x0 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .literal.arch_early_memcpy + 0x00000000 0x4 zephyr/arch/common/libarch__common.a(init.c.obj) + .text 0x00000000 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + .data 0x00000000 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + .bss 0x00000000 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + .text.arch_early_memcpy + 0x00000000 0x12 zephyr/arch/common/libarch__common.a(init.c.obj) + .text 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .text.arch_cpu_atomic_idle + 0x00000000 0xe zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .literal.arch_syscall_oops + 0x00000000 0x4 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .text 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .text.arch_syscall_oops + 0x00000000 0xd zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .text 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .literal.z_arch_irq_connect_dynamic + 0x00000000 0x4 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .text 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .text.z_irq_priority_set + 0x00000000 0x5 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .text.z_arch_irq_connect_dynamic + 0x00000000 0x12 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .text.xtensa_irq_is_enabled + 0x00000000 0x18 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .text 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .text 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .text.arch_ipi_lazy_coprocessors_save + 0x00000000 0x5 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .text 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .data 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .bss 0x00000000 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .literal.__chk_fail + 0x00000000 0xc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .rodata.__chk_fail.str1.1 + 0x00000000 0x1e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .text.__chk_fail + 0x00000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_frame 0x00000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_info 0x00000000 0x121 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_abbrev 0x00000000 0xba zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_line 0x00000000 0x162 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .debug_str 0x00000000 0x2ea zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .comment 0x00000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .literal.z_errno_wrap + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .text.z_errno_wrap + 0x00000000 0xd zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_frame 0x00000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_info 0x00000000 0xda zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_abbrev 0x00000000 0x9a zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_line 0x00000000 0x1a5 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .debug_str 0x00000000 0x264 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .comment 0x00000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .literal._exit + 0x00000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .rodata._exit.str1.1 + 0x00000000 0x5 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .text._exit 0x00000000 0xf zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_frame 0x00000000 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_info 0x00000000 0xc4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_abbrev 0x00000000 0x7f zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_line 0x00000000 0xa4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .debug_str 0x00000000 0x25b zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .comment 0x00000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .literal.__retarget_lock_init_recursive + 0x00000000 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_init + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_close_recursive + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_close + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_acquire_recursive + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_acquire + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_try_acquire_recursive + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_try_acquire + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_release_recursive + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__retarget_lock_release + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_init_recursive + 0x00000000 0x16 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_init + 0x00000000 0xe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_close_recursive + 0x00000000 0xe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_close + 0x00000000 0xe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_acquire_recursive + 0x00000000 0x12 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_acquire + 0x00000000 0xe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_try_acquire_recursive + 0x00000000 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_try_acquire + 0x00000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_release_recursive + 0x00000000 0xe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .text.__retarget_lock_release + 0x00000000 0xe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + ._k_mutex.static.__lock___libc_recursive_mutex_ + 0x00000000 0x14 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_frame 0x00000000 0x100 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_info 0x00000000 0x9c4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_abbrev 0x00000000 0x307 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_loc 0x00000000 0xd4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_aranges + 0x00000000 0x68 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_ranges 0x00000000 0xb8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_line 0x00000000 0x7e2 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .debug_str 0x00000000 0x85f zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .comment 0x00000000 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .literal.__stdin_hook_install + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text.__stdin_hook_install + 0x00000000 0x15 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .rodata.stdout + 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .rodata.stdin 0x00000000 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss.__stdin 0x00000000 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .literal.time 0x00000000 0x4 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .text.time 0x00000000 0x22 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_frame 0x00000000 0x28 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_info 0x00000000 0x14f zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_abbrev 0x00000000 0xff zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_loc 0x00000000 0x37 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_line 0x00000000 0x2ee zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .debug_str 0x00000000 0x298 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .comment 0x00000000 0x20 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .literal.malloc_lock + 0x00000000 0x8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.malloc_unlock + 0x00000000 0x8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.malloc + 0x00000000 0x14 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.aligned_alloc + 0x00000000 0x14 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.realloc + 0x00000000 0x14 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.free 0x00000000 0x10 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.calloc + 0x00000000 0xc zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.reallocarray + 0x00000000 0x8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .data 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .bss 0x00000000 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc_lock + 0x00000000 0x12 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc_unlock + 0x00000000 0xe zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.malloc 0x00000000 0x30 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.aligned_alloc + 0x00000000 0x30 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.realloc 0x00000000 0x30 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.free 0x00000000 0x1c zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.calloc 0x00000000 0x32 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .text.reallocarray + 0x00000000 0x27 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .data.z_malloc_heap_mutex + 0x00000000 0x14 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .literal.fnmatchx + 0x00000000 0x80 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .literal.fnmatch + 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .data 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .bss 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text.foldcase + 0x00000000 0x13 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text.fnmatchx + 0x00000000 0x55e zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .text.fnmatch 0x00000000 0x18 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_frame 0x00000000 0x58 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_info 0x00000000 0x823 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_abbrev 0x00000000 0x2a2 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_loc 0x00000000 0x5f8 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_aranges + 0x00000000 0x30 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_ranges 0x00000000 0x108 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_line 0x00000000 0xedd zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .debug_str 0x00000000 0x312 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .comment 0x00000000 0x20 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .literal.getentropy + 0x00000000 0x10 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .text 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .data 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .bss 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .text.getentropy + 0x00000000 0x4f zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_frame 0x00000000 0x28 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_info 0x00000000 0x44d zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_abbrev 0x00000000 0x23b zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_loc 0x00000000 0xa2 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_line 0x00000000 0x473 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .debug_str 0x00000000 0x3d6 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .comment 0x00000000 0x20 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .literal.getopt_init + 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .literal.getopt_state_get + 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .literal.getopt + 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .literal.z_getopt_global_state_update_shim + 0x00000000 0x10 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .text 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .data 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .bss 0x00000000 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .text.getopt_init + 0x00000000 0xb zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .text.getopt_state_get + 0x00000000 0xd zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .text.getopt 0x00000000 0x14 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .text.z_getopt_global_state_update_shim + 0x00000000 0x21 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .bss.optopt 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .bss.optind 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .bss.opterr 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .bss.optarg 0x00000000 0x4 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_frame 0x00000000 0x70 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_info 0x00000000 0x2e2 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_abbrev 0x00000000 0x18c zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_loc 0x00000000 0x2b zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_aranges + 0x00000000 0x38 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_ranges 0x00000000 0x28 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_line 0x00000000 0x30a zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .debug_str 0x00000000 0x4ab zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .comment 0x00000000 0x20 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .literal.esp_intr_mark_shared + 0x00000000 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .literal.esp_intr_reserve + 0x00000000 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .iram1.1.literal + 0x00000000 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .iram1.2.literal + 0x00000000 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .literal.esp_intr_free + 0x00000000 0x24 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text 0x00000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .data 0x00000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text.esp_intr_mark_shared + 0x00000000 0x41 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text.esp_intr_reserve + 0x00000000 0x39 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .iram1.1 0x00000000 0x5b zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text.esp_intr_get_intno + 0x00000000 0xc zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text.esp_intr_get_cpu + 0x00000000 0xc zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .iram1.2 0x00000000 0x7a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text.esp_intr_free + 0x00000000 0xe0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text 0x00000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .data 0x00000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .text 0x00000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .data 0x00000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text.uart_register_input + 0x00000000 0x5 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .text 0x00000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .data 0x00000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.RtcBkupWrite + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .literal.RtcBkupRead + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .literal.RtcGetCalendarTime + 0x00000000 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .text.RtcBkupWrite + 0x00000000 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .text.RtcBkupRead + 0x00000000 0x16 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .text.RtcGetCalendarTime + 0x00000000 0x3a zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .bss.backup_reg + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .literal.rand1 + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .literal.srand1 + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .literal.randr + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .literal.Crc32 + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .literal.Crc32Update + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.rand1 0x00000000 0x31 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.srand1 0x00000000 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.randr 0x00000000 0x15 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.memcpy1 0x00000000 0x1d zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.memcpyr 0x00000000 0x21 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.memset1 0x00000000 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.Nibble2HexChar + 0x00000000 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.Crc32 0x00000000 0x42 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.Crc32Init + 0x00000000 0x7 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.Crc32Update + 0x00000000 0x3c zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .text.Crc32Finalize + 0x00000000 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .data.next 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_frame 0x00000000 0x118 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_info 0x00000000 0x431 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_abbrev 0x00000000 0x120 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_loc 0x00000000 0x3fc zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_aranges + 0x00000000 0x70 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_ranges 0x00000000 0xc0 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_line 0x00000000 0x6f2 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .debug_str 0x00000000 0x32e zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .comment 0x00000000 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .literal.CalendarDiv61 + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.SysTimeSet + 0x00000000 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.SysTimeGet + 0x00000000 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.SysTimeGetMcuTime + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.SysTimeToMs + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.SysTimeFromMs + 0x00000000 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.SysTimeMkTime + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.SysTimeLocalTime + 0x00000000 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.CalendarDiv61 + 0x00000000 0x34 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeAdd + 0x00000000 0x24 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeSub + 0x00000000 0x23 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeSet + 0x00000000 0x33 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeGet + 0x00000000 0x3b zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeGetMcuTime + 0x00000000 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeToMs + 0x00000000 0x39 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeFromMs + 0x00000000 0x4a zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .rodata 0x00000000 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeMkTime + 0x00000000 0x86 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .text.SysTimeLocalTime + 0x00000000 0x180 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .rodata.str1.1 + 0x00000000 0x1c zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .data.WeekDayString + 0x00000000 0x1c zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_frame 0x00000000 0x100 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_info 0x00000000 0x911 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_abbrev 0x00000000 0x2d3 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_loc 0x00000000 0x966 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_aranges + 0x00000000 0x68 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_ranges 0x00000000 0x70 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_line 0x00000000 0xe83 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .debug_str 0x00000000 0x4ae zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .comment 0x00000000 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .literal.TimerReset + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .literal.TimerTempCompensation + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .literal.TimerProcess + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .text.TimerSetContext + 0x00000000 0x7 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .text.TimerIsStarted + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .text.TimerReset + 0x00000000 0x16 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .text.TimerTempCompensation + 0x00000000 0x11 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .text.TimerProcess + 0x00000000 0xb zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .literal.Delay + 0x00000000 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .text.Delay 0x00000000 0x1c zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .literal.SX126xSetFs + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xSetTxInfinitePreamble + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xCalibrate + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xSetRxTxFallbackMode + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xSetDio3AsTcxoCtrl + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xSetCadParams + 0x00000000 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xGetStatus + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xGetDeviceErrors + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.SX126xClearDeviceErrors + 0x00000000 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xSetFs + 0x00000000 0x1a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xSetTxInfinitePreamble + 0x00000000 0x1a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xCalibrate + 0x00000000 0x4e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xSetRxTxFallbackMode + 0x00000000 0x16 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xSetDio3AsTcxoCtrl + 0x00000000 0x27 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xSetCadParams + 0x00000000 0x36 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xGetStatus + 0x00000000 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xGetDeviceErrors + 0x00000000 0x28 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text.SX126xClearDeviceErrors + 0x00000000 0x16 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .text 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .data 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .text 0x00000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .data 0x00000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .text 0x00000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .data 0x00000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .text 0x00000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .data 0x00000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text 0x00000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .data 0x00000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .text 0x00000000 0x0 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .data 0x00000000 0x0 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .text 0x00000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .data 0x00000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text.sys_clock_set_timeout + 0x00000000 0x5 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text.sys_clock_idle_exit + 0x00000000 0x5 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_frame 0x00000000 0x40 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_info 0x00000000 0xda zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_abbrev 0x00000000 0x7e zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_aranges + 0x00000000 0x28 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_ranges 0x00000000 0x18 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_line 0x00000000 0x1b9 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .debug_str 0x00000000 0x27e zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .comment 0x00000000 0x20 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .text 0x00000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .data 0x00000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .bss 0x00000000 0x0 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .text.sys_clock_idle_exit + 0x00000000 0x5 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .literal.z_impl_device_init + 0x00000000 0x4 zephyr/kernel/libkernel.a(device.c.obj) + .literal.z_device_get_all_static + 0x00000000 0xc zephyr/kernel/libkernel.a(device.c.obj) + .literal.z_impl_device_get_binding + 0x00000000 0x10 zephyr/kernel/libkernel.a(device.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_impl_device_init + 0x00000000 0x1a zephyr/kernel/libkernel.a(device.c.obj) + .text.z_device_get_all_static + 0x00000000 0x19 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_impl_device_get_binding + 0x00000000 0x42 zephyr/kernel/libkernel.a(device.c.obj) + .text.z_impl_device_deinit + 0x00000000 0x8 zephyr/kernel/libkernel.a(device.c.obj) + .literal.z_impl_z_errno + 0x00000000 0x4 zephyr/kernel/libkernel.a(errno.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(errno.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(errno.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(errno.c.obj) + .text.z_impl_z_errno + 0x00000000 0xd zephyr/kernel/libkernel.a(errno.c.obj) + .rodata._k_neg_eagain + 0x00000000 0x4 zephyr/kernel/libkernel.a(errno.c.obj) + .debug_frame 0x00000000 0x28 zephyr/kernel/libkernel.a(errno.c.obj) + .debug_info 0x00000000 0x666 zephyr/kernel/libkernel.a(errno.c.obj) + .debug_abbrev 0x00000000 0x1b1 zephyr/kernel/libkernel.a(errno.c.obj) + .debug_aranges + 0x00000000 0x20 zephyr/kernel/libkernel.a(errno.c.obj) + .debug_ranges 0x00000000 0x10 zephyr/kernel/libkernel.a(errno.c.obj) + .debug_line 0x00000000 0x38a zephyr/kernel/libkernel.a(errno.c.obj) + .debug_str 0x00000000 0x6c3 zephyr/kernel/libkernel.a(errno.c.obj) + .comment 0x00000000 0x20 zephyr/kernel/libkernel.a(errno.c.obj) + .literal.k_fatal_halt + 0x00000000 0x4 zephyr/kernel/libkernel.a(fatal.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .text.k_fatal_halt + 0x00000000 0xc zephyr/kernel/libkernel.a(fatal.c.obj) + .literal.z_early_rand_get + 0x00000000 0x18 zephyr/kernel/libkernel.a(init.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .text.z_early_rand_get + 0x00000000 0x5b zephyr/kernel/libkernel.a(init.c.obj) + .data.state$1 0x00000000 0x8 zephyr/kernel/libkernel.a(init.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .text.arch_spin_relax + 0x00000000 0x7 zephyr/kernel/libkernel.a(idle.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .literal.z_impl_k_sem_reset + 0x00000000 0x14 zephyr/kernel/libkernel.a(sem.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .text.z_impl_k_sem_reset + 0x00000000 0x7e zephyr/kernel/libkernel.a(sem.c.obj) + .literal.unschedule_locked + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.cancel_async_locked + 0x00000000 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .literal.cancel_sync_locked + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.work_timeout + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.work_flush_locked + 0x00000000 0x10 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_flush + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_cancel + 0x00000000 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_cancel_sync + 0x00000000 0xc zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_queue_init + 0x00000000 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_queue_run + 0x00000000 0xc zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_queue_drain + 0x00000000 0xc zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_queue_unplug + 0x00000000 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_queue_stop + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_init_delayable + 0x00000000 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_delayable_busy_get + 0x00000000 0x4 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_schedule_for_queue + 0x00000000 0xc zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_schedule + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_reschedule_for_queue + 0x00000000 0x10 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_reschedule + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_cancel_delayable + 0x00000000 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_cancel_delayable_sync + 0x00000000 0x10 zephyr/kernel/libkernel.a(work.c.obj) + .literal.k_work_flush_delayable + 0x00000000 0x10 zephyr/kernel/libkernel.a(work.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .text.handle_flush + 0x00000000 0x5 zephyr/kernel/libkernel.a(work.c.obj) + .text.unschedule_locked + 0x00000000 0x24 zephyr/kernel/libkernel.a(work.c.obj) + .text.cancel_async_locked + 0x00000000 0x66 zephyr/kernel/libkernel.a(work.c.obj) + .text.cancel_sync_locked + 0x00000000 0x32 zephyr/kernel/libkernel.a(work.c.obj) + .text.work_timeout + 0x00000000 0x30 zephyr/kernel/libkernel.a(work.c.obj) + .text.work_flush_locked + 0x00000000 0x77 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_busy_get + 0x00000000 0x13 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_flush + 0x00000000 0x2a zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel + 0x00000000 0x18 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_sync + 0x00000000 0x3e zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_init + 0x00000000 0x12 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_run + 0x00000000 0x50 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_drain + 0x00000000 0x59 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_unplug + 0x00000000 0x24 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_queue_stop + 0x00000000 0x76 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_init_delayable + 0x00000000 0x19 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_delayable_busy_get + 0x00000000 0x10 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_schedule_for_queue + 0x00000000 0x4c zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_schedule + 0x00000000 0x16 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_reschedule_for_queue + 0x00000000 0x4c zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_reschedule + 0x00000000 0x16 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_delayable + 0x00000000 0x20 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_cancel_delayable_sync + 0x00000000 0x46 zephyr/kernel/libkernel.a(work.c.obj) + .text.k_work_flush_delayable + 0x00000000 0x56 zephyr/kernel/libkernel.a(work.c.obj) + .literal.z_impl_k_is_preempt_thread + 0x00000000 0x4 zephyr/kernel/libkernel.a(thread.c.obj) + .literal.k_thread_state_str + 0x00000000 0x14 zephyr/kernel/libkernel.a(thread.c.obj) + .literal.k_thread_user_mode_enter + 0x00000000 0x8 zephyr/kernel/libkernel.a(thread.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_is_preempt_thread + 0x00000000 0x22 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_thread_priority_get + 0x00000000 0xb zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_impl_k_thread_name_copy + 0x00000000 0x8 zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.k_thread_state_str.str1.1 + 0x00000000 0x3 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_state_str + 0x00000000 0x75 zephyr/kernel/libkernel.a(thread.c.obj) + .text.z_init_thread_base + 0x00000000 0x19 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_user_mode_enter + 0x00000000 0x28 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_get + 0x00000000 0x18 zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_all_get + 0x00000000 0xe zephyr/kernel/libkernel.a(thread.c.obj) + .text.k_thread_runtime_stats_cpu_get + 0x00000000 0xc zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.str1.1 + 0x00000000 0x41 zephyr/kernel/libkernel.a(thread.c.obj) + .rodata.state_string$0 + 0x00000000 0x40 zephyr/kernel/libkernel.a(thread.c.obj) + .literal.z_requeue_current + 0x00000000 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_yield_testing_only + 0x00000000 0x4 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_impl_k_thread_suspend + 0x00000000 0x20 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_impl_k_thread_resume + 0x00000000 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_pend_thread + 0x00000000 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_swap_next_thread + 0x00000000 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_impl_k_thread_priority_set + 0x00000000 0xc zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_impl_k_reschedule + 0x00000000 0x10 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.k_can_yield + 0x00000000 0x10 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_impl_k_usleep + 0x00000000 0x8 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_impl_k_thread_join + 0x00000000 0x10 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.z_unready_thread + 0x00000000 0x4 zephyr/kernel/libkernel.a(sched.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_requeue_current + 0x00000000 0x47 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_yield_testing_only + 0x00000000 0x14 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_suspend + 0x00000000 0xe5 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_resume + 0x00000000 0x30 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_pend_thread + 0x00000000 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_swap_next_thread + 0x00000000 0x22 zephyr/kernel/libkernel.a(sched.c.obj) + .text.init_ready_q + 0x00000000 0xb zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_priority_set + 0x00000000 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_reschedule + 0x00000000 0x4e zephyr/kernel/libkernel.a(sched.c.obj) + .text.k_can_yield + 0x00000000 0x44 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_usleep + 0x00000000 0x30 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_impl_k_thread_join + 0x00000000 0x60 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_sched_waitq_walk + 0x00000000 0x54 zephyr/kernel/libkernel.a(sched.c.obj) + .text.z_unready_thread + 0x00000000 0x16 zephyr/kernel/libkernel.a(sched.c.obj) + .bss._sched_spinlock + 0x00000000 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .literal.k_sched_time_slice_set + 0x00000000 0x10 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .text.k_sched_time_slice_set + 0x00000000 0x28 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .literal.timeout_rem + 0x00000000 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .literal.z_timeout_remaining + 0x00000000 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .literal.z_timeout_expires + 0x00000000 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .literal.z_get_next_timeout_expiry + 0x00000000 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .literal.sys_timepoint_calc + 0x00000000 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + .literal.sys_timepoint_timeout + 0x00000000 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.timeout_rem + 0x00000000 0x34 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_timeout_remaining + 0x00000000 0x38 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_timeout_expires + 0x00000000 0x2c zephyr/kernel/libkernel.a(timeout.c.obj) + .text.z_get_next_timeout_expiry + 0x00000000 0x1c zephyr/kernel/libkernel.a(timeout.c.obj) + .text.sys_timepoint_calc + 0x00000000 0x46 zephyr/kernel/libkernel.a(timeout.c.obj) + .text.sys_timepoint_timeout + 0x00000000 0x42 zephyr/kernel/libkernel.a(timeout.c.obj) + .literal.z_impl_k_timer_status_sync + 0x00000000 0x8 zephyr/kernel/libkernel.a(timer.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .text.z_impl_k_timer_status_get + 0x00000000 0x16 zephyr/kernel/libkernel.a(timer.c.obj) + .text.z_impl_k_timer_status_sync + 0x00000000 0x31 zephyr/kernel/libkernel.a(timer.c.obj) + .bss.lock 0x00000000 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .literal.triggered_work_handler + 0x00000000 0x4 zephyr/kernel/libkernel.a(poll.c.obj) + .literal.triggered_work_expiration_handler + 0x00000000 0x4 zephyr/kernel/libkernel.a(poll.c.obj) + .literal.k_work_poll_init + 0x00000000 0xc zephyr/kernel/libkernel.a(poll.c.obj) + .literal.k_work_poll_submit_to_queue + 0x00000000 0x1c zephyr/kernel/libkernel.a(poll.c.obj) + .literal.k_work_poll_submit + 0x00000000 0x8 zephyr/kernel/libkernel.a(poll.c.obj) + .literal.k_work_poll_cancel + 0x00000000 0x8 zephyr/kernel/libkernel.a(poll.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + .text.triggered_work_handler + 0x00000000 0x2b zephyr/kernel/libkernel.a(poll.c.obj) + .text.triggered_work_expiration_handler + 0x00000000 0x1a zephyr/kernel/libkernel.a(poll.c.obj) + .text.k_poll_event_init + 0x00000000 0x25 zephyr/kernel/libkernel.a(poll.c.obj) + .text.z_impl_k_poll_signal_init + 0x00000000 0xd zephyr/kernel/libkernel.a(poll.c.obj) + .text.z_impl_k_poll_signal_reset + 0x00000000 0x9 zephyr/kernel/libkernel.a(poll.c.obj) + .text.z_impl_k_poll_signal_check + 0x00000000 0xd zephyr/kernel/libkernel.a(poll.c.obj) + .text.k_work_poll_init + 0x00000000 0x26 zephyr/kernel/libkernel.a(poll.c.obj) + .text.k_work_poll_submit_to_queue + 0x00000000 0xdc zephyr/kernel/libkernel.a(poll.c.obj) + .text.k_work_poll_submit + 0x00000000 0x1a zephyr/kernel/libkernel.a(poll.c.obj) + .text.k_work_poll_cancel + 0x00000000 0x44 zephyr/kernel/libkernel.a(poll.c.obj) + .literal.z_thread_alloc_helper + 0x00000000 0x10 zephyr/kernel/libkernel.a(mempool.c.obj) + .literal.k_aligned_alloc + 0x00000000 0xc zephyr/kernel/libkernel.a(mempool.c.obj) + .literal.k_realloc + 0x00000000 0xc zephyr/kernel/libkernel.a(mempool.c.obj) + .literal.z_thread_aligned_alloc + 0x00000000 0x8 zephyr/kernel/libkernel.a(mempool.c.obj) + .literal.z_thread_malloc + 0x00000000 0x8 zephyr/kernel/libkernel.a(mempool.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.z_thread_alloc_helper + 0x00000000 0x2c zephyr/kernel/libkernel.a(mempool.c.obj) + .text.k_aligned_alloc + 0x00000000 0x18 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.k_realloc + 0x00000000 0x47 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.z_thread_aligned_alloc + 0x00000000 0x14 zephyr/kernel/libkernel.a(mempool.c.obj) + .text.z_thread_malloc + 0x00000000 0x14 zephyr/kernel/libkernel.a(mempool.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(banner.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(banner.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(banner.c.obj) + .literal.z_heap_alloc_helper + 0x00000000 0xc zephyr/kernel/libkernel.a(kheap.c.obj) + .literal.k_heap_array_get + 0x00000000 0xc zephyr/kernel/libkernel.a(kheap.c.obj) + .literal.k_heap_alloc + 0x00000000 0x8 zephyr/kernel/libkernel.a(kheap.c.obj) + .literal.k_heap_aligned_alloc + 0x00000000 0x8 zephyr/kernel/libkernel.a(kheap.c.obj) + .literal.k_heap_calloc + 0x00000000 0x8 zephyr/kernel/libkernel.a(kheap.c.obj) + .literal.k_heap_realloc + 0x00000000 0x10 zephyr/kernel/libkernel.a(kheap.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.z_heap_alloc_helper + 0x00000000 0x5e zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_array_get + 0x00000000 0x19 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_alloc + 0x00000000 0x1c zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_aligned_alloc + 0x00000000 0x1c zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_calloc + 0x00000000 0x32 zephyr/kernel/libkernel.a(kheap.c.obj) + .text.k_heap_realloc + 0x00000000 0x5e zephyr/kernel/libkernel.a(kheap.c.obj) + .text 0x00000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .data 0x00000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .bss 0x00000000 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .text 0x00000000 0x0 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + .data 0x00000000 0x0 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + .bss 0x00000000 0x0 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + .text 0x00000000 0x18 /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/libgcc.a(_ashldi3.o) + .data 0x00000000 0x0 /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/libgcc.a(_ashldi3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_ashldi3.o) + .text 0x00000000 0x19 /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/libgcc.a(_ashrdi3.o) + .data 0x00000000 0x0 /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/libgcc.a(_ashrdi3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_ashrdi3.o) + .text 0x00000000 0x18 /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/libgcc.a(_lshrdi3.o) + .data 0x00000000 0x0 /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/libgcc.a(_lshrdi3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_lshrdi3.o) + .text 0x00000000 0x14 /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/libgcc.a(_bswapsi2.o) + .data 0x00000000 0x0 /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/libgcc.a(_bswapsi2.o) + .bss 0x00000000 0x0 /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/libgcc.a(_bswapsi2.o) + .text 0x00000000 0x22 /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/libgcc.a(_bswapdi2.o) + .data 0x00000000 0x0 /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/libgcc.a(_bswapdi2.o) + .bss 0x00000000 0x0 /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/libgcc.a(_bswapdi2.o) + .text 0x00000000 0x59 /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/libgcc.a(_divsf3.o) + .data 0x00000000 0x0 /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/libgcc.a(_divsf3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_divsf3.o) + .literal 0x00000000 0x10 /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/libgcc.a(_addsubdf3.o) + .text 0x00000000 0x312 /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/libgcc.a(_addsubdf3.o) + .data 0x00000000 0x0 /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/libgcc.a(_addsubdf3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_addsubdf3.o) + .literal 0x00000000 0xc /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/libgcc.a(_muldf3.o) + .text 0x00000000 0x1ff /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/libgcc.a(_muldf3.o) + .data 0x00000000 0x0 /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/libgcc.a(_muldf3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_muldf3.o) + .literal 0x00000000 0x10 /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/libgcc.a(_divdf3.o) + .text 0x00000000 0x213 /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/libgcc.a(_divdf3.o) + .data 0x00000000 0x0 /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/libgcc.a(_divdf3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_divdf3.o) + .literal 0x00000000 0x4 /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/libgcc.a(_fixdfdi.o) + .text 0x00000000 0x6c /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/libgcc.a(_fixdfdi.o) + .data 0x00000000 0x0 /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/libgcc.a(_fixdfdi.o) + .bss 0x00000000 0x0 /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/libgcc.a(_fixdfdi.o) + .text 0x00000000 0x3d /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/libgcc.a(_floatsidf.o) + .data 0x00000000 0x0 /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/libgcc.a(_floatsidf.o) + .bss 0x00000000 0x0 /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/libgcc.a(_floatsidf.o) + .text 0x00000000 0x81 /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/libgcc.a(_floatdidf.o) + .data 0x00000000 0x0 /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/libgcc.a(_floatdidf.o) + .bss 0x00000000 0x0 /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/libgcc.a(_floatdidf.o) + .literal 0x00000000 0x8 /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/libgcc.a(_truncdfsf2.o) + .text 0x00000000 0xa4 /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/libgcc.a(_truncdfsf2.o) + .data 0x00000000 0x0 /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/libgcc.a(_truncdfsf2.o) + .bss 0x00000000 0x0 /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/libgcc.a(_truncdfsf2.o) + .literal 0x00000000 0x8 /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/libgcc.a(_extendsfdf2.o) + .text 0x00000000 0x62 /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/libgcc.a(_extendsfdf2.o) + .data 0x00000000 0x0 /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/libgcc.a(_extendsfdf2.o) + .bss 0x00000000 0x0 /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/libgcc.a(_extendsfdf2.o) + .literal 0x00000000 0xc /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/libgcc.a(_popcountsi2.o) + .text 0x00000000 0x37 /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/libgcc.a(_popcountsi2.o) + .data 0x00000000 0x0 /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/libgcc.a(_popcountsi2.o) + .bss 0x00000000 0x0 /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/libgcc.a(_popcountsi2.o) + .debug_frame 0x00000000 0x28 /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/libgcc.a(_popcountsi2.o) + .text 0x00000000 0x26e /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/libgcc.a(_divdi3.o) + .data 0x00000000 0x0 /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/libgcc.a(_divdi3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_divdi3.o) + .text 0x00000000 0x2ea /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/libgcc.a(_moddi3.o) + .data 0x00000000 0x0 /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/libgcc.a(_moddi3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_moddi3.o) + .text 0x00000000 0x254 /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/libgcc.a(_udivdi3.o) + .data 0x00000000 0x0 /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/libgcc.a(_udivdi3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_udivdi3.o) + .text 0x00000000 0x2bb /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/libgcc.a(_umoddi3.o) + .data 0x00000000 0x0 /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/libgcc.a(_umoddi3.o) + .bss 0x00000000 0x0 /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/libgcc.a(_umoddi3.o) + .literal 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memcpy.S.o) + .text 0x00000000 0x135 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memcpy.S.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memcpy.S.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memcpy.S.o) + .literal 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memset.S.o) + .text 0x00000000 0x74 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memset.S.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memset.S.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memset.S.o) + .literal 0x00000000 0x1c /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + .text 0x00000000 0x123 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + .literal 0x00000000 0xc /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + .text 0x00000000 0x63 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + .text.memcmp 0x00000000 0x26 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + .text.strchr 0x00000000 0x1d /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + .text.strnlen 0x00000000 0x1a /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + .text.putc 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + .text.fputs 0x00000000 0x33 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + .literal.printf + 0x00000000 0x8 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + .text.printf 0x00000000 0x2e /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + .literal.puts 0x00000000 0x4 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + .text.puts 0x00000000 0x43 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .literal.scanf_getc + 0x00000000 0x4 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .literal.skip_spaces + 0x00000000 0x8 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .literal.__l_vfscanf + 0x00000000 0x4c /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .text.scanf_getc + 0x00000000 0x1a /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .text.skip_spaces + 0x00000000 0x46 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .text.putval 0x00000000 0x32 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .rodata.__l_vfscanf.str1.1 + 0x00000000 0xc /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .text.__l_vfscanf + 0x00000000 0x456 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .debug_frame 0x00000000 0x70 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + .text.getc 0x00000000 0x96 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + .text 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + .data 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + .bss 0x00000000 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + .text.ungetc 0x00000000 0x7c /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + .debug_frame 0x00000000 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + +Memory Configuration + +Name Origin Length Attributes +FLASH 0x00000000 0x007fff00 r +iram0_0_seg 0x40374000 0x00065704 xr +dram0_0_seg 0x3fc88000 0x00061704 rw +irom0_0_seg 0x42000000 0x02000000 xr +drom0_0_seg 0x3c000000 0x02000000 r +rtc_iram_seg 0x600fe000 0x00002000 xrw +rtc_slow_seg 0x50000000 0x00002000 rw +IDT_LIST 0x3ebfe010 0x00002000 rw +*default* 0x00000000 0xffffffff + +Linker script and memory map + + 0x420074f8 vfprintf = __l_vfprintf + 0x00000000 vfscanf = __l_vfscanf +LOAD zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj +LOAD zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj +LOAD app/libapp.a +LOAD zephyr/libzephyr.a +LOAD zephyr/arch/common/libarch__common.a +LOAD zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a +LOAD zephyr/lib/libc/picolibc/liblib__libc__picolibc.a +LOAD zephyr/lib/libc/common/liblib__libc__common.a +LOAD zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a +LOAD zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a +LOAD zephyr/drivers/clock_control/libdrivers__clock_control.a +LOAD zephyr/drivers/console/libdrivers__console.a +LOAD zephyr/drivers/gpio/libdrivers__gpio.a +LOAD zephyr/drivers/lora/loramac-node/libloramac-node.a +LOAD zephyr/drivers/pinctrl/libdrivers__pinctrl.a +LOAD zephyr/drivers/serial/libdrivers__serial.a +LOAD zephyr/drivers/spi/libdrivers__spi.a +LOAD zephyr/drivers/timer/libdrivers__timer.a +LOAD zephyr/kernel/libkernel.a +LOAD zephyr/arch/common/libisr_tables.a +LOAD /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/libgcc.a +LOAD /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a +LOAD /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/libgcc.a + 0x403d9704 procpu_iram_end = 0x403d9704 + 0x3fce9704 procpu_dram_end = 0x3fce9704 + 0x40374000 procpu_iram_org = 0x40374000 + 0x00065704 procpu_iram_len = (procpu_iram_end - procpu_iram_org) + 0x3fc88000 procpu_dram_org = 0x3fc88000 + 0x00061704 procpu_dram_len = (procpu_dram_end - procpu_dram_org) + 0x44000000 procpu_irom_end = 0x44000000 + 0x3e000000 procpu_drom_end = 0x3e000000 + 0x42000000 procpu_irom_org = 0x42000000 + 0x02000000 procpu_irom_len = 0x2000000 + 0x3c000000 procpu_drom_org = 0x3c000000 + 0x02000000 procpu_drom_len = 0x2000000 + 0x600fe000 rtc_iram_org = 0x600fe000 + 0x00002000 rtc_iram_len = 0x2000 + 0x50000000 rtc_slow_org = 0x50000000 + 0x00002000 rtc_slow_len = 0x2000 + 0x3fce9704 _heap_sentry = 0x3fce9704 + 0x0005334c _libc_heap_size = (_heap_sentry - _end) + 0x006f0000 _iram_dram_offset = 0x6f0000 + +.rel.plt 0x00000000 0x0 + *(SORT_BY_ALIGNMENT(.rel.plt)) + [!provide] PROVIDE (__rel_iplt_start = .) + *(SORT_BY_ALIGNMENT(.rel.iplt)) + [!provide] PROVIDE (__rel_iplt_end = .) + +.rela.plt 0x00000000 0x0 + *(SORT_BY_ALIGNMENT(.rela.plt)) + [!provide] PROVIDE (__rela_iplt_start = .) + *(SORT_BY_ALIGNMENT(.rela.iplt)) + [!provide] PROVIDE (__rela_iplt_end = .) + +.rel.dyn + *(SORT_BY_ALIGNMENT(.rel.*)) + +.rela.dyn + *(SORT_BY_ALIGNMENT(.rela.*)) + +.rtc.text 0x600fe000 0x0 load address 0x00000000 + 0x600fe000 . = ALIGN (0x4) + 0x600fe000 _rtc_text_start = ABSOLUTE (.) + 0x600fe000 _rtc_fast_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.rtc.literal) SORT_BY_ALIGNMENT(.rtc.literal.*)) + *(SORT_BY_ALIGNMENT(.rtc.text) SORT_BY_ALIGNMENT(.rtc.text.*)) + *(SORT_BY_ALIGNMENT(.rtc.entry.literal)) + *(SORT_BY_ALIGNMENT(.rtc.entry.text)) + 0x600fe000 . = ALIGN (0x4) + +.rtc.force_fast + 0x600fe000 0x0 load address 0x00000000 + 0x600fe000 . = ALIGN (0x4) + 0x600fe000 _rtc_force_fast_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.rtc.force_fast) SORT_BY_ALIGNMENT(.rtc.force_fast.*)) + 0x600fe000 . = ALIGN (0x4) + 0x600fe000 _rtc_force_fast_end = ABSOLUTE (.) + +.rtc.data 0x50000000 0x0 load address 0x00000000 + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_data_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.rtc.data) SORT_BY_ALIGNMENT(.rtc.data.*)) + *(SORT_BY_ALIGNMENT(.rtc.rodata) SORT_BY_ALIGNMENT(.rtc.rodata.*)) + 0x50000000 _rtc_data_end = ABSOLUTE (.) + +.rtc.bss 0x50000000 0x0 load address 0x00000000 + 0x50000000 _rtc_bss_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.rtc.bss) SORT_BY_ALIGNMENT(.rtc.bss.*)) + 0x50000000 _rtc_bss_end = ABSOLUTE (.) + +.rtc_noinit 0x50000000 0x0 load address 0x00000000 + 0x50000000 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.rtc_noinit) SORT_BY_ALIGNMENT(.rtc_noinit.*)) + 0x50000000 . = ALIGN (0x4) + +.rtc.force_slow + 0x50000000 0x24 load address 0x00000000 + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_force_slow_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.rtc.force_slow) SORT_BY_ALIGNMENT(.rtc.force_slow.*)) + .rtc.force_slow.3 + 0x50000000 0x24 zephyr/libzephyr.a(sleep_modes.c.obj) + 0x50000024 . = ALIGN (0x4) + 0x50000024 _rtc_force_slow_end = ABSOLUTE (.) + 0x00000024 _rtc_slow_length = (_rtc_force_slow_end - _rtc_data_start) + 0x00000000 _rtc_fast_length = (_rtc_force_fast_end - _rtc_fast_start) + +.iram0.vectors 0x40374000 0x400 load address 0x00000024 + 0x40374000 _init_start = ABSOLUTE (.) + 0x00000000 . = 0x0 + *(SORT_BY_ALIGNMENT(.WindowVectors.text)) + .WindowVectors.text + 0x40374000 0x16a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + 0x40374000 _WindowOverflow4 + 0x40374040 _WindowUnderflow4 + 0x40374050 _xt_alloca_exc + 0x40374080 _WindowOverflow8 + 0x403740c0 _WindowUnderflow8 + 0x40374100 _WindowOverflow12 + 0x40374140 _WindowUnderflow12 + 0x00000180 . = 0x180 + *fill* 0x4037416a 0x16 + *(SORT_BY_ALIGNMENT(.Level2InterruptVector.text)) + .Level2InterruptVector.text + 0x40374180 0x2d zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x40374180 _Level2Vector + 0x000001c0 . = 0x1c0 + *fill* 0x403741ad 0x13 + *(SORT_BY_ALIGNMENT(.Level3InterruptVector.text)) + .Level3InterruptVector.text + 0x403741c0 0x29 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x2d (size before relaxing) + 0x403741c0 _Level3Vector + 0x00000200 . = 0x200 + *fill* 0x403741e9 0x17 + *(SORT_BY_ALIGNMENT(.Level4InterruptVector.text)) + .Level4InterruptVector.text + 0x40374200 0x29 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x2d (size before relaxing) + 0x40374200 _Level4Vector + 0x00000240 . = 0x240 + *fill* 0x40374229 0x17 + *(SORT_BY_ALIGNMENT(.Level5InterruptVector.text)) + .Level5InterruptVector.text + 0x40374240 0x29 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x2d (size before relaxing) + 0x40374240 _Level5Vector + 0x00000280 . = 0x280 + *fill* 0x40374269 0x17 + *(SORT_BY_ALIGNMENT(.DebugExceptionVector.text)) + .DebugExceptionVector.text + 0x40374280 0x29 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x2d (size before relaxing) + 0x40374280 _Level6Vector + 0x000002c0 . = 0x2c0 + *fill* 0x403742a9 0x17 + *(SORT_BY_ALIGNMENT(.NMIExceptionVector.text)) + .NMIExceptionVector.text + 0x403742c0 0x29 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x2d (size before relaxing) + 0x403742c0 _Level7Vector + 0x00000300 . = 0x300 + *fill* 0x403742e9 0x17 + *(SORT_BY_ALIGNMENT(.KernelExceptionVector.text)) + .KernelExceptionVector.text + 0x40374300 0x3 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x40374300 _KernelExceptionVector + 0x00000340 . = 0x340 + *fill* 0x40374303 0x3d + *(SORT_BY_ALIGNMENT(.UserExceptionVector.text)) + .UserExceptionVector.text + 0x40374340 0x16 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x40374340 _Level1RealVector + 0x000003c0 . = 0x3c0 + *fill* 0x40374356 0x6a + *(SORT_BY_ALIGNMENT(.DoubleExceptionVector.text)) + .DoubleExceptionVector.text + 0x403743c0 0x3 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x403743c0 _DoubleExceptionVector + 0x00000400 . = 0x400 + *fill* 0x403743c3 0x3d + 0x40374400 _invalid_pc_placeholder = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.*Vector.literal)) + *(SORT_BY_ALIGNMENT(.UserEnter.literal)) + *(SORT_BY_ALIGNMENT(.UserEnter.text)) + 0x40374400 . = ALIGN (0x10) + *(SORT_BY_ALIGNMENT(.entry.text)) + *(SORT_BY_ALIGNMENT(.init.literal)) + *(.init) + 0x40374400 _init_end = ABSOLUTE (.) + 0x40374400 _iram_start = ABSOLUTE (.) + +.iram0.text 0x40374400 0xac6c load address 0x00000424 + 0x40374400 _iram_text_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.iram1) SORT_BY_ALIGNMENT(.iram1.*)) + .iram1.1.literal + 0x40374400 0xc zephyr/libzephyr.a(soc.c.obj) + 0x1c (size before relaxing) + .iram1.3.literal + 0x4037440c 0x4 zephyr/libzephyr.a(soc.c.obj) + 0x8 (size before relaxing) + .iram1.3.literal + 0x40374410 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .iram1.1.literal + 0x40374414 0x4 zephyr/libzephyr.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .iram1.2.literal + 0x40374418 0x4 zephyr/libzephyr.a(flash_ops.c.obj) + .iram1.4.literal + 0x4037441c 0x4 zephyr/libzephyr.a(flash_ops.c.obj) + 0xc (size before relaxing) + .iram1.5.literal + 0x40374420 0x0 zephyr/libzephyr.a(flash_ops.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x40374420 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x40374420 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x40374420 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x40374420 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x40374420 0x4 zephyr/libzephyr.a(cache_utils.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x40374424 0x0 zephyr/libzephyr.a(cache_utils.c.obj) + 0xc (size before relaxing) + .iram1.8.literal + 0x40374424 0x1c zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.9.literal + 0x40374440 0xc zephyr/libzephyr.a(cache_utils.c.obj) + .iram1.3.literal + 0x4037444c 0x8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .iram1.4.literal + 0x40374454 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x8 (size before relaxing) + .iram1.3.literal + 0x40374454 0xc zephyr/libzephyr.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x40374460 0xc zephyr/libzephyr.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .iram1.4.literal + 0x4037446c 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .iram1.2.literal + 0x40374470 0x18 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x2c (size before relaxing) + .iram1.1.literal + 0x40374488 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x40374488 0x8 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .iram1.1.literal + 0x40374490 0x0 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x8 (size before relaxing) + .iram1.6.literal + 0x40374490 0x10 zephyr/libzephyr.a(rtc_module.c.obj) + .iram1.7.literal + 0x403744a0 0x0 zephyr/libzephyr.a(rtc_module.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x403744a0 0x4 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .iram1.0.literal + 0x403744a4 0x4 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .iram1.0.literal + 0x403744a8 0x4 zephyr/libzephyr.a(efuse_hal.c.obj) + .iram1.1.literal + 0x403744ac 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x403744ac 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x403744ac 0x1c zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x24 (size before relaxing) + .iram1.2.literal + 0x403744c8 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x403744c8 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x3c (size before relaxing) + .iram1.3.literal + 0x403744cc 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x403744cc 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x8 (size before relaxing) + .iram1.6.literal + 0x403744d0 0xc zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x40 (size before relaxing) + .iram1.8.literal + 0x403744dc 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x403744dc 0xc zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .iram1.4.literal + 0x403744e8 0xc zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x18 (size before relaxing) + .iram1.5.literal + 0x403744f4 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x10 (size before relaxing) + .iram1.2.literal + 0x403744f4 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x403744fc 0x48 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x5c (size before relaxing) + .iram1.0.literal + 0x40374544 0x4 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .iram1.0.literal + 0x40374548 0x40 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x78 (size before relaxing) + .literal.xtensa_exccause + 0x40374588 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .literal.xtensa_fatal_error + 0x40374590 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + 0x8 (size before relaxing) + .literal 0x40374590 0x4 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x8 (size before relaxing) + .literal.z_irq_spurious + 0x40374594 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + 0x10 (size before relaxing) + .literal.arch_new_thread + 0x4037459c 0xc zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .literal.xtensa_handle_irq_lvl + 0x403745a8 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .literal.return_to + 0x403745b0 0x4 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.z_log_msg_static_create$constprop$0 + 0x403745b4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x4 (size before relaxing) + .literal.xtensa_dump_stack$part$0 + 0x403745b4 0x1c zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x3c (size before relaxing) + .literal.xtensa_is_outside_stack_bounds + 0x403745d0 0x4 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_is_frame_pointer_valid + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_dump_stack + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_int2_c + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_int3_c + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_int4_c + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_int5_c + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_int6_c + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_int7_c + 0x403745d4 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x8 (size before relaxing) + .literal.xtensa_excint1_c + 0x403745d4 0x28 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x64 (size before relaxing) + .literal.z_prep_c + 0x403745fc 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + 0x8 (size before relaxing) + .literal.z_isr_install + 0x403745fc 0x0 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + 0x8 (size before relaxing) + .literal.arch_irq_connect_dynamic + 0x403745fc 0x0 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + 0x4 (size before relaxing) + .literal.arch_early_memset + 0x403745fc 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x4 (size before relaxing) + .literal.arch_bss_zero + 0x403745fc 0x8 zephyr/arch/common/libarch__common.a(init.c.obj) + 0xc (size before relaxing) + .literal.z_impl_k_busy_wait + 0x40374604 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + 0x8 (size before relaxing) + .literal.k_sys_fatal_error_handler + 0x40374604 0x4 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x14 (size before relaxing) + .literal.z_fatal_error + 0x40374608 0x18 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x38 (size before relaxing) + .literal.z_sys_init_run_level + 0x40374620 0x4 zephyr/kernel/libkernel.a(init.c.obj) + 0x8 (size before relaxing) + .literal.bg_thread_main + 0x40374624 0x14 zephyr/kernel/libkernel.a(init.c.obj) + 0x38 (size before relaxing) + .literal.z_init_cpu + 0x40374638 0xc zephyr/kernel/libkernel.a(init.c.obj) + 0x18 (size before relaxing) + .literal.z_cstart + 0x40374644 0x10 zephyr/kernel/libkernel.a(init.c.obj) + 0x44 (size before relaxing) + .literal.idle 0x40374654 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + 0x4 (size before relaxing) + .literal.adjust_owner_prio$isra$0 + 0x40374654 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x4 (size before relaxing) + .literal.z_impl_k_mutex_lock + 0x40374654 0x4 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x18 (size before relaxing) + .literal.z_impl_k_mutex_unlock + 0x40374658 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x18 (size before relaxing) + .literal.z_impl_k_sem_give + 0x40374658 0x4 zephyr/kernel/libkernel.a(sem.c.obj) + 0x14 (size before relaxing) + .literal.z_impl_k_sem_take + 0x4037465c 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + 0x8 (size before relaxing) + .literal.notify_queue_locked$isra$0 + 0x4037465c 0x0 zephyr/kernel/libkernel.a(work.c.obj) + 0x4 (size before relaxing) + .literal.work_queue_main + 0x4037465c 0x8 zephyr/kernel/libkernel.a(work.c.obj) + 0x20 (size before relaxing) + .literal.submit_to_queue_locked + 0x40374664 0x0 zephyr/kernel/libkernel.a(work.c.obj) + 0xc (size before relaxing) + .literal.k_work_init + 0x40374664 0x0 zephyr/kernel/libkernel.a(work.c.obj) + 0x4 (size before relaxing) + .literal.z_work_submit_to_queue + 0x40374664 0x0 zephyr/kernel/libkernel.a(work.c.obj) + 0x4 (size before relaxing) + .literal.k_work_submit_to_queue + 0x40374664 0x0 zephyr/kernel/libkernel.a(work.c.obj) + 0x8 (size before relaxing) + .literal.k_work_submit + 0x40374664 0x4 zephyr/kernel/libkernel.a(work.c.obj) + 0x8 (size before relaxing) + .literal.k_work_queue_start + 0x40374668 0x4 zephyr/kernel/libkernel.a(work.c.obj) + 0x10 (size before relaxing) + .literal.z_setup_new_thread + 0x4037466c 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + 0x8 (size before relaxing) + .literal.z_impl_k_thread_create + 0x4037466c 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + 0x10 (size before relaxing) + .literal.z_dummy_thread_init + 0x4037466c 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + 0x8 (size before relaxing) + .literal.unpend_thread_no_timeout + 0x4037466c 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.ready_thread + 0x4037466c 0x4 zephyr/kernel/libkernel.a(sched.c.obj) + 0xc (size before relaxing) + .literal.unready_thread + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x10 (size before relaxing) + .literal.add_thread_timeout + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.z_swap$isra$0 + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0xc (size before relaxing) + .literal.reschedule$isra$0 + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.add_to_waitq_locked + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.move_current_to_end_of_prio_q + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0xc (size before relaxing) + .literal.z_ready_thread + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_unpend_thread_no_timeout + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_sched_wake_thread_locked + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.z_thread_timeout + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_pend_curr + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x10 (size before relaxing) + .literal.z_unpend1_no_timeout + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_unpend_thread + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.z_thread_prio_set + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x14 (size before relaxing) + .literal.z_reschedule + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_reschedule_irqlock + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0xc (size before relaxing) + .literal.k_sched_lock + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.k_sched_unlock + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x10 (size before relaxing) + .literal.z_get_next_switch_handle + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_unpend_all + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.z_sched_init + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.z_impl_k_yield + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x10 (size before relaxing) + .literal.z_tick_sleep + 0x40374670 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x1c (size before relaxing) + .literal.z_impl_k_sleep + 0x40374670 0x4 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.z_impl_k_wakeup + 0x40374674 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0xc (size before relaxing) + .literal.z_impl_k_sched_current_thread_query + 0x40374674 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_thread_abort + 0x40374674 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x38 (size before relaxing) + .literal.z_impl_k_thread_abort + 0x40374674 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4 (size before relaxing) + .literal.z_sched_wake + 0x40374674 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0xc (size before relaxing) + .literal.z_sched_wait + 0x40374674 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + 0x8 (size before relaxing) + .literal.z_time_slice_size + 0x40374674 0x8 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0xc (size before relaxing) + .literal.slice_timeout + 0x4037467c 0xc zephyr/kernel/libkernel.a(timeslicing.c.obj) + .literal.z_reset_time_slice + 0x40374688 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x1c (size before relaxing) + .literal.z_time_slice + 0x4037468c 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x14 (size before relaxing) + .literal.first + 0x4037468c 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + .literal.next_timeout + 0x40374690 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x4 (size before relaxing) + .literal.elapsed + 0x40374690 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x8 (size before relaxing) + .literal.remove_timeout + 0x40374694 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x4 (size before relaxing) + .literal.z_add_timeout + 0x40374694 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x24 (size before relaxing) + .literal.z_abort_timeout + 0x40374698 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x14 (size before relaxing) + .literal.sys_clock_announce + 0x40374698 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x20 (size before relaxing) + .literal.sys_clock_tick_get + 0x40374698 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x8 (size before relaxing) + .literal.sys_clock_tick_get_32 + 0x40374698 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x4 (size before relaxing) + .literal.z_impl_k_uptime_ticks + 0x40374698 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x4 (size before relaxing) + .literal.z_timer_expiration_handler + 0x40374698 0x4 zephyr/kernel/libkernel.a(timer.c.obj) + 0x1c (size before relaxing) + .literal.z_impl_k_timer_start + 0x4037469c 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + 0xc (size before relaxing) + .literal.z_impl_k_timer_stop + 0x4037469c 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + 0x10 (size before relaxing) + .literal.clear_event_registrations + 0x4037469c 0x4 zephyr/kernel/libkernel.a(poll.c.obj) + .literal.register_events + 0x403746a0 0x4 zephyr/kernel/libkernel.a(poll.c.obj) + 0x8 (size before relaxing) + .literal.signal_poll_event$isra$0 + 0x403746a4 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + 0x14 (size before relaxing) + .literal.z_impl_k_poll + 0x403746a4 0x8 zephyr/kernel/libkernel.a(poll.c.obj) + 0x1c (size before relaxing) + .literal.z_handle_obj_poll_events + 0x403746ac 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + 0x4 (size before relaxing) + .literal.z_impl_k_poll_signal_raise + 0x403746ac 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + 0xc (size before relaxing) + .literal.k_free + 0x403746ac 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x4 (size before relaxing) + .literal.k_malloc + 0x403746ac 0x8 zephyr/kernel/libkernel.a(mempool.c.obj) + 0xc (size before relaxing) + .literal.k_calloc + 0x403746b4 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x8 (size before relaxing) + .literal.k_thread_system_pool_assign + 0x403746b4 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x4 (size before relaxing) + .literal.boot_banner + 0x403746b4 0x4 zephyr/kernel/libkernel.a(banner.c.obj) + 0x8 (size before relaxing) + .literal.k_heap_init + 0x403746b8 0x4 zephyr/kernel/libkernel.a(kheap.c.obj) + .literal.statics_init + 0x403746bc 0x8 zephyr/kernel/libkernel.a(kheap.c.obj) + 0xc (size before relaxing) + .literal.k_heap_free + 0x403746c4 0x4 zephyr/kernel/libkernel.a(kheap.c.obj) + 0xc (size before relaxing) + .literal.k_sys_work_q_init + 0x403746c8 0x8 zephyr/kernel/libkernel.a(system_work_q.c.obj) + 0x10 (size before relaxing) + .literal.cbvprintf_package + 0x403746d0 0x14 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x1c (size before relaxing) + .literal.cbpprintf_external + 0x403746e4 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x4 (size before relaxing) + .literal.cbprintf_package_convert + 0x403746e4 0x8 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x34 (size before relaxing) + .literal.ccompare_isr + 0x403746ec 0x8 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0xc (size before relaxing) + .literal.sys_clock_set_timeout + 0x403746f4 0x8 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x10 (size before relaxing) + .literal.sys_clock_elapsed + 0x403746fc 0x0 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x8 (size before relaxing) + .literal.activate_foreach_backend + 0x403746fc 0x8 zephyr/libzephyr.a(log_core.c.obj) + .literal.enable_logger + 0x40374704 0x18 zephyr/libzephyr.a(log_core.c.obj) + 0x24 (size before relaxing) + .literal.default_lf_get_timestamp + 0x4037471c 0x0 zephyr/libzephyr.a(log_core.c.obj) + 0x8 (size before relaxing) + .literal.log_process_thread_timer_expiry_fn + 0x4037471c 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x8 (size before relaxing) + .literal.z_log_init + 0x40374720 0x8 zephyr/libzephyr.a(log_core.c.obj) + 0x1c (size before relaxing) + .literal.log_format_func_t_get + 0x40374728 0x4 zephyr/libzephyr.a(log_core.c.obj) + .literal.z_log_vprintk + 0x4037472c 0x0 zephyr/libzephyr.a(log_core.c.obj) + 0x4 (size before relaxing) + .literal.log_set_timestamp_func + 0x4037472c 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x8 (size before relaxing) + .literal.z_log_notify_backend_enabled + 0x40374730 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0xc (size before relaxing) + .literal.z_log_dropped + 0x40374734 0x8 zephyr/libzephyr.a(log_core.c.obj) + 0x1c (size before relaxing) + .literal.z_log_notify_drop + 0x4037473c 0x0 zephyr/libzephyr.a(log_core.c.obj) + 0x4 (size before relaxing) + .literal.z_log_dropped_read_and_clear + 0x4037473c 0x0 zephyr/libzephyr.a(log_core.c.obj) + 0x4 (size before relaxing) + .literal.dropped_notify + 0x4037473c 0x0 zephyr/libzephyr.a(log_core.c.obj) + 0xc (size before relaxing) + .literal.z_log_msg_init + 0x4037473c 0x10 zephyr/libzephyr.a(log_core.c.obj) + .literal.log_core_init + 0x4037474c 0x8 zephyr/libzephyr.a(log_core.c.obj) + 0x20 (size before relaxing) + .literal.z_log_msg_alloc + 0x40374754 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x8 (size before relaxing) + .literal.z_log_msg_local_claim + 0x40374758 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x8 (size before relaxing) + .literal.z_log_msg_free + 0x4037475c 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x8 (size before relaxing) + .literal.z_log_msg_pending + 0x40374760 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x8 (size before relaxing) + .literal.z_impl_log_process + 0x40374764 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x30 (size before relaxing) + .literal.z_impl_log_panic + 0x40374768 0x0 zephyr/libzephyr.a(log_core.c.obj) + 0x14 (size before relaxing) + .literal.log_process_thread_func + 0x40374768 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x2c (size before relaxing) + .literal.z_log_msg_post_finalize + 0x4037476c 0x0 zephyr/libzephyr.a(log_core.c.obj) + 0x28 (size before relaxing) + .literal.z_log_msg_commit + 0x4037476c 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x10 (size before relaxing) + .literal.printk + 0x40374770 0x0 zephyr/libzephyr.a(printk.c.obj) + 0x4 (size before relaxing) + .literal.z_cbprintf_cpy + 0x40374770 0x0 zephyr/libzephyr.a(log_msg.c.obj) + 0x4 (size before relaxing) + .literal.z_log_msg_finalize + 0x40374770 0x0 zephyr/libzephyr.a(log_msg.c.obj) + 0xc (size before relaxing) + .literal.z_log_msg_simple_create + 0x40374770 0x0 zephyr/libzephyr.a(log_msg.c.obj) + 0xc (size before relaxing) + .literal.z_impl_z_log_msg_simple_create_0 + 0x40374770 0x0 zephyr/libzephyr.a(log_msg.c.obj) + 0x4 (size before relaxing) + .literal.z_impl_z_log_msg_simple_create_1 + 0x40374770 0x0 zephyr/libzephyr.a(log_msg.c.obj) + 0x4 (size before relaxing) + .literal.z_impl_z_log_msg_static_create + 0x40374770 0x10 zephyr/libzephyr.a(log_msg.c.obj) + 0x28 (size before relaxing) + .literal.z_log_msg_runtime_vcreate + 0x40374780 0x4 zephyr/libzephyr.a(log_msg.c.obj) + 0x1c (size before relaxing) + .literal.log_msg_get_source_id + 0x40374784 0x4 zephyr/libzephyr.a(log_msg.c.obj) + .literal.console_out + 0x40374788 0x4 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .literal.log_output_flush + 0x4037478c 0x0 zephyr/libzephyr.a(log_output.c.obj) + 0x4 (size before relaxing) + .literal.print_formatted + 0x4037478c 0x8 zephyr/libzephyr.a(log_output.c.obj) + .literal.newline_print + 0x40374794 0x8 zephyr/libzephyr.a(log_output.c.obj) + 0xc (size before relaxing) + .literal.out_func + 0x4037479c 0x0 zephyr/libzephyr.a(log_output.c.obj) + 0x4 (size before relaxing) + .literal.cr_out_func + 0x4037479c 0x0 zephyr/libzephyr.a(log_output.c.obj) + 0x8 (size before relaxing) + .literal.log_output_process + 0x4037479c 0x50 zephyr/libzephyr.a(log_output.c.obj) + 0xac (size before relaxing) + .literal.log_output_msg_process + 0x403747ec 0x4 zephyr/libzephyr.a(log_output.c.obj) + 0xc (size before relaxing) + .literal.log_output_dropped_process + 0x403747f0 0x10 zephyr/libzephyr.a(log_output.c.obj) + 0x1c (size before relaxing) + .literal.log_output_timestamp_freq_set + 0x40374800 0x0 zephyr/libzephyr.a(log_output.c.obj) + 0x8 (size before relaxing) + .literal.dropped + 0x40374800 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x4 (size before relaxing) + .literal.process + 0x40374800 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x4 (size before relaxing) + .literal.char_out + 0x40374800 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x4 (size before relaxing) + .literal.map_rom_segments + 0x40374800 0x54 zephyr/libzephyr.a(loader.c.obj) + 0x84 (size before relaxing) + .literal.__start + 0x40374854 0x18 zephyr/libzephyr.a(loader.c.obj) + 0x44 (size before relaxing) + .literal.flash_is_octal_mode_enabled + 0x4037486c 0x0 zephyr/libzephyr.a(flash_init.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_config + 0x4037486c 0x8 zephyr/libzephyr.a(flash_init.c.obj) + 0x28 (size before relaxing) + .literal.configure_spi_pins + 0x40374874 0xc zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x20 (size before relaxing) + .literal.flash_set_dummy_out + 0x40374880 0xc zephyr/libzephyr.a(soc_flash_init.c.obj) + .literal.flash_dummy_config + 0x4037488c 0x0 zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x8 (size before relaxing) + .literal.flash_cs_timing_config + 0x4037488c 0xc zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x10 (size before relaxing) + .literal.init_spi_flash + 0x40374898 0x3c zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x6c (size before relaxing) + .literal.flash_update_id + 0x403748d4 0x0 zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x8 (size before relaxing) + .literal.esp_console_init + 0x403748d4 0x4 zephyr/libzephyr.a(console_init.c.obj) + 0x10 (size before relaxing) + .literal.print_banner + 0x403748d8 0x10 zephyr/libzephyr.a(soc_init.c.obj) + 0x1c (size before relaxing) + .literal.read_bootloader_header + 0x403748e8 0x4 zephyr/libzephyr.a(soc_init.c.obj) + 0x14 (size before relaxing) + .literal.config_wdt + 0x403748ec 0x4 zephyr/libzephyr.a(soc_init.c.obj) + 0x24 (size before relaxing) + .literal.check_bootloader_validity + 0x403748f0 0x10 zephyr/libzephyr.a(soc_init.c.obj) + 0x2c (size before relaxing) + .literal.ana_super_wdt_reset_config + 0x40374900 0xc zephyr/libzephyr.a(soc_init.c.obj) + .literal.ana_clock_glitch_reset_config + 0x4037490c 0x8 zephyr/libzephyr.a(soc_init.c.obj) + 0xc (size before relaxing) + .literal.ana_reset_config + 0x40374914 0x0 zephyr/libzephyr.a(soc_init.c.obj) + 0xc (size before relaxing) + .literal.super_wdt_auto_feed + 0x40374914 0x8 zephyr/libzephyr.a(soc_init.c.obj) + 0xc (size before relaxing) + .literal.wdt_reset_info_dump + 0x4037491c 0x28 zephyr/libzephyr.a(soc_init.c.obj) + 0x2c (size before relaxing) + .literal.wdt_reset_cpu0_info_enable + 0x40374944 0x10 zephyr/libzephyr.a(soc_init.c.obj) + .literal.check_wdt_reset + 0x40374954 0x8 zephyr/libzephyr.a(soc_init.c.obj) + 0x18 (size before relaxing) + .literal.bootloader_clock_configure + 0x4037495c 0x10 zephyr/libzephyr.a(soc_init.c.obj) + 0x24 (size before relaxing) + .literal.hardware_init + 0x4037496c 0xc zephyr/libzephyr.a(hw_init.c.obj) + 0x4c (size before relaxing) + .literal.soc_random_enable + 0x40374978 0x2c zephyr/libzephyr.a(soc_random.c.obj) + 0x44 (size before relaxing) + .literal.soc_random_disable + 0x403749a4 0x8 zephyr/libzephyr.a(soc_random.c.obj) + 0x2c (size before relaxing) + .literal.s_get_bus_mask + 0x403749ac 0x0 zephyr/libzephyr.a(esp_mmu_map.c.obj) + 0x8 (size before relaxing) + .literal.esp_mmu_map_init + 0x403749ac 0x20 zephyr/libzephyr.a(esp_mmu_map.c.obj) + 0x3c (size before relaxing) + .literal.esp_rom_flash_read + 0x403749cc 0x1c zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x38 (size before relaxing) + .literal.bootloader_enable_wp + 0x403749e8 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .literal.mmu_hal_ctx_init + 0x403749e8 0x4 zephyr/libzephyr.a(mmu_hal.c.obj) + .literal.mmu_hal_unmap_all + 0x403749ec 0x8 zephyr/libzephyr.a(mmu_hal.c.obj) + 0xc (size before relaxing) + .literal.mmu_hal_paddr_to_vaddr + 0x403749f4 0x0 zephyr/libzephyr.a(mmu_hal.c.obj) + 0x4 (size before relaxing) + .literal.mmu_hal_map_region + 0x403749f4 0x4 zephyr/libzephyr.a(mmu_hal.c.obj) + .literal.spi_flash_hal_configure_host_io_mode + 0x403749f8 0x8 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_hal_common_command + 0x40374a00 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_hal_read + 0x40374a00 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_program_page + 0x40374a00 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_setup_read_suspend + 0x40374a00 0x4 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_setup_auto_suspend_mode + 0x40374a04 0x10 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_hal_disable_auto_suspend_mode + 0x40374a14 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_device_config + 0x40374a14 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_encryption_hal_enable + 0x40374a14 0x8 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.spi_flash_encryption_hal_disable + 0x40374a1c 0x0 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_encryption_hal_prepare + 0x40374a1c 0x10 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_encryption_hal_done + 0x40374a2c 0x8 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.spi_flash_encryption_hal_destroy + 0x40374a34 0x4 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.cache_hal_vaddr_to_cache_level_id$part$0 + 0x40374a38 0x8 zephyr/libzephyr.a(cache_hal.c.obj) + .literal.cache_hal_disable + 0x40374a40 0x8 zephyr/libzephyr.a(cache_hal.c.obj) + 0xc (size before relaxing) + .literal.cache_hal_enable + 0x40374a48 0x8 zephyr/libzephyr.a(cache_hal.c.obj) + 0x10 (size before relaxing) + .literal.cache_hal_suspend + 0x40374a50 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + 0xc (size before relaxing) + .literal.cache_hal_resume + 0x40374a50 0x8 zephyr/libzephyr.a(cache_hal.c.obj) + 0x10 (size before relaxing) + .literal.cache_hal_vaddr_to_cache_level_id + 0x40374a58 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + 0x4 (size before relaxing) + .literal.cache_hal_invalidate_addr + 0x40374a58 0x4 zephyr/libzephyr.a(cache_hal.c.obj) + 0x8 (size before relaxing) + .literal.cache_hal_writeback_addr + 0x40374a5c 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + 0x8 (size before relaxing) + .literal.cache_hal_freeze + 0x40374a5c 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + 0xc (size before relaxing) + .literal.cache_hal_unfreeze + 0x40374a5c 0x8 zephyr/libzephyr.a(cache_hal.c.obj) + 0xc (size before relaxing) + .literal.cache_hal_get_cache_line_size + 0x40374a64 0x8 zephyr/libzephyr.a(cache_hal.c.obj) + .literal.wdt_hal_write_protect_disable + 0x40374a6c 0x4 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .literal.systimer_hal_init + 0x40374a70 0x4 zephyr/libzephyr.a(systimer_hal.c.obj) + .literal.systimer_hal_select_alarm_mode + 0x40374a74 0x0 zephyr/libzephyr.a(systimer_hal.c.obj) + 0x4 (size before relaxing) + .literal.gpspi_flash_ll_get_buffer_data + 0x40374a74 0x0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_gpspi_device_config + 0x40374a74 0x8 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_gpspi_configure_host_io_mode + 0x40374a7c 0x8 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_hal_gpspi_common_command + 0x40374a84 0x0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_hal_gpspi_read + 0x40374a84 0x0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_gd_suspend_cmd_conf + 0x40374a84 0x4 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .literal.spi_flash_chip_gd_get_io_mode + 0x40374a88 0x0 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_gd_set_io_mode + 0x40374a88 0x10 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_chip_generic_reset + 0x40374a98 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_config_host_io_mode + 0x40374a98 0xc zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .literal.spi_flash_chip_generic_get_caps + 0x40374aa4 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_suspend_cmd_conf + 0x40374aa4 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_read + 0x40374aa4 0x8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_chip_generic_write + 0x40374aac 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_get_write_protect + 0x40374aac 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_yield + 0x40374aac 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_read_unique_id + 0x40374aac 0x8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_chip_generic_write_encrypted + 0x40374ab4 0x8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .literal.spi_flash_common_read_qe_sr$constprop$0$isra$0 + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_common_write_qe_sr$isra$0 + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_write_status_16b_wrsr + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_erase_block + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_erase_sector + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_page_program + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_read_status_8b_rdsr2 + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_get_io_mode + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_read_status_8b_rdsr + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_write_status_8b_wrsr + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_write_status_8b_wrsr2 + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_set_io_mode + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_set_io_mode + 0x40374abc 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_issi_set_io_mode + 0x40374abc 0x8 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_issi_get_io_mode + 0x40374ac4 0x0 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_set_write_protect + 0x40374ac4 0x8 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_mxic_opi_erase_chip + 0x40374acc 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_erase_sector + 0x40374acc 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_erase_block + 0x40374acc 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_read_id + 0x40374acc 0x8 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_get_write_protect + 0x40374ad4 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_write + 0x40374ad4 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_page_program + 0x40374ad4 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_get_io_mode + 0x40374ad4 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_read_reg + 0x40374ad4 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_winbond_suspend_cmd_conf + 0x40374ad4 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_read + 0x40374ad4 0x8 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_chip_winbond_erase_block + 0x40374adc 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_erase_sector + 0x40374adc 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_page_program + 0x40374adc 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.memspi_host_read_status_hs + 0x40374adc 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4 (size before relaxing) + .literal.memspi_host_erase_chip + 0x40374adc 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4 (size before relaxing) + .literal.memspi_host_set_write_protect + 0x40374adc 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4 (size before relaxing) + .literal.memspi_host_read_id_hs + 0x40374adc 0x8 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x10 (size before relaxing) + .literal.memspi_host_flush_cache + 0x40374ae4 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_erase_sector + 0x40374ae4 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_erase_block + 0x40374ae4 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_program_page + 0x40374ae4 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_init_pointers + 0x40374ae4 0xc zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x14 (size before relaxing) + .literal.s_probe_mxic_chip + 0x40374af0 0x8 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0xc (size before relaxing) + .literal.s_mxic_set_required_regs + 0x40374af8 0x4 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0x8 (size before relaxing) + .literal.s_flash_init_mxic + 0x40374afc 0x20 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0x48 (size before relaxing) + .literal.esp_opiflash_init + 0x40374b1c 0x18 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0x24 (size before relaxing) + .literal.get_buffer_malloc + 0x40374b34 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_os_check_yield + 0x40374b34 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.release_buffer_malloc + 0x40374b34 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.delay_us + 0x40374b34 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_os_yield + 0x40374b34 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_app_enable_os_functions + 0x40374b34 0x8 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0xc (size before relaxing) + .literal.delay_us + 0x40374b3c 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + 0x4 (size before relaxing) + .literal.check_chip_pointer_default + 0x40374b3c 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.flash_end_flush_cache + 0x40374b3c 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.detect_spi_flash_chip + 0x40374b3c 0xc zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x14 (size before relaxing) + .literal.spiflash_start_default + 0x40374b48 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_read_chip_id + 0x40374b48 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_get_physical_size + 0x40374b48 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_is_quad_mode + 0x40374b48 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_init_main + 0x40374b48 0x14 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x40 (size before relaxing) + .literal.rtc_clk_32k_enable + 0x40374b5c 0x1c zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enable_external + 0x40374b78 0x8 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_8m_enable + 0x40374b80 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_slow_src_set + 0x40374b84 0xc zephyr/libzephyr.a(rtc_clk.c.obj) + 0x18 (size before relaxing) + .literal.rtc_clk_slow_src_get + 0x40374b90 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_fast_src_set + 0x40374b90 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_cpu_freq_mhz_to_config + 0x40374b90 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_xtal_freq_update + 0x40374b90 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_pll_mhz + 0x40374b94 0x10 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x50 (size before relaxing) + .literal.rtc_clk_cpu_freq_set_config + 0x40374ba4 0x10 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x50 (size before relaxing) + .literal.rtc_clk_cpu_freq_set_xtal + 0x40374bb4 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_divider_set + 0x40374bb4 0xc zephyr/libzephyr.a(rtc_clk.c.obj) + .literal.rtc_clk_8m_divider_set + 0x40374bc0 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_sleep_pu + 0x40374bc0 0x20 zephyr/libzephyr.a(rtc_sleep.c.obj) + .literal.rtc_clk_cal_internal + 0x40374be0 0x1c zephyr/libzephyr.a(rtc_time.c.obj) + 0x38 (size before relaxing) + .literal.rtc_clk_cal + 0x40374bfc 0x0 zephyr/libzephyr.a(rtc_time.c.obj) + 0x14 (size before relaxing) + .literal.rtc_time_us_to_slowclk + 0x40374bfc 0x4 zephyr/libzephyr.a(rtc_time.c.obj) + 0x14 (size before relaxing) + .literal.rtc_time_get + 0x40374c00 0xc zephyr/libzephyr.a(rtc_time.c.obj) + .literal.rtc_clk_freq_cal + 0x40374c0c 0x0 zephyr/libzephyr.a(rtc_time.c.obj) + 0x4 (size before relaxing) + .literal.mspi_timing_config_set_flash_clock + 0x40374c0c 0xc zephyr/libzephyr.a(mspi_timing_config.c.obj) + 0x10 (size before relaxing) + .literal.mspi_timing_config_set_psram_clock + 0x40374c18 0x4 zephyr/libzephyr.a(mspi_timing_config.c.obj) + 0xc (size before relaxing) + .literal.mspi_timing_enter_low_speed_mode + 0x40374c1c 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x8 (size before relaxing) + .literal.mspi_timing_enter_high_speed_mode + 0x40374c1c 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x4 (size before relaxing) + .literal.mspi_timing_change_speed_mode_cache_safe + 0x40374c1c 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x10 (size before relaxing) + .literal.spi_timing_get_flash_timing_param + 0x40374c1c 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x4 (size before relaxing) + .literal.mspi_timing_set_pin_drive_strength + 0x40374c1c 0x4 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0xc (size before relaxing) + .literal.regi2c_ctrl_read_reg_mask + 0x40374c20 0x4 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .literal.regi2c_ctrl_write_reg + 0x40374c24 0x4 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .literal.regi2c_ctrl_write_reg_mask + 0x40374c28 0x4 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .literal.regi2c_saradc_enable + 0x40374c2c 0x8 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x18 (size before relaxing) + .literal.regi2c_saradc_disable + 0x40374c34 0x0 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x14 (size before relaxing) + .literal.Cache_Suspend_ICache + 0x40374c34 0x8 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .literal.Cache_Suspend_DCache + 0x40374c3c 0x4 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x8 (size before relaxing) + .literal.Cache_Freeze_ICache_Enable + 0x40374c40 0x4 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x8 (size before relaxing) + .literal.Cache_Freeze_DCache_Enable + 0x40374c44 0x4 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x8 (size before relaxing) + .literal.Cache_WriteBack_Addr + 0x40374c48 0x10 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x18 (size before relaxing) + .literal.esp_rom_opiflash_cache_mode_config + 0x40374c58 0x14 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + 0x24 (size before relaxing) + .literal.esp_rom_install_channel_putc + 0x40374c6c 0x10 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .literal.esp_cache_suspend_ext_mem_cache + 0x40374c7c 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_resume_ext_mem_cache + 0x40374c7c 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_freeze_ext_mem_cache + 0x40374c7c 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_unfreeze_ext_mem_cache + 0x40374c7c 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_sync_ops_enter_critical_section + 0x40374c7c 0x4 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .literal.esp_cache_sync_ops_exit_critical_section + 0x40374c80 0x0 zephyr/libzephyr.a(esp_cache_msync.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_msync + 0x40374c80 0x20 zephyr/libzephyr.a(esp_cache_msync.c.obj) + 0x40 (size before relaxing) + .iram1.1 0x40374ca0 0x4b zephyr/libzephyr.a(soc.c.obj) + 0x57 (size before relaxing) + 0x40374ca0 __esp_platform_app_start + *fill* 0x40374ceb 0x1 + .iram1.3 0x40374cec 0x1b zephyr/libzephyr.a(soc.c.obj) + 0x40374cec arch_printk_char_out + *fill* 0x40374d07 0x1 + .iram1.3 0x40374d08 0x62 zephyr/libzephyr.a(esp_flash_api.c.obj) + *fill* 0x40374d6a 0x2 + .iram1.1 0x40374d6c 0x7d zephyr/libzephyr.a(flash_mmap.c.obj) + 0x8d (size before relaxing) + 0x40374d6c spi_flash_check_and_flush_cache + *fill* 0x40374de9 0x3 + .iram1.2 0x40374dec 0xa zephyr/libzephyr.a(flash_ops.c.obj) + 0x40374dec spi_flash_guard_set + *fill* 0x40374df6 0x2 + .iram1.4 0x40374df8 0x15 zephyr/libzephyr.a(flash_ops.c.obj) + 0x19 (size before relaxing) + 0x40374df8 esp_mspi_pin_init + *fill* 0x40374e0d 0x3 + .iram1.5 0x40374e10 0x1a zephyr/libzephyr.a(flash_ops.c.obj) + 0x1e (size before relaxing) + 0x40374e10 spi_flash_init_chip_state + *fill* 0x40374e2a 0x2 + .iram1.1 0x40374e2c 0x11 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + *fill* 0x40374e3d 0x3 + .iram1.0 0x40374e40 0x11 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + *fill* 0x40374e51 0x3 + .iram1.5 0x40374e54 0xa zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0xd (size before relaxing) + *fill* 0x40374e5e 0x2 + .iram1.4 0x40374e60 0xc zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x10 (size before relaxing) + .iram1.0 0x40374e6c 0x15 zephyr/libzephyr.a(cache_utils.c.obj) + 0x19 (size before relaxing) + 0x40374e6c spi_flash_disable_interrupts_caches_and_other_cpu + *fill* 0x40374e81 0x3 + .iram1.1 0x40374e84 0x18 zephyr/libzephyr.a(cache_utils.c.obj) + 0x1c (size before relaxing) + 0x40374e84 spi_flash_enable_interrupts_caches_and_other_cpu + .iram1.8 0x40374e9c 0x3c zephyr/libzephyr.a(cache_utils.c.obj) + 0x40374e9c esp_config_instruction_cache_mode + .iram1.9 0x40374ed8 0x21 zephyr/libzephyr.a(cache_utils.c.obj) + 0x40374ed8 esp_config_data_cache_mode + *fill* 0x40374ef9 0x3 + .iram1.3 0x40374efc 0x27 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x40374efc periph_rcc_enter + *fill* 0x40374f23 0x1 + .iram1.4 0x40374f24 0x2c zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x40374f24 periph_rcc_exit + .iram1.3 0x40374f50 0x34 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x40374f50 rtc_get_xtal + 0x40374f50 rtc_clk_xtal_freq_get + .iram1.0 0x40374f84 0xb9 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x40374f84 rtc_clk_cpu_freq_get_config + *fill* 0x4037503d 0x3 + .iram1.4 0x40375040 0xa zephyr/libzephyr.a(rtc_clk.c.obj) + 0x40375040 rtc_clk_apb_freq_update + *fill* 0x4037504a 0x2 + .iram1.2 0x4037504c 0xad zephyr/libzephyr.a(rtc_clk.c.obj) + 0xb9 (size before relaxing) + 0x4037504c rtc_clk_cpu_freq_to_xtal + *fill* 0x403750f9 0x3 + .iram1.1 0x403750fc 0xf zephyr/libzephyr.a(rtc_clk.c.obj) + 0x13 (size before relaxing) + 0x403750fc rtc_clk_cpu_set_to_default_config + *fill* 0x4037510b 0x1 + .iram1.0 0x4037510c 0x27 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x4037510c regi2c_enter_critical + *fill* 0x40375133 0x1 + .iram1.1 0x40375134 0x2c zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x40375134 regi2c_exit_critical + .iram1.6 0x40375160 0x34 zephyr/libzephyr.a(rtc_module.c.obj) + 0x40375160 rtc_isr_noniram_disable + .iram1.7 0x40375194 0x1f zephyr/libzephyr.a(rtc_module.c.obj) + 0x40375194 rtc_isr_noniram_enable + *fill* 0x403751b3 0x1 + .iram1.1 0x403751b4 0x5a zephyr/libzephyr.a(esp_mmu_map.c.obj) + 0x403751b4 esp_mmu_paddr_find_caps + *fill* 0x4037520e 0x2 + .iram1.0 0x40375210 0x11 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + 0x40375210 esp_rom_output_switch_buffer + *fill* 0x40375221 0x3 + .iram1.0 0x40375224 0x40 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x40375224 efuse_hal_get_major_chip_version + .iram1.1 0x40375264 0x3a zephyr/libzephyr.a(efuse_hal.c.obj) + 0x40375264 efuse_hal_get_minor_chip_version + *fill* 0x4037529e 0x2 + .iram1.0 0x403752a0 0x18 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x1c (size before relaxing) + 0x403752a0 efuse_hal_chip_revision + .iram1.1 0x403752b8 0x23e zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x403752b8 bootloader_flash_execute_command_common + *fill* 0x403754f6 0x2 + .iram1.2 0x403754f8 0x20 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x403754f8 bootloader_execute_flash_command + .iram1.0 0x40375518 0x138 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x150 (size before relaxing) + 0x40375518 bootloader_flash_unlock_default + 0x40375518 bootloader_flash_unlock + .iram1.3 0x40375650 0x21 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x40375650 bootloader_flash_read_sfdp + *fill* 0x40375671 0x3 + .iram1.4 0x40375674 0x24 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x28 (size before relaxing) + 0x40375674 bootloader_read_flash_id + .iram1.6 0x40375698 0x96 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0xae (size before relaxing) + 0x40375698 bootloader_flash_xmc_startup + *fill* 0x4037572e 0x2 + .iram1.8 0x40375730 0x10 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x40375730 bootloader_flash_is_octal_mode_enabled + .iram1.3 0x40375740 0xab zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x40375740 esp_intr_disable + *fill* 0x403757eb 0x1 + .iram1.4 0x403757ec 0x50 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x403757ec esp_intr_noniram_disable + .iram1.5 0x4037583c 0x41 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x44 (size before relaxing) + 0x4037583c esp_intr_noniram_enable + *fill* 0x4037587d 0x3 + .iram1.2 0x40375880 0x11 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x17 (size before relaxing) + *fill* 0x40375891 0x3 + .iram1.0 0x40375894 0x356 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x35e (size before relaxing) + *fill* 0x40375bea 0x2 + .iram1.0 0x40375bec 0x22 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x40375c0e 0x2 + .iram1.0 0x40375c10 0x410 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x420 (size before relaxing) + *fill* 0x40376020 0x0 + *fill* 0x40376020 0x0 + *fill* 0x40376020 0x0 + *fill* 0x40376020 0x0 + *fill* 0x40376020 0x0 + *fill* 0x40376020 0x0 + *fill* 0x40376020 0x0 + .iram1.7 0x40376020 0x7 zephyr/libzephyr.a(flash_ops.c.obj) + 0x40376020 esp_mspi_32bit_address_flash_feature_check + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x0 + *fill* 0x40376027 0x1 + .iram1.5 0x40376028 0x4b zephyr/libzephyr.a(bootloader_flash.c.obj) + *fill* 0x40376073 0x0 + *fill* 0x40376073 0x0 + *fill* 0x40376073 0x0 + *fill* 0x40376073 0x1 + .iram1.0 0x40376074 0x35 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + *fill* 0x403760a9 0x0 + *fill* 0x403760a9 0x3 + .iram1.1 0x403760ac 0x6a zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x40376116 0x0 + *fill* 0x40376116 0x0 + *fill* 0x40376116 0x0 + *fill* 0x40376116 0x2 + .iram1.0 0x40376118 0x20 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *(SORT_BY_ALIGNMENT(.iram0.literal) SORT_BY_ALIGNMENT(.iram.literal) SORT_BY_ALIGNMENT(.iram.text.literal) SORT_BY_ALIGNMENT(.iram0.text) SORT_BY_ALIGNMENT(.iram.text)) + .iram0.text 0x40376138 0x31 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x40376138 _Level1Vector + *libarch__xtensa__core.a:(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40376169 0x3 + .text.xtensa_exccause + 0x4037616c 0x17 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + 0x4037616c xtensa_exccause + *fill* 0x40376183 0x1 + .text.xtensa_fatal_error + 0x40376184 0x1e zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + 0x22 (size before relaxing) + 0x40376184 xtensa_fatal_error + *fill* 0x403761a2 0x2 + .text 0x403761a4 0x223 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + 0x403761a4 xtensa_spill_reg_windows + 0x403761c4 xtensa_save_high_regs + 0x4037620c xtensa_restore_high_regs + 0x40376241 _restore_context + 0x4037627c xtensa_arch_except + 0x4037627f xtensa_arch_except_epc + 0x40376284 xtensa_arch_kernel_oops + 0x40376287 xtensa_arch_kernel_oops_epc + 0x4037628c xtensa_switch + *fill* 0x403763c7 0x1 + .text.z_irq_spurious + 0x403763c8 0x3f zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + 0x43 (size before relaxing) + 0x403763c8 z_irq_spurious + *fill* 0x40376407 0x1 + .text.arch_new_thread + 0x40376408 0x38 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + 0x40376408 arch_new_thread + .text.xtensa_handle_irq_lvl + 0x40376440 0x4c zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .text.return_to + 0x4037648c 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + .text.z_log_msg_static_create$constprop$0 + 0x403764a0 0x13 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + *fill* 0x403764b3 0x1 + .text.xtensa_dump_stack$part$0 + 0x403764b4 0x17b zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x193 (size before relaxing) + *fill* 0x4037662f 0x1 + .text.xtensa_is_outside_stack_bounds + 0x40376630 0x46 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x40376630 xtensa_is_outside_stack_bounds + *fill* 0x40376676 0x2 + .text.xtensa_is_frame_pointer_valid + 0x40376678 0x28 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x2c (size before relaxing) + 0x40376678 xtensa_is_frame_pointer_valid + .text.xtensa_dump_stack + 0x403766a0 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + 0x403766a0 xtensa_dump_stack + .text.xtensa_int2_c + 0x403766b4 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + 0x403766b4 xtensa_int2_c + .text.xtensa_int3_c + 0x403766c8 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + 0x403766c8 xtensa_int3_c + .text.xtensa_int4_c + 0x403766dc 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + 0x403766dc xtensa_int4_c + .text.xtensa_int5_c + 0x403766f0 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + 0x403766f0 xtensa_int5_c + .text.xtensa_int6_c + 0x40376704 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + 0x40376704 xtensa_int6_c + .text.xtensa_int7_c + 0x40376718 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x18 (size before relaxing) + 0x40376718 xtensa_int7_c + .text.xtensa_excint1_c + 0x4037672c 0x1b8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x1dc (size before relaxing) + 0x4037672c xtensa_excint1_c + .text.z_prep_c + 0x403768e4 0x10 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + 0x14 (size before relaxing) + 0x403768e4 z_prep_c + *fill* 0x403768f4 0x0 + .text.arch_cpu_idle + 0x403768f4 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + 0x403768f4 arch_cpu_idle + *fill* 0x403768fc 0x0 + *fill* 0x403768fc 0x0 + *fill* 0x403768fc 0x0 + *fill* 0x403768fc 0x0 + .text.arch_coprocessors_disable + 0x403768fc 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + 0x403768fc arch_coprocessors_disable + *fill* 0x40376904 0x0 + *fill* 0x40376904 0x0 + *fill* 0x40376904 0x0 + *libarch__common.a:(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + .text.z_isr_install + 0x40376904 0x14 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + 0x18 (size before relaxing) + 0x40376904 z_isr_install + .text.arch_irq_connect_dynamic + 0x40376918 0xe zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + 0x12 (size before relaxing) + 0x40376918 arch_irq_connect_dynamic + *fill* 0x40376926 0x2 + .text.arch_early_memset + 0x40376928 0x12 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x40376928 arch_early_memset + *fill* 0x4037693a 0x2 + .text.arch_bss_zero + 0x4037693c 0x13 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x16 (size before relaxing) + 0x4037693c arch_bss_zero + *fill* 0x4037694f 0x1 + .text.z_get_sw_isr_table_idx + 0x40376950 0x5 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + 0x40376950 z_get_sw_isr_table_idx + *fill* 0x40376955 0x0 + *fill* 0x40376955 0x0 + *fill* 0x40376955 0x0 + *libkernel.a:(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40376955 0x3 + .text.z_impl_k_busy_wait + 0x40376958 0x20 zephyr/kernel/libkernel.a(busy_wait.c.obj) + 0x24 (size before relaxing) + 0x40376958 z_impl_k_busy_wait + .text.k_sys_fatal_error_handler + 0x40376978 0x18 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x20 (size before relaxing) + 0x40376978 k_sys_fatal_error_handler + .text.z_fatal_error + 0x40376990 0xa4 zephyr/kernel/libkernel.a(fatal.c.obj) + 0xb8 (size before relaxing) + 0x40376990 z_fatal_error + .text.z_sys_init_run_level + 0x40376a34 0x2c zephyr/kernel/libkernel.a(init.c.obj) + 0x30 (size before relaxing) + .text.bg_thread_main + 0x40376a60 0x9e zephyr/kernel/libkernel.a(init.c.obj) + 0xae (size before relaxing) + *fill* 0x40376afe 0x2 + .text.z_init_cpu + 0x40376b00 0x5e zephyr/kernel/libkernel.a(init.c.obj) + 0x40376b00 z_init_cpu + *fill* 0x40376b5e 0x2 + .text.z_cstart + 0x40376b60 0x83 zephyr/kernel/libkernel.a(init.c.obj) + 0xa7 (size before relaxing) + 0x40376b60 z_cstart + *fill* 0x40376be3 0x1 + .text.idle 0x40376be4 0xc zephyr/kernel/libkernel.a(idle.c.obj) + 0xf (size before relaxing) + 0x40376be4 idle + *fill* 0x40376bf0 0x0 + .text.adjust_owner_prio$isra$0 + 0x40376bf0 0x1c zephyr/kernel/libkernel.a(mutex.c.obj) + .text.z_impl_k_mutex_lock + 0x40376c0c 0xbb zephyr/kernel/libkernel.a(mutex.c.obj) + 0xc3 (size before relaxing) + 0x40376c0c z_impl_k_mutex_lock + *fill* 0x40376cc7 0x1 + .text.z_impl_k_mutex_unlock + 0x40376cc8 0x8a zephyr/kernel/libkernel.a(mutex.c.obj) + 0x92 (size before relaxing) + 0x40376cc8 z_impl_k_mutex_unlock + *fill* 0x40376d52 0x2 + .text.z_impl_k_sem_give + 0x40376d54 0x6c zephyr/kernel/libkernel.a(sem.c.obj) + 0x78 (size before relaxing) + 0x40376d54 z_impl_k_sem_give + .text.z_impl_k_sem_take + 0x40376dc0 0x3a zephyr/kernel/libkernel.a(sem.c.obj) + 0x3d (size before relaxing) + 0x40376dc0 z_impl_k_sem_take + *fill* 0x40376dfa 0x2 + .text.notify_queue_locked$isra$0 + 0x40376dfc 0x14 zephyr/kernel/libkernel.a(work.c.obj) + .text.work_queue_main + 0x40376e10 0x128 zephyr/kernel/libkernel.a(work.c.obj) + 0x134 (size before relaxing) + .text.submit_to_queue_locked + 0x40376f38 0xa4 zephyr/kernel/libkernel.a(work.c.obj) + 0xa8 (size before relaxing) + .text.k_work_init + 0x40376fdc 0x14 zephyr/kernel/libkernel.a(work.c.obj) + 0x40376fdc k_work_init + .text.z_work_submit_to_queue + 0x40376ff0 0x1c zephyr/kernel/libkernel.a(work.c.obj) + 0x40376ff0 z_work_submit_to_queue + .text.k_work_submit_to_queue + 0x4037700c 0x1a zephyr/kernel/libkernel.a(work.c.obj) + 0x1e (size before relaxing) + 0x4037700c k_work_submit_to_queue + *fill* 0x40377026 0x2 + .text.k_work_submit + 0x40377028 0x12 zephyr/kernel/libkernel.a(work.c.obj) + 0x40377028 k_work_submit + *fill* 0x4037703a 0x2 + .text.k_work_queue_start + 0x4037703c 0x75 zephyr/kernel/libkernel.a(work.c.obj) + 0x7d (size before relaxing) + 0x4037703c k_work_queue_start + *fill* 0x403770b1 0x3 + .text.z_setup_new_thread + 0x403770b4 0x5b zephyr/kernel/libkernel.a(thread.c.obj) + 0x5f (size before relaxing) + 0x403770b4 z_setup_new_thread + *fill* 0x4037710f 0x1 + .text.z_impl_k_thread_create + 0x40377110 0x52 zephyr/kernel/libkernel.a(thread.c.obj) + 0x5a (size before relaxing) + 0x40377110 z_impl_k_thread_create + *fill* 0x40377162 0x2 + .text.z_dummy_thread_init + 0x40377164 0x27 zephyr/kernel/libkernel.a(thread.c.obj) + 0x40377164 z_dummy_thread_init + *fill* 0x4037718b 0x1 + .text.unpend_thread_no_timeout + 0x4037718c 0x19 zephyr/kernel/libkernel.a(sched.c.obj) + 0x1d (size before relaxing) + *fill* 0x403771a5 0x3 + .text.ready_thread + 0x403771a8 0x98 zephyr/kernel/libkernel.a(sched.c.obj) + .text.unready_thread + 0x40377240 0x5a zephyr/kernel/libkernel.a(sched.c.obj) + 0x62 (size before relaxing) + *fill* 0x4037729a 0x2 + .text.add_thread_timeout + 0x4037729c 0x1b zephyr/kernel/libkernel.a(sched.c.obj) + *fill* 0x403772b7 0x1 + .text.z_swap$isra$0 + 0x403772b8 0x31 zephyr/kernel/libkernel.a(sched.c.obj) + 0x35 (size before relaxing) + *fill* 0x403772e9 0x3 + .text.reschedule$isra$0 + 0x403772ec 0x2c zephyr/kernel/libkernel.a(sched.c.obj) + .text.add_to_waitq_locked + 0x40377318 0x54 zephyr/kernel/libkernel.a(sched.c.obj) + 0x58 (size before relaxing) + .text.move_current_to_end_of_prio_q + 0x4037736c 0x78 zephyr/kernel/libkernel.a(sched.c.obj) + 0x7c (size before relaxing) + 0x4037736c move_current_to_end_of_prio_q + .text.z_ready_thread + 0x403773e4 0x13 zephyr/kernel/libkernel.a(sched.c.obj) + 0x16 (size before relaxing) + 0x403773e4 z_ready_thread + *fill* 0x403773f7 0x1 + .text.z_unpend_thread_no_timeout + 0x403773f8 0x18 zephyr/kernel/libkernel.a(sched.c.obj) + 0x1c (size before relaxing) + 0x403773f8 z_unpend_thread_no_timeout + .text.z_sched_wake_thread_locked + 0x40377410 0x2a zephyr/kernel/libkernel.a(sched.c.obj) + 0x2e (size before relaxing) + 0x40377410 z_sched_wake_thread_locked + *fill* 0x4037743a 0x2 + .text.z_thread_timeout + 0x4037743c 0x14 zephyr/kernel/libkernel.a(sched.c.obj) + 0x17 (size before relaxing) + 0x4037743c z_thread_timeout + *fill* 0x40377450 0x0 + .text.z_pend_curr + 0x40377450 0x25 zephyr/kernel/libkernel.a(sched.c.obj) + 0x2d (size before relaxing) + 0x40377450 z_pend_curr + *fill* 0x40377475 0x3 + .text.z_unpend1_no_timeout + 0x40377478 0x22 zephyr/kernel/libkernel.a(sched.c.obj) + 0x26 (size before relaxing) + 0x40377478 z_unpend1_no_timeout + *fill* 0x4037749a 0x2 + .text.z_unpend_thread + 0x4037749c 0x10 zephyr/kernel/libkernel.a(sched.c.obj) + 0x17 (size before relaxing) + 0x4037749c z_unpend_thread + *fill* 0x403774ac 0x0 + .text.z_thread_prio_set + 0x403774ac 0xf7 zephyr/kernel/libkernel.a(sched.c.obj) + 0x403774ac z_thread_prio_set + *fill* 0x403775a3 0x1 + .text.z_reschedule + 0x403775a4 0xa zephyr/kernel/libkernel.a(sched.c.obj) + 0xe (size before relaxing) + 0x403775a4 z_reschedule + *fill* 0x403775ae 0x2 + .text.z_reschedule_irqlock + 0x403775b0 0x38 zephyr/kernel/libkernel.a(sched.c.obj) + 0x3c (size before relaxing) + 0x403775b0 z_reschedule_irqlock + .text.k_sched_lock + 0x403775e8 0x1b zephyr/kernel/libkernel.a(sched.c.obj) + 0x403775e8 k_sched_lock + *fill* 0x40377603 0x1 + .text.k_sched_unlock + 0x40377604 0x56 zephyr/kernel/libkernel.a(sched.c.obj) + 0x40377604 k_sched_unlock + *fill* 0x4037765a 0x2 + .text.z_get_next_switch_handle + 0x4037765c 0x14 zephyr/kernel/libkernel.a(sched.c.obj) + 0x4037765c z_get_next_switch_handle + .text.z_unpend_all + 0x40377670 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + 0x28 (size before relaxing) + 0x40377670 z_unpend_all + .text.z_sched_init + 0x40377694 0xf zephyr/kernel/libkernel.a(sched.c.obj) + 0x40377694 z_sched_init + *fill* 0x403776a3 0x1 + .text.z_impl_k_yield + 0x403776a4 0x84 zephyr/kernel/libkernel.a(sched.c.obj) + 0x88 (size before relaxing) + 0x403776a4 z_impl_k_yield + .text.z_tick_sleep + 0x40377728 0x60 zephyr/kernel/libkernel.a(sched.c.obj) + 0x6b (size before relaxing) + *fill* 0x40377788 0x0 + .text.z_impl_k_sleep + 0x40377788 0x2f zephyr/kernel/libkernel.a(sched.c.obj) + 0x33 (size before relaxing) + 0x40377788 z_impl_k_sleep + *fill* 0x403777b7 0x1 + .text.z_impl_k_wakeup + 0x403777b8 0x34 zephyr/kernel/libkernel.a(sched.c.obj) + 0x3c (size before relaxing) + 0x403777b8 z_impl_k_wakeup + .text.z_impl_k_sched_current_thread_query + 0x403777ec 0xa zephyr/kernel/libkernel.a(sched.c.obj) + 0x403777ec z_impl_k_sched_current_thread_query + *fill* 0x403777f6 0x2 + .text.z_thread_abort + 0x403777f8 0xf7 zephyr/kernel/libkernel.a(sched.c.obj) + 0x112 (size before relaxing) + 0x403777f8 z_thread_abort + *fill* 0x403778ef 0x1 + .text.z_impl_k_thread_abort + 0x403778f0 0xa zephyr/kernel/libkernel.a(sched.c.obj) + 0xe (size before relaxing) + 0x403778f0 z_impl_k_thread_abort + *fill* 0x403778fa 0x2 + .text.z_sched_wake + 0x403778fc 0x3a zephyr/kernel/libkernel.a(sched.c.obj) + 0x42 (size before relaxing) + 0x403778fc z_sched_wake + *fill* 0x40377936 0x2 + .text.z_sched_wait + 0x40377938 0x24 zephyr/kernel/libkernel.a(sched.c.obj) + 0x40377938 z_sched_wait + .text.z_time_slice_size + 0x4037795c 0x42 zephyr/kernel/libkernel.a(timeslicing.c.obj) + *fill* 0x4037799e 0x2 + .text.slice_timeout + 0x403779a0 0x1e zephyr/kernel/libkernel.a(timeslicing.c.obj) + *fill* 0x403779be 0x2 + .text.z_reset_time_slice + 0x403779c0 0x3a zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x42 (size before relaxing) + 0x403779c0 z_reset_time_slice + *fill* 0x403779fa 0x2 + .text.z_time_slice + 0x403779fc 0x39 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x40 (size before relaxing) + 0x403779fc z_time_slice + *fill* 0x40377a35 0x3 + .text.first 0x40377a38 0xf zephyr/kernel/libkernel.a(timeout.c.obj) + *fill* 0x40377a47 0x1 + .text.next_timeout + 0x40377a48 0x3b zephyr/kernel/libkernel.a(timeout.c.obj) + 0x3f (size before relaxing) + *fill* 0x40377a83 0x1 + .text.elapsed 0x40377a84 0x16 zephyr/kernel/libkernel.a(timeout.c.obj) + *fill* 0x40377a9a 0x2 + .text.remove_timeout + 0x40377a9c 0x36 zephyr/kernel/libkernel.a(timeout.c.obj) + *fill* 0x40377ad2 0x2 + .text.z_add_timeout + 0x40377ad4 0x10d zephyr/kernel/libkernel.a(timeout.c.obj) + 0x121 (size before relaxing) + 0x40377ad4 z_add_timeout + *fill* 0x40377be1 0x3 + .text.z_abort_timeout + 0x40377be4 0x3c zephyr/kernel/libkernel.a(timeout.c.obj) + 0x4c (size before relaxing) + 0x40377be4 z_abort_timeout + .text.sys_clock_announce + 0x40377c20 0x9f zephyr/kernel/libkernel.a(timeout.c.obj) + 0xab (size before relaxing) + 0x40377c20 sys_clock_announce + *fill* 0x40377cbf 0x1 + .text.sys_clock_tick_get + 0x40377cc0 0x24 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x28 (size before relaxing) + 0x40377cc0 sys_clock_tick_get + .text.sys_clock_tick_get_32 + 0x40377ce4 0xa zephyr/kernel/libkernel.a(timeout.c.obj) + 0xd (size before relaxing) + 0x40377ce4 sys_clock_tick_get_32 + *fill* 0x40377cee 0x2 + .text.z_impl_k_uptime_ticks + 0x40377cf0 0xf zephyr/kernel/libkernel.a(timeout.c.obj) + 0x40377cf0 z_impl_k_uptime_ticks + *fill* 0x40377cff 0x1 + .text.z_timer_expiration_handler + 0x40377d00 0x108 zephyr/kernel/libkernel.a(timer.c.obj) + 0x110 (size before relaxing) + 0x40377d00 z_timer_expiration_handler + .text.z_impl_k_timer_start + 0x40377e08 0x52 zephyr/kernel/libkernel.a(timer.c.obj) + 0x56 (size before relaxing) + 0x40377e08 z_impl_k_timer_start + *fill* 0x40377e5a 0x2 + .text.z_impl_k_timer_stop + 0x40377e5c 0x28 zephyr/kernel/libkernel.a(timer.c.obj) + 0x34 (size before relaxing) + 0x40377e5c z_impl_k_timer_stop + .text.clear_event_registrations + 0x40377e84 0x44 zephyr/kernel/libkernel.a(poll.c.obj) + .text.register_events + 0x40377ec8 0x105 zephyr/kernel/libkernel.a(poll.c.obj) + *fill* 0x40377fcd 0x3 + .text.signal_poll_event$isra$0 + 0x40377fd0 0x7e zephyr/kernel/libkernel.a(poll.c.obj) + 0x8a (size before relaxing) + *fill* 0x4037804e 0x2 + .text.z_impl_k_poll + 0x40378050 0x84 zephyr/kernel/libkernel.a(poll.c.obj) + 0x90 (size before relaxing) + 0x40378050 z_impl_k_poll + .text.z_handle_obj_poll_events + 0x403780d4 0x33 zephyr/kernel/libkernel.a(poll.c.obj) + 0x37 (size before relaxing) + 0x403780d4 z_handle_obj_poll_events + *fill* 0x40378107 0x1 + .text.z_impl_k_poll_signal_raise + 0x40378108 0x3c zephyr/kernel/libkernel.a(poll.c.obj) + 0x40 (size before relaxing) + 0x40378108 z_impl_k_poll_signal_raise + .text.k_free 0x40378144 0xf zephyr/kernel/libkernel.a(mempool.c.obj) + 0x12 (size before relaxing) + 0x40378144 k_free + *fill* 0x40378153 0x1 + .text.k_malloc + 0x40378154 0x14 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x18 (size before relaxing) + 0x40378154 k_malloc + .text.k_calloc + 0x40378168 0x28 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x2c (size before relaxing) + 0x40378168 k_calloc + .text.k_thread_system_pool_assign + 0x40378190 0xb zephyr/kernel/libkernel.a(mempool.c.obj) + 0x40378190 k_thread_system_pool_assign + *fill* 0x4037819b 0x1 + .text.boot_banner + 0x4037819c 0xb zephyr/kernel/libkernel.a(banner.c.obj) + 0xe (size before relaxing) + 0x4037819c boot_banner + *fill* 0x403781a7 0x1 + .text.k_heap_init + 0x403781a8 0x17 zephyr/kernel/libkernel.a(kheap.c.obj) + 0x403781a8 k_heap_init + *fill* 0x403781bf 0x1 + .text.statics_init + 0x403781c0 0x22 zephyr/kernel/libkernel.a(kheap.c.obj) + *fill* 0x403781e2 0x2 + .text.k_heap_free + 0x403781e4 0x2c zephyr/kernel/libkernel.a(kheap.c.obj) + 0x30 (size before relaxing) + 0x403781e4 k_heap_free + .text.k_sys_work_q_init + 0x40378210 0x18 zephyr/kernel/libkernel.a(system_work_q.c.obj) + 0x1c (size before relaxing) + *fill* 0x40378228 0x0 + .text.do_device_init + 0x40378228 0x35 zephyr/kernel/libkernel.a(device.c.obj) + 0x40378228 do_device_init + *fill* 0x4037825d 0x3 + .text.z_impl_device_is_ready + 0x40378260 0x1c zephyr/kernel/libkernel.a(device.c.obj) + 0x40378260 z_impl_device_is_ready + .text.arch_system_halt + 0x4037827c 0x9 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x4037827c arch_system_halt + *fill* 0x40378285 0x0 + *fill* 0x40378285 0x0 + *fill* 0x40378285 0x0 + *fill* 0x40378285 0x0 + *fill* 0x40378285 0x3 + .text.z_impl_k_mutex_init + 0x40378288 0x11 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x40378288 z_impl_k_mutex_init + *fill* 0x40378299 0x0 + *fill* 0x40378299 0x0 + *fill* 0x40378299 0x3 + .text.z_impl_k_sem_init + 0x4037829c 0x20 zephyr/kernel/libkernel.a(sem.c.obj) + 0x4037829c z_impl_k_sem_init + *fill* 0x403782bc 0x0 + .text.flag_test_and_clear + 0x403782bc 0x1d zephyr/kernel/libkernel.a(work.c.obj) + *fill* 0x403782d9 0x0 + *fill* 0x403782d9 0x0 + *fill* 0x403782d9 0x0 + *fill* 0x403782d9 0x3 + .text.k_is_in_isr + 0x403782dc 0xf zephyr/kernel/libkernel.a(thread.c.obj) + 0x403782dc k_is_in_isr + *fill* 0x403782eb 0x1 + .text.z_impl_k_thread_name_set + 0x403782ec 0x8 zephyr/kernel/libkernel.a(thread.c.obj) + 0x403782ec z_impl_k_thread_name_set + .text.k_thread_name_get + 0x403782f4 0x7 zephyr/kernel/libkernel.a(thread.c.obj) + 0x403782f4 k_thread_name_get + *fill* 0x403782fb 0x0 + *fill* 0x403782fb 0x0 + *fill* 0x403782fb 0x0 + *fill* 0x403782fb 0x1 + .text.sys_dlist_remove + 0x403782fc 0x13 zephyr/kernel/libkernel.a(sched.c.obj) + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x0 + *fill* 0x4037830f 0x1 + .text.k_timer_init + 0x40378310 0x1a zephyr/kernel/libkernel.a(timer.c.obj) + 0x40378310 k_timer_init + *fill* 0x4037832a 0x0 + *fill* 0x4037832a 0x2 + .text.add_event + 0x4037832c 0x69 zephyr/kernel/libkernel.a(poll.c.obj) + *fill* 0x40378395 0x0 + *fill* 0x40378395 0x0 + *fill* 0x40378395 0x0 + *fill* 0x40378395 0x3 + .text.z_alloc_helper + 0x40378398 0x2b zephyr/kernel/libkernel.a(mempool.c.obj) + *fill* 0x403783c3 0x0 + *fill* 0x403783c3 0x0 + *fill* 0x403783c3 0x0 + *fill* 0x403783c3 0x0 + *fill* 0x403783c3 0x0 + *fill* 0x403783c3 0x0 + *libgcc.a:lib2funcs.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:cbprintf_packaged.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x403783c3 0x1 + .text.cbvprintf_package + 0x403783c4 0x3cc zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x403783c4 cbvprintf_package + .text.cbpprintf_external + 0x40378790 0x72 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x40378790 cbpprintf_external + *fill* 0x40378802 0x2 + .text.cbprintf_package_convert + 0x40378804 0x3b8 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x3bc (size before relaxing) + 0x40378804 cbprintf_package_convert + *fill* 0x40378bbc 0x0 + .text.is_ptr 0x40378bbc 0x4f zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x40378bbc is_ptr + *fill* 0x40378c0b 0x0 + *libdrivers__flash.a:flash_esp32.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:windowspill_asm.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:log_noos.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libdrivers__timer.a:xtensa_sys_timer.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40378c0b 0x1 + .text.ccompare_isr + 0x40378c0c 0x32 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x36 (size before relaxing) + *fill* 0x40378c3e 0x2 + .text.sys_clock_set_timeout + 0x40378c40 0x6c zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x40378c40 sys_clock_set_timeout + .text.sys_clock_elapsed + 0x40378cac 0x22 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x40378cac sys_clock_elapsed + *fill* 0x40378cce 0x2 + .text.sys_clock_driver_init + 0x40378cd0 0x21 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + *fill* 0x40378cf1 0x0 + *fill* 0x40378cf1 0x3 + .text.sys_clock_cycle_get_32 + 0x40378cf4 0x8 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x40378cf4 sys_clock_cycle_get_32 + *libzephyr.a:log_core.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + .text.activate_foreach_backend + 0x40378cfc 0x5d zephyr/libzephyr.a(log_core.c.obj) + *fill* 0x40378d59 0x3 + .text.enable_logger + 0x40378d5c 0x3e zephyr/libzephyr.a(log_core.c.obj) + 0x46 (size before relaxing) + *fill* 0x40378d9a 0x2 + .text.default_lf_get_timestamp + 0x40378d9c 0x14 zephyr/libzephyr.a(log_core.c.obj) + 0x18 (size before relaxing) + .text.log_process_thread_timer_expiry_fn + 0x40378db0 0xb zephyr/libzephyr.a(log_core.c.obj) + 0xe (size before relaxing) + *fill* 0x40378dbb 0x1 + .text.z_log_init + 0x40378dbc 0x90 zephyr/libzephyr.a(log_core.c.obj) + 0x94 (size before relaxing) + .text.log_format_func_t_get + 0x40378e4c 0xd zephyr/libzephyr.a(log_core.c.obj) + 0x40378e4c log_format_func_t_get + *fill* 0x40378e59 0x3 + .text.z_log_vprintk + 0x40378e5c 0x1f zephyr/libzephyr.a(log_core.c.obj) + 0x40378e5c z_log_vprintk + *fill* 0x40378e7b 0x1 + .text.log_set_timestamp_func + 0x40378e7c 0x1a zephyr/libzephyr.a(log_core.c.obj) + 0x40378e7c log_set_timestamp_func + *fill* 0x40378e96 0x2 + .text.z_log_notify_backend_enabled + 0x40378e98 0x1b zephyr/libzephyr.a(log_core.c.obj) + 0x40378e98 z_log_notify_backend_enabled + *fill* 0x40378eb3 0x1 + .text.z_log_dropped + 0x40378eb4 0x34 zephyr/libzephyr.a(log_core.c.obj) + 0x3c (size before relaxing) + 0x40378eb4 z_log_dropped + .text.z_log_notify_drop + 0x40378ee8 0xa zephyr/libzephyr.a(log_core.c.obj) + 0xe (size before relaxing) + *fill* 0x40378ef2 0x2 + .text.z_log_dropped_read_and_clear + 0x40378ef4 0x1d zephyr/libzephyr.a(log_core.c.obj) + 0x40378ef4 z_log_dropped_read_and_clear + *fill* 0x40378f11 0x3 + .text.dropped_notify + 0x40378f14 0x30 zephyr/libzephyr.a(log_core.c.obj) + 0x40378f14 dropped_notify + .text.z_log_msg_init + 0x40378f44 0x18 zephyr/libzephyr.a(log_core.c.obj) + 0x40378f44 z_log_msg_init + .text.log_core_init + 0x40378f5c 0x46 zephyr/libzephyr.a(log_core.c.obj) + 0x4a (size before relaxing) + 0x40378f5c log_core_init + *fill* 0x40378fa2 0x2 + .text.z_log_msg_alloc + 0x40378fa4 0x16 zephyr/libzephyr.a(log_core.c.obj) + 0x40378fa4 z_log_msg_alloc + *fill* 0x40378fba 0x2 + .text.z_log_msg_local_claim + 0x40378fbc 0x10 zephyr/libzephyr.a(log_core.c.obj) + 0x40378fbc z_log_msg_local_claim + .text.z_log_msg_free + 0x40378fcc 0x12 zephyr/libzephyr.a(log_core.c.obj) + 0x40378fcc z_log_msg_free + *fill* 0x40378fde 0x2 + .text.z_log_msg_pending + 0x40378fe0 0x10 zephyr/libzephyr.a(log_core.c.obj) + 0x40378fe0 z_log_msg_pending + .text.z_impl_log_process + 0x40378ff0 0xaa zephyr/libzephyr.a(log_core.c.obj) + 0xb2 (size before relaxing) + 0x40378ff0 z_impl_log_process + *fill* 0x4037909a 0x2 + .text.z_impl_log_panic + 0x4037909c 0x42 zephyr/libzephyr.a(log_core.c.obj) + 0x46 (size before relaxing) + 0x4037909c z_impl_log_panic + *fill* 0x403790de 0x2 + .text.log_process_thread_func + 0x403790e0 0x85 zephyr/libzephyr.a(log_core.c.obj) + 0x95 (size before relaxing) + *fill* 0x40379165 0x3 + .text.z_log_msg_post_finalize + 0x40379168 0x58 zephyr/libzephyr.a(log_core.c.obj) + 0x63 (size before relaxing) + *fill* 0x403791c0 0x0 + .text.z_log_msg_commit + 0x403791c0 0x1d zephyr/libzephyr.a(log_core.c.obj) + 0x21 (size before relaxing) + 0x403791c0 z_log_msg_commit + *fill* 0x403791dd 0x3 + .text.log_msg_generic_get_wlen + 0x403791e0 0x24 zephyr/libzephyr.a(log_core.c.obj) + .text.dummy_timestamp + 0x40379204 0x7 zephyr/libzephyr.a(log_core.c.obj) + *fill* 0x4037920b 0x0 + *fill* 0x4037920b 0x1 + .text.atomic_inc + 0x4037920c 0x1b zephyr/libzephyr.a(log_core.c.obj) + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x0 + *fill* 0x40379227 0x1 + .text.z_log_get_tag + 0x40379228 0x7 zephyr/libzephyr.a(log_core.c.obj) + 0x40379228 z_log_get_tag + *libzephyr.a:cbprintf_complete.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:printk.*(SORT_BY_ALIGNMENT(.literal.printk) SORT_BY_ALIGNMENT(.literal.vprintk) SORT_BY_ALIGNMENT(.literal.char_out) SORT_BY_ALIGNMENT(.text.printk) SORT_BY_ALIGNMENT(.text.vprintk) SORT_BY_ALIGNMENT(.text.char_out)) + *fill* 0x4037922f 0x1 + .text.printk 0x40379230 0x2b zephyr/libzephyr.a(printk.c.obj) + 0x40379230 printk + *fill* 0x4037925b 0x0 + *libzephyr.a:log_msg.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037925b 0x1 + .text.z_cbprintf_cpy + 0x4037925c 0x2b zephyr/libzephyr.a(log_msg.c.obj) + *fill* 0x40379287 0x1 + .text.z_log_msg_finalize + 0x40379288 0x32 zephyr/libzephyr.a(log_msg.c.obj) + 0x36 (size before relaxing) + 0x40379288 z_log_msg_finalize + *fill* 0x403792ba 0x2 + .text.z_log_msg_simple_create + 0x403792bc 0x5f zephyr/libzephyr.a(log_msg.c.obj) + 0x63 (size before relaxing) + *fill* 0x4037931b 0x1 + .text.z_impl_z_log_msg_simple_create_0 + 0x4037931c 0x12 zephyr/libzephyr.a(log_msg.c.obj) + 0x16 (size before relaxing) + 0x4037931c z_impl_z_log_msg_simple_create_0 + *fill* 0x4037932e 0x2 + .text.z_impl_z_log_msg_simple_create_1 + 0x40379330 0x17 zephyr/libzephyr.a(log_msg.c.obj) + 0x40379330 z_impl_z_log_msg_simple_create_1 + *fill* 0x40379347 0x1 + .text.z_impl_z_log_msg_static_create + 0x40379348 0x106 zephyr/libzephyr.a(log_msg.c.obj) + 0x10e (size before relaxing) + 0x40379348 z_impl_z_log_msg_static_create + *fill* 0x4037944e 0x2 + .text.z_log_msg_runtime_vcreate + 0x40379450 0xb8 zephyr/libzephyr.a(log_msg.c.obj) + 0xc0 (size before relaxing) + 0x40379450 z_log_msg_runtime_vcreate + .text.log_msg_get_source_id + 0x40379508 0x17 zephyr/libzephyr.a(log_msg.c.obj) + 0x40379508 log_msg_get_source_id + *fill* 0x4037951f 0x0 + *fill* 0x4037951f 0x0 + *fill* 0x4037951f 0x0 + *fill* 0x4037951f 0x0 + *fill* 0x4037951f 0x0 + *fill* 0x4037951f 0x0 + *fill* 0x4037951f 0x0 + *libzephyr.a:log_list.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libdrivers__console.a:uart_console.*(SORT_BY_ALIGNMENT(.literal.console_out) SORT_BY_ALIGNMENT(.text.console_out)) + *fill* 0x4037951f 0x1 + .text.console_out + 0x40379520 0x22 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + *fill* 0x40379542 0x0 + *libzephyr.a:log_output.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40379542 0x2 + .text.log_output_flush + 0x40379544 0x18 zephyr/libzephyr.a(log_output.c.obj) + 0x1c (size before relaxing) + .text.print_formatted + 0x4037955c 0x2c zephyr/libzephyr.a(log_output.c.obj) + .text.newline_print + 0x40379588 0x16 zephyr/libzephyr.a(log_output.c.obj) + 0x19 (size before relaxing) + *fill* 0x4037959e 0x2 + .text.out_func + 0x403795a0 0x32 zephyr/libzephyr.a(log_output.c.obj) + 0x36 (size before relaxing) + *fill* 0x403795d2 0x2 + .text.cr_out_func + 0x403795d4 0x1a zephyr/libzephyr.a(log_output.c.obj) + 0x1e (size before relaxing) + *fill* 0x403795ee 0x2 + .text.log_output_process + 0x403795f0 0x242 zephyr/libzephyr.a(log_output.c.obj) + 0x27a (size before relaxing) + 0x403795f0 log_output_process + *fill* 0x40379832 0x2 + .text.log_output_msg_process + 0x40379834 0x4e zephyr/libzephyr.a(log_output.c.obj) + 0x56 (size before relaxing) + 0x40379834 log_output_msg_process + *fill* 0x40379882 0x2 + .text.log_output_dropped_process + 0x40379884 0x48 zephyr/libzephyr.a(log_output.c.obj) + 0x50 (size before relaxing) + 0x40379884 log_output_dropped_process + .text.log_output_timestamp_freq_set + 0x403798cc 0x2b zephyr/libzephyr.a(log_output.c.obj) + 0x403798cc log_output_timestamp_freq_set + *fill* 0x403798f7 0x1 + .text.log_output_write + 0x403798f8 0x1a zephyr/libzephyr.a(log_output.c.obj) + *fill* 0x40379912 0x0 + *fill* 0x40379912 0x0 + *fill* 0x40379912 0x0 + *fill* 0x40379912 0x0 + *fill* 0x40379912 0x0 + *fill* 0x40379912 0x0 + *libzephyr.a:log_backend_uart.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40379912 0x2 + .text.dropped 0x40379914 0x13 zephyr/libzephyr.a(log_backend_uart.c.obj) + *fill* 0x40379927 0x1 + .text.process 0x40379928 0x1e zephyr/libzephyr.a(log_backend_uart.c.obj) + *fill* 0x40379946 0x2 + .text.char_out + 0x40379948 0x25 zephyr/libzephyr.a(log_backend_uart.c.obj) + *fill* 0x4037996d 0x3 + .text.format_set + 0x40379970 0xf zephyr/libzephyr.a(log_backend_uart.c.obj) + *fill* 0x4037997f 0x1 + .text.log_backend_uart_init + 0x40379980 0xf zephyr/libzephyr.a(log_backend_uart.c.obj) + *fill* 0x4037998f 0x1 + .text.panic 0x40379990 0x37 zephyr/libzephyr.a(log_backend_uart.c.obj) + *fill* 0x403799c7 0x0 + *fill* 0x403799c7 0x0 + *fill* 0x403799c7 0x0 + *libzephyr.a:log_minimal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:loader.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x403799c7 0x1 + .text.map_rom_segments + 0x403799c8 0x316 zephyr/libzephyr.a(loader.c.obj) + 0x326 (size before relaxing) + 0x403799c8 map_rom_segments + *fill* 0x40379cde 0x2 + .text.__start 0x40379ce0 0x5e zephyr/libzephyr.a(loader.c.obj) + 0x6e (size before relaxing) + 0x40379ce0 __start + *fill* 0x40379d3e 0x0 + *fill* 0x40379d3e 0x0 + *libzephyr.a:flash_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40379d3e 0x2 + .text.flash_is_octal_mode_enabled + 0x40379d40 0x10 zephyr/libzephyr.a(flash_init.c.obj) + 0x40379d40 flash_is_octal_mode_enabled + .text.esp_flash_config + 0x40379d50 0x2f zephyr/libzephyr.a(flash_init.c.obj) + 0x3f (size before relaxing) + 0x40379d50 esp_flash_config + *fill* 0x40379d7f 0x0 + *libzephyr.a:soc_flash_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40379d7f 0x1 + .text.configure_spi_pins + 0x40379d80 0x7a zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x40379d80 configure_spi_pins + *fill* 0x40379dfa 0x2 + .text.flash_set_dummy_out + 0x40379dfc 0x28 zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x40379dfc flash_set_dummy_out + .text.flash_dummy_config + 0x40379e24 0xd zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x14 (size before relaxing) + 0x40379e24 flash_dummy_config + *fill* 0x40379e31 0x3 + .text.flash_cs_timing_config + 0x40379e34 0x99 zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x40379e34 flash_cs_timing_config + *fill* 0x40379ecd 0x3 + .text.init_spi_flash + 0x40379ed0 0xfe zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x112 (size before relaxing) + 0x40379ed0 init_spi_flash + *fill* 0x40379fce 0x2 + .text.flash_update_id + 0x40379fd0 0x12 zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x40379fd0 flash_update_id + *fill* 0x40379fe2 0x0 + *fill* 0x40379fe2 0x0 + *fill* 0x40379fe2 0x0 + *fill* 0x40379fe2 0x0 + *libzephyr.a:console_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x40379fe2 0x2 + .text.esp_console_init + 0x40379fe4 0x24 zephyr/libzephyr.a(console_init.c.obj) + 0x28 (size before relaxing) + 0x40379fe4 esp_console_init + *fill* 0x4037a008 0x0 + *libzephyr.a:soc_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + .text.print_banner + 0x4037a008 0x2a zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a008 print_banner + *fill* 0x4037a032 0x2 + .text.read_bootloader_header + 0x4037a034 0x26 zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a034 read_bootloader_header + *fill* 0x4037a05a 0x2 + .text.config_wdt + 0x4037a05c 0x42 zephyr/libzephyr.a(soc_init.c.obj) + 0x56 (size before relaxing) + 0x4037a05c config_wdt + *fill* 0x4037a09e 0x2 + .text.check_bootloader_validity + 0x4037a0a0 0x92 zephyr/libzephyr.a(soc_init.c.obj) + 0x96 (size before relaxing) + 0x4037a0a0 check_bootloader_validity + *fill* 0x4037a132 0x2 + .text.ana_super_wdt_reset_config + 0x4037a134 0x3b zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a134 ana_super_wdt_reset_config + *fill* 0x4037a16f 0x1 + .text.ana_clock_glitch_reset_config + 0x4037a170 0x3a zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a170 ana_clock_glitch_reset_config + *fill* 0x4037a1aa 0x2 + .text.ana_reset_config + 0x4037a1ac 0x3a zephyr/libzephyr.a(soc_init.c.obj) + 0x3e (size before relaxing) + 0x4037a1ac ana_reset_config + *fill* 0x4037a1e6 0x2 + .text.super_wdt_auto_feed + 0x4037a1e8 0x2c zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a1e8 super_wdt_auto_feed + .text.wdt_reset_info_dump + 0x4037a214 0x52 zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a214 wdt_reset_info_dump + *fill* 0x4037a266 0x2 + .text.wdt_reset_cpu0_info_enable + 0x4037a268 0x3c zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a268 wdt_reset_cpu0_info_enable + .text.check_wdt_reset + 0x4037a2a4 0x2e zephyr/libzephyr.a(soc_init.c.obj) + 0x35 (size before relaxing) + 0x4037a2a4 check_wdt_reset + *fill* 0x4037a2d2 0x2 + .text.bootloader_clock_configure + 0x4037a2d4 0x73 zephyr/libzephyr.a(soc_init.c.obj) + 0x7b (size before relaxing) + 0x4037a2d4 bootloader_clock_configure + *fill* 0x4037a347 0x0 + *fill* 0x4037a347 0x0 + *fill* 0x4037a347 0x0 + *fill* 0x4037a347 0x1 + .text.soc_hw_init + 0x4037a348 0x5 zephyr/libzephyr.a(soc_init.c.obj) + 0x4037a348 soc_hw_init + *fill* 0x4037a34d 0x0 + *fill* 0x4037a34d 0x0 + *fill* 0x4037a34d 0x0 + *fill* 0x4037a34d 0x0 + *fill* 0x4037a34d 0x0 + *fill* 0x4037a34d 0x0 + *libzephyr.a:hw_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037a34d 0x3 + .text.hardware_init + 0x4037a350 0x66 zephyr/libzephyr.a(hw_init.c.obj) + 0x92 (size before relaxing) + 0x4037a350 hardware_init + *fill* 0x4037a3b6 0x0 + *libzephyr.a:soc_random.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037a3b6 0x2 + .text.soc_random_enable + 0x4037a3b8 0x29b zephyr/libzephyr.a(soc_random.c.obj) + 0x2ab (size before relaxing) + 0x4037a3b8 soc_random_enable + *fill* 0x4037a653 0x1 + .text.soc_random_disable + 0x4037a654 0x175 zephyr/libzephyr.a(soc_random.c.obj) + 0x185 (size before relaxing) + 0x4037a654 soc_random_disable + *fill* 0x4037a7c9 0x0 + *fill* 0x4037a7c9 0x0 + *libzephyr.a:esp_mmu_map.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037a7c9 0x3 + .text.s_get_bus_mask + 0x4037a7cc 0x26 zephyr/libzephyr.a(esp_mmu_map.c.obj) + *fill* 0x4037a7f2 0x2 + .text.esp_mmu_map_init + 0x4037a7f4 0x124 zephyr/libzephyr.a(esp_mmu_map.c.obj) + 0x128 (size before relaxing) + 0x4037a7f4 esp_mmu_map_init + *fill* 0x4037a918 0x0 + *fill* 0x4037a918 0x0 + *libphy.a:(SORT_BY_ALIGNMENT(.phyiram) SORT_BY_ALIGNMENT(.phyiram.*)) + *libgcov.a:(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *librtc.a:(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp32s3-mp.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_flash.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + .text.esp_rom_flash_read + 0x4037a918 0xd5 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0xe5 (size before relaxing) + 0x4037a918 esp_rom_flash_read + *fill* 0x4037a9ed 0x3 + .text.bootloader_enable_wp + 0x4037a9f0 0x13 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x4037a9f0 bootloader_enable_wp + *fill* 0x4037aa03 0x0 + *libzephyr.a:flash_mmap.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:mmu_psram_flash.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_psram_impl_quad.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_psram_impl_octal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:efuse_hal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:mmu_hal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037aa03 0x1 + .text.mmu_hal_ctx_init + 0x4037aa04 0xe zephyr/libzephyr.a(mmu_hal.c.obj) + 0x4037aa04 mmu_hal_ctx_init + *fill* 0x4037aa12 0x2 + .text.mmu_hal_unmap_all + 0x4037aa14 0x34 zephyr/libzephyr.a(mmu_hal.c.obj) + 0x4037aa14 mmu_hal_unmap_all + .text.mmu_hal_paddr_to_vaddr + 0x4037aa48 0x5d zephyr/libzephyr.a(mmu_hal.c.obj) + 0x4037aa48 mmu_hal_paddr_to_vaddr + *fill* 0x4037aaa5 0x3 + .text.mmu_hal_map_region + 0x4037aaa8 0x42 zephyr/libzephyr.a(mmu_hal.c.obj) + 0x4037aaa8 mmu_hal_map_region + *fill* 0x4037aaea 0x0 + *fill* 0x4037aaea 0x0 + *fill* 0x4037aaea 0x0 + *libzephyr.a:spi_flash_hal_iram.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037aaea 0x2 + .text.spi_flash_hal_configure_host_io_mode + 0x4037aaec 0x310 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037aaec spi_flash_hal_configure_host_io_mode + .text.spi_flash_hal_common_command + 0x4037adfc 0x1a8 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037adfc spi_flash_hal_common_command + .text.spi_flash_hal_read + 0x4037afa4 0xc2 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037afa4 spi_flash_hal_read + *fill* 0x4037b066 0x2 + .text.spi_flash_hal_program_page + 0x4037b068 0xba zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b068 spi_flash_hal_program_page + *fill* 0x4037b122 0x2 + .text.spi_flash_hal_setup_read_suspend + 0x4037b124 0x74 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b124 spi_flash_hal_setup_read_suspend + .text.spi_flash_hal_setup_auto_suspend_mode + 0x4037b198 0x198 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b198 spi_flash_hal_setup_auto_suspend_mode + .text.spi_flash_hal_disable_auto_suspend_mode + 0x4037b330 0x86 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b330 spi_flash_hal_disable_auto_suspend_mode + *fill* 0x4037b3b6 0x2 + .text.spi_flash_hal_device_config + 0x4037b3b8 0x113 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x117 (size before relaxing) + 0x4037b3b8 spi_flash_hal_device_config + *fill* 0x4037b4cb 0x1 + .text.spi_flash_hal_poll_cmd_done + 0x4037b4cc 0xf zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b4cc spi_flash_hal_poll_cmd_done + *fill* 0x4037b4db 0x0 + *fill* 0x4037b4db 0x1 + .text.spi_flash_hal_erase_chip + 0x4037b4dc 0x28 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b4dc spi_flash_hal_erase_chip + .text.spi_flash_hal_erase_sector + 0x4037b504 0x73 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b504 spi_flash_hal_erase_sector + *fill* 0x4037b577 0x1 + .text.spi_flash_hal_erase_block + 0x4037b578 0x6c zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b578 spi_flash_hal_erase_block + *fill* 0x4037b5e4 0x0 + .text.spi_flash_hal_set_write_protect + 0x4037b5e4 0x30 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b5e4 spi_flash_hal_set_write_protect + .text.spi_flash_hal_check_status + 0x4037b614 0x20 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b614 spi_flash_hal_check_status + *fill* 0x4037b634 0x0 + *fill* 0x4037b634 0x0 + .text.spi_flash_hal_resume + 0x4037b634 0x22 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b634 spi_flash_hal_resume + *fill* 0x4037b656 0x2 + .text.spi_flash_hal_suspend + 0x4037b658 0x22 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x4037b658 spi_flash_hal_suspend + *libzephyr.a:spi_flash_encrypt_hal_iram.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037b67a 0x2 + .text.spi_flash_encryption_hal_enable + 0x4037b67c 0x21 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4037b67c spi_flash_encryption_hal_enable + *fill* 0x4037b69d 0x3 + .text.spi_flash_encryption_hal_disable + 0x4037b6a0 0x17 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4037b6a0 spi_flash_encryption_hal_disable + *fill* 0x4037b6b7 0x1 + .text.spi_flash_encryption_hal_prepare + 0x4037b6b8 0x34 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4037b6b8 spi_flash_encryption_hal_prepare + .text.spi_flash_encryption_hal_done + 0x4037b6ec 0x22 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4037b6ec spi_flash_encryption_hal_done + *fill* 0x4037b70e 0x2 + .text.spi_flash_encryption_hal_destroy + 0x4037b710 0xf zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4037b710 spi_flash_encryption_hal_destroy + *fill* 0x4037b71f 0x0 + *fill* 0x4037b71f 0x0 + *fill* 0x4037b71f 0x0 + *fill* 0x4037b71f 0x0 + *fill* 0x4037b71f 0x1 + .text.spi_flash_encryption_hal_check + 0x4037b720 0xe zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4037b720 spi_flash_encryption_hal_check + *libzephyr.a:cache_hal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037b72e 0x2 + .text.cache_hal_vaddr_to_cache_level_id$part$0 + 0x4037b730 0x42 zephyr/libzephyr.a(cache_hal.c.obj) + *fill* 0x4037b772 0x2 + .text.cache_hal_disable + 0x4037b774 0x1f zephyr/libzephyr.a(cache_hal.c.obj) + 0x4037b774 cache_hal_disable + *fill* 0x4037b793 0x1 + .text.cache_hal_enable + 0x4037b794 0x2e zephyr/libzephyr.a(cache_hal.c.obj) + 0x4037b794 cache_hal_enable + *fill* 0x4037b7c2 0x2 + .text.cache_hal_suspend + 0x4037b7c4 0x19 zephyr/libzephyr.a(cache_hal.c.obj) + 0x1f (size before relaxing) + 0x4037b7c4 cache_hal_suspend + *fill* 0x4037b7dd 0x3 + .text.cache_hal_resume + 0x4037b7e0 0x2e zephyr/libzephyr.a(cache_hal.c.obj) + 0x4037b7e0 cache_hal_resume + *fill* 0x4037b80e 0x2 + .text.cache_hal_vaddr_to_cache_level_id + 0x4037b810 0x29 zephyr/libzephyr.a(cache_hal.c.obj) + 0x4037b810 cache_hal_vaddr_to_cache_level_id + *fill* 0x4037b839 0x3 + .text.cache_hal_invalidate_addr + 0x4037b83c 0x23 zephyr/libzephyr.a(cache_hal.c.obj) + 0x4037b83c cache_hal_invalidate_addr + *fill* 0x4037b85f 0x1 + .text.cache_hal_writeback_addr + 0x4037b860 0x1f zephyr/libzephyr.a(cache_hal.c.obj) + 0x23 (size before relaxing) + 0x4037b860 cache_hal_writeback_addr + *fill* 0x4037b87f 0x1 + .text.cache_hal_freeze + 0x4037b880 0x1c zephyr/libzephyr.a(cache_hal.c.obj) + 0x24 (size before relaxing) + 0x4037b880 cache_hal_freeze + .text.cache_hal_unfreeze + 0x4037b89c 0x1f zephyr/libzephyr.a(cache_hal.c.obj) + 0x4037b89c cache_hal_unfreeze + *fill* 0x4037b8bb 0x1 + .text.cache_hal_get_cache_line_size + 0x4037b8bc 0x1b zephyr/libzephyr.a(cache_hal.c.obj) + 0x4037b8bc cache_hal_get_cache_line_size + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *fill* 0x4037b8d7 0x0 + *libzephyr.a:ledc_hal_iram.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:i2c_hal_iram.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:wdt_hal_iram.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037b8d7 0x1 + .text.wdt_hal_write_protect_disable + 0x4037b8d8 0x1d zephyr/libzephyr.a(wdt_hal_iram.c.obj) + 0x4037b8d8 wdt_hal_write_protect_disable + *fill* 0x4037b8f5 0x0 + *fill* 0x4037b8f5 0x3 + .text.wdt_hal_write_protect_enable + 0x4037b8f8 0x1c zephyr/libzephyr.a(wdt_hal_iram.c.obj) + 0x4037b8f8 wdt_hal_write_protect_enable + .text.wdt_hal_disable + 0x4037b914 0x30 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + 0x4037b914 wdt_hal_disable + .text.wdt_hal_set_flashboot_en + 0x4037b944 0x45 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + 0x4037b944 wdt_hal_set_flashboot_en + *libzephyr.a:systimer_hal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037b989 0x3 + .text.systimer_hal_init + 0x4037b98c 0x1c zephyr/libzephyr.a(systimer_hal.c.obj) + 0x4037b98c systimer_hal_init + .text.systimer_hal_select_alarm_mode + 0x4037b9a8 0x3c zephyr/libzephyr.a(systimer_hal.c.obj) + 0x4037b9a8 systimer_hal_select_alarm_mode + *fill* 0x4037b9e4 0x0 + .text.systimer_hal_set_tick_rate_ops + 0x4037b9e4 0xd zephyr/libzephyr.a(systimer_hal.c.obj) + 0x4037b9e4 systimer_hal_set_tick_rate_ops + *fill* 0x4037b9f1 0x3 + .text.systimer_hal_enable_counter + 0x4037b9f4 0x22 zephyr/libzephyr.a(systimer_hal.c.obj) + 0x4037b9f4 systimer_hal_enable_counter + *fill* 0x4037ba16 0x2 + .text.systimer_hal_connect_alarm_counter + 0x4037ba18 0x21 zephyr/libzephyr.a(systimer_hal.c.obj) + 0x4037ba18 systimer_hal_connect_alarm_counter + *fill* 0x4037ba39 0x3 + .text.systimer_hal_counter_can_stall_by_cpu + 0x4037ba3c 0x35 zephyr/libzephyr.a(systimer_hal.c.obj) + 0x4037ba3c systimer_hal_counter_can_stall_by_cpu + *libzephyr.a:spi_flash_hal_gpspi.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037ba71 0x3 + .text.gpspi_flash_ll_get_buffer_data + 0x4037ba74 0x58 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .text.spi_flash_hal_gpspi_device_config + 0x4037bacc 0x145 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x4037bacc spi_flash_hal_gpspi_device_config + *fill* 0x4037bc11 0x3 + .text.spi_flash_hal_gpspi_configure_host_io_mode + 0x4037bc14 0x25f zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x4037bc14 spi_flash_hal_gpspi_configure_host_io_mode + *fill* 0x4037be73 0x1 + .text.spi_flash_hal_gpspi_common_command + 0x4037be74 0x1a0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x1a4 (size before relaxing) + 0x4037be74 spi_flash_hal_gpspi_common_command + .text.spi_flash_hal_gpspi_read + 0x4037c014 0xc8 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x4037c014 spi_flash_hal_gpspi_read + *fill* 0x4037c0dc 0x0 + .text.spi_flash_hal_gpspi_poll_cmd_done + 0x4037c0dc 0xf zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x4037c0dc spi_flash_hal_gpspi_poll_cmd_done + *fill* 0x4037c0eb 0x0 + *fill* 0x4037c0eb 0x0 + *fill* 0x4037c0eb 0x1 + .text.spi_flash_hal_gpspi_supports_direct_write + 0x4037c0ec 0x7 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x4037c0ec spi_flash_hal_gpspi_supports_direct_write + *fill* 0x4037c0f3 0x1 + .text.spi_flash_hal_gpspi_supports_direct_read + 0x4037c0f4 0x7 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x4037c0f4 spi_flash_hal_gpspi_supports_direct_read + *fill* 0x4037c0fb 0x1 + .text.spi_flash_hal_gpspi_check_status + 0x4037c0fc 0x14 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x4037c0fc spi_flash_hal_gpspi_check_status + *libzephyr.a:lldesc.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *(SORT_BY_ALIGNMENT(.literal.esp_log_write) SORT_BY_ALIGNMENT(.text.esp_log_write)) + *(SORT_BY_ALIGNMENT(.literal.esp_log_timestamp) SORT_BY_ALIGNMENT(.text.esp_log_timestamp)) + *(SORT_BY_ALIGNMENT(.literal.esp_log_early_timestamp) SORT_BY_ALIGNMENT(.text.esp_log_early_timestamp)) + *(SORT_BY_ALIGNMENT(.literal.esp_log_impl_lock) SORT_BY_ALIGNMENT(.text.esp_log_impl_lock)) + *(SORT_BY_ALIGNMENT(.literal.esp_log_impl_lock_timeout) SORT_BY_ALIGNMENT(.text.esp_log_impl_lock_timeout)) + *(SORT_BY_ALIGNMENT(.literal.esp_log_impl_unlock) SORT_BY_ALIGNMENT(.text.esp_log_impl_unlock)) + *libzephyr.a:spi_flash_chip_boya.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .text.spi_flash_chip_boya_probe + 0x4037c110 0x22 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + 0x4037c110 spi_flash_chip_boya_probe + *fill* 0x4037c132 0x2 + .text.spi_flash_chip_boya_get_caps + 0x4037c134 0x7 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + 0x4037c134 spi_flash_chip_boya_get_caps + *libzephyr.a:spi_flash_chip_gd.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037c13b 0x1 + .text.spi_flash_chip_gd_suspend_cmd_conf + 0x4037c13c 0x1d zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x4037c13c spi_flash_chip_gd_suspend_cmd_conf + *fill* 0x4037c159 0x3 + .text.spi_flash_chip_gd_get_io_mode + 0x4037c15c 0x1a zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x1e (size before relaxing) + 0x4037c15c spi_flash_chip_gd_get_io_mode + *fill* 0x4037c176 0x2 + .text.spi_flash_chip_gd_set_io_mode + 0x4037c178 0x38 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x3c (size before relaxing) + 0x4037c178 spi_flash_chip_gd_set_io_mode + *fill* 0x4037c1b0 0x0 + .text.spi_flash_chip_gd_get_caps + 0x4037c1b0 0x14 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x4037c1b0 spi_flash_chip_gd_get_caps + .text.spi_flash_chip_gd_detect_size + 0x4037c1c4 0x34 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x4037c1c4 spi_flash_chip_gd_detect_size + *fill* 0x4037c1f8 0x0 + *fill* 0x4037c1f8 0x0 + .text.spi_flash_chip_gd_probe + 0x4037c1f8 0x3b zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x4037c1f8 spi_flash_chip_gd_probe + *fill* 0x4037c233 0x0 + *libzephyr.a:spi_flash_chip_generic.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037c233 0x1 + .text.spi_flash_chip_generic_reset + 0x4037c234 0x55 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c234 spi_flash_chip_generic_reset + *fill* 0x4037c289 0x3 + .text.spi_flash_chip_generic_config_host_io_mode + 0x4037c28c 0xf6 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c28c spi_flash_chip_generic_config_host_io_mode + *fill* 0x4037c382 0x2 + .text.spi_flash_chip_generic_get_caps + 0x4037c384 0x69 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c384 spi_flash_chip_generic_get_caps + *fill* 0x4037c3ed 0x3 + .text.spi_flash_chip_generic_suspend_cmd_conf + 0x4037c3f0 0x1d zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c3f0 spi_flash_chip_generic_suspend_cmd_conf + *fill* 0x4037c40d 0x3 + .text.spi_flash_chip_generic_read + 0x4037c410 0x93 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x97 (size before relaxing) + 0x4037c410 spi_flash_chip_generic_read + *fill* 0x4037c4a3 0x1 + .text.spi_flash_chip_generic_write + 0x4037c4a4 0x94 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c4a4 spi_flash_chip_generic_write + .text.spi_flash_chip_generic_get_write_protect + 0x4037c538 0x2c zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c538 spi_flash_chip_generic_get_write_protect + .text.spi_flash_chip_generic_yield + 0x4037c564 0x42 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c564 spi_flash_chip_generic_yield + *fill* 0x4037c5a6 0x2 + .text.spi_flash_chip_generic_read_unique_id + 0x4037c5a8 0x6c zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c5a8 spi_flash_chip_generic_read_unique_id + .text.spi_flash_chip_generic_write_encrypted + 0x4037c614 0xa8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c614 spi_flash_chip_generic_write_encrypted + .text.spi_flash_common_read_qe_sr$constprop$0$isra$0 + 0x4037c6bc 0x34 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x4037c6f0 0x34 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x38 (size before relaxing) + 0x4037c6f0 spi_flash_common_read_status_16b_rdsr_rdsr2 + .text.spi_flash_common_write_qe_sr$isra$0 + 0x4037c724 0x2e zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + *fill* 0x4037c752 0x2 + .text.spi_flash_common_write_status_16b_wrsr + 0x4037c754 0x15 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c754 spi_flash_common_write_status_16b_wrsr + *fill* 0x4037c769 0x3 + .text.spi_flash_chip_generic_erase_block + 0x4037c76c 0xc2 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c76c spi_flash_chip_generic_erase_block + *fill* 0x4037c82e 0x2 + .text.spi_flash_chip_generic_erase_sector + 0x4037c830 0xc2 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c830 spi_flash_chip_generic_erase_sector + *fill* 0x4037c8f2 0x2 + .text.spi_flash_chip_generic_page_program + 0x4037c8f4 0xa8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c8f4 spi_flash_chip_generic_page_program + .text.spi_flash_common_read_status_8b_rdsr2 + 0x4037c99c 0x10 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x14 (size before relaxing) + 0x4037c99c spi_flash_common_read_status_8b_rdsr2 + .text.spi_flash_chip_generic_get_io_mode + 0x4037c9ac 0x1a zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x1e (size before relaxing) + 0x4037c9ac spi_flash_chip_generic_get_io_mode + *fill* 0x4037c9c6 0x2 + .text.spi_flash_common_read_status_8b_rdsr + 0x4037c9c8 0x10 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x14 (size before relaxing) + 0x4037c9c8 spi_flash_common_read_status_8b_rdsr + .text.spi_flash_common_write_status_8b_wrsr + 0x4037c9d8 0x15 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c9d8 spi_flash_common_write_status_8b_wrsr + *fill* 0x4037c9ed 0x3 + .text.spi_flash_common_write_status_8b_wrsr2 + 0x4037c9f0 0x15 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037c9f0 spi_flash_common_write_status_8b_wrsr2 + *fill* 0x4037ca05 0x3 + .text.spi_flash_common_set_io_mode + 0x4037ca08 0x87 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x8b (size before relaxing) + 0x4037ca08 spi_flash_common_set_io_mode + *fill* 0x4037ca8f 0x1 + .text.spi_flash_chip_generic_set_io_mode + 0x4037ca90 0x18 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037ca90 spi_flash_chip_generic_set_io_mode + .text.spi_flash_chip_generic_detect_size + 0x4037caa8 0x43 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037caa8 spi_flash_chip_generic_detect_size + *fill* 0x4037caeb 0x1 + .text.spi_flash_chip_generic_probe + 0x4037caec 0x7 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037caec spi_flash_chip_generic_probe + *fill* 0x4037caf3 0x0 + *fill* 0x4037caf3 0x1 + .text.spi_flash_chip_generic_erase_chip + 0x4037caf4 0x86 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037caf4 spi_flash_chip_generic_erase_chip + *fill* 0x4037cb7a 0x2 + .text.spi_flash_chip_generic_set_write_protect + 0x4037cb7c 0x4f zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037cb7c spi_flash_chip_generic_set_write_protect + *fill* 0x4037cbcb 0x1 + .text.spi_flash_chip_generic_read_reg + 0x4037cbcc 0x12 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037cbcc spi_flash_chip_generic_read_reg + *fill* 0x4037cbde 0x2 + .text.spi_flash_chip_generic_wait_idle + 0x4037cbe0 0x7e zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037cbe0 spi_flash_chip_generic_wait_idle + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x0 + *fill* 0x4037cc5e 0x2 + .text.spi_flash_chip_generic_read_unique_id_none + 0x4037cc60 0x8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x4037cc60 spi_flash_chip_generic_read_unique_id_none + *fill* 0x4037cc68 0x0 + *fill* 0x4037cc68 0x0 + *fill* 0x4037cc68 0x0 + *fill* 0x4037cc68 0x0 + *libzephyr.a:spi_flash_chip_issi.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .text.spi_flash_chip_issi_set_io_mode + 0x4037cc68 0x14 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0x18 (size before relaxing) + 0x4037cc68 spi_flash_chip_issi_set_io_mode + .text.spi_flash_chip_issi_get_io_mode + 0x4037cc7c 0x1a zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0x1e (size before relaxing) + 0x4037cc7c spi_flash_chip_issi_get_io_mode + *fill* 0x4037cc96 0x2 + .text.spi_flash_chip_issi_probe + 0x4037cc98 0x24 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0x4037cc98 spi_flash_chip_issi_probe + .text.spi_flash_chip_issi_get_caps + 0x4037ccbc 0x7 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0x4037ccbc spi_flash_chip_issi_get_caps + *fill* 0x4037ccc3 0x0 + *libzephyr.a:spi_flash_chip_mxic.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037ccc3 0x1 + .text.spi_flash_chip_mxic_probe + 0x4037ccc4 0x1c zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + 0x4037ccc4 spi_flash_chip_mxic_probe + .text.spi_flash_chip_mxic_detect_size + 0x4037cce0 0x43 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + 0x4037cce0 spi_flash_chip_mxic_detect_size + *fill* 0x4037cd23 0x1 + .text.spi_flash_chip_mxic_get_caps + 0x4037cd24 0x7 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + 0x4037cd24 spi_flash_chip_mxic_get_caps + *libzephyr.a:spi_flash_chip_mxic_opi.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037cd2b 0x1 + .text.spi_flash_chip_mxic_opi_set_write_protect + 0x4037cd2c 0x6a zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037cd2c spi_flash_chip_mxic_opi_set_write_protect + *fill* 0x4037cd96 0x2 + .text.spi_flash_chip_mxic_opi_erase_chip + 0x4037cd98 0x86 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037cd98 spi_flash_chip_mxic_opi_erase_chip + *fill* 0x4037ce1e 0x2 + .text.spi_flash_chip_mxic_opi_erase_sector + 0x4037ce20 0x89 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037ce20 spi_flash_chip_mxic_opi_erase_sector + *fill* 0x4037cea9 0x3 + .text.spi_flash_chip_mxic_opi_erase_block + 0x4037ceac 0x89 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037ceac spi_flash_chip_mxic_opi_erase_block + *fill* 0x4037cf35 0x3 + .text.spi_flash_chip_mxic_opi_read_id + 0x4037cf38 0xc3 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037cf38 spi_flash_chip_mxic_opi_read_id + *fill* 0x4037cffb 0x1 + .text.spi_flash_chip_mxic_opi_get_write_protect + 0x4037cffc 0x2c zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037cffc spi_flash_chip_mxic_opi_get_write_protect + .text.spi_flash_chip_mxic_opi_write + 0x4037d028 0x94 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d028 spi_flash_chip_mxic_opi_write + .text.spi_flash_chip_mxic_opi_page_program + 0x4037d0bc 0x88 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d0bc spi_flash_chip_mxic_opi_page_program + .text.spi_flash_chip_mxic_opi_get_io_mode + 0x4037d144 0x76 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d144 spi_flash_chip_mxic_opi_get_io_mode + *fill* 0x4037d1ba 0x2 + .text.spi_flash_chip_mxic_opi_read_reg + 0x4037d1bc 0x5b zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d1bc spi_flash_chip_mxic_opi_read_reg + *fill* 0x4037d217 0x1 + .text.spi_flash_chip_mxic_opi_probe + 0x4037d218 0x1c zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d218 spi_flash_chip_mxic_opi_probe + .text.spi_flash_chip_mxic_opi_detect_size + 0x4037d234 0x34 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d234 spi_flash_chip_mxic_opi_detect_size + .text.spi_flash_chip_mxic_opi_get_caps + 0x4037d268 0x7 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d268 spi_flash_chip_mxic_opi_get_caps + *fill* 0x4037d26f 0x0 + *fill* 0x4037d26f 0x0 + *fill* 0x4037d26f 0x0 + *fill* 0x4037d26f 0x0 + *fill* 0x4037d26f 0x1 + .text.spi_flash_chip_xmic_opi_set_io_mode + 0x4037d270 0x7 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d270 spi_flash_chip_xmic_opi_set_io_mode + *fill* 0x4037d277 0x1 + .text.spi_flash_chip_xmic_opi_config_host_io_mode + 0x4037d278 0x38 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x4037d278 spi_flash_chip_xmic_opi_config_host_io_mode + *fill* 0x4037d2b0 0x0 + *fill* 0x4037d2b0 0x0 + *libzephyr.a:spi_flash_chip_th.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037d2b0 0x0 + .text.spi_flash_chip_th_probe + 0x4037d2b0 0x22 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + 0x4037d2b0 spi_flash_chip_th_probe + *fill* 0x4037d2d2 0x2 + .text.spi_flash_chip_th_get_caps + 0x4037d2d4 0x7 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + 0x4037d2d4 spi_flash_chip_th_get_caps + *libzephyr.a:spi_flash_chip_winbond.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037d2db 0x1 + .text.spi_flash_chip_winbond_suspend_cmd_conf + 0x4037d2dc 0x1d zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4037d2dc spi_flash_chip_winbond_suspend_cmd_conf + *fill* 0x4037d2f9 0x3 + .text.spi_flash_chip_winbond_read + 0x4037d2fc 0x93 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x97 (size before relaxing) + 0x4037d2fc spi_flash_chip_winbond_read + *fill* 0x4037d38f 0x1 + .text.spi_flash_chip_winbond_erase_block + 0x4037d390 0xe0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4037d390 spi_flash_chip_winbond_erase_block + .text.spi_flash_chip_winbond_erase_sector + 0x4037d470 0xdc zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4037d470 spi_flash_chip_winbond_erase_sector + .text.spi_flash_chip_winbond_page_program + 0x4037d54c 0x95 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4037d54c spi_flash_chip_winbond_page_program + *fill* 0x4037d5e1 0x3 + .text.spi_flash_chip_winbond_probe + 0x4037d5e4 0x13 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4037d5e4 spi_flash_chip_winbond_probe + *fill* 0x4037d5f7 0x1 + .text.spi_flash_chip_winbond_get_caps + 0x4037d5f8 0x14 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x4037d5f8 spi_flash_chip_winbond_get_caps + *fill* 0x4037d60c 0x0 + *fill* 0x4037d60c 0x0 + *libzephyr.a:memspi_host_driver.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .text.memspi_host_read_status_hs + 0x4037d60c 0x3a zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d60c memspi_host_read_status_hs + *fill* 0x4037d646 0x2 + .text.memspi_host_erase_chip + 0x4037d648 0x23 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d648 memspi_host_erase_chip + *fill* 0x4037d66b 0x1 + .text.memspi_host_set_write_protect + 0x4037d66c 0x2c zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d66c memspi_host_set_write_protect + .text.memspi_host_read_id_hs + 0x4037d698 0x7e zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d698 memspi_host_read_id_hs + *fill* 0x4037d716 0x2 + .text.memspi_host_flush_cache + 0x4037d718 0x19 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d718 memspi_host_flush_cache + *fill* 0x4037d731 0x3 + .text.memspi_host_erase_sector + 0x4037d734 0x36 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d734 memspi_host_erase_sector + *fill* 0x4037d76a 0x2 + .text.memspi_host_erase_block + 0x4037d76c 0x37 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d76c memspi_host_erase_block + *fill* 0x4037d7a3 0x1 + .text.memspi_host_program_page + 0x4037d7a4 0x3e zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d7a4 memspi_host_program_page + *fill* 0x4037d7e2 0x2 + .text.memspi_host_init_pointers + 0x4037d7e4 0x54 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d7e4 memspi_host_init_pointers + *fill* 0x4037d838 0x0 + *fill* 0x4037d838 0x0 + *fill* 0x4037d838 0x0 + .text.memspi_host_write_data_slicer + 0x4037d838 0x33 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d838 memspi_host_write_data_slicer + *fill* 0x4037d86b 0x1 + .text.memspi_host_read_data_slicer + 0x4037d86c 0x2a zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x4037d86c memspi_host_read_data_slicer + *fill* 0x4037d896 0x0 + *fill* 0x4037d896 0x0 + *fill* 0x4037d896 0x0 + *fill* 0x4037d896 0x0 + *fill* 0x4037d896 0x0 + *fill* 0x4037d896 0x0 + *libzephyr.a:flash_brownout_hook.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:spi_flash_wrap.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:spi_flash_hpm_enable.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:spi_flash_oct_flash_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037d896 0x2 + .text.s_probe_mxic_chip + 0x4037d898 0x36 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + *fill* 0x4037d8ce 0x2 + .text.s_mxic_set_required_regs + 0x4037d8d0 0x1e zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + *fill* 0x4037d8ee 0x2 + .text.s_flash_init_mxic + 0x4037d8f0 0x13c zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0x144 (size before relaxing) + .text.esp_opiflash_init + 0x4037da2c 0x5b zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0x4037da2c esp_opiflash_init + *fill* 0x4037da87 0x0 + *fill* 0x4037da87 0x0 + *libzephyr.a:flash_ops.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:spi_flash_os_func_app.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037da87 0x1 + .text.get_buffer_malloc + 0x4037da88 0x1d zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + *fill* 0x4037daa5 0x3 + .text.spi_flash_os_check_yield + 0x4037daa8 0x15 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + *fill* 0x4037dabd 0x3 + .text.release_buffer_malloc + 0x4037dac0 0xa zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0xe (size before relaxing) + *fill* 0x4037daca 0x2 + .text.delay_us + 0x4037dacc 0x10 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .text.spi_flash_os_yield + 0x4037dadc 0x11 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + *fill* 0x4037daed 0x3 + .text.esp_flash_app_enable_os_functions + 0x4037daf0 0x1b zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x4037daf0 esp_flash_app_enable_os_functions + *fill* 0x4037db0b 0x1 + .text.main_flash_region_protected + 0x4037db0c 0x7 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + *fill* 0x4037db13 0x0 + *fill* 0x4037db13 0x0 + *fill* 0x4037db13 0x0 + *fill* 0x4037db13 0x0 + *fill* 0x4037db13 0x0 + *libzephyr.a:spi_flash_os_func_noos.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037db13 0x1 + .text.delay_us + 0x4037db14 0x10 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + *fill* 0x4037db24 0x0 + *libzephyr.a:esp_flash_api.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + .text.check_chip_pointer_default + 0x4037db24 0x1f zephyr/libzephyr.a(esp_flash_api.c.obj) + *fill* 0x4037db43 0x1 + .text.flash_end_flush_cache + 0x4037db44 0x46 zephyr/libzephyr.a(esp_flash_api.c.obj) + *fill* 0x4037db8a 0x2 + .text.detect_spi_flash_chip + 0x4037db8c 0x64 zephyr/libzephyr.a(esp_flash_api.c.obj) + .text.spiflash_start_default + 0x4037dbf0 0x11 zephyr/libzephyr.a(esp_flash_api.c.obj) + *fill* 0x4037dc01 0x3 + .text.esp_flash_read_chip_id + 0x4037dc04 0x10 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x14 (size before relaxing) + 0x4037dc04 esp_flash_read_chip_id + .text.esp_flash_get_physical_size + 0x4037dc14 0x5e zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4037dc14 esp_flash_get_physical_size + *fill* 0x4037dc72 0x2 + .text.esp_flash_is_quad_mode + 0x4037dc74 0x1e zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x4037dc74 esp_flash_is_quad_mode + *fill* 0x4037dc92 0x2 + .text.esp_flash_init_main + 0x4037dc94 0x120 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0x128 (size before relaxing) + 0x4037dc94 esp_flash_init_main + .text.spiflash_start_core + 0x4037ddb4 0x4b zephyr/libzephyr.a(esp_flash_api.c.obj) + *fill* 0x4037ddff 0x1 + .text.spiflash_end_default + 0x4037de00 0x1f zephyr/libzephyr.a(esp_flash_api.c.obj) + *fill* 0x4037de1f 0x0 + *fill* 0x4037de1f 0x0 + *fill* 0x4037de1f 0x0 + *fill* 0x4037de1f 0x0 + *fill* 0x4037de1f 0x0 + *fill* 0x4037de1f 0x0 + *libzephyr.a:esp_err.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *(SORT_BY_ALIGNMENT(.literal.esp_system_abort) SORT_BY_ALIGNMENT(.text.esp_system_abort)) + *(SORT_BY_ALIGNMENT(.literal.esp_restart_noos) SORT_BY_ALIGNMENT(.text.esp_restart_noos)) + *(SORT_BY_ALIGNMENT(.literal.esp_system_reset_modules_on_exit) SORT_BY_ALIGNMENT(.text.esp_system_reset_modules_on_exit)) + *(SORT_BY_ALIGNMENT(.literal.esp_cpu_stall) SORT_BY_ALIGNMENT(.text.esp_cpu_stall)) + *(SORT_BY_ALIGNMENT(.literal.esp_cpu_unstall) SORT_BY_ALIGNMENT(.text.esp_cpu_unstall)) + *(SORT_BY_ALIGNMENT(.literal.esp_cpu_reset) SORT_BY_ALIGNMENT(.text.esp_cpu_reset)) + *(SORT_BY_ALIGNMENT(.literal.esp_cpu_wait_for_intr) SORT_BY_ALIGNMENT(.text.esp_cpu_wait_for_intr)) + *(SORT_BY_ALIGNMENT(.literal.esp_cpu_compare_and_set) SORT_BY_ALIGNMENT(.text.esp_cpu_compare_and_set)) + *(SORT_BY_ALIGNMENT(.literal.esp_gpio_reserve_pins) SORT_BY_ALIGNMENT(.text.esp_gpio_reserve_pins)) + *(SORT_BY_ALIGNMENT(.literal.esp_gpio_is_pin_reserved) SORT_BY_ALIGNMENT(.text.esp_gpio_is_pin_reserved)) + *(SORT_BY_ALIGNMENT(.literal.rtc_vddsdio_get_config) SORT_BY_ALIGNMENT(.text.rtc_vddsdio_get_config)) + *(SORT_BY_ALIGNMENT(.literal.rtc_vddsdio_set_config) SORT_BY_ALIGNMENT(.text.rtc_vddsdio_set_config)) + *libzephyr.a:esp_memory_utils.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:rtc_clk.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037de1f 0x1 + .text.rtc_clk_32k_enable + 0x4037de20 0xce zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037de20 rtc_clk_32k_enable + *fill* 0x4037deee 0x2 + .text.rtc_clk_32k_enable_external + 0x4037def0 0x59 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037def0 rtc_clk_32k_enable_external + *fill* 0x4037df49 0x3 + .text.rtc_clk_8m_enable + 0x4037df4c 0x7e zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037df4c rtc_clk_8m_enable + *fill* 0x4037dfca 0x2 + .text.rtc_clk_slow_src_set + 0x4037dfcc 0xa8 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037dfcc rtc_clk_slow_src_set + .text.rtc_clk_slow_src_get + 0x4037e074 0x10 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037e074 rtc_clk_slow_src_get + .text.rtc_clk_fast_src_set + 0x4037e084 0x42 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037e084 rtc_clk_fast_src_set + *fill* 0x4037e0c6 0x2 + .text.rtc_clk_cpu_freq_mhz_to_config + 0x4037e0c8 0x56 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037e0c8 rtc_clk_cpu_freq_mhz_to_config + *fill* 0x4037e11e 0x2 + .text.rtc_clk_xtal_freq_update + 0x4037e120 0x28 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037e120 rtc_clk_xtal_freq_update + .text.rtc_clk_cpu_freq_to_pll_mhz + 0x4037e148 0x15b zephyr/libzephyr.a(rtc_clk.c.obj) + 0x16f (size before relaxing) + *fill* 0x4037e2a3 0x1 + .text.rtc_clk_cpu_freq_set_config + 0x4037e2a4 0x1c7 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x1e3 (size before relaxing) + 0x4037e2a4 rtc_clk_cpu_freq_set_config + *fill* 0x4037e46b 0x1 + .text.rtc_clk_cpu_freq_set_xtal + 0x4037e46c 0x25 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037e46c rtc_clk_cpu_freq_set_xtal + *fill* 0x4037e491 0x3 + .text.rtc_clk_divider_set + 0x4037e494 0x46 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037e494 rtc_clk_divider_set + *fill* 0x4037e4da 0x2 + .text.rtc_clk_8m_divider_set + 0x4037e4dc 0x44 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x4037e4dc rtc_clk_8m_divider_set + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *fill* 0x4037e520 0x0 + *libzephyr.a:rtc_clk_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:rtc_sleep.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .text.rtc_sleep_pu + 0x4037e520 0x189 zephyr/libzephyr.a(rtc_sleep.c.obj) + 0x4037e520 rtc_sleep_pu + *libzephyr.a:rtc_time.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037e6a9 0x3 + .text.rtc_clk_cal_internal + 0x4037e6ac 0x21e zephyr/libzephyr.a(rtc_time.c.obj) + 0x222 (size before relaxing) + *fill* 0x4037e8ca 0x2 + .text.rtc_clk_cal + 0x4037e8cc 0xa8 zephyr/libzephyr.a(rtc_time.c.obj) + 0xb0 (size before relaxing) + 0x4037e8cc rtc_clk_cal + .text.rtc_time_us_to_slowclk + 0x4037e974 0x78 zephyr/libzephyr.a(rtc_time.c.obj) + 0x4037e974 rtc_time_us_to_slowclk + .text.rtc_time_get + 0x4037e9ec 0x2a zephyr/libzephyr.a(rtc_time.c.obj) + 0x4037e9ec rtc_time_get + *fill* 0x4037ea16 0x2 + .text.rtc_clk_freq_cal + 0x4037ea18 0x1c zephyr/libzephyr.a(rtc_time.c.obj) + 0x4037ea18 rtc_clk_freq_to_period + 0x4037ea18 rtc_clk_freq_cal + *fill* 0x4037ea34 0x0 + *fill* 0x4037ea34 0x0 + *fill* 0x4037ea34 0x0 + *libzephyr.a:systimer.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .text.systimer_ticks_to_us + 0x4037ea34 0xe zephyr/libzephyr.a(systimer.c.obj) + 0x4037ea34 systimer_ticks_to_us + *fill* 0x4037ea42 0x2 + .text.systimer_us_to_ticks + 0x4037ea44 0x10 zephyr/libzephyr.a(systimer.c.obj) + 0x4037ea44 systimer_us_to_ticks + *libzephyr.a:mspi_timing_config.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .text.mspi_timing_config_set_flash_clock + 0x4037ea54 0x5a zephyr/libzephyr.a(mspi_timing_config.c.obj) + 0x4037ea54 mspi_timing_config_set_flash_clock + *fill* 0x4037eaae 0x2 + .text.mspi_timing_config_set_psram_clock + 0x4037eab0 0x4b zephyr/libzephyr.a(mspi_timing_config.c.obj) + 0x4037eab0 mspi_timing_config_set_psram_clock + *fill* 0x4037eafb 0x0 + *libzephyr.a:mspi_timing_tuning.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037eafb 0x1 + .text.mspi_timing_enter_low_speed_mode + 0x4037eafc 0x1c zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x20 (size before relaxing) + 0x4037eafc mspi_timing_enter_low_speed_mode + .text.mspi_timing_enter_high_speed_mode + 0x4037eb18 0x12 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x4037eb18 mspi_timing_enter_high_speed_mode + *fill* 0x4037eb2a 0x2 + .text.mspi_timing_change_speed_mode_cache_safe + 0x4037eb2c 0x1c zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x2a (size before relaxing) + 0x4037eb2c mspi_timing_change_speed_mode_cache_safe + *fill* 0x4037eb48 0x0 + .text.spi_timing_get_flash_timing_param + 0x4037eb48 0x9 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x4037eb48 spi_timing_get_flash_timing_param + *fill* 0x4037eb51 0x3 + .text.mspi_timing_set_pin_drive_strength + 0x4037eb54 0x5f zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x4037eb54 mspi_timing_set_pin_drive_strength + *fill* 0x4037ebb3 0x1 + .text.mspi_timing_flash_tuning + 0x4037ebb4 0x5 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x4037ebb4 mspi_timing_flash_tuning + *fill* 0x4037ebb9 0x0 + *fill* 0x4037ebb9 0x0 + *fill* 0x4037ebb9 0x3 + .text.spi_flash_timing_is_tuned + 0x4037ebbc 0x7 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x4037ebbc spi_flash_timing_is_tuned + *fill* 0x4037ebc3 0x0 + *fill* 0x4037ebc3 0x0 + *libzephyr.a:regi2c_ctrl.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037ebc3 0x1 + .text.regi2c_ctrl_read_reg_mask + 0x4037ebc4 0x25 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x4037ebc4 regi2c_ctrl_read_reg_mask + *fill* 0x4037ebe9 0x3 + .text.regi2c_ctrl_write_reg + 0x4037ebec 0x20 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x4037ebec regi2c_ctrl_write_reg + .text.regi2c_ctrl_write_reg_mask + 0x4037ec0c 0x26 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x4037ec0c regi2c_ctrl_write_reg_mask + *fill* 0x4037ec32 0x2 + .text.regi2c_saradc_enable + 0x4037ec34 0x41 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x45 (size before relaxing) + 0x4037ec34 regi2c_saradc_enable + *fill* 0x4037ec75 0x3 + .text.regi2c_saradc_disable + 0x4037ec78 0x34 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x38 (size before relaxing) + 0x4037ec78 regi2c_saradc_disable + *fill* 0x4037ecac 0x0 + *fill* 0x4037ecac 0x0 + *fill* 0x4037ecac 0x0 + *fill* 0x4037ecac 0x0 + *(SORT_BY_ALIGNMENT(.literal.sar_periph_ctrl_power_enable) SORT_BY_ALIGNMENT(.text.sar_periph_ctrl_power_enable)) + *(SORT_BY_ALIGNMENT(.literal.GPIO_HOLD_MASK) SORT_BY_ALIGNMENT(.text.GPIO_HOLD_MASK)) + *libzephyr.a:esp_rom_cache_esp32s2_esp32s3.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .text.Cache_Suspend_ICache + 0x4037ecac 0x1b zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x4037ecac Cache_Suspend_ICache + *fill* 0x4037ecc7 0x1 + .text.Cache_Suspend_DCache + 0x4037ecc8 0x24 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x4037ecc8 Cache_Suspend_DCache + .text.Cache_Freeze_ICache_Enable + 0x4037ecec 0x1c zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x4037ecec Cache_Freeze_ICache_Enable + .text.Cache_Freeze_DCache_Enable + 0x4037ed08 0x24 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x4037ed08 Cache_Freeze_DCache_Enable + .text.Cache_WriteBack_Addr + 0x4037ed2c 0x90 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x4037ed2c Cache_WriteBack_Addr + *fill* 0x4037edbc 0x0 + *libzephyr.a:cache_utils.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + .text.spi_flash_init_lock + 0x4037edbc 0x5 zephyr/libzephyr.a(cache_utils.c.obj) + 0x4037edbc spi_flash_init_lock + *libzephyr.a:esp_rom_spiflash.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037edc1 0x3 + .text.esp_rom_opiflash_cache_mode_config + 0x4037edc4 0xe6 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + 0x4037edc4 esp_rom_opiflash_cache_mode_config + *fill* 0x4037eeaa 0x0 + *libzephyr.a:esp_rom_sys.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037eeaa 0x2 + .text.esp_rom_install_channel_putc + 0x4037eeac 0x2e zephyr/libzephyr.a(esp_rom_sys.c.obj) + 0x4037eeac esp_rom_install_channel_putc + *fill* 0x4037eeda 0x0 + *libzephyr.a:esp_rom_systimer.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_rom_wdt.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_rom_efuse.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_cache_utils.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037eeda 0x2 + .text.esp_cache_suspend_ext_mem_cache + 0x4037eedc 0xf zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4037eedc esp_cache_suspend_ext_mem_cache + *fill* 0x4037eeeb 0x1 + .text.esp_cache_resume_ext_mem_cache + 0x4037eeec 0xf zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4037eeec esp_cache_resume_ext_mem_cache + *fill* 0x4037eefb 0x1 + .text.esp_cache_freeze_ext_mem_cache + 0x4037eefc 0xf zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4037eefc esp_cache_freeze_ext_mem_cache + *fill* 0x4037ef0b 0x1 + .text.esp_cache_unfreeze_ext_mem_cache + 0x4037ef0c 0xf zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x4037ef0c esp_cache_unfreeze_ext_mem_cache + *fill* 0x4037ef1b 0x0 + *fill* 0x4037ef1b 0x0 + *fill* 0x4037ef1b 0x0 + *fill* 0x4037ef1b 0x0 + *libzephyr.a:esp_cache_msync.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037ef1b 0x1 + .text.esp_cache_sync_ops_enter_critical_section + 0x4037ef1c 0xd zephyr/libzephyr.a(esp_cache_msync.c.obj) + 0x4037ef1c esp_cache_sync_ops_enter_critical_section + *fill* 0x4037ef29 0x3 + .text.esp_cache_sync_ops_exit_critical_section + 0x4037ef2c 0x10 zephyr/libzephyr.a(esp_cache_msync.c.obj) + 0x4037ef2c esp_cache_sync_ops_exit_critical_section + .text.esp_cache_msync + 0x4037ef3c 0x12d zephyr/libzephyr.a(esp_cache_msync.c.obj) + 0x131 (size before relaxing) + 0x4037ef3c esp_cache_msync + *fill* 0x4037f069 0x0 + *fill* 0x4037f069 0x0 + 0x4037f06c . = ALIGN (0x4) + *fill* 0x4037f069 0x3 + +.loader.text 0x4037f06c 0x36c load address 0x0000b090 + 0x4037f06c . = ALIGN (0x4) + 0x4037f06c _loader_text_start = ABSOLUTE (.) + *libzephyr.a:bootloader_clock_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_wdt.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_flash.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_flash_config_esp32s3.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_clock_loader.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_efuse.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_utility.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_sha.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:bootloader_panic.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_image_format.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:flash_encrypt.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:flash_encryption_secure_features.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:flash_partitions.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:flash_qio_mode.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:spi_flash_hal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + .literal.get_flash_clock_divider + 0x4037f06c 0x10 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_hal_init + 0x4037f07c 0x10 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x20 (size before relaxing) + .literal.spi_flash_hal_supports_direct_write + 0x4037f08c 0x4 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .literal.spi_flash_hal_supports_direct_read + 0x4037f090 0x0 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_init_default_chip + 0x4037f090 0x40 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x68 (size before relaxing) + .literal.esp_flash_app_init + 0x4037f0d0 0x4 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x14 (size before relaxing) + .text.get_flash_clock_divider + 0x4037f0d4 0x33 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x3b (size before relaxing) + *fill* 0x4037f107 0x1 + .text.spi_flash_hal_init + 0x4037f108 0x181 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x185 (size before relaxing) + 0x4037f108 spi_flash_hal_init + *fill* 0x4037f289 0x3 + .text.spi_flash_hal_supports_direct_write + 0x4037f28c 0x12 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x4037f28c spi_flash_hal_supports_direct_write + *fill* 0x4037f29e 0x2 + .text.spi_flash_hal_supports_direct_read + 0x4037f2a0 0x12 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x4037f2a0 spi_flash_hal_supports_direct_read + *fill* 0x4037f2b2 0x0 + *fill* 0x4037f2b2 0x0 + *fill* 0x4037f2b2 0x0 + *libzephyr.a:spi_flash_hal_common.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_flash_spi_init.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *fill* 0x4037f2b2 0x2 + .text.esp_flash_init_default_chip + 0x4037f2b4 0x10c zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x11c (size before relaxing) + 0x4037f2b4 esp_flash_init_default_chip + .text.esp_flash_app_init + 0x4037f3c0 0x17 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x1f (size before relaxing) + 0x4037f3c0 esp_flash_app_init + *fill* 0x4037f3d7 0x0 + *libzephyr.a:secure_boot.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:secure_boot_secure_features.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:secure_boot_signatures_bootloader.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_efuse_table.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_efuse_fields.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_efuse_api.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_efuse_utility.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:esp_efuse_api_key_esp32xx.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:mpu_hal.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *libzephyr.a:cpu_region_protect.*(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + *(SORT_BY_ALIGNMENT(.fini.literal)) + *(.fini) + 0x4037f3d8 . = ALIGN (0x4) + *fill* 0x4037f3d7 0x1 + 0x4037f3d8 _loader_text_end = ABSOLUTE (.) + +.iram0.text_end + 0x4037f3d8 0x10 load address 0x0000b3fc + 0x4037f3e8 . = (ALIGN (0x4) + 0x10) + *fill* 0x4037f3d8 0x10 + 0x4037f3e8 _iram_text_end = ABSOLUTE (.) + +.iram0.data 0x4037f3e8 0x0 load address 0x0000b3fc + 0x4037f3e8 . = ALIGN (0x4) + 0x4037f3e8 _iram_data_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.iram.data)) + *(SORT_BY_ALIGNMENT(.iram.data*)) + 0x4037f3e8 _iram_data_end = ABSOLUTE (.) + +.iram0.bss 0x4037f3e8 0x0 load address 0x0000b3fc + 0x4037f3e8 . = ALIGN (0x4) + 0x4037f3e8 _iram_bss_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.iram.bss)) + *(SORT_BY_ALIGNMENT(.iram.bss*)) + 0x4037f3e8 _iram_bss_end = ABSOLUTE (.) + 0x4037f3e8 . = ALIGN (0x4) + 0x4037f3e8 _iram_end = ABSOLUTE (.) + +.dram0.dummy 0x3fc88000 0x73f0 + 0x3fc8f3e8 . = (ORIGIN (dram0_0_seg) + (MAX (_iram_end, 0x40378000) - 0x40378000)) + *fill* 0x3fc88000 0x73e8 + 0x3fc8f3f0 . = ALIGN (0x10) + *fill* 0x3fc8f3e8 0x8 + +.dram0.data 0x3fc8f3f0 0x1e7c load address 0x0000b3fc + 0x3fc8f3f0 . = ALIGN (0x8) + 0x3fc8f3f0 _data_start = ABSOLUTE (.) + 0x3fc8f3f0 __data_start = ABSOLUTE (.) + 0x3fc8f3f0 _btdm_data_start = ABSOLUTE (.) + *libbtdm_app.a:(SORT_BY_ALIGNMENT(.data) SORT_BY_ALIGNMENT(.data.*)) + 0x3fc8f3f0 . = ALIGN (0x4) + 0x3fc8f3f0 _btdm_data_end = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.data)) + *(SORT_BY_ALIGNMENT(.data.*)) + .data.s_config + 0x3fc8f3f0 0x70 zephyr/libzephyr.a(sleep_modes.c.obj) + .data.spi_data_0 + 0x3fc8f460 0x180 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .data._char_out + 0x3fc8f5e0 0x4 zephyr/libzephyr.a(printk.c.obj) + .data.map 0x3fc8f5e4 0x18 zephyr/libzephyr.a(loader.c.obj) + .data.timestamp_func + 0x3fc8f5fc 0x4 zephyr/libzephyr.a(log_core.c.obj) + .data.backend_cb_log_backend_uart + 0x3fc8f600 0x8 zephyr/libzephyr.a(log_backend_uart.c.obj) + .data.rom_func$0 + 0x3fc8f608 0x34 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .data.registered_chip_funcs + 0x3fc8f63c 0x8 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .data.esp_flash_registered_chips + 0x3fc8f644 0x4 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + 0x3fc8f644 esp_flash_registered_chips + .data.default_registered_chips + 0x3fc8f648 0x24 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .data.g_rtc_dbias_pvt_non_240m + 0x3fc8f66c 0x4 zephyr/libzephyr.a(rtc_init.c.obj) + 0x3fc8f66c g_rtc_dbias_pvt_non_240m + .data.g_dig_dbias_pvt_non_240m + 0x3fc8f670 0x4 zephyr/libzephyr.a(rtc_init.c.obj) + 0x3fc8f670 g_dig_dbias_pvt_non_240m + .data.g_rtc_dbias_pvt_240m + 0x3fc8f674 0x4 zephyr/libzephyr.a(rtc_init.c.obj) + 0x3fc8f674 g_rtc_dbias_pvt_240m + .data.g_dig_dbias_pvt_240m + 0x3fc8f678 0x4 zephyr/libzephyr.a(rtc_init.c.obj) + 0x3fc8f678 g_dig_dbias_pvt_240m + .data._putc1 0x3fc8f67c 0x4 zephyr/libzephyr.a(esp_rom_sys.c.obj) + 0x3fc8f67c _putc1 + .data.current_read_mapping + 0x3fc8f680 0x4 zephyr/libzephyr.a(bootloader_flash.c.obj) + .data.__stdout + 0x3fc8f684 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .data.gpio_config_1 + 0x3fc8f694 0x10 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .data.gpio_config_0 + 0x3fc8f6a4 0x10 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .data.timer_work + 0x3fc8f6b4 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x3fc8f6b4 timer_work + .data.uart_esp32_data_0 + 0x3fc8f6c4 0x14 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .data.slice_ticks + 0x3fc8f6d8 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .data.timeout_list + 0x3fc8f6dc 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .data.wait_q$0 + 0x3fc8f6e4 0x8 zephyr/kernel/libkernel.a(poll.c.obj) + .data.MaxPayloadLength + 0x3fc8f6ec 0x1 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc8f6ec MaxPayloadLength + *(SORT_BY_ALIGNMENT(.gnu.linkonce.d.*)) + *(SORT_BY_ALIGNMENT(.data1)) + *(SORT_BY_ALIGNMENT(.sdata)) + *(SORT_BY_ALIGNMENT(.sdata.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.s.*)) + *(SORT_BY_ALIGNMENT(.sdata2)) + *(SORT_BY_ALIGNMENT(.sdata2.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.s2.*)) + *(SORT_BY_ALIGNMENT(.srodata)) + *(SORT_BY_ALIGNMENT(.srodata.*)) + *libarch__xtensa__core.a:(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc8f6ed 0x3 + .rodata.CSWTCH$3 + 0x3fc8f6f0 0x104 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .rodata.xtensa_lvl_mask + 0x3fc8f7f4 0x1c zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .rodata.xtensa_exccause.str1.1 + 0x3fc8f810 0x11 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .rodata.str1.1 + 0x3fc8f810 0x1c9 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .rodata.z_irq_spurious.str1.1 + 0x3fc8f810 0x2d zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .rodata.xtensa_dump_stack$part$0.str1.1 + 0x3fc8f810 0xbb zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .rodata.xtensa_excint1_c.str1.1 + 0x3fc8f810 0xc7 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + *libkernel.a:fatal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.CSWTCH$406 + 0x3fc8f810 0x14 zephyr/kernel/libkernel.a(fatal.c.obj) + .rodata.k_sys_fatal_error_handler.str1.1 + 0x3fc8f824 0xf zephyr/kernel/libkernel.a(fatal.c.obj) + .rodata.z_fatal_error.str1.1 + 0x3fc8f824 0x56 zephyr/kernel/libkernel.a(fatal.c.obj) + .rodata.str1.1 + 0x3fc8f824 0x4a zephyr/kernel/libkernel.a(fatal.c.obj) + *libkernel.a:init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.levels$0 + 0x3fc8f824 0x18 zephyr/kernel/libkernel.a(init.c.obj) + .rodata.z_cstart.str1.1 + 0x3fc8f83c 0x5 zephyr/kernel/libkernel.a(init.c.obj) + .rodata.str1.1 + 0x3fc8f83c 0x3 zephyr/kernel/libkernel.a(init.c.obj) + *libzephyr.a:cbprintf_complete.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:log_core.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.mpsc_config + 0x3fc8f83c 0x14 zephyr/libzephyr.a(log_core.c.obj) + .rodata.format_table + 0x3fc8f850 0x10 zephyr/libzephyr.a(log_core.c.obj) + .rodata.enable_logger.str1.1 + 0x3fc8f860 0x8 zephyr/libzephyr.a(log_core.c.obj) + .rodata.str1.1 + 0x3fc8f860 0x4 zephyr/libzephyr.a(log_core.c.obj) + *libzephyr.a:log_backend_uart.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.lbu_cb_ctx + 0x3fc8f860 0x8 zephyr/libzephyr.a(log_backend_uart.c.obj) + .rodata.lbu_output + 0x3fc8f868 0x10 zephyr/libzephyr.a(log_backend_uart.c.obj) + .rodata.log_backend_uart_api + 0x3fc8f878 0x1c zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x3fc8f878 log_backend_uart_api + .rodata.str1.1 + 0x3fc8f894 0x1a zephyr/libzephyr.a(log_backend_uart.c.obj) + *libzephyr.a:log_output.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.colors + 0x3fc8f894 0x14 zephyr/libzephyr.a(log_output.c.obj) + .rodata.severity + 0x3fc8f8a8 0x14 zephyr/libzephyr.a(log_output.c.obj) + .rodata.newline_print.str1.1 + 0x3fc8f8bc 0x5 zephyr/libzephyr.a(log_output.c.obj) + .rodata.log_output_process.str1.1 + 0x3fc8f8bc 0x51 zephyr/libzephyr.a(log_output.c.obj) + .rodata.log_output_dropped_process.str1.1 + 0x3fc8f8bc 0x3 zephyr/libzephyr.a(log_output.c.obj) + .rodata.postfix$0 + 0x3fc8f8bc 0x1c zephyr/libzephyr.a(log_output.c.obj) + .rodata.prefix$1 + 0x3fc8f8d8 0xc zephyr/libzephyr.a(log_output.c.obj) + .rodata.str1.1 + 0x3fc8f8e4 0x20 zephyr/libzephyr.a(log_output.c.obj) + *libzephyr.a:log_minimal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:loader.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.libc_heap_size + 0x3fc8f8e4 0x4 zephyr/libzephyr.a(loader.c.obj) + .rodata.map_rom_segments.str1.1 + 0x3fc8f8e8 0xdcb zephyr/libzephyr.a(loader.c.obj) + 0xaf (size before relaxing) + .rodata.__start.str1.1 + 0x3fc906b3 0x41 zephyr/libzephyr.a(loader.c.obj) + *libzephyr.a:flash_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.esp_flash_config.str1.1 + 0x3fc906b3 0x32 zephyr/libzephyr.a(flash_init.c.obj) + *libzephyr.a:soc_flash_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc906b3 0x1 + .rodata.init_spi_flash + 0x3fc906b4 0x20 zephyr/libzephyr.a(soc_flash_init.c.obj) + .rodata.CSWTCH$11 + 0x3fc906d4 0x20 zephyr/libzephyr.a(soc_flash_init.c.obj) + .rodata.CSWTCH$10 + 0x3fc906f4 0x40 zephyr/libzephyr.a(soc_flash_init.c.obj) + .rodata.init_spi_flash.str1.1 + 0x3fc90734 0x8c zephyr/libzephyr.a(soc_flash_init.c.obj) + .rodata.str1.1 + 0x3fc90734 0x3b zephyr/libzephyr.a(soc_flash_init.c.obj) + *libzephyr.a:console_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:soc_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata 0x3fc90734 0x8 zephyr/libzephyr.a(soc_init.c.obj) + .rodata.print_banner.str1.1 + 0x3fc9073c 0x69 zephyr/libzephyr.a(soc_init.c.obj) + .rodata.read_bootloader_header.str1.1 + 0x3fc9073c 0x31 zephyr/libzephyr.a(soc_init.c.obj) + .rodata.check_bootloader_validity.str1.1 + 0x3fc9073c 0x8f zephyr/libzephyr.a(soc_init.c.obj) + .rodata.wdt_reset_info_dump.str1.1 + 0x3fc9073c 0x3b zephyr/libzephyr.a(soc_init.c.obj) + .rodata.check_wdt_reset.str1.1 + 0x3fc9073c 0x28 zephyr/libzephyr.a(soc_init.c.obj) + *libzephyr.a:hw_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata 0x3fc9073c 0x8 zephyr/libzephyr.a(hw_init.c.obj) + .rodata.hardware_init.str1.1 + 0x3fc90744 0x3f zephyr/libzephyr.a(hw_init.c.obj) + *libzephyr.a:soc_random.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libdrivers__serial.a:uart_esp32.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata 0x3fc90744 0x28 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .rodata.__pinctrl_dev_config__device_dts_ord_64 + 0x3fc9076c 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .rodata.__pinctrl_states__device_dts_ord_64 + 0x3fc90774 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .rodata.__pinctrl_state_pins_0__device_dts_ord_64 + 0x3fc9077c 0x10 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .rodata.uart_esp32_init.str1.1 + 0x3fc9078c 0x64 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .rodata.str1.1 + 0x3fc9078c 0x19 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *libdrivers__flash.a:flash_esp32.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_mmu_map.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp32s3-mp.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:bootloader_flash.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + .rodata.CSWTCH$82 + 0x3fc9078c 0x6 zephyr/libzephyr.a(bootloader_flash.c.obj) + .rodata.bootloader_mmap.str1.1 + 0x3fc90792 0x5e zephyr/libzephyr.a(bootloader_flash.c.obj) + .rodata.esp_rom_flash_read.str1.1 + 0x3fc90792 0xb8 zephyr/libzephyr.a(bootloader_flash.c.obj) + .rodata.str1.1 + 0x3fc90792 0x40 zephyr/libzephyr.a(bootloader_flash.c.obj) + *libzephyr.a:flash_mmap.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:mmu_psram_flash.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_psram_impl_octal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_psram_impl_quad.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:efuse_hal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:mmu_hal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:spi_flash_hal_iram.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc90792 0x2 + .rodata.spi_flash_hal_configure_host_io_mode + 0x3fc90794 0x48 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .rodata.CSWTCH$57 + 0x3fc907dc 0x4 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + *libzephyr.a:spi_flash_encrypt_hal_iram.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:cache_hal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:ledc_hal_iram.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:i2c_hal_iram.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:wdt_hal_iram.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:systimer_hal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:spi_flash_hal_gpspi.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.spi_flash_hal_gpspi_configure_host_io_mode + 0x3fc907e0 0x18 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + *libzephyr.a:lldesc.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *(SORT_BY_ALIGNMENT(.rodata.esp_log_write)) + *(SORT_BY_ALIGNMENT(.rodata.esp_log_timestamp)) + *(SORT_BY_ALIGNMENT(.rodata.esp_log_early_timestamp)) + *(SORT_BY_ALIGNMENT(.rodata.esp_log_impl_lock)) + *(SORT_BY_ALIGNMENT(.rodata.esp_log_impl_lock_timeout)) + *(SORT_BY_ALIGNMENT(.rodata.esp_log_impl_unlock)) + *libzephyr.a:spi_flash_chip_boya.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.esp_flash_chip_boya + 0x3fc907f8 0x7c zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + 0x3fc907f8 esp_flash_chip_boya + .rodata.chip_name + 0x3fc90874 0x5 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + *libzephyr.a:spi_flash_chip_gd.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc90879 0x3 + .rodata.esp_flash_chip_gd + 0x3fc9087c 0x7c zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x3fc9087c esp_flash_chip_gd + .rodata.chip_name + 0x3fc908f8 0x3 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + *libzephyr.a:spi_flash_chip_generic.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc908fb 0x1 + .rodata.spi_flash_chip_generic_config_host_io_mode + 0x3fc908fc 0x18 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .rodata.esp_flash_chip_generic + 0x3fc90914 0x7c zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x3fc90914 esp_flash_chip_generic + .rodata.spi_flash_chip_generic_read.str1.1 + 0x3fc90990 0x35 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_read_unique_id.str1.1 + 0x3fc90990 0x44 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .rodata.chip_name + 0x3fc90990 0x8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .rodata.TAG 0x3fc90998 0xd zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + *libzephyr.a:spi_flash_chip_issi.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc909a5 0x3 + .rodata.esp_flash_chip_issi + 0x3fc909a8 0x7c zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0x3fc909a8 esp_flash_chip_issi + .rodata.chip_name + 0x3fc90a24 0x5 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + *libzephyr.a:spi_flash_chip_mxic.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc90a29 0x3 + .rodata.esp_flash_chip_mxic + 0x3fc90a2c 0x7c zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + 0x3fc90a2c esp_flash_chip_mxic + .rodata.chip_name + 0x3fc90aa8 0x5 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + *libzephyr.a:spi_flash_chip_mxic_opi.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc90aad 0x3 + .rodata.esp_flash_chip_mxic_opi + 0x3fc90ab0 0x7c zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x3fc90ab0 esp_flash_chip_mxic_opi + .rodata.spi_flash_chip_mxic_opi_read_id.str1.1 + 0x3fc90b2c 0x16 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .rodata.chip_name + 0x3fc90b2c 0xb zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + *libzephyr.a:spi_flash_chip_th.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc90b37 0x1 + .rodata.esp_flash_chip_th + 0x3fc90b38 0x7c zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + 0x3fc90b38 esp_flash_chip_th + .rodata.chip_name + 0x3fc90bb4 0x3 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + *libzephyr.a:spi_flash_chip_winbond.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc90bb7 0x1 + .rodata.esp_flash_chip_winbond + 0x3fc90bb8 0x7c zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x3fc90bb8 esp_flash_chip_winbond + .rodata.spi_flash_chip_winbond_read.str1.1 + 0x3fc90c34 0x35 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .rodata.chip_name + 0x3fc90c34 0x8 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .rodata.TAG 0x3fc90c3c 0x8 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + *libzephyr.a:memspi_host_driver.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.esp_flash_gpspi_host + 0x3fc90c44 0x58 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .rodata.memspi_host_read_id_hs.str1.1 + 0x3fc90c9c 0x16 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .rodata.TAG 0x3fc90c9c 0x7 zephyr/libzephyr.a(memspi_host_driver.c.obj) + *libzephyr.a:flash_brownout_hook.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:spi_flash_wrap.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:spi_flash_hpm_enable.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:spi_flash_oct_flash_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc90ca3 0x1 + .rodata.opiflash_cmd_def_mxic$1 + 0x3fc90ca4 0x5c zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .rodata.opi_flash_func_mxic + 0x3fc90d00 0xc zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .rodata.s_probe_mxic_chip.str1.1 + 0x3fc90d0c 0x47 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .rodata.esp_opiflash_init.str1.1 + 0x3fc90d0c 0x5d zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + *libzephyr.a:flash_qio_mode.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:flash_ops.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:spi_flash_os_func_app.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:spi_flash_os_func_noos.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_flash_api.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + .rodata 0x3fc90d0c 0x2c2 zephyr/libzephyr.a(esp_flash_api.c.obj) + .rodata.io_mode_str + 0x3fc90fce 0xb4 zephyr/libzephyr.a(esp_flash_api.c.obj) + *libzephyr.a:esp_cache_utils.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_cache_msync.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.esp_cache_msync.str1.1 + 0x3fc91082 0x1d9 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .rodata.__FUNCTION__$1 + 0x3fc91082 0x10 zephyr/libzephyr.a(esp_cache_msync.c.obj) + *(SORT_BY_ALIGNMENT(.rodata.esp_cpu_stall)) + *(SORT_BY_ALIGNMENT(.rodata.esp_cpu_unstall)) + *(SORT_BY_ALIGNMENT(.rodata.esp_cpu_reset)) + *(SORT_BY_ALIGNMENT(.rodata.esp_cpu_wait_for_intr)) + *(SORT_BY_ALIGNMENT(.rodata.esp_cpu_compare_and_set)) + *(SORT_BY_ALIGNMENT(.rodata.esp_gpio_reserve_pins)) + *(SORT_BY_ALIGNMENT(.rodata.esp_gpio_is_pin_reserved)) + *(SORT_BY_ALIGNMENT(.rodata.rtc_vddsdio_get_config)) + *(SORT_BY_ALIGNMENT(.rodata.rtc_vddsdio_set_config)) + *libzephyr.a:esp_memory_utils.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:rtc_clk.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.str1.1 + 0x3fc91092 0x3f zephyr/libzephyr.a(rtc_clk.c.obj) + *libzephyr.a:rtc_clk_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:systimer.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:mspi_timing_config.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:mspi_timing_tuning.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *fill* 0x3fc91092 0x2 + .rodata 0x3fc91094 0x24 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + *(SORT_BY_ALIGNMENT(.rodata.sar_periph_ctrl_power_enable)) + *(SORT_BY_ALIGNMENT(.rodata.GPIO_HOLD_MASK)) + *libzephyr.a:esp_rom_cache_esp32s2_esp32s3.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:cache_utils.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.str1.1 + 0x3fc910b8 0x4c zephyr/libzephyr.a(cache_utils.c.obj) + *libzephyr.a:esp_rom_spiflash.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_rom_sys.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_rom_systimer.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_rom_wdt.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_rom_efuse.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *libzephyr.a:esp_err.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + *(SORT_BY_ALIGNMENT(.rodata.esp_system_abort)) + *(SORT_BY_ALIGNMENT(.rodata.esp_restart_noos)) + *(SORT_BY_ALIGNMENT(.rodata.esp_system_reset_modules_on_exit)) + *libphy.a:(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*)) + 0x3fc91104 . = ALIGN (0x4) + 0x3fc91104 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.jcr)) + *(SORT_BY_ALIGNMENT(.dram1) SORT_BY_ALIGNMENT(.dram1.*)) + .dram1.2 0x3fc910b8 0x4 zephyr/libzephyr.a(esp_flash_api.c.obj) + .dram1.1 0x3fc910bc 0x10 zephyr/libzephyr.a(esp_flash_api.c.obj) + .dram1.2 0x3fc910cc 0x24 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .dram1.1 0x3fc910f0 0x30 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .dram1.0 0x3fc91120 0x8 zephyr/libzephyr.a(flash_ops.c.obj) + 0x3fc91120 g_flash_guard_default_ops + .dram1.0 0x3fc91128 0x58 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .dram1.5 0x3fc91180 0x14 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x3fc91180 spi_flash_chip_generic_timeout + .dram1.4 0x3fc91194 0x18 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .dram1.3 0x3fc911ac 0x4 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x3fc911ac rom_flash_chip_dummy_hpm + .dram1.2 0x3fc911b0 0x4 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x3fc911b0 rom_flash_chip_dummy + .dram1.2 0x3fc911b4 0x28 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + 0x3fc911b4 esp_flash_noos_functions + .dram1.7 0x3fc911dc 0x28 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .dram1.6 0x3fc91204 0x14 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .dram1.2 0x3fc91218 0x4 zephyr/libzephyr.a(rtc_module.c.obj) + .dram1.1 0x3fc9121c 0x4 zephyr/libzephyr.a(rtc_module.c.obj) + .dram1.0 0x3fc91220 0x4 zephyr/libzephyr.a(rtc_module.c.obj) + .dram1.1 0x3fc91224 0x14 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .dram1.1 0x3fc91238 0x1c zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .dram1.0 0x3fc91254 0xa zephyr/libzephyr.a(esp_flash_api.c.obj) + .dram1.1 0x3fc9125e 0x6 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .dram1.0 0x3fc91264 0x6 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0x3fc9126c . = ALIGN (0x4) + *fill* 0x3fc9126a 0x2 + +.loader.data 0x3fc9126c 0x22c load address 0x0000d278 + 0x3fc9126c . = ALIGN (0x4) + 0x3fc9126c _loader_data_start = ABSOLUTE (.) + *libzephyr.a:bootloader_clock_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:bootloader_wdt.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:bootloader_flash.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:bootloader_efuse.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:cpu_util.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:clk.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + .rodata 0x3fc9126c 0x4 zephyr/libzephyr.a(clk.c.obj) + *libzephyr.a:esp_clk.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:cpu_region_protect.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:spi_flash_hal.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + .rodata.CSWTCH$18 + 0x3fc91270 0xc zephyr/libzephyr.a(spi_flash_hal.c.obj) + .rodata.get_flash_clock_divider.str1.1 + 0x3fc9127c 0x1f2 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x71 (size before relaxing) + *libzephyr.a:spi_flash_hal_common.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + *libzephyr.a:esp_flash_spi_init.*(SORT_BY_ALIGNMENT(.rodata) SORT_BY_ALIGNMENT(.rodata.*) SORT_BY_ALIGNMENT(.sdata2) SORT_BY_ALIGNMENT(.sdata2.*) SORT_BY_ALIGNMENT(.srodata) SORT_BY_ALIGNMENT(.srodata.*)) + .rodata.esp_flash_init_default_chip.str1.1 + 0x3fc9146e 0x181 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .rodata.CSWTCH$55 + 0x3fc9146e 0x4 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .rodata.__FUNCTION__$1 + 0x3fc91472 0x1c zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .rodata.TAG 0x3fc9148e 0xa zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x3fc915f0 . = ALIGN (0x4) + 0x3fc91498 _loader_data_end = ABSOLUTE (.) + +sw_isr_table 0x3fc91498 0x100 load address 0x0000d4a4 + 0x3fc91498 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.sw_isr_table*)) + .gnu.linkonce.sw_isr_table + 0x3fc91498 0x100 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + 0x3fc91498 _sw_isr_table + +device_states 0x3fc91598 0x10 load address 0x0000d5a4 + 0x3fc91598 . = ALIGN (0x4) + 0x3fc91598 __device_states_start = . + *(SORT_BY_ALIGNMENT(.z_devstate)) + .z_devstate 0x3fc91598 0x2 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .z_devstate 0x3fc9159a 0x4 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .z_devstate 0x3fc9159e 0x2 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .z_devstate 0x3fc915a0 0x2 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .z_devstate 0x3fc915a2 0x2 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .z_devstate 0x3fc915a4 0x2 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + *(SORT_BY_ALIGNMENT(.z_devstate.*)) + 0x3fc915a6 __device_states_end = . + 0x3fc915a8 . = ALIGN (0x4) + *fill* 0x3fc915a6 0x2 + +log_mpsc_pbuf_area + 0x3fc915a8 0x40 load address 0x0000d5b4 + 0x3fc915a8 _log_mpsc_pbuf_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_mpsc_pbuf.static.*))) + ._log_mpsc_pbuf.static.log_buffer_ + 0x3fc915a8 0x40 zephyr/libzephyr.a(log_core.c.obj) + 0x3fc915e8 _log_mpsc_pbuf_list_end = . + +log_msg_ptr_area + 0x3fc915e8 0x4 load address 0x0000d5f4 + 0x3fc915e8 _log_msg_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_msg_ptr.static.*))) + ._log_msg_ptr.static.log_msg_ptr_ + 0x3fc915e8 0x4 zephyr/libzephyr.a(log_core.c.obj) + 0x3fc915ec _log_msg_ptr_list_end = . + +log_dynamic_area + 0x3fc915ec 0x0 load address 0x0000d5f8 + 0x3fc915ec _log_dynamic_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_dynamic.static.*))) + 0x3fc915ec _log_dynamic_list_end = . + +k_timer_area 0x3fc915f0 0x38 load address 0x0000d5fc + 0x3fc915f0 _k_timer_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_timer.static.*))) + ._k_timer.static.lora_timer_ + 0x3fc915f0 0x38 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x3fc915f0 lora_timer + 0x3fc91628 _k_timer_list_end = . + +k_mem_slab_area + 0x3fc91628 0x0 load address 0x0000d634 + 0x3fc91628 _k_mem_slab_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mem_slab.static.*))) + 0x3fc91628 _k_mem_slab_list_end = . + +k_heap_area 0x3fc91628 0x14 load address 0x0000d634 + 0x3fc91628 _k_heap_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_heap.static.*))) + ._k_heap.static._system_heap_ + 0x3fc91628 0x14 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x3fc91628 _system_heap + 0x3fc9163c _k_heap_list_end = . + +k_mutex_area 0x3fc9163c 0x28 load address 0x0000d648 + 0x3fc9163c _k_mutex_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mutex.static.*))) + ._k_mutex.static.g_params_mutex_ + 0x3fc9163c 0x14 app/libapp.a(lora_modem.c.obj) + ._k_mutex.static.uart_tx_mutex_ + 0x3fc91650 0x14 app/libapp.a(main.c.obj) + 0x3fc91664 _k_mutex_list_end = . + +k_stack_area 0x3fc91664 0x0 load address 0x0000d670 + 0x3fc91664 _k_stack_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_stack.static.*))) + 0x3fc91664 _k_stack_list_end = . + +k_msgq_area 0x3fc91664 0x0 load address 0x0000d670 + 0x3fc91664 _k_msgq_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_msgq.static.*))) + 0x3fc91664 _k_msgq_list_end = . + +k_mbox_area 0x3fc91664 0x0 load address 0x0000d670 + 0x3fc91664 _k_mbox_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_mbox.static.*))) + 0x3fc91664 _k_mbox_list_end = . + +k_pipe_area 0x3fc91664 0x0 load address 0x0000d670 + 0x3fc91664 _k_pipe_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_pipe.static.*))) + 0x3fc91664 _k_pipe_list_end = . + +k_sem_area 0x3fc91664 0x18 load address 0x0000d670 + 0x3fc91664 _k_sem_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_sem.static.*))) + ._k_sem.static.log_process_thread_sem_ + 0x3fc91664 0x18 zephyr/libzephyr.a(log_core.c.obj) + 0x3fc91664 log_process_thread_sem + 0x3fc9167c _k_sem_list_end = . + +k_event_area 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _k_event_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_event.static.*))) + 0x3fc9167c _k_event_list_end = . + +k_queue_area 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _k_queue_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_queue.static.*))) + 0x3fc9167c _k_queue_list_end = . + +k_fifo_area 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _k_fifo_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_fifo.static.*))) + 0x3fc9167c _k_fifo_list_end = . + +k_lifo_area 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _k_lifo_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_lifo.static.*))) + 0x3fc9167c _k_lifo_list_end = . + +k_condvar_area 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _k_condvar_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_condvar.static.*))) + 0x3fc9167c _k_condvar_list_end = . + +sys_mem_blocks_ptr_area + 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _sys_mem_blocks_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sys_mem_blocks_ptr.static.*))) + 0x3fc9167c _sys_mem_blocks_ptr_list_end = . + +net_buf_pool_area + 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _net_buf_pool_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._net_buf_pool.static.*))) + 0x3fc9167c _net_buf_pool_list_end = . + +log_strings_area + 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _log_strings_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_strings.static.*))) + 0x3fc9167c _log_strings_list_end = . + +log_stmesp_ptr_area + 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _log_stmesp_ptr_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_stmesp_ptr.static.*))) + 0x3fc9167c _log_stmesp_ptr_list_end = . + +log_stmesp_str_area + 0x3fc9167c 0x0 load address 0x0000d688 + 0x3fc9167c _log_stmesp_str_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_stmesp_str.static.*))) + 0x3fc9167c _log_stmesp_str_list_end = . + +log_const_area 0x3fc9167c 0x80 load address 0x0000d688 + 0x3fc9167c _log_const_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_const.static.*))) + ._log_const.static.log_const_cbprintf_package_ + 0x3fc9167c 0x8 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x3fc9167c log_const_cbprintf_package + ._log_const.static.log_const_clock_control_ + 0x3fc91684 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x3fc91684 log_const_clock_control + ._log_const.static.log_const_esp32_spi_ + 0x3fc9168c 0x8 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x3fc9168c log_const_esp32_spi + ._log_const.static.log_const_gpio_esp32_ + 0x3fc91694 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x3fc91694 log_const_gpio_esp32 + ._log_const.static.log_const_intc_esp32_ + 0x3fc9169c 0x8 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x3fc9169c log_const_intc_esp32 + ._log_const.static.log_const_log_ + 0x3fc916a4 0x8 zephyr/libzephyr.a(log_core.c.obj) + 0x3fc916a4 log_const_log + ._log_const.static.log_const_log_mgmt_ + 0x3fc916ac 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + 0x3fc916ac log_const_log_mgmt + ._log_const.static.log_const_log_uart_ + 0x3fc916b4 0x8 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x3fc916b4 log_const_log_uart + ._log_const.static.log_const_lora_modem_ + 0x3fc916bc 0x8 app/libapp.a(lora_modem.c.obj) + 0x3fc916bc log_const_lora_modem + ._log_const.static.log_const_main_ + 0x3fc916c4 0x8 app/libapp.a(main.c.obj) + 0x3fc916c4 log_const_main + ._log_const.static.log_const_os_ + 0x3fc916cc 0x8 zephyr/kernel/libkernel.a(init.c.obj) + 0x3fc916cc log_const_os + ._log_const.static.log_const_os_heap_ + 0x3fc916d4 0x8 zephyr/libzephyr.a(heap.c.obj) + 0x3fc916d4 log_const_os_heap + ._log_const.static.log_const_sx126x_ + 0x3fc916dc 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3fc916dc log_const_sx126x + ._log_const.static.log_const_sx12xx_common_ + 0x3fc916e4 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x3fc916e4 log_const_sx12xx_common + ._log_const.static.log_const_sys_getopt_ + 0x3fc916ec 0x8 zephyr/libzephyr.a(getopt.c.obj) + 0x3fc916ec log_const_sys_getopt + ._log_const.static.log_const_uart_esp32_ + 0x3fc916f4 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x3fc916f4 log_const_uart_esp32 + 0x3fc916fc _log_const_list_end = . + +log_backend_area + 0x3fc916fc 0x10 load address 0x0000d708 + 0x3fc916fc _log_backend_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_backend.static.*))) + ._log_backend.static.log_backend_uart_ + 0x3fc916fc 0x10 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x3fc9170c _log_backend_list_end = . + +log_link_area 0x3fc9170c 0x0 load address 0x0000d718 + 0x3fc9170c _log_link_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._log_link.static.*))) + 0x3fc9170c _log_link_list_end = . + +.dram0.data_end + 0x3fc9170c 0x0 load address 0x0000d718 + 0x3fc9170c __data_end = ABSOLUTE (.) + 0x3fc9170c _data_end = ABSOLUTE (.) + +.dram0.noinit 0x3fc91710 0x3c44 load address 0x0000d718 + 0x3fc91710 . = ALIGN (0x4) + 0x3fc91710 __dram_noinit_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.noinit)) + *(SORT_BY_ALIGNMENT(.noinit.*)) + .noinit.CMAKE_SOURCE_DIR/src/main.c.1 + 0x3fc91710 0x800 app/libapp.a(main.c.obj) + 0x3fc91710 lora_rx_stack + .noinit.CMAKE_SOURCE_DIR/src/main.c.0 + 0x3fc91f10 0x800 app/libapp.a(main.c.obj) + 0x3fc91f10 kiss_rx_stack + .noinit.WEST_TOPDIR/zephyr/subsys/logging/log_core.c.0 + 0x3fc92710 0x400 zephyr/libzephyr.a(log_core.c.obj) + 0x3fc92710 logging_stack + .noinit.WEST_TOPDIR/zephyr/kernel/init.c.2 + 0x3fc92b10 0x800 zephyr/kernel/libkernel.a(init.c.obj) + 0x3fc92b10 z_interrupt_stacks + .noinit.WEST_TOPDIR/zephyr/kernel/init.c.1 + 0x3fc93310 0x400 zephyr/kernel/libkernel.a(init.c.obj) + .noinit.WEST_TOPDIR/zephyr/kernel/init.c.0 + 0x3fc93710 0x800 zephyr/kernel/libkernel.a(init.c.obj) + 0x3fc93710 z_main_stack + .noinit.WEST_TOPDIR/zephyr/kernel/system_work_q.c.0 + 0x3fc93f10 0x400 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .noinit.WEST_TOPDIR/zephyr/kernel/mempool.c.kheap_buf__system_heap + 0x3fc94310 0x1044 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x3fc94310 kheap__system_heap + 0x3fc95354 __dram_noinit_end = ABSOLUTE (.) + 0x3fc95354 . = ALIGN (0x4) + +.dram0.bss 0x3fc95360 0x1058 load address 0x0000d718 + 0x3fc95360 . = ALIGN (0x8) + 0x3fc95360 _bss_start = ABSOLUTE (.) + 0x3fc95360 __bss_start = ABSOLUTE (.) + 0x3fc95360 _btdm_bss_start = ABSOLUTE (.) + *libbtdm_app.a:(SORT_BY_ALIGNMENT(.bss) SORT_BY_ALIGNMENT(.bss.*) SORT_BY_ALIGNMENT(COMMON)) + 0x3fc95360 . = ALIGN (0x4) + 0x3fc95360 _btdm_bss_end = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.dynsbss)) + *(SORT_BY_ALIGNMENT(.sbss)) + *(SORT_BY_ALIGNMENT(.sbss.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.sb.*)) + *(SORT_BY_ALIGNMENT(.scommon)) + *(SORT_BY_ALIGNMENT(.sbss2)) + *(SORT_BY_ALIGNMENT(.sbss2.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.sb2.*)) + *(SORT_BY_ALIGNMENT(.dynbss)) + *(SORT_BY_ALIGNMENT(.bss)) + *(SORT_BY_ALIGNMENT(.bss.*)) + .bss.buf32 0x3fc95360 0x400 zephyr/libzephyr.a(log_core.c.obj) + .bss.lora_rx_thread + 0x3fc95760 0x68 app/libapp.a(main.c.obj) + .bss.kiss_rx_thread + 0x3fc957c8 0x68 app/libapp.a(main.c.obj) + .bss.logging_thread + 0x3fc95830 0x68 zephyr/libzephyr.a(log_core.c.obj) + 0x3fc95830 logging_thread + .bss.last_failure_report + 0x3fc95898 0x8 zephyr/libzephyr.a(log_core.c.obj) + .bss.log_process_thread_timer + 0x3fc958a0 0x38 zephyr/libzephyr.a(log_core.c.obj) + .bss.serial_esp32_usb_data_0 + 0x3fc958d8 0x10 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .bss.z_idle_threads + 0x3fc958e8 0x68 zephyr/kernel/libkernel.a(init.c.obj) + 0x3fc958e8 z_idle_threads + .bss.z_main_thread + 0x3fc95950 0x68 zephyr/kernel/libkernel.a(init.c.obj) + 0x3fc95950 z_main_thread + .bss._thread_dummy + 0x3fc959b8 0x68 zephyr/kernel/libkernel.a(sched.c.obj) + 0x3fc959b8 _thread_dummy + .bss.slice_timeouts + 0x3fc95a20 0x18 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.curr_tick + 0x3fc95a38 0x8 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss.k_sys_work_q + 0x3fc95a40 0x88 zephyr/kernel/libkernel.a(system_work_q.c.obj) + 0x3fc95a40 k_sys_work_q + .bss.g_params 0x3fc95ac8 0xc app/libapp.a(lora_modem.c.obj) + .bss.bootloader_image_hdr + 0x3fc95ad4 0x18 zephyr/libzephyr.a(loader.c.obj) + 0x3fc95ad4 bootloader_image_hdr + .bss.curr_log_buffer + 0x3fc95aec 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.proc_tid 0x3fc95af0 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.dropped_cnt + 0x3fc95af4 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.buffered_cnt + 0x3fc95af8 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.initialized + 0x3fc95afc 0x4 zephyr/libzephyr.a(log_core.c.obj) + .bss.timestamp_div + 0x3fc95b00 0x4 zephyr/libzephyr.a(log_output.c.obj) + .bss.freq 0x3fc95b04 0x4 zephyr/libzephyr.a(log_output.c.obj) + .bss.lbu_data 0x3fc95b08 0x20 zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss.lbu_output_control_block + 0x3fc95b28 0xc zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss.s_chip_func + 0x3fc95b34 0x4 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .bss.s_chip_id + 0x3fc95b38 0x4 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .bss.esp_flash_default_chip + 0x3fc95b3c 0x4 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x3fc95b3c esp_flash_default_chip + .bss.s_flash_guard_ops + 0x3fc95b40 0x4 zephyr/libzephyr.a(flash_ops.c.obj) + .bss.s_intr_saved_state + 0x3fc95b44 0x4 zephyr/libzephyr.a(cache_utils.c.obj) + .bss.rtc_spinlock + 0x3fc95b48 0x4 zephyr/libzephyr.a(rtc_io.c.obj) + .bss.rcc_lock_counter + 0x3fc95b4c 0x4 zephyr/libzephyr.a(periph_ctrl.c.obj) + .bss.periph_spinlock + 0x3fc95b50 0x4 zephyr/libzephyr.a(periph_ctrl.c.obj) + .bss.s_bbpll_digi_consumers_ref_count + 0x3fc95b54 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .bss.s_apb_freq + 0x3fc95b58 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .bss.s_cur_pll_freq + 0x3fc95b5c 0x4 zephyr/libzephyr.a(rtc_clk.c.obj) + .bss.s_calibrated_freq + 0x3fc95b60 0x8 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .bss.s_i2c_saradc_enable_cnt + 0x3fc95b68 0x4 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .bss.regi2c_lock_counter + 0x3fc95b6c 0x4 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .bss.regi2c_lock + 0x3fc95b70 0x4 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .bss.s_spinlock + 0x3fc95b74 0x4 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .bss.s_mmu_ctx + 0x3fc95b78 0x40 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .bss._putc2 0x3fc95bb8 0x4 zephyr/libzephyr.a(esp_rom_sys.c.obj) + 0x3fc95bb8 _putc2 + .bss.s_reset_reason + 0x3fc95bbc 0x4 zephyr/libzephyr.a(reset_reason.c.obj) + .bss.systimer_hal + 0x3fc95bc0 0xc zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .bss._stdout_hook + 0x3fc95bcc 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .bss.z_malloc_heap + 0x3fc95bd0 0xc zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .bss.non_iram_int_disabled + 0x3fc95bdc 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .bss.non_iram_int_mask + 0x3fc95be0 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .bss.vector_desc_head + 0x3fc95be4 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .bss.gpio_data_1 + 0x3fc95be8 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .bss.gpio_data_0 + 0x3fc95bf4 0xc zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .bss.dev_data 0x3fc95c00 0x24 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .bss.saved_time + 0x3fc95c24 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .bss.dev_data 0x3fc95c28 0x6c zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .bss.TimerListHead + 0x3fc95c94 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .bss.FrequencyError + 0x3fc95c98 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3fc95c98 FrequencyError + .bss.LoRaHeaderType + 0x3fc95c9c 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .bss.PacketType + 0x3fc95ca0 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .bss.RxTimeoutTimer + 0x3fc95ca4 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc95ca4 RxTimeoutTimer + .bss.TxTimeoutTimer + 0x3fc95cbc 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc95cbc TxTimeoutTimer + .bss.SX126x 0x3fc95cd4 0x170 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc95cd4 SX126x + .bss.RadioEvents + 0x3fc95e44 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .bss.RadioPktStatus + 0x3fc95e48 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc95e48 RadioPktStatus + .bss.RxTimeout + 0x3fc95e5c 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc95e5c RxTimeout + .bss.TxTimeout + 0x3fc95e60 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc95e60 TxTimeout + .bss.last_count + 0x3fc95e64 0x4 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .bss._kernel 0x3fc95e68 0x20 zephyr/kernel/libkernel.a(init.c.obj) + 0x3fc95e68 _kernel + .bss.pending_cancels + 0x3fc95e88 0x8 zephyr/kernel/libkernel.a(work.c.obj) + .bss.slice_max_prio + 0x3fc95e90 0x4 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.announce_remaining + 0x3fc95e94 0x4 zephyr/kernel/libkernel.a(timeout.c.obj) + .bss.dec_buf$0 + 0x3fc95e98 0xff app/libapp.a(main.c.obj) + .bss.kiss_tx_buf + 0x3fc95f97 0x202 app/libapp.a(main.c.obj) + .bss.lora_rx_buf + 0x3fc96199 0xff app/libapp.a(main.c.obj) + .bss.backend_attached + 0x3fc96298 0x1 zephyr/libzephyr.a(log_core.c.obj) + .bss.panic_mode + 0x3fc96299 0x1 zephyr/libzephyr.a(log_core.c.obj) + .bss.lbu_buffer + 0x3fc9629a 0x1 zephyr/libzephyr.a(log_backend_uart.c.obj) + .bss.ref_counts + 0x3fc9629b 0xc zephyr/libzephyr.a(periph_ctrl.c.obj) + .bss.ctx 0x3fc962a7 0x4 zephyr/libzephyr.a(cache_hal.c.obj) + .bss.s_ctx 0x3fc962ab 0x1 zephyr/libzephyr.a(mmu_hal.c.obj) + .bss.non_iram_int_disabled_flag + 0x3fc962ac 0x1 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .bss.clock_init_done + 0x3fc962ad 0x1 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .bss.isr_connected$0 + 0x3fc962ae 0x1 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .bss.ImageCalibrated + 0x3fc962af 0x1 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .bss.RadioPublicNetwork + 0x3fc962b0 0x2 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .bss.IrqFired 0x3fc962b2 0x1 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc962b2 IrqFired + .bss.RadioRxPayload + 0x3fc962b3 0xff zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc962b3 RadioRxPayload + .bss.RxContinuous + 0x3fc963b2 0x1 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3fc963b2 RxContinuous + .bss.z_sys_post_kernel + 0x3fc963b3 0x1 zephyr/kernel/libkernel.a(init.c.obj) + 0x3fc963b3 z_sys_post_kernel + .bss.lock 0x3fc963b4 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .bss.lock 0x3fc963b4 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .bss.lock 0x3fc963b4 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .bss.slice_expired + 0x3fc963b4 0x1 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .bss.lock 0x3fc963b5 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + *(SORT_BY_ALIGNMENT(.share.mem)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.b.*)) + *(SORT_BY_ALIGNMENT(COMMON)) + 0x3fc963b8 . = ALIGN (0x8) + *fill* 0x3fc963b5 0x3 + 0x3fc963b8 _bss_end = ABSOLUTE (.) + 0x3fc963b8 __bss_end = ABSOLUTE (.) + 0x3fc84000 _image_ram_start = (_init_start - 0x6f0000) + +.last_ram_section + 0x3fc963b8 0x0 load address 0x0000d718 + 0x3fc963b8 _image_ram_end = . + 0x000123b8 _image_ram_size = (_image_ram_end - _image_ram_start) + 0x3fc963b8 _end = . + 0x3fc963b8 z_mapped_end = . + 0x00000001 ASSERT (((_end - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) + 0x00010000 _image_irom_start = LOADADDR (.text) + 0x0000862e _image_irom_size = ((LOADADDR (.text) + SIZEOF (.text)) - _image_irom_start) + 0x42000000 _image_irom_vaddr = ADDR (.text) + +.text_dummy 0x0000d718 0x28e8 + 0x00010000 . = ALIGN (0x10000) + *fill* 0x0000d718 0x28e8 + +.text 0x42000000 0x862e load address 0x00010000 + 0x42000000 _stext = . + 0x42000000 _instruction_reserved_start = ABSOLUTE (.) + 0x42000000 _text_start = ABSOLUTE (.) + 0x42000000 __text_region_start = ABSOLUTE (.) + 0x42000000 __rom_region_start = ABSOLUTE (.) + *libnet80211.a:(SORT_BY_ALIGNMENT(.wifi0iram) SORT_BY_ALIGNMENT(.wifi0iram.*) SORT_BY_ALIGNMENT(.wifislpiram) SORT_BY_ALIGNMENT(.wifislpiram.*) SORT_BY_ALIGNMENT(.wifiextrairam) SORT_BY_ALIGNMENT(.wifiextrairam.*)) + *libpp.a:(SORT_BY_ALIGNMENT(.wifi0iram) SORT_BY_ALIGNMENT(.wifi0iram.*) SORT_BY_ALIGNMENT(.wifislpiram) SORT_BY_ALIGNMENT(.wifislpiram.*) SORT_BY_ALIGNMENT(.wifiorslpiram) SORT_BY_ALIGNMENT(.wifiorslpiram.*) SORT_BY_ALIGNMENT(.wifiextrairam) SORT_BY_ALIGNMENT(.wifiextrairam.*)) + *libcoexist.a:(SORT_BY_ALIGNMENT(.wifi_slp_iram) SORT_BY_ALIGNMENT(.wifi_slp_iram.*) SORT_BY_ALIGNMENT(.coexiram) SORT_BY_ALIGNMENT(.coexiram.*) SORT_BY_ALIGNMENT(.coexsleepiram) SORT_BY_ALIGNMENT(.coexsleepiram.*)) + *libnet80211.a:(SORT_BY_ALIGNMENT(.wifirxiram) SORT_BY_ALIGNMENT(.wifirxiram.*) SORT_BY_ALIGNMENT(.wifislprxiram) SORT_BY_ALIGNMENT(.wifislprxiram.*)) + *libpp.a:(SORT_BY_ALIGNMENT(.wifirxiram) SORT_BY_ALIGNMENT(.wifirxiram.*) SORT_BY_ALIGNMENT(.wifislprxiram) SORT_BY_ALIGNMENT(.wifislprxiram.*)) + *(SORT_BY_ALIGNMENT(.stub) SORT_BY_ALIGNMENT(.gnu.warning) SORT_BY_ALIGNMENT(.gnu.linkonce.literal.*) SORT_BY_ALIGNMENT(.gnu.linkonce.t.*.literal) SORT_BY_ALIGNMENT(.gnu.linkonce.t.*)) + *(SORT_BY_ALIGNMENT(.irom0.text)) + *(SORT_BY_ALIGNMENT(.fini.literal)) + *(.fini) + *(SORT_BY_ALIGNMENT(.gnu.version)) + *(SORT_BY_ALIGNMENT(.literal) SORT_BY_ALIGNMENT(.text) SORT_BY_ALIGNMENT(.literal.*) SORT_BY_ALIGNMENT(.text.*)) + .literal.uart_write_bytes$constprop$0 + 0x42000000 0x8 app/libapp.a(main.c.obj) + .literal.send_hw_response$constprop$0 + 0x42000008 0xc app/libapp.a(main.c.obj) + 0x18 (size before relaxing) + .literal.lora_rx_fn + 0x42000014 0x1c app/libapp.a(main.c.obj) + 0x3c (size before relaxing) + .literal.kiss_rx_fn + 0x42000030 0x40 app/libapp.a(main.c.obj) + 0x94 (size before relaxing) + .literal.main 0x42000070 0x30 app/libapp.a(main.c.obj) + 0x48 (size before relaxing) + .literal.kiss_encode + 0x420000a0 0x0 app/libapp.a(kiss.c.obj) + 0x4 (size before relaxing) + .literal.lora_config$constprop$0 + 0x420000a0 0x4 app/libapp.a(lora_modem.c.obj) + .literal.k_mutex_lock$constprop$0$isra$0 + 0x420000a4 0x4 app/libapp.a(lora_modem.c.obj) + 0x8 (size before relaxing) + .literal.k_mutex_unlock$constprop$0$isra$0 + 0x420000a8 0x0 app/libapp.a(lora_modem.c.obj) + 0x8 (size before relaxing) + .literal.lora_modem_init + 0x420000a8 0x1c app/libapp.a(lora_modem.c.obj) + 0x2c (size before relaxing) + .literal.lora_modem_get_params + 0x420000c4 0x0 app/libapp.a(lora_modem.c.obj) + 0xc (size before relaxing) + .literal.lora_modem_set_params + 0x420000c4 0x8 app/libapp.a(lora_modem.c.obj) + 0x1c (size before relaxing) + .literal.lora_modem_set_freq + 0x420000cc 0x4 app/libapp.a(lora_modem.c.obj) + 0x18 (size before relaxing) + .literal.lora_modem_send + 0x420000d0 0x8 app/libapp.a(lora_modem.c.obj) + 0x28 (size before relaxing) + .literal.lora_modem_recv + 0x420000d8 0x4 app/libapp.a(lora_modem.c.obj) + 0x24 (size before relaxing) + .literal.chunk_size + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.set_chunk_size + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.undersized_chunk + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.free_list_remove_bidx + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x10 (size before relaxing) + .literal.free_list_remove + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x10 (size before relaxing) + .literal.alloc_chunk + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x10 (size before relaxing) + .literal.split_chunks + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x18 (size before relaxing) + .literal.merge_chunks + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x14 (size before relaxing) + .literal.free_list_add + 0x420000dc 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x24 (size before relaxing) + .literal.sys_heap_free + 0x420000dc 0x10 zephyr/libzephyr.a(heap.c.obj) + 0x4c (size before relaxing) + .literal.sys_heap_alloc + 0x420000ec 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x14 (size before relaxing) + .literal.sys_heap_noalign_alloc + 0x420000ec 0x0 zephyr/libzephyr.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.sys_heap_init + 0x420000ec 0x4 zephyr/libzephyr.a(heap.c.obj) + 0x2c (size before relaxing) + .literal.__printk_hook_install + 0x420000f0 0x4 zephyr/libzephyr.a(printk.c.obj) + .literal.z_thread_entry + 0x420000f4 0x8 zephyr/libzephyr.a(thread_entry.c.obj) + .literal.get_usage + 0x420000fc 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x4 (size before relaxing) + .literal.rd_idx_inc + 0x420000fc 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x4 (size before relaxing) + .literal.add_skip_item + 0x420000fc 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x8 (size before relaxing) + .literal.drop_item_locked + 0x420000fc 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x18 (size before relaxing) + .literal.post_drop_action + 0x420000fc 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x8 (size before relaxing) + .literal.max_utilization_update + 0x420000fc 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x4 (size before relaxing) + .literal.mpsc_pbuf_init + 0x420000fc 0x4 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x8 (size before relaxing) + .literal.mpsc_pbuf_alloc + 0x42000100 0x8 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x1c (size before relaxing) + .literal.mpsc_pbuf_commit + 0x42000108 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x8 (size before relaxing) + .literal.mpsc_pbuf_claim + 0x42000108 0x4 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x10 (size before relaxing) + .literal.mpsc_pbuf_free + 0x4200010c 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0xc (size before relaxing) + .literal.log_source_name_get + 0x4200010c 0x8 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.log_backend_enable + 0x42000114 0x4 zephyr/libzephyr.a(log_mgmt.c.obj) + .literal.uart_hal_set_hw_flow_ctrl + 0x42000118 0x8 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_set_txfifo_empty_thr + 0x42000120 0x4 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_set_mode + 0x42000124 0x4 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_inverse_signal + 0x42000128 0x4 zephyr/libzephyr.a(uart_hal.c.obj) + .literal.uart_hal_set_rx_timeout + 0x4200012c 0x8 zephyr/libzephyr.a(uart_hal.c.obj) + 0xc (size before relaxing) + .literal.uart_hal_txfifo_rst + 0x42000134 0x4 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .literal.uart_hal_rxfifo_rst + 0x42000138 0x4 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .literal.spi_hal_init + 0x4200013c 0x18 zephyr/libzephyr.a(spi_hal.c.obj) + 0x20 (size before relaxing) + .literal.spi_hal_setup_device + 0x42000154 0xc zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x20 (size before relaxing) + .literal.spi_hal_cal_timing + 0x42000160 0xc zephyr/libzephyr.a(spi_hal_iram.c.obj) + .literal.spi_hal_cal_clock_conf + 0x4200016c 0x8 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_hal_setup_trans + 0x42000174 0x10 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x20 (size before relaxing) + .literal.spi_hal_enable_data_line + 0x42000184 0x8 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .literal.spi_hal_fetch_result + 0x4200018c 0x0 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.rtc_gpio_is_valid_gpio + 0x4200018c 0x4 zephyr/libzephyr.a(rtc_io.c.obj) + .literal.rtc_gpio_pullup_en + 0x42000190 0x18 zephyr/libzephyr.a(rtc_io.c.obj) + 0x20 (size before relaxing) + .literal.rtc_gpio_pullup_dis + 0x420001a8 0x8 zephyr/libzephyr.a(rtc_io.c.obj) + 0x24 (size before relaxing) + .literal.rtc_gpio_pulldown_en + 0x420001b0 0x4 zephyr/libzephyr.a(rtc_io.c.obj) + 0x20 (size before relaxing) + .literal.rtc_gpio_pulldown_dis + 0x420001b4 0x4 zephyr/libzephyr.a(rtc_io.c.obj) + 0x20 (size before relaxing) + .literal.clk_hal_lp_slow_get_freq_hz + 0x420001b8 0xc zephyr/libzephyr.a(clk_tree_hal.c.obj) + .literal.clk_hal_xtal_get_freq_mhz + 0x420001c4 0xc zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x10 (size before relaxing) + .literal.clk_hal_soc_root_get_freq_mhz + 0x420001d0 0x4 zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x8 (size before relaxing) + .literal.clk_hal_cpu_get_freq_hz + 0x420001d4 0x8 zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x18 (size before relaxing) + .literal.clk_hal_apb_get_freq_hz + 0x420001dc 0x4 zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0xc (size before relaxing) + .literal.esp_clk_slowclk_cal_set + 0x420001e0 0x4 zephyr/libzephyr.a(esp_clk.c.obj) + .literal.periph_ll_enable_clk_clear_rst + 0x420001e4 0x20 zephyr/libzephyr.a(periph_ctrl.c.obj) + .literal.periph_ll_disable_clk_set_rst + 0x42000204 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x20 (size before relaxing) + .literal.periph_rcc_acquire_enter + 0x42000204 0x8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .literal.periph_rcc_acquire_exit + 0x4200020c 0x4 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x8 (size before relaxing) + .literal.periph_module_enable + 0x42000210 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x14 (size before relaxing) + .literal.periph_module_disable + 0x42000210 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x14 (size before relaxing) + .literal.non_shared_periph_module_enable + 0x42000210 0x18 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x34 (size before relaxing) + .literal.non_shared_periph_module_disable + 0x42000228 0x4 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x2c (size before relaxing) + .literal.esp_clk_tree_src_get_freq_hz + 0x4200022c 0x20 zephyr/libzephyr.a(esp_clk_tree.c.obj) + 0x50 (size before relaxing) + .literal.esp_cpu_intr_get_desc + 0x4200024c 0x4 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + 0x8 (size before relaxing) + .literal.get_rtc_dbias_by_efuse$constprop$0 + 0x42000250 0x4 zephyr/libzephyr.a(rtc_init.c.obj) + .literal.rtc_init + 0x42000254 0xbc zephyr/libzephyr.a(rtc_init.c.obj) + 0x120 (size before relaxing) + .literal.sar_periph_ctrl_init + 0x42000310 0x8 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .literal.esp_clk_tree_rc_fast_d256_get_freq_hz + 0x42000318 0x8 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x18 (size before relaxing) + .literal.esp_clk_tree_xtal32k_get_freq_hz + 0x42000320 0x0 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x14 (size before relaxing) + .literal.esp_clk_tree_lp_slow_get_freq_hz + 0x42000320 0x0 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x14 (size before relaxing) + .literal.esp_clk_tree_rc_fast_get_freq_hz + 0x42000320 0x4 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x8 (size before relaxing) + .literal.esp_clk_tree_lp_fast_get_freq_hz + 0x42000324 0x0 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0xc (size before relaxing) + .literal.esp_sleep_sub_mode_config + 0x42000324 0x14 zephyr/libzephyr.a(sleep_modes.c.obj) + 0x18 (size before relaxing) + .literal.esp_sleep_sub_mode_force_disable + 0x42000338 0x0 zephyr/libzephyr.a(sleep_modes.c.obj) + 0x8 (size before relaxing) + .literal.esp_sleep_sub_mode_dump_config + 0x42000338 0xc zephyr/libzephyr.a(sleep_modes.c.obj) + 0x18 (size before relaxing) + .literal 0x42000344 0x10 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .literal.esp_rtc_init + 0x42000354 0x8 zephyr/libzephyr.a(clk.c.obj) + 0x10 (size before relaxing) + .literal.esp_perip_clk_init + 0x4200035c 0x18 zephyr/libzephyr.a(clk.c.obj) + 0x34 (size before relaxing) + .literal.esp_reset_reason_get_hint + 0x42000374 0x4 zephyr/libzephyr.a(reset_reason.c.obj) + .literal.esp_reset_reason_init + 0x42000378 0x8 zephyr/libzephyr.a(reset_reason.c.obj) + 0x14 (size before relaxing) + .literal.esp_timer_impl_early_init + 0x42000380 0x20 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + 0x34 (size before relaxing) + .literal.esp_timer_early_init + 0x420003a0 0x0 zephyr/libzephyr.a(esp_timer_init.c.obj) + 0x4 (size before relaxing) + .literal.__assert_no_args + 0x420003a0 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + 0x4 (size before relaxing) + .literal.cbvprintf + 0x420003a0 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + 0xc (size before relaxing) + .literal.z_impl_zephyr_fputc + 0x420003a4 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .literal.picolibc_put + 0x420003a8 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x4 (size before relaxing) + .literal.__stdout_hook_install + 0x420003a8 0x4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x8 (size before relaxing) + .literal.abort + 0x420003ac 0x4 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + 0xc (size before relaxing) + .literal.malloc_prepare + 0x420003b0 0xc zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + 0x10 (size before relaxing) + .literal.find_desc_for_int + 0x420003bc 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .literal.is_vect_desc_usable + 0x420003c0 0x8 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x10 (size before relaxing) + .literal.get_desc_for_int + 0x420003c8 0x4 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x10 (size before relaxing) + .literal.esp_intr_alloc_intrstatus + 0x420003cc 0x30 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x78 (size before relaxing) + .literal.esp_intr_alloc + 0x420003fc 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x4 (size before relaxing) + .literal.clock_control_esp32_get_status + 0x420003fc 0x4 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x10 (size before relaxing) + .literal.clock_control_esp32_get_rate + 0x42000400 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0xc (size before relaxing) + .literal.clock_control_esp32_off + 0x42000400 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0xc (size before relaxing) + .literal.clock_control_esp32_on + 0x42000400 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0xc (size before relaxing) + .literal.esp32_select_rtc_slow_clk + 0x42000400 0x1c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x30 (size before relaxing) + .literal.esp32_cpu_clock_configure + 0x4200041c 0x2c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x48 (size before relaxing) + .literal.clock_control_esp32_configure + 0x42000448 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x1c (size before relaxing) + .literal.clock_control_esp32_init + 0x42000450 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x30 (size before relaxing) + .literal.uart_console_init + 0x42000458 0x4 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + 0x14 (size before relaxing) + .literal.gpio_esp32_pin_interrupt_configure + 0x4200045c 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .literal.gpio_esp32_init + 0x42000464 0x10 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x18 (size before relaxing) + .literal.sx126x_set_tx_enable + 0x42000474 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .literal.sx126x_dio1_irq_work_handler$part$0 + 0x42000478 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xc (size before relaxing) + .literal.sx126x_dio1_irq_work_handler + 0x42000480 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + .literal.sx126x_lora_init + 0x42000488 0x1c zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x40 (size before relaxing) + .literal.SX126xGetOperatingMode + 0x420004a4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetOperatingMode + 0x420004a4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xc (size before relaxing) + .literal.SX126xIoIrqInit + 0x420004a4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xIoRfSwitchInit + 0x420004a4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xReset + 0x420004a4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetRfTxPower + 0x420004a4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xWaitOnBusy + 0x420004a4 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xc (size before relaxing) + .literal.sx126x_spi_transceive$isra$0 + 0x420004a8 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x1c (size before relaxing) + .literal.SX126xWriteBuffer + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xReadBuffer + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xWriteCommand + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xReadCommand + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xWriteRegisters + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xWriteRegister + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xReadRegisters + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xReadRegister + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xWakeup + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x20 (size before relaxing) + .literal.SX126xGetDio1PinState + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.timer_work_handler + 0x420004b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x4 (size before relaxing) + .literal.timer_callback + 0x420004b4 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .literal.k_uptime_get_32 + 0x420004bc 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x8 (size before relaxing) + .literal.RtcGetTimerValue + 0x420004c0 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x4 (size before relaxing) + .literal.RtcGetTimerElapsedTime + 0x420004c0 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x8 (size before relaxing) + .literal.RtcStopAlarm + 0x420004c4 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .literal.RtcSetAlarm + 0x420004cc 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x8 (size before relaxing) + .literal.RtcSetTimerContext + 0x420004d0 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x8 (size before relaxing) + .literal.RtcGetTimerContext + 0x420004d0 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x4 (size before relaxing) + .literal.DelayMsMcu + 0x420004d0 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x4 (size before relaxing) + .literal.modem_release$constprop$0 + 0x420004d0 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0xc (size before relaxing) + .literal.sx12xx_ev_tx_done + 0x420004d8 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0xc (size before relaxing) + .literal.sx12xx_ev_tx_timed_out + 0x420004dc 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x4 (size before relaxing) + .literal.sx12xx_ev_rx_error + 0x420004dc 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x10 (size before relaxing) + .literal.sx12xx_ev_rx_done + 0x420004dc 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x14 (size before relaxing) + .literal.__sx12xx_configure_pin + 0x420004dc 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x24 (size before relaxing) + .literal.sx12xx_airtime + 0x420004f0 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x8 (size before relaxing) + .literal.sx12xx_lora_send_async + 0x420004f0 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0xc (size before relaxing) + .literal.sx12xx_lora_send + 0x420004f0 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x28 (size before relaxing) + .literal.sx12xx_lora_recv + 0x420004f8 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x30 (size before relaxing) + .literal.sx12xx_lora_recv_async + 0x42000500 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x10 (size before relaxing) + .literal.sx12xx_lora_config + 0x42000500 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x20 (size before relaxing) + .literal.sx12xx_lora_test_cw + 0x42000508 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x8 (size before relaxing) + .literal.sx12xx_init + 0x42000508 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x20 (size before relaxing) + .literal.gpio_pin_configure_dt + 0x4200051c 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x8 (size before relaxing) + .literal.sx126x_dio1_irq_callback + 0x42000520 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x4 (size before relaxing) + .literal.z_impl_gpio_pin_interrupt_configure$isra$0 + 0x42000520 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .literal.sx126x_reset + 0x42000524 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x14 (size before relaxing) + .literal.sx126x_is_busy + 0x42000524 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x8 (size before relaxing) + .literal.sx126x_get_dio1_pin_state + 0x42000524 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x8 (size before relaxing) + .literal.sx126x_dio1_irq_enable + 0x42000524 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x8 (size before relaxing) + .literal.sx126x_dio1_irq_disable + 0x42000524 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x8 (size before relaxing) + .literal.sx126x_set_tx_params + 0x42000524 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x4 (size before relaxing) + .literal.sx126x_variant_init + 0x42000524 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x30 (size before relaxing) + .literal.TimerSetTimeout + 0x4200053c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x10 (size before relaxing) + .literal.TimerInsertNewHeadTimer + 0x4200053c 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x8 (size before relaxing) + .literal.TimerStart + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x18 (size before relaxing) + .literal.TimerIrqHandler + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x14 (size before relaxing) + .literal.TimerStop + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x14 (size before relaxing) + .literal.TimerSetValue + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0xc (size before relaxing) + .literal.TimerGetCurrentTime + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x8 (size before relaxing) + .literal.TimerGetElapsedTime + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0xc (size before relaxing) + .literal.DelayMs + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + 0x4 (size before relaxing) + .literal.SX126xCheckDeviceReady + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x14 (size before relaxing) + .literal.SX126xSetPayload + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetSyncWord + 0x42000540 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetCrcSeed + 0x42000540 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetCrcPolynomial + 0x42000544 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetWhiteningSeed + 0x42000544 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + .literal.SX126xSetSleep + 0x42000544 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + .literal.SX126xSetStandby + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xInit + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x20 (size before relaxing) + .literal.SX126xSetTx + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSendPayload + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetRx + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xc (size before relaxing) + .literal.SX126xGetRandom + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x24 (size before relaxing) + .literal.SX126xSetRxBoosted + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xc (size before relaxing) + .literal.SX126xSetRxDutyCycle + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetCad + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetTxContinuousWave + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetStopRxTimerOnPreambleDetect + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetLoRaSymbNumTimeout + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xSetRegulatorMode + 0x42000548 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xCalibrateImage + 0x42000548 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x18 (size before relaxing) + .literal.SX126xSetPaConfig + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetDioIrqParams + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xGetIrqStatus + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetDio2AsRfSwitchCtrl + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetRfFrequency + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + .literal.SX126xSetPacketType + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xGetPacketType + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xSetTxParams + 0x4200055c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x1c (size before relaxing) + .literal.SX126xSetModulationParams + 0x4200055c 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x14 (size before relaxing) + .literal.SX126xSetPacketParams + 0x42000560 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x24 (size before relaxing) + .literal.SX126xSetBufferBaseAddress + 0x42000564 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xGetRssiInst + 0x42000564 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.SX126xGetRxBufferStatus + 0x42000564 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + .literal.SX126xGetPayload + 0x42000564 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8 (size before relaxing) + .literal.SX126xGetPacketStatus + 0x42000564 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + .literal.SX126xClearIrqStatus + 0x42000568 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4 (size before relaxing) + .literal.RadioOnTxTimeoutIrq + 0x42000568 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .literal.RadioOnRxTimeoutIrq + 0x4200056c 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioOnDioIrq + 0x4200056c 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .literal.RadioStandby + 0x42000570 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioGetStatus + 0x42000570 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x8 (size before relaxing) + .literal.RadioSetChannel + 0x42000574 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioRead + 0x42000574 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioWrite + 0x42000574 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioSend + 0x42000574 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x24 (size before relaxing) + .literal.RadioSleep + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x8 (size before relaxing) + .literal.RadioSetRxDutyCycle + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioReadBuffer + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioWriteBuffer + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioStartCad + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x8 (size before relaxing) + .literal.RadioSetTxContinuousWave + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x18 (size before relaxing) + .literal.RadioRssi + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioGetWakeupTime + 0x42000580 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x4 (size before relaxing) + .literal.RadioIrqProcess + 0x42000580 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x84 (size before relaxing) + .literal.RadioGetFskBandwidthRegValue + 0x42000590 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .literal.RadioSetMaxPayloadLength + 0x42000594 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xc (size before relaxing) + .literal.RadioRx + 0x4200059c 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x1c (size before relaxing) + .literal.RadioRxBoosted + 0x420005a0 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x1c (size before relaxing) + .literal.RadioTimeOnAir + 0x420005a0 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .literal.RadioSetPublicNetwork + 0x420005a8 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x14 (size before relaxing) + .literal.RadioSetModem$part$0 + 0x420005ac 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xc (size before relaxing) + .literal.RadioSetModem + 0x420005ac 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xc (size before relaxing) + .literal.RadioSetRxConfig + 0x420005ac 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x64 (size before relaxing) + .literal.RadioSetTxConfig + 0x420005b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x58 (size before relaxing) + .literal.RadioIsChannelFree + 0x420005b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x24 (size before relaxing) + .literal.RadioRandom + 0x420005b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xc (size before relaxing) + .literal.RadioAddRegisterToRetentionList + 0x420005b4 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x8 (size before relaxing) + .literal.RadioInit + 0x420005b4 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x44 (size before relaxing) + .literal.pinctrl_configure_pins + 0x420005c0 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + 0x34 (size before relaxing) + .literal.serial_esp32_usb_poll_in + 0x420005e0 0x4 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .literal.serial_esp32_usb_fifo_fill + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_irq_tx_enable + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_irq_tx_ready + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_irq_rx_disable + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_irq_tx_complete + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_irq_rx_ready + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_irq_is_pending + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x8 (size before relaxing) + .literal.serial_esp32_usb_irq_update + 0x420005e4 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_init + 0x420005e4 0x4 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x10 (size before relaxing) + .literal.serial_esp32_usb_irq_tx_disable + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_irq_rx_enable + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.serial_esp32_usb_poll_out + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x24 (size before relaxing) + .literal.serial_esp32_usb_fifo_read + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x4 (size before relaxing) + .literal.uart_esp32_irq_is_pending + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x8 (size before relaxing) + .literal.uart_esp32_fifo_read + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x4 (size before relaxing) + .literal.uart_esp32_poll_in + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x4 (size before relaxing) + .literal.uart_esp32_fifo_fill + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x4 (size before relaxing) + .literal.uart_esp32_poll_out + 0x420005e8 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x4 (size before relaxing) + .literal.uart_esp32_config_get + 0x420005e8 0x10 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x30 (size before relaxing) + .literal.uart_esp32_configure + 0x420005f8 0xc zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x48 (size before relaxing) + .literal.uart_esp32_init + 0x42000604 0x14 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x34 (size before relaxing) + .literal.z_log_msg_simple_create_0 + 0x42000618 0x0 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x4 (size before relaxing) + .literal._spi_context_cs_control + 0x42000618 0x4 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x10 (size before relaxing) + .literal.spi_context_unlock_unconditionally + 0x4200061c 0x0 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x8 (size before relaxing) + .literal.spi_esp32_release + 0x4200061c 0x0 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x4 (size before relaxing) + .literal.spi_esp32_gdma_config$isra$0 + 0x4200061c 0x10 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x28 (size before relaxing) + .literal.spi_esp32_transceive + 0x4200062c 0x14 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x4c (size before relaxing) + .literal.spi_esp32_init + 0x42000640 0x20 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x64 (size before relaxing) + .literal.fprintf + 0x42000660 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + 0x4 (size before relaxing) + .literal.snprintf + 0x42000660 0x4 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + 0xc (size before relaxing) + .literal.__l_vfprintf + 0x42000664 0x14 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + 0x1c (size before relaxing) + .text.uart_write_bytes$constprop$0 + 0x42000678 0x21 app/libapp.a(main.c.obj) + *fill* 0x42000699 0x3 + .text.send_hw_response$constprop$0 + 0x4200069c 0x30 app/libapp.a(main.c.obj) + 0x38 (size before relaxing) + .text.lora_rx_fn + 0x420006cc 0x8c app/libapp.a(main.c.obj) + 0x94 (size before relaxing) + .text.kiss_rx_fn + 0x42000758 0x21d app/libapp.a(main.c.obj) + 0x241 (size before relaxing) + *fill* 0x42000975 0x3 + .text.main 0x42000978 0x98 app/libapp.a(main.c.obj) + 0x9c (size before relaxing) + 0x42000978 main + .text.kiss_encode + 0x42000a10 0x14 app/libapp.a(kiss.c.obj) + 0x18 (size before relaxing) + 0x42000a10 kiss_encode + .text.lora_config$constprop$0 + 0x42000a24 0x14 app/libapp.a(lora_modem.c.obj) + .text.k_mutex_lock$constprop$0$isra$0 + 0x42000a38 0x12 app/libapp.a(lora_modem.c.obj) + *fill* 0x42000a4a 0x2 + .text.k_mutex_unlock$constprop$0$isra$0 + 0x42000a4c 0xe app/libapp.a(lora_modem.c.obj) + *fill* 0x42000a5a 0x2 + .text.lora_modem_init + 0x42000a5c 0x8d app/libapp.a(lora_modem.c.obj) + 0x91 (size before relaxing) + 0x42000a5c lora_modem_init + *fill* 0x42000ae9 0x3 + .text.lora_modem_get_params + 0x42000aec 0x20 app/libapp.a(lora_modem.c.obj) + 0x24 (size before relaxing) + 0x42000aec lora_modem_get_params + .text.lora_modem_set_params + 0x42000b0c 0xef app/libapp.a(lora_modem.c.obj) + 0xf7 (size before relaxing) + 0x42000b0c lora_modem_set_params + *fill* 0x42000bfb 0x1 + .text.lora_modem_set_freq + 0x42000bfc 0x2c app/libapp.a(lora_modem.c.obj) + 0x34 (size before relaxing) + 0x42000bfc lora_modem_set_freq + .text.lora_modem_send + 0x42000c28 0x63 app/libapp.a(lora_modem.c.obj) + 0x6f (size before relaxing) + 0x42000c28 lora_modem_send + *fill* 0x42000c8b 0x1 + .text.lora_modem_recv + 0x42000c8c 0x8a app/libapp.a(lora_modem.c.obj) + 0x96 (size before relaxing) + 0x42000c8c lora_modem_recv + *fill* 0x42000d16 0x2 + .text.chunk_size + 0x42000d18 0x11 zephyr/libzephyr.a(heap.c.obj) + 0x15 (size before relaxing) + *fill* 0x42000d29 0x3 + .text.set_chunk_size + 0x42000d2c 0x13 zephyr/libzephyr.a(heap.c.obj) + *fill* 0x42000d3f 0x1 + .text.undersized_chunk + 0x42000d40 0x28 zephyr/libzephyr.a(heap.c.obj) + .text.free_list_remove_bidx + 0x42000d68 0x56 zephyr/libzephyr.a(heap.c.obj) + 0x62 (size before relaxing) + *fill* 0x42000dbe 0x2 + .text.free_list_remove + 0x42000dc0 0x26 zephyr/libzephyr.a(heap.c.obj) + 0x32 (size before relaxing) + *fill* 0x42000de6 0x2 + .text.alloc_chunk + 0x42000de8 0x83 zephyr/libzephyr.a(heap.c.obj) + 0x87 (size before relaxing) + *fill* 0x42000e6b 0x1 + .text.split_chunks + 0x42000e6c 0x46 zephyr/libzephyr.a(heap.c.obj) + 0x56 (size before relaxing) + *fill* 0x42000eb2 0x2 + .text.merge_chunks + 0x42000eb4 0x32 zephyr/libzephyr.a(heap.c.obj) + 0x42 (size before relaxing) + *fill* 0x42000ee6 0x2 + .text.free_list_add + 0x42000ee8 0x86 zephyr/libzephyr.a(heap.c.obj) + 0x9e (size before relaxing) + *fill* 0x42000f6e 0x2 + .text.sys_heap_free + 0x42000f70 0xe0 zephyr/libzephyr.a(heap.c.obj) + 0x10c (size before relaxing) + 0x42000f70 sys_heap_free + .text.sys_heap_alloc + 0x42001050 0x76 zephyr/libzephyr.a(heap.c.obj) + 0x82 (size before relaxing) + 0x42001050 sys_heap_alloc + *fill* 0x420010c6 0x2 + .text.sys_heap_noalign_alloc + 0x420010c8 0x11 zephyr/libzephyr.a(heap.c.obj) + 0x420010c8 sys_heap_noalign_alloc + *fill* 0x420010d9 0x3 + .text.sys_heap_init + 0x420010dc 0xa8 zephyr/libzephyr.a(heap.c.obj) + 0xc8 (size before relaxing) + 0x420010dc sys_heap_init + .text.__printk_hook_install + 0x42001184 0xa zephyr/libzephyr.a(printk.c.obj) + 0x42001184 __printk_hook_install + *fill* 0x4200118e 0x2 + .text.z_thread_entry + 0x42001190 0x18 zephyr/libzephyr.a(thread_entry.c.obj) + 0x42001190 z_thread_entry + .text.get_usage + 0x420011a8 0x24 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.rd_idx_inc + 0x420011cc 0x19 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x1d (size before relaxing) + *fill* 0x420011e5 0x3 + .text.add_skip_item + 0x420011e8 0x3c zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x40 (size before relaxing) + .text.drop_item_locked + 0x42001224 0xdc zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0xe8 (size before relaxing) + .text.post_drop_action + 0x42001300 0x40 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x44 (size before relaxing) + .text.max_utilization_update + 0x42001340 0x17 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x1b (size before relaxing) + *fill* 0x42001357 0x1 + .text.mpsc_pbuf_init + 0x42001358 0x46 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x42001358 mpsc_pbuf_init + *fill* 0x4200139e 0x2 + .text.mpsc_pbuf_alloc + 0x420013a0 0xeb zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0xf3 (size before relaxing) + 0x420013a0 mpsc_pbuf_alloc + *fill* 0x4200148b 0x1 + .text.mpsc_pbuf_commit + 0x4200148c 0x30 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x34 (size before relaxing) + 0x4200148c mpsc_pbuf_commit + .text.mpsc_pbuf_claim + 0x420014bc 0xaa zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0xae (size before relaxing) + 0x420014bc mpsc_pbuf_claim + *fill* 0x42001566 0x2 + .text.mpsc_pbuf_free + 0x42001568 0x6e zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x42001568 mpsc_pbuf_free + *fill* 0x420015d6 0x2 + .text.log_source_name_get + 0x420015d8 0x1b zephyr/libzephyr.a(log_mgmt.c.obj) + 0x420015d8 log_source_name_get + *fill* 0x420015f3 0x1 + .text.log_backend_enable + 0x420015f4 0x1b zephyr/libzephyr.a(log_mgmt.c.obj) + 0x420015f4 log_backend_enable + *fill* 0x4200160f 0x1 + .text.uart_hal_set_hw_flow_ctrl + 0x42001610 0x67 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42001610 uart_hal_set_hw_flow_ctrl + *fill* 0x42001677 0x1 + .text.uart_hal_set_txfifo_empty_thr + 0x42001678 0x20 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42001678 uart_hal_set_txfifo_empty_thr + .text.uart_hal_set_mode + 0x42001698 0x193 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42001698 uart_hal_set_mode + *fill* 0x4200182b 0x1 + .text.uart_hal_inverse_signal + 0x4200182c 0x59 zephyr/libzephyr.a(uart_hal.c.obj) + 0x4200182c uart_hal_inverse_signal + *fill* 0x42001885 0x3 + .text.uart_hal_set_rx_timeout + 0x42001888 0x52 zephyr/libzephyr.a(uart_hal.c.obj) + 0x56 (size before relaxing) + 0x42001888 uart_hal_set_rx_timeout + *fill* 0x420018da 0x2 + .text.uart_hal_txfifo_rst + 0x420018dc 0x29 zephyr/libzephyr.a(uart_hal_iram.c.obj) + 0x420018dc uart_hal_txfifo_rst + *fill* 0x42001905 0x3 + .text.uart_hal_rxfifo_rst + 0x42001908 0x29 zephyr/libzephyr.a(uart_hal_iram.c.obj) + 0x42001908 uart_hal_rxfifo_rst + *fill* 0x42001931 0x3 + .text.spi_hal_init + 0x42001934 0x121 zephyr/libzephyr.a(spi_hal.c.obj) + 0x42001934 spi_hal_init + *fill* 0x42001a55 0x3 + .text.spi_hal_setup_device + 0x42001a58 0x2ab zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x42001a58 spi_hal_setup_device + *fill* 0x42001d03 0x1 + .text.spi_hal_cal_timing + 0x42001d04 0x54 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x42001d04 spi_hal_cal_timing + .text.spi_hal_cal_clock_conf + 0x42001d58 0x180 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x184 (size before relaxing) + 0x42001d58 spi_hal_cal_clock_conf + .text.spi_hal_setup_trans + 0x42001ed8 0x382 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x42001ed8 spi_hal_setup_trans + *fill* 0x4200225a 0x2 + .text.spi_hal_enable_data_line + 0x4200225c 0x37 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x4200225c spi_hal_enable_data_line + *fill* 0x42002293 0x1 + .text.spi_hal_fetch_result + 0x42002294 0x49 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x42002294 spi_hal_fetch_result + *fill* 0x420022dd 0x3 + .text.rtc_gpio_is_valid_gpio + 0x420022e0 0x1e zephyr/libzephyr.a(rtc_io.c.obj) + 0x420022e0 rtc_gpio_is_valid_gpio + *fill* 0x420022fe 0x2 + .text.rtc_gpio_pullup_en + 0x42002300 0x5e zephyr/libzephyr.a(rtc_io.c.obj) + 0x62 (size before relaxing) + 0x42002300 rtc_gpio_pullup_en + *fill* 0x4200235e 0x2 + .text.rtc_gpio_pullup_dis + 0x42002360 0x8c zephyr/libzephyr.a(rtc_io.c.obj) + 0x90 (size before relaxing) + 0x42002360 rtc_gpio_pullup_dis + .text.rtc_gpio_pulldown_en + 0x420023ec 0x5e zephyr/libzephyr.a(rtc_io.c.obj) + 0x62 (size before relaxing) + 0x420023ec rtc_gpio_pulldown_en + *fill* 0x4200244a 0x2 + .text.rtc_gpio_pulldown_dis + 0x4200244c 0x5e zephyr/libzephyr.a(rtc_io.c.obj) + 0x62 (size before relaxing) + 0x4200244c rtc_gpio_pulldown_dis + *fill* 0x420024aa 0x2 + .text.clk_hal_lp_slow_get_freq_hz + 0x420024ac 0x22 zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x420024ac clk_hal_lp_slow_get_freq_hz + *fill* 0x420024ce 0x2 + .text.clk_hal_xtal_get_freq_mhz + 0x420024d0 0x34 zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x420024d0 clk_hal_xtal_get_freq_mhz + .text.clk_hal_soc_root_get_freq_mhz + 0x42002504 0x2b zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x2f (size before relaxing) + 0x42002504 clk_hal_soc_root_get_freq_mhz + *fill* 0x4200252f 0x1 + .text.clk_hal_cpu_get_freq_hz + 0x42002530 0x86 zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x42002530 clk_hal_cpu_get_freq_hz + *fill* 0x420025b6 0x2 + .text.clk_hal_apb_get_freq_hz + 0x420025b8 0x1e zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x420025b8 clk_hal_apb_get_freq_hz + *fill* 0x420025d6 0x2 + .text.esp_clk_slowclk_cal_set + 0x420025d8 0xd zephyr/libzephyr.a(esp_clk.c.obj) + 0x420025d8 esp_clk_slowclk_cal_set + *fill* 0x420025e5 0x3 + .text.periph_ll_enable_clk_clear_rst + 0x420025e8 0x95 zephyr/libzephyr.a(periph_ctrl.c.obj) + *fill* 0x4200267d 0x3 + .text.periph_ll_disable_clk_set_rst + 0x42002680 0x96 zephyr/libzephyr.a(periph_ctrl.c.obj) + *fill* 0x42002716 0x2 + .text.periph_rcc_acquire_enter + 0x42002718 0x13 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x42002718 periph_rcc_acquire_enter + *fill* 0x4200272b 0x1 + .text.periph_rcc_acquire_exit + 0x4200272c 0x16 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x4200272c periph_rcc_acquire_exit + *fill* 0x42002742 0x2 + .text.periph_module_enable + 0x42002744 0x32 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x36 (size before relaxing) + 0x42002744 periph_module_enable + *fill* 0x42002776 0x2 + .text.periph_module_disable + 0x42002778 0x34 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x38 (size before relaxing) + 0x42002778 periph_module_disable + .text.non_shared_periph_module_enable + 0x420027ac 0x44d zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x420027ac non_shared_periph_module_enable + *fill* 0x42002bf9 0x3 + .text.non_shared_periph_module_disable + 0x42002bfc 0x17c zephyr/libzephyr.a(periph_ctrl.c.obj) + 0x42002bfc non_shared_periph_module_disable + .text.esp_clk_tree_src_get_freq_hz + 0x42002d78 0xee zephyr/libzephyr.a(esp_clk_tree.c.obj) + 0xfa (size before relaxing) + 0x42002d78 esp_clk_tree_src_get_freq_hz + *fill* 0x42002e66 0x2 + .text.esp_cpu_intr_get_desc + 0x42002e68 0x32 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + 0x42002e68 esp_cpu_intr_get_desc + *fill* 0x42002e9a 0x2 + .text.get_rtc_dbias_by_efuse$constprop$0 + 0x42002e9c 0xaa zephyr/libzephyr.a(rtc_init.c.obj) + *fill* 0x42002f46 0x2 + .text.rtc_init + 0x42002f48 0x6af zephyr/libzephyr.a(rtc_init.c.obj) + 0x6bf (size before relaxing) + 0x42002f48 rtc_init + *fill* 0x420035f7 0x1 + .text.sar_periph_ctrl_init + 0x420035f8 0x2c zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + 0x420035f8 sar_periph_ctrl_init + .text.esp_clk_tree_rc_fast_d256_get_freq_hz + 0x42003624 0x4b zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x42003624 esp_clk_tree_rc_fast_d256_get_freq_hz + *fill* 0x4200366f 0x1 + .text.esp_clk_tree_xtal32k_get_freq_hz + 0x42003670 0x4f zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x42003670 esp_clk_tree_xtal32k_get_freq_hz + *fill* 0x420036bf 0x1 + .text.esp_clk_tree_lp_slow_get_freq_hz + 0x420036c0 0x42 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x420036c0 esp_clk_tree_lp_slow_get_freq_hz + *fill* 0x42003702 0x2 + .text.esp_clk_tree_rc_fast_get_freq_hz + 0x42003704 0x13 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x16 (size before relaxing) + 0x42003704 esp_clk_tree_rc_fast_get_freq_hz + *fill* 0x42003717 0x1 + .text.esp_clk_tree_lp_fast_get_freq_hz + 0x42003718 0x39 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x3d (size before relaxing) + 0x42003718 esp_clk_tree_lp_fast_get_freq_hz + *fill* 0x42003751 0x3 + .text.esp_sleep_sub_mode_config + 0x42003754 0x52 zephyr/libzephyr.a(sleep_modes.c.obj) + 0x42003754 esp_sleep_sub_mode_config + *fill* 0x420037a6 0x2 + .text.esp_sleep_sub_mode_force_disable + 0x420037a8 0x2a zephyr/libzephyr.a(sleep_modes.c.obj) + 0x420037a8 esp_sleep_sub_mode_force_disable + *fill* 0x420037d2 0x2 + .text.esp_sleep_sub_mode_dump_config + 0x420037d4 0x32 zephyr/libzephyr.a(sleep_modes.c.obj) + 0x36 (size before relaxing) + 0x420037d4 esp_sleep_sub_mode_dump_config + *fill* 0x42003806 0x2 + .text 0x42003808 0x56 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + 0x42003808 cache_writeback_items_freeze + *fill* 0x4200385e 0x2 + .text.esp_rtc_init + 0x42003860 0x2c zephyr/libzephyr.a(clk.c.obj) + 0x42003860 esp_rtc_init + .text.esp_perip_clk_init + 0x4200388c 0x148 zephyr/libzephyr.a(clk.c.obj) + 0x4200388c esp_perip_clk_init + .text.esp_reset_reason_get_hint + 0x420039d4 0x1c zephyr/libzephyr.a(reset_reason.c.obj) + 0x420039d4 esp_reset_reason_get_hint + .text.esp_reset_reason_init + 0x420039f0 0x7a zephyr/libzephyr.a(reset_reason.c.obj) + 0x7e (size before relaxing) + 0x420039f0 esp_reset_reason_init + *fill* 0x42003a6a 0x2 + .text.esp_timer_impl_early_init + 0x42003a6c 0xa8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + 0xac (size before relaxing) + 0x42003a6c esp_timer_impl_early_init + .text.esp_timer_early_init + 0x42003b14 0xa zephyr/libzephyr.a(esp_timer_init.c.obj) + 0xd (size before relaxing) + 0x42003b14 esp_timer_early_init + *fill* 0x42003b1e 0x2 + .text.__assert_no_args + 0x42003b20 0x6 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + 0x9 (size before relaxing) + 0x42003b20 __assert_no_args + *fill* 0x42003b26 0x2 + .text.cbvprintf + 0x42003b28 0x2e zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + 0x32 (size before relaxing) + 0x42003b28 cbvprintf + *fill* 0x42003b56 0x2 + .text.z_impl_zephyr_fputc + 0x42003b58 0x12 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x42003b58 z_impl_zephyr_fputc + *fill* 0x42003b6a 0x2 + .text.picolibc_put + 0x42003b6c 0x12 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + *fill* 0x42003b7e 0x2 + .text.__stdout_hook_install + 0x42003b80 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x42003b80 __stdout_hook_install + .text.abort 0x42003b98 0x14 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + 0x42003b98 abort + .text.malloc_prepare + 0x42003bac 0x21 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + *fill* 0x42003bcd 0x3 + .text.find_desc_for_int + 0x42003bd0 0x23 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + *fill* 0x42003bf3 0x1 + .text.is_vect_desc_usable + 0x42003bf4 0x8c zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .text.get_desc_for_int + 0x42003c80 0x8a zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + *fill* 0x42003d0a 0x2 + .text.esp_intr_alloc_intrstatus + 0x42003d0c 0x38e zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x39a (size before relaxing) + 0x42003d0c esp_intr_alloc_intrstatus + *fill* 0x4200409a 0x2 + .text.esp_intr_alloc + 0x4200409c 0x18 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x1c (size before relaxing) + 0x4200409c esp_intr_alloc + .text.clock_control_esp32_get_status + 0x420040b4 0x46 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + *fill* 0x420040fa 0x2 + .text.clock_control_esp32_get_rate + 0x420040fc 0x46 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x4a (size before relaxing) + *fill* 0x42004142 0x2 + .text.clock_control_esp32_off + 0x42004144 0x26 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x2a (size before relaxing) + *fill* 0x4200416a 0x2 + .text.clock_control_esp32_on + 0x4200416c 0x2c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x30 (size before relaxing) + .text.esp32_select_rtc_slow_clk + 0x42004198 0xc9 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + *fill* 0x42004261 0x3 + .text.esp32_cpu_clock_configure + 0x42004264 0xfa zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + *fill* 0x4200435e 0x2 + .text.clock_control_esp32_configure + 0x42004360 0x74 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x78 (size before relaxing) + .text.clock_control_esp32_init + 0x420043d4 0xa0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0xa4 (size before relaxing) + .text.uart_console_init + 0x42004474 0x24 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + 0x28 (size before relaxing) + .text.gpio_esp32_pin_interrupt_configure + 0x42004498 0x12e zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x420045c6 0x2 + .text.gpio_esp32_init + 0x420045c8 0x3d zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x42004605 0x3 + .text.sx126x_set_tx_enable + 0x42004608 0x27 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + *fill* 0x4200462f 0x1 + .text.sx126x_dio1_irq_work_handler$part$0 + 0x42004630 0x13 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + *fill* 0x42004643 0x1 + .text.sx126x_dio1_irq_work_handler + 0x42004644 0x2e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x32 (size before relaxing) + *fill* 0x42004672 0x2 + .text.sx126x_lora_init + 0x42004674 0x8c zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x98 (size before relaxing) + .text.SX126xGetOperatingMode + 0x42004700 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42004700 SX126xGetOperatingMode + *fill* 0x4200470a 0x2 + .text.SX126xSetOperatingMode + 0x4200470c 0x23 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x27 (size before relaxing) + 0x4200470c SX126xSetOperatingMode + *fill* 0x4200472f 0x1 + .text.SX126xIoIrqInit + 0x42004730 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42004730 SX126xIoIrqInit + *fill* 0x4200473a 0x2 + .text.SX126xIoRfSwitchInit + 0x4200473c 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xe (size before relaxing) + 0x4200473c SX126xIoRfSwitchInit + *fill* 0x42004746 0x2 + .text.SX126xReset + 0x42004748 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42004748 SX126xReset + .text.SX126xSetRfTxPower + 0x4200475c 0xd zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + 0x4200475c SX126xSetRfTxPower + *fill* 0x42004769 0x3 + .text.SX126xWaitOnBusy + 0x4200476c 0x1e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4200476c SX126xWaitOnBusy + *fill* 0x4200478a 0x2 + .text.sx126x_spi_transceive$isra$0 + 0x4200478c 0x6a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x6e (size before relaxing) + *fill* 0x420047f6 0x2 + .text.SX126xWriteBuffer + 0x420047f8 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x420047f8 SX126xWriteBuffer + .text.SX126xReadBuffer + 0x42004818 0x22 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x26 (size before relaxing) + 0x42004818 SX126xReadBuffer + *fill* 0x4200483a 0x2 + .text.SX126xWriteCommand + 0x4200483c 0x1b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4200483c SX126xWriteCommand + *fill* 0x42004857 0x1 + .text.SX126xReadCommand + 0x42004858 0x21 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x25 (size before relaxing) + 0x42004858 SX126xReadCommand + *fill* 0x42004879 0x3 + .text.SX126xWriteRegisters + 0x4200487c 0x26 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4200487c SX126xWriteRegisters + *fill* 0x420048a2 0x2 + .text.SX126xWriteRegister + 0x420048a4 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x16 (size before relaxing) + 0x420048a4 SX126xWriteRegister + *fill* 0x420048b6 0x2 + .text.SX126xReadRegisters + 0x420048b8 0x2b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x420048b8 SX126xReadRegisters + *fill* 0x420048e3 0x1 + .text.SX126xReadRegister + 0x420048e4 0x15 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x420048e4 SX126xReadRegister + *fill* 0x420048f9 0x3 + .text.SX126xWakeup + 0x420048fc 0x53 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x56 (size before relaxing) + 0x420048fc SX126xWakeup + *fill* 0x4200494f 0x1 + .text.SX126xGetDio1PinState + 0x42004950 0xd zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x10 (size before relaxing) + 0x42004950 SX126xGetDio1PinState + *fill* 0x4200495d 0x3 + .text.timer_work_handler + 0x42004960 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0xb (size before relaxing) + *fill* 0x42004968 0x0 + .text.timer_callback + 0x42004968 0xe zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + *fill* 0x42004976 0x2 + .text.k_uptime_get_32 + 0x42004978 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .text.RtcGetTimerValue + 0x42004990 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0xd (size before relaxing) + 0x42004990 RtcGetTimerValue + *fill* 0x4200499a 0x2 + .text.RtcGetTimerElapsedTime + 0x4200499c 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x13 (size before relaxing) + 0x4200499c RtcGetTimerElapsedTime + *fill* 0x420049ac 0x0 + .text.RtcStopAlarm + 0x420049ac 0xe zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x420049ac RtcStopAlarm + *fill* 0x420049ba 0x2 + .text.RtcSetAlarm + 0x420049bc 0x1a zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x420049bc RtcSetAlarm + *fill* 0x420049d6 0x2 + .text.RtcSetTimerContext + 0x420049d8 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x420049d8 RtcSetTimerContext + *fill* 0x420049ea 0x2 + .text.RtcGetTimerContext + 0x420049ec 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x420049ec RtcGetTimerContext + *fill* 0x420049f6 0x2 + .text.DelayMsMcu + 0x420049f8 0x13 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x420049f8 DelayMsMcu + *fill* 0x42004a0b 0x1 + .text.modem_release$constprop$0 + 0x42004a0c 0x3e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + *fill* 0x42004a4a 0x2 + .text.sx12xx_ev_tx_done + 0x42004a4c 0x1e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + *fill* 0x42004a6a 0x2 + .text.sx12xx_ev_tx_timed_out + 0x42004a6c 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0xb (size before relaxing) + *fill* 0x42004a74 0x0 + .text.sx12xx_ev_rx_error + 0x42004a74 0x30 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .text.sx12xx_ev_rx_done + 0x42004aa4 0xa4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .text.__sx12xx_configure_pin + 0x42004b48 0xd6 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x42004b48 __sx12xx_configure_pin + *fill* 0x42004c1e 0x2 + .text.sx12xx_airtime + 0x42004c20 0x46 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x42004c20 sx12xx_airtime + *fill* 0x42004c66 0x2 + .text.sx12xx_lora_send_async + 0x42004c68 0x36 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x42004c68 sx12xx_lora_send_async + *fill* 0x42004c9e 0x2 + .text.sx12xx_lora_send + 0x42004ca0 0x84 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x8c (size before relaxing) + 0x42004ca0 sx12xx_lora_send + .text.sx12xx_lora_recv + 0x42004d24 0xc0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0xc4 (size before relaxing) + 0x42004d24 sx12xx_lora_recv + .text.sx12xx_lora_recv_async + 0x42004de4 0x42 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x46 (size before relaxing) + 0x42004de4 sx12xx_lora_recv_async + *fill* 0x42004e26 0x2 + .text.sx12xx_lora_config + 0x42004e28 0xe0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0xe4 (size before relaxing) + 0x42004e28 sx12xx_lora_config + .text.sx12xx_lora_test_cw + 0x42004f08 0x2b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x42004f08 sx12xx_lora_test_cw + *fill* 0x42004f33 0x1 + .text.sx12xx_init + 0x42004f34 0x4a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x42004f34 sx12xx_init + *fill* 0x42004f7e 0x2 + .text.gpio_pin_configure_dt + 0x42004f80 0x48 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .text.sx126x_dio1_irq_callback + 0x42004fc8 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .text.z_impl_gpio_pin_interrupt_configure$isra$0 + 0x42004fd8 0x33 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + *fill* 0x4200500b 0x1 + .text.sx126x_reset + 0x4200500c 0x32 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x36 (size before relaxing) + 0x4200500c sx126x_reset + *fill* 0x4200503e 0x2 + .text.sx126x_is_busy + 0x42005040 0x15 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x42005040 sx126x_is_busy + *fill* 0x42005055 0x3 + .text.sx126x_get_dio1_pin_state + 0x42005058 0x15 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x42005058 sx126x_get_dio1_pin_state + *fill* 0x4200506d 0x3 + .text.sx126x_dio1_irq_enable + 0x42005070 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x16 (size before relaxing) + 0x42005070 sx126x_dio1_irq_enable + *fill* 0x42005082 0x2 + .text.sx126x_dio1_irq_disable + 0x42005084 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x16 (size before relaxing) + 0x42005084 sx126x_dio1_irq_disable + *fill* 0x42005096 0x2 + .text.sx126x_set_tx_params + 0x42005098 0xd zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x10 (size before relaxing) + 0x42005098 sx126x_set_tx_params + *fill* 0x420050a5 0x3 + .text.sx126x_variant_init + 0x420050a8 0x6d zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x75 (size before relaxing) + 0x420050a8 sx126x_variant_init + *fill* 0x42005115 0x3 + .text.TimerSetTimeout + 0x42005118 0x27 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x32 (size before relaxing) + *fill* 0x4200513f 0x1 + .text.TimerInsertNewHeadTimer + 0x42005140 0x1e zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + *fill* 0x4200515e 0x2 + .text.TimerStart + 0x42005160 0x73 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x7f (size before relaxing) + 0x42005160 TimerStart + *fill* 0x420051d3 0x1 + .text.TimerIrqHandler + 0x420051d4 0x7f zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x8a (size before relaxing) + 0x420051d4 TimerIrqHandler + *fill* 0x42005253 0x1 + .text.TimerStop + 0x42005254 0x62 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x6e (size before relaxing) + 0x42005254 TimerStop + *fill* 0x420052b6 0x2 + .text.TimerSetValue + 0x420052b8 0x1b zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x27 (size before relaxing) + 0x420052b8 TimerSetValue + *fill* 0x420052d3 0x1 + .text.TimerGetCurrentTime + 0x420052d4 0xf zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x13 (size before relaxing) + 0x420052d4 TimerGetCurrentTime + *fill* 0x420052e3 0x1 + .text.TimerGetElapsedTime + 0x420052e4 0x1a zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x26 (size before relaxing) + 0x420052e4 TimerGetElapsedTime + *fill* 0x420052fe 0x2 + .text.DelayMs 0x42005300 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + 0xe (size before relaxing) + 0x42005300 DelayMs + *fill* 0x4200530a 0x2 + .text.SX126xCheckDeviceReady + 0x4200530c 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x2e (size before relaxing) + 0x4200530c SX126xCheckDeviceReady + *fill* 0x4200532c 0x0 + .text.SX126xSetPayload + 0x4200532c 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4200532c SX126xSetPayload + *fill* 0x4200533e 0x2 + .text.SX126xSetSyncWord + 0x42005340 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42005340 SX126xSetSyncWord + .text.SX126xSetCrcSeed + 0x42005354 0x22 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42005354 SX126xSetCrcSeed + *fill* 0x42005376 0x2 + .text.SX126xSetCrcPolynomial + 0x42005378 0x22 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42005378 SX126xSetCrcPolynomial + *fill* 0x4200539a 0x2 + .text.SX126xSetWhiteningSeed + 0x4200539c 0x34 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3b (size before relaxing) + 0x4200539c SX126xSetWhiteningSeed + *fill* 0x420053d0 0x0 + .text.SX126xSetSleep + 0x420053d0 0x40 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x44 (size before relaxing) + 0x420053d0 SX126xSetSleep + .text.SX126xSetStandby + 0x42005410 0x1d zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x24 (size before relaxing) + 0x42005410 SX126xSetStandby + *fill* 0x4200542d 0x3 + .text.SX126xInit + 0x42005430 0x2a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3e (size before relaxing) + 0x42005430 SX126xInit + *fill* 0x4200545a 0x2 + .text.SX126xSetTx + 0x4200545c 0x26 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x2a (size before relaxing) + 0x4200545c SX126xSetTx + *fill* 0x42005482 0x2 + .text.SX126xSendPayload + 0x42005484 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x18 (size before relaxing) + 0x42005484 SX126xSendPayload + .text.SX126xSetRx + 0x42005498 0x32 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3a (size before relaxing) + 0x42005498 SX126xSetRx + *fill* 0x420054ca 0x2 + .text.SX126xGetRandom + 0x420054cc 0x60 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x7c (size before relaxing) + 0x420054cc SX126xGetRandom + .text.SX126xSetRxBoosted + 0x4200552c 0x32 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3a (size before relaxing) + 0x4200552c SX126xSetRxBoosted + *fill* 0x4200555e 0x2 + .text.SX126xSetRxDutyCycle + 0x42005560 0x34 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x38 (size before relaxing) + 0x42005560 SX126xSetRxDutyCycle + .text.SX126xSetCad + 0x42005594 0x16 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x1a (size before relaxing) + 0x42005594 SX126xSetCad + *fill* 0x420055aa 0x2 + .text.SX126xSetTxContinuousWave + 0x420055ac 0x16 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x1a (size before relaxing) + 0x420055ac SX126xSetTxContinuousWave + *fill* 0x420055c2 0x2 + .text.SX126xSetStopRxTimerOnPreambleDetect + 0x420055c4 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x16 (size before relaxing) + 0x420055c4 SX126xSetStopRxTimerOnPreambleDetect + *fill* 0x420055d6 0x2 + .text.SX126xSetLoRaSymbNumTimeout + 0x420055d8 0x50 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x54 (size before relaxing) + 0x420055d8 SX126xSetLoRaSymbNumTimeout + .text.SX126xSetRegulatorMode + 0x42005628 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42005628 SX126xSetRegulatorMode + .text.SX126xCalibrateImage + 0x4200563c 0x6e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x72 (size before relaxing) + 0x4200563c SX126xCalibrateImage + *fill* 0x420056aa 0x2 + .text.SX126xSetPaConfig + 0x420056ac 0x1e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x420056ac SX126xSetPaConfig + *fill* 0x420056ca 0x2 + .text.SX126xSetDioIrqParams + 0x420056cc 0x32 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x36 (size before relaxing) + 0x420056cc SX126xSetDioIrqParams + *fill* 0x420056fe 0x2 + .text.SX126xGetIrqStatus + 0x42005700 0x1d zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x21 (size before relaxing) + 0x42005700 SX126xGetIrqStatus + *fill* 0x4200571d 0x3 + .text.SX126xSetDio2AsRfSwitchCtrl + 0x42005720 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x16 (size before relaxing) + 0x42005720 SX126xSetDio2AsRfSwitchCtrl + *fill* 0x42005732 0x2 + .text.SX126xSetRfFrequency + 0x42005734 0x68 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x6c (size before relaxing) + 0x42005734 SX126xSetRfFrequency + .text.SX126xSetPacketType + 0x4200579c 0x16 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x1a (size before relaxing) + 0x4200579c SX126xSetPacketType + *fill* 0x420057b2 0x2 + .text.SX126xGetPacketType + 0x420057b4 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x420057b4 SX126xGetPacketType + *fill* 0x420057be 0x2 + .text.SX126xSetTxParams + 0x420057c0 0x7c zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8c (size before relaxing) + 0x420057c0 SX126xSetTxParams + .text.SX126xSetModulationParams + 0x4200583c 0xb0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x4200583c SX126xSetModulationParams + .text.SX126xSetPacketParams + 0x420058ec 0xd4 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xe0 (size before relaxing) + 0x420058ec SX126xSetPacketParams + .text.SX126xSetBufferBaseAddress + 0x420059c0 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x420059c0 SX126xSetBufferBaseAddress + .text.SX126xGetRssiInst + 0x420059d8 0x17 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x1b (size before relaxing) + 0x420059d8 SX126xGetRssiInst + *fill* 0x420059ef 0x1 + .text.SX126xGetRxBufferStatus + 0x420059f0 0x3a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3e (size before relaxing) + 0x420059f0 SX126xGetRxBufferStatus + *fill* 0x42005a2a 0x2 + .text.SX126xGetPayload + 0x42005a2c 0x26 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x2a (size before relaxing) + 0x42005a2c SX126xGetPayload + *fill* 0x42005a52 0x2 + .text.SX126xGetPacketStatus + 0x42005a54 0x86 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x8a (size before relaxing) + 0x42005a54 SX126xGetPacketStatus + *fill* 0x42005ada 0x2 + .text.SX126xClearIrqStatus + 0x42005adc 0x1a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42005adc SX126xClearIrqStatus + *fill* 0x42005af6 0x2 + .text.RadioOnTxTimeoutIrq + 0x42005af8 0x13 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x42005af8 RadioOnTxTimeoutIrq + *fill* 0x42005b0b 0x1 + .text.RadioOnRxTimeoutIrq + 0x42005b0c 0x13 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x42005b0c RadioOnRxTimeoutIrq + *fill* 0x42005b1f 0x1 + .text.RadioOnDioIrq + 0x42005b20 0xd zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x42005b20 RadioOnDioIrq + *fill* 0x42005b2d 0x3 + .text.RadioStandby + 0x42005b30 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xe (size before relaxing) + 0x42005b30 RadioStandby + *fill* 0x42005b3a 0x2 + .text.RadioGetStatus + 0x42005b3c 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x1b (size before relaxing) + 0x42005b3c RadioGetStatus + *fill* 0x42005b54 0x0 + .text.RadioSetChannel + 0x42005b54 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xe (size before relaxing) + 0x42005b54 RadioSetChannel + *fill* 0x42005b5e 0x2 + .text.RadioRead + 0x42005b60 0xd zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x10 (size before relaxing) + 0x42005b60 RadioRead + *fill* 0x42005b6d 0x3 + .text.RadioWrite + 0x42005b70 0xe zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x11 (size before relaxing) + 0x42005b70 RadioWrite + *fill* 0x42005b7e 0x2 + .text.RadioSend + 0x42005b80 0x4a zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x5a (size before relaxing) + 0x42005b80 RadioSend + *fill* 0x42005bca 0x2 + .text.RadioSleep + 0x42005bcc 0x12 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x16 (size before relaxing) + 0x42005bcc RadioSleep + *fill* 0x42005bde 0x2 + .text.RadioSetRxDutyCycle + 0x42005be0 0xf zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x42005be0 RadioSetRxDutyCycle + *fill* 0x42005bef 0x1 + .text.RadioReadBuffer + 0x42005bf0 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x13 (size before relaxing) + 0x42005bf0 RadioReadBuffer + *fill* 0x42005c00 0x0 + .text.RadioWriteBuffer + 0x42005c00 0x10 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x13 (size before relaxing) + 0x42005c00 RadioWriteBuffer + *fill* 0x42005c10 0x0 + .text.RadioStartCad + 0x42005c10 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x1c (size before relaxing) + 0x42005c10 RadioStartCad + .text.RadioSetTxContinuousWave + 0x42005c28 0x32 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x42 (size before relaxing) + 0x42005c28 RadioSetTxContinuousWave + *fill* 0x42005c5a 0x2 + .text.RadioRssi + 0x42005c5c 0xb zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xe (size before relaxing) + 0x42005c5c RadioRssi + *fill* 0x42005c67 0x1 + .text.RadioGetWakeupTime + 0x42005c68 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0xd (size before relaxing) + 0x42005c68 RadioGetWakeupTime + *fill* 0x42005c72 0x2 + .text.RadioIrqProcess + 0x42005c74 0x168 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x1b0 (size before relaxing) + 0x42005c74 RadioIrqProcess + .text.RadioGetFskBandwidthRegValue + 0x42005ddc 0x30 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .text.RadioSetMaxPayloadLength + 0x42005e0c 0x33 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x36 (size before relaxing) + 0x42005e0c RadioSetMaxPayloadLength + *fill* 0x42005e3f 0x1 + .text.RadioRx 0x42005e40 0x3d zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x48 (size before relaxing) + 0x42005e40 RadioRx + *fill* 0x42005e7d 0x3 + .text.RadioRxBoosted + 0x42005e80 0x3d zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x48 (size before relaxing) + 0x42005e80 RadioRxBoosted + *fill* 0x42005ebd 0x3 + .text.RadioTimeOnAir + 0x42005ec0 0xe7 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x42005ec0 RadioTimeOnAir + *fill* 0x42005fa7 0x1 + .text.RadioSetPublicNetwork + 0x42005fa8 0x3a zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x42 (size before relaxing) + 0x42005fa8 RadioSetPublicNetwork + *fill* 0x42005fe2 0x2 + .text.RadioSetModem$part$0 + 0x42005fe4 0x1c zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x23 (size before relaxing) + *fill* 0x42006000 0x0 + .text.RadioSetModem + 0x42006000 0x1e zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x21 (size before relaxing) + 0x42006000 RadioSetModem + *fill* 0x4200601e 0x2 + .text.RadioSetRxConfig + 0x42006020 0x1af zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x1e3 (size before relaxing) + 0x42006020 RadioSetRxConfig + *fill* 0x420061cf 0x1 + .text.RadioSetTxConfig + 0x420061d0 0x167 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x197 (size before relaxing) + 0x420061d0 RadioSetTxConfig + *fill* 0x42006337 0x1 + .text.RadioIsChannelFree + 0x42006338 0x67 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x82 (size before relaxing) + 0x42006338 RadioIsChannelFree + *fill* 0x4200639f 0x1 + .text.RadioRandom + 0x420063a0 0x1a zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x22 (size before relaxing) + 0x420063a0 RadioRandom + *fill* 0x420063ba 0x2 + .text.RadioAddRegisterToRetentionList + 0x420063bc 0x5b zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x420063bc RadioAddRegisterToRetentionList + *fill* 0x42006417 0x1 + .text.RadioInit + 0x42006418 0x62 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x82 (size before relaxing) + 0x42006418 RadioInit + *fill* 0x4200647a 0x2 + .text.pinctrl_configure_pins + 0x4200647c 0x38d zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + 0x4200647c pinctrl_configure_pins + *fill* 0x42006809 0x3 + .text.serial_esp32_usb_poll_in + 0x4200680c 0x24 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_fifo_fill + 0x42006830 0x35 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x42006865 0x3 + .text.serial_esp32_usb_irq_tx_enable + 0x42006868 0x34 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_irq_tx_ready + 0x4200689c 0x1a zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x420068b6 0x2 + .text.serial_esp32_usb_irq_rx_disable + 0x420068b8 0x17 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x420068cf 0x1 + .text.serial_esp32_usb_irq_tx_complete + 0x420068d0 0x10 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_irq_rx_ready + 0x420068e0 0x10 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_irq_is_pending + 0x420068f0 0x1c zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_irq_update + 0x4200690c 0x18 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_init + 0x42006924 0x7c zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_irq_tx_disable + 0x420069a0 0x17 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x420069b7 0x1 + .text.serial_esp32_usb_irq_rx_enable + 0x420069b8 0x1c zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_poll_out + 0x420069d4 0xb0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .text.serial_esp32_usb_fifo_read + 0x42006a84 0x26 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x42006aaa 0x2 + .text.uart_esp32_irq_is_pending + 0x42006aac 0x1a zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x1e (size before relaxing) + *fill* 0x42006ac6 0x2 + .text.uart_esp32_fifo_read + 0x42006ac8 0x26 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x42006aee 0x2 + .text.uart_esp32_poll_in + 0x42006af0 0x24 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x28 (size before relaxing) + .text.uart_esp32_fifo_fill + 0x42006b14 0x20 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .text.uart_esp32_poll_out + 0x42006b34 0x28 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .text.uart_esp32_config_get + 0x42006b5c 0x124 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x130 (size before relaxing) + .text.uart_esp32_configure + 0x42006c80 0x1bd zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x1dd (size before relaxing) + *fill* 0x42006e3d 0x3 + .text.uart_esp32_init + 0x42006e40 0xca zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0xda (size before relaxing) + *fill* 0x42006f0a 0x2 + .text.z_log_msg_simple_create_0 + 0x42006f0c 0x12 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + *fill* 0x42006f1e 0x2 + .text._spi_context_cs_control + 0x42006f20 0x42 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x46 (size before relaxing) + *fill* 0x42006f62 0x2 + .text.spi_context_unlock_unconditionally + 0x42006f64 0x1e zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x22 (size before relaxing) + *fill* 0x42006f82 0x2 + .text.spi_esp32_release + 0x42006f84 0xf zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + *fill* 0x42006f93 0x1 + .text.spi_esp32_gdma_config$isra$0 + 0x42006f94 0xd3 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0xd7 (size before relaxing) + *fill* 0x42007067 0x1 + .text.spi_esp32_transceive + 0x42007068 0x253 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x25b (size before relaxing) + *fill* 0x420072bb 0x1 + .text.spi_esp32_init + 0x420072bc 0x1ae zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x1c2 (size before relaxing) + *fill* 0x4200746a 0x2 + .text.fprintf 0x4200746c 0x29 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + 0x4200746c fprintf + *fill* 0x42007495 0x3 + .text.snprintf + 0x42007498 0x5e /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + 0x42007498 snprintf + *fill* 0x420074f6 0x2 + .text.__l_vfprintf + 0x420074f8 0x588 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + 0x420074f8 __l_vfprintf + .text._OffsetAbsSyms + 0x42007a80 0x5 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + 0x42007a80 _OffsetAbsSyms + *fill* 0x42007a85 0x0 + *fill* 0x42007a85 0x0 + *fill* 0x42007a85 0x3 + .text.kiss_encode_cmd + 0x42007a88 0x6a app/libapp.a(kiss.c.obj) + 0x42007a88 kiss_encode_cmd + *fill* 0x42007af2 0x2 + .text.kiss_decoder_init + 0x42007af4 0xf app/libapp.a(kiss.c.obj) + 0x42007af4 kiss_decoder_init + *fill* 0x42007b03 0x1 + .text.kiss_decoder_feed + 0x42007b04 0x8b app/libapp.a(kiss.c.obj) + 0x42007b04 kiss_decoder_feed + *fill* 0x42007b8f 0x1 + .text.params_to_cfg + 0x42007b90 0xbf app/libapp.a(lora_modem.c.obj) + *fill* 0x42007c4f 0x0 + *fill* 0x42007c4f 0x0 + *fill* 0x42007c4f 0x0 + *fill* 0x42007c4f 0x0 + *fill* 0x42007c4f 0x0 + *fill* 0x42007c4f 0x0 + *fill* 0x42007c4f 0x1 + .text.chunk_field + 0x42007c50 0x24 zephyr/libzephyr.a(heap.c.obj) + .text.chunk_set + 0x42007c74 0x24 zephyr/libzephyr.a(heap.c.obj) + *fill* 0x42007c98 0x0 + .text.set_chunk_used + 0x42007c98 0x3b zephyr/libzephyr.a(heap.c.obj) + *fill* 0x42007cd3 0x0 + *fill* 0x42007cd3 0x1 + .text.mem_to_chunkid + 0x42007cd4 0x1c zephyr/libzephyr.a(heap.c.obj) + .text.bucket_idx + 0x42007cf0 0x22 zephyr/libzephyr.a(heap.c.obj) + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x0 + *fill* 0x42007d12 0x2 + .text.free_space + 0x42007d14 0x28 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .text.idx_inc 0x42007d3c 0x20 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + *fill* 0x42007d5c 0x0 + *fill* 0x42007d5c 0x0 + *fill* 0x42007d5c 0x0 + *fill* 0x42007d5c 0x0 + *fill* 0x42007d5c 0x0 + *fill* 0x42007d5c 0x0 + .text.mpsc_pbuf_is_pending + 0x42007d5c 0x27 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x42007d5c mpsc_pbuf_is_pending + *fill* 0x42007d83 0x1 + .text._ConfigAbsSyms + 0x42007d84 0x5 zephyr/libzephyr.a(configs.c.obj) + 0x42007d84 _ConfigAbsSyms + *fill* 0x42007d89 0x0 + *fill* 0x42007d89 0x0 + *fill* 0x42007d89 0x3 + .text.spi_flash_chip_list_check + 0x42007d8c 0x5 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + 0x42007d8c spi_flash_chip_list_check + *fill* 0x42007d91 0x3 + .text.uart_hal_get_sclk + 0x42007d94 0x1e zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007d94 uart_hal_get_sclk + *fill* 0x42007db2 0x2 + .text.uart_hal_get_baudrate + 0x42007db4 0x38 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007db4 uart_hal_get_baudrate + .text.uart_hal_set_stop_bits + 0x42007dec 0x20 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007dec uart_hal_set_stop_bits + .text.uart_hal_get_stop_bits + 0x42007e0c 0x11 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007e0c uart_hal_get_stop_bits + *fill* 0x42007e1d 0x3 + .text.uart_hal_set_data_bit_num + 0x42007e20 0x1f zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007e20 uart_hal_set_data_bit_num + *fill* 0x42007e3f 0x1 + .text.uart_hal_get_data_bit_num + 0x42007e40 0x11 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007e40 uart_hal_get_data_bit_num + *fill* 0x42007e51 0x3 + .text.uart_hal_set_parity + 0x42007e54 0x35 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007e54 uart_hal_set_parity + *fill* 0x42007e89 0x3 + .text.uart_hal_get_parity + 0x42007e8c 0x20 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007e8c uart_hal_get_parity + *fill* 0x42007eac 0x0 + .text.uart_hal_get_hw_flow_ctrl + 0x42007eac 0x24 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007eac uart_hal_get_hw_flow_ctrl + .text.uart_hal_set_rxfifo_full_thr + 0x42007ed0 0x1d zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007ed0 uart_hal_set_rxfifo_full_thr + *fill* 0x42007eed 0x0 + *fill* 0x42007eed 0x0 + *fill* 0x42007eed 0x3 + .text.uart_hal_get_symb_len + 0x42007ef0 0x43 zephyr/libzephyr.a(uart_hal.c.obj) + 0x42007ef0 uart_hal_get_symb_len + *fill* 0x42007f33 0x0 + *fill* 0x42007f33 0x0 + *fill* 0x42007f33 0x0 + *fill* 0x42007f33 0x1 + .text.uart_hal_write_txfifo + 0x42007f34 0x3a zephyr/libzephyr.a(uart_hal_iram.c.obj) + 0x42007f34 uart_hal_write_txfifo + *fill* 0x42007f6e 0x2 + .text.uart_hal_read_rxfifo + 0x42007f70 0x2d zephyr/libzephyr.a(uart_hal_iram.c.obj) + 0x42007f70 uart_hal_read_rxfifo + *fill* 0x42007f9d 0x0 + *fill* 0x42007f9d 0x0 + *fill* 0x42007f9d 0x0 + *fill* 0x42007f9d 0x0 + *fill* 0x42007f9d 0x3 + .text.spi_hal_user_start + 0x42007fa0 0x36 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x42007fa0 spi_hal_user_start + *fill* 0x42007fd6 0x2 + .text.spi_hal_usr_is_done + 0x42007fd8 0xf zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x42007fd8 spi_hal_usr_is_done + *fill* 0x42007fe7 0x1 + .text.spi_hal_push_tx_buffer + 0x42007fe8 0x46 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x42007fe8 spi_hal_push_tx_buffer + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x0 + *fill* 0x4200802e 0x2 + .text.cbputc 0x42008030 0x11 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + *fill* 0x42008041 0x0 + *fill* 0x42008041 0x0 + *fill* 0x42008041 0x0 + *fill* 0x42008041 0x0 + *fill* 0x42008041 0x3 + .text.z_xt_ints_off + 0x42008044 0x14 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + *fill* 0x42008058 0x0 + *fill* 0x42008058 0x0 + *fill* 0x42008058 0x0 + *fill* 0x42008058 0x0 + *fill* 0x42008058 0x0 + *fill* 0x42008058 0x0 + *fill* 0x42008058 0x0 + *fill* 0x42008058 0x0 + .text.gpio_esp32_port_get_raw + 0x42008058 0x26 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x4200807e 0x2 + .text.gpio_esp32_port_set_masked_raw + 0x42008080 0x58 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .text.gpio_esp32_port_set_bits_raw + 0x420080d8 0x2e zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x42008106 0x2 + .text.gpio_esp32_port_clear_bits_raw + 0x42008108 0x2e zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x42008136 0x2 + .text.gpio_esp32_port_toggle_bits + 0x42008138 0x48 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x42008180 0x0 + .text.gpio_esp32_manage_callback + 0x42008180 0x58 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .text.gpio_esp32_get_pending_int + 0x420081d8 0x26 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x420081fe 0x2 + .text.gpio_esp32_sys_init + 0x42008200 0x7 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + *fill* 0x42008207 0x0 + *fill* 0x42008207 0x0 + *fill* 0x42008207 0x0 + *fill* 0x42008207 0x0 + *fill* 0x42008207 0x1 + .text.SX126xAntSwOn + 0x42008208 0x5 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42008208 SX126xAntSwOn + *fill* 0x4200820d 0x3 + .text.SX126xAntSwOff + 0x42008210 0x5 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42008210 SX126xAntSwOff + *fill* 0x42008215 0x0 + *fill* 0x42008215 0x0 + *fill* 0x42008215 0x3 + .text.SX126xGetBoardTcxoWakeupTime + 0x42008218 0x7 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42008218 SX126xGetBoardTcxoWakeupTime + *fill* 0x4200821f 0x1 + .text.SX126xGetDeviceId + 0x42008220 0x7 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42008220 SX126xGetDeviceId + *fill* 0x42008227 0x0 + *fill* 0x42008227 0x1 + .text.SX126xIoTcxoInit + 0x42008228 0x5 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x42008228 SX126xIoTcxoInit + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x0 + *fill* 0x4200822d 0x3 + .text.RtcGetMinimumTimeout + 0x42008230 0x7 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x42008230 RtcGetMinimumTimeout + *fill* 0x42008237 0x0 + *fill* 0x42008237 0x0 + *fill* 0x42008237 0x0 + *fill* 0x42008237 0x0 + *fill* 0x42008237 0x0 + *fill* 0x42008237 0x1 + .text.RtcMs2Tick + 0x42008238 0x5 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x42008238 RtcMs2Tick + *fill* 0x4200823d 0x3 + .text.RtcTick2Ms + 0x42008240 0x5 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x42008240 RtcTick2Ms + *fill* 0x42008245 0x3 + .text.BoardCriticalSectionBegin + 0x42008248 0xa zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x42008248 BoardCriticalSectionBegin + *fill* 0x42008252 0x2 + .text.BoardCriticalSectionEnd + 0x42008254 0xd zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x42008254 BoardCriticalSectionEnd + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x0 + *fill* 0x42008261 0x3 + .text.gpio_pin_get + 0x42008264 0x2b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + *fill* 0x4200828f 0x1 + .text.gpio_pin_set$isra$0 + 0x42008290 0x2a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x0 + *fill* 0x420082ba 0x2 + .text.TimerInit + 0x420082bc 0x14 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x420082bc TimerInit + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + *fill* 0x420082d0 0x0 + .text.RadioCheckRfFrequency + 0x420082d0 0x7 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x420082d0 RadioCheckRfFrequency + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x0 + *fill* 0x420082d7 0x1 + .text.pinctrl_lookup_state + 0x420082d8 0x2d zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + 0x420082d8 pinctrl_lookup_state + *fill* 0x42008305 0x0 + *fill* 0x42008305 0x3 + .text.serial_esp32_usb_err_check + 0x42008308 0x7 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x4200830f 0x0 + *fill* 0x4200830f 0x0 + *fill* 0x4200830f 0x0 + *fill* 0x4200830f 0x1 + .text.serial_esp32_usb_irq_err_enable + 0x42008310 0x5 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x42008315 0x3 + .text.serial_esp32_usb_irq_callback_set + 0x42008318 0xb zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x42008323 0x1 + .text.serial_esp32_usb_irq_err_disable + 0x42008324 0x5 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + *fill* 0x42008329 0x0 + *fill* 0x42008329 0x0 + *fill* 0x42008329 0x3 + .text.uart_esp32_err_check + 0x4200832c 0x13 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x4200833f 0x1 + .text.uart_esp32_irq_tx_enable + 0x42008340 0x1f zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x4200835f 0x1 + .text.uart_esp32_irq_tx_disable + 0x42008360 0x18 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .text.uart_esp32_irq_tx_ready + 0x42008378 0x1e zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x42008396 0x2 + .text.uart_esp32_irq_rx_disable + 0x42008398 0x2a zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x420083c2 0x2 + .text.uart_esp32_irq_tx_complete + 0x420083c4 0x23 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x420083e7 0x1 + .text.uart_esp32_irq_rx_ready + 0x420083e8 0x16 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x420083fe 0x2 + .text.uart_esp32_irq_err_enable + 0x42008400 0x29 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x42008429 0x3 + .text.uart_esp32_irq_err_disable + 0x4200842c 0x29 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x42008455 0x0 + *fill* 0x42008455 0x3 + .text.uart_esp32_irq_update + 0x42008458 0x25 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x4200847d 0x3 + .text.uart_esp32_irq_callback_set + 0x42008480 0xb zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x4200848b 0x1 + .text.uart_esp32_irq_rx_enable + 0x4200848c 0x38 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + *fill* 0x420084c4 0x0 + *fill* 0x420084c4 0x0 + *fill* 0x420084c4 0x0 + .text.spi_context_get_next_buf + 0x420084c4 0x2e zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + *fill* 0x420084f2 0x0 + *fill* 0x420084f2 0x2 + .text.gpio_pin_set_dt$isra$0 + 0x420084f4 0x2e zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x0 + *fill* 0x42008522 0x2 + .text.__ultoa_invert + 0x42008524 0xe4 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .text.__file_str_put + 0x42008608 0x16 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + 0x42008608 __file_str_put + 0x4200862e . = (. + 0x10) + *fill* 0x4200861e 0x10 + 0x4200862e _text_end = ABSOLUTE (.) + 0x4200862e _instruction_reserved_end = ABSOLUTE (.) + 0x4200862e __text_region_end = ABSOLUTE (.) + 0x4200862e __rom_region_end = ABSOLUTE (.) + 0x4200862e _etext = . + +.flash.rodata_dummy + 0x3c000000 0x10000 + 0x3c000000 _flash_rodata_dummy_start = ABSOLUTE (.) + 0x3c00862e . = (. + SIZEOF (.text)) + *fill* 0x3c000000 0x862e + 0x3c010000 . = ALIGN (0x10000) + *fill* 0x3c00862e 0x79d2 + 0x00020000 _image_drom_start = LOADADDR (.flash.rodata) + 0x00001e60 _image_drom_size = ((LOADADDR (.flash.rodata_end) + SIZEOF (.flash.rodata_end)) - _image_drom_start) + 0x3c010000 _image_drom_vaddr = ADDR (.flash.rodata) + +.flash.rodata 0x3c010000 0x1c24 load address 0x00020000 + 0x3c010000 _image_rodata_start = ABSOLUTE (.) + 0x3c010000 _rodata_reserved_start = ABSOLUTE (.) + 0x3c010000 _rodata_start = ABSOLUTE (.) + 0x3c010000 __rodata_region_start = ABSOLUTE (.) + 0x3c010000 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.irom1.text)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.r.*)) + *(SORT_BY_ALIGNMENT(.rodata)) + .rodata 0x3c010000 0x8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .rodata 0x3c010008 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + *(SORT_BY_ALIGNMENT(.rodata.*)) + .rodata.kiss_rx_fn + 0x3c010010 0x1c app/libapp.a(main.c.obj) + .rodata.cbvprintf_package + 0x3c01002c 0xbc zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .rodata.rtc_io_desc + 0x3c0100e8 0x4d0 zephyr/libzephyr.a(rtc_io_periph.c.obj) + 0x3c0100e8 rtc_io_desc + .rodata.non_shared_periph_module_enable + 0x3c0105b8 0x74 zephyr/libzephyr.a(periph_ctrl.c.obj) + .rodata.non_shared_periph_module_disable + 0x3c01062c 0x74 zephyr/libzephyr.a(periph_ctrl.c.obj) + .rodata.CSWTCH$8 + 0x3c0106a0 0x2c zephyr/libzephyr.a(periph_ctrl.c.obj) + .rodata.CSWTCH$6 + 0x3c0106cc 0x2c zephyr/libzephyr.a(periph_ctrl.c.obj) + .rodata.esp_clk_tree_src_get_freq_hz + 0x3c0106f8 0x2c zephyr/libzephyr.a(esp_clk_tree.c.obj) + .rodata.intr_desc_table + 0x3c010724 0x200 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .rodata.s_submode2str + 0x3c010924 0x24 zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.g_mmu_mem_regions + 0x3c010948 0x18 zephyr/libzephyr.a(ext_mem_layout.c.obj) + 0x3c010948 g_mmu_mem_regions + .rodata.esp_reset_reason_init + 0x3c010960 0x58 zephyr/libzephyr.a(reset_reason.c.obj) + .rodata.GPIO_PIN_MUX_REG + 0x3c0109b8 0xc4 zephyr/libzephyr.a(gpio_periph.c.obj) + 0x3c0109b8 GPIO_PIN_MUX_REG + .rodata.CSWTCH$695 + 0x3c010a7c 0x2c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .rodata.esp32_clock_config0 + 0x3c010aa8 0x14 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .rodata.dev_config + 0x3c010abc 0x28 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .rodata.sx126x_gpio_dio1 + 0x3c010ae4 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .rodata.sx126x_gpio_busy + 0x3c010aec 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .rodata.sx126x_gpio_reset + 0x3c010af4 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .rodata.CSWTCH$50 + 0x3c010afc 0x2c zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .rodata.Bandwidths + 0x3c010b28 0xc zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3c010b28 Bandwidths + .rodata.FskBandwidths + 0x3c010b34 0xb0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3c010b34 FskBandwidths + .rodata.Radio 0x3c010be4 0x6c zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x3c010be4 Radio + .rodata.esp32_gpio_ports_addrs + 0x3c010c50 0x8 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .rodata.spi_config_0 + 0x3c010c58 0x44 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.__compound_literal$0 + 0x3c010c9c 0x8 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.__pinctrl_dev_config__device_dts_ord_103 + 0x3c010ca4 0x8 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.__pinctrl_states__device_dts_ord_103 + 0x3c010cac 0x8 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.__pinctrl_state_pins_0__device_dts_ord_103 + 0x3c010cb4 0x18 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.cfg$0 0x3c010ccc 0xc zephyr/kernel/libkernel.a(system_work_q.c.obj) + .rodata.__l_vfprintf + 0x3c010cd8 0x90 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .rodata.lora_rx_fn.str1.1 + 0x3c010d68 0xd6c app/libapp.a(main.c.obj) + 0x47 (size before relaxing) + .rodata.kiss_rx_fn.str1.1 + 0x3c011ad4 0x132 app/libapp.a(main.c.obj) + .rodata.main.str1.1 + 0x3c011ad4 0x44 app/libapp.a(main.c.obj) + .rodata.str1.1 + 0x3c011ad4 0x5 app/libapp.a(main.c.obj) + .rodata.lora_modem_init.str1.1 + 0x3c011ad4 0x42 app/libapp.a(lora_modem.c.obj) + .rodata.lora_modem_set_params.str1.1 + 0x3c011ad4 0x31 app/libapp.a(lora_modem.c.obj) + .rodata.lora_modem_set_freq.str1.1 + 0x3c011ad4 0x17 app/libapp.a(lora_modem.c.obj) + .rodata.lora_modem_send.str1.1 + 0x3c011ad4 0x30 app/libapp.a(lora_modem.c.obj) + .rodata.lora_modem_recv.str1.1 + 0x3c011ad4 0x1b app/libapp.a(lora_modem.c.obj) + .rodata.str1.1 + 0x3c011ad4 0xb app/libapp.a(lora_modem.c.obj) + .rodata.inplace_realloc$isra$0.str1.1 + 0x3c011ad4 0x4d zephyr/libzephyr.a(heap.c.obj) + .rodata.sys_heap_free.str1.1 + 0x3c011ad4 0x25 zephyr/libzephyr.a(heap.c.obj) + .rodata.str1.1 + 0x3c011ad4 0x8 zephyr/libzephyr.a(heap.c.obj) + .rodata.cbprintf_package_convert.str1.1 + 0x3c011ad4 0xa3 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .rodata.str1.1 + 0x3c011ad4 0x11 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .rodata.str1.1 + 0x3c011ad4 0xb zephyr/libzephyr.a(getopt.c.obj) + .rodata.str1.1 + 0x3c011ad4 0x9 zephyr/libzephyr.a(log_mgmt.c.obj) + .rodata.z_impl_z_log_msg_static_create.str1.1 + 0x3c011ad4 0x3f zephyr/libzephyr.a(log_msg.c.obj) + .rodata.z_log_msg_runtime_vcreate.str1.1 + 0x3c011ad4 0x38 zephyr/libzephyr.a(log_msg.c.obj) + .rodata.rtc_gpio_init.str1.1 + 0x3c011ad4 0x2a zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6 + 0x3c011ad4 0x16 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$7 + 0x3c011aea 0x15 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8 + 0x3c011aff 0x14 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.__FUNCTION__$9 + 0x3c011b13 0x13 zephyr/libzephyr.a(rtc_io.c.obj) + .rodata.clk_hal_xtal_get_freq_mhz.str1.1 + 0x3c011b26 0x3f zephyr/libzephyr.a(clk_tree_hal.c.obj) + .rodata.clk_hal_cpu_get_freq_hz.str1.1 + 0x3c011b26 0x1c zephyr/libzephyr.a(clk_tree_hal.c.obj) + .rodata.rtc_io_num_map + 0x3c011b26 0x31 zephyr/libzephyr.a(rtc_io_periph.c.obj) + 0x3c011b26 rtc_io_num_map + .rodata.esp_clk_tree_src_get_freq_hz.str1.1 + 0x3c011b57 0xa8 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .rodata.__FUNCTION__$0 + 0x3c011b57 0x1d zephyr/libzephyr.a(esp_clk_tree.c.obj) + .rodata.rtc_init.str1.1 + 0x3c011b74 0x2a zephyr/libzephyr.a(rtc_init.c.obj) + .rodata.s_sleep_hook_register.str1.1 + 0x3c011b74 0x45 zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.str1.1 + 0x3c011b74 0x13d zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_sub_mode_config.str1.1 + 0x3c011b74 0x6c zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.esp_sleep_sub_mode_dump_config.str1.1 + 0x3c011b74 0x25 zephyr/libzephyr.a(sleep_modes.c.obj) + .rodata.abort.str1.1 + 0x3c011b74 0x9 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .rodata.CSWTCH$263 + 0x3c011b74 0x6 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .rodata.str1.1 + 0x3c011b7a 0xb zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .rodata.esp32_select_rtc_slow_clk.str1.1 + 0x3c011b7a 0x16 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .rodata.esp32_cpu_clock_configure.str1.1 + 0x3c011b7a 0x1c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .rodata.clock_control_esp32_configure.str1.1 + 0x3c011b7a 0x19 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .rodata.clock_control_esp32_init.str1.1 + 0x3c011b7a 0x3c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .rodata.str1.1 + 0x3c011b7a 0x14 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .rodata.gpio_esp32_init.str1.1 + 0x3c011b7a 0x26 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .rodata.str1.1 + 0x3c011b7a 0x92 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .rodata.sx126x_dio1_irq_work_handler$part$0.str1.1 + 0x3c011b7a 0x2f zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .rodata.sx126x_lora_init.str1.1 + 0x3c011b7a 0x56 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .rodata.sx126x_spi_transceive$isra$0.str1.1 + 0x3c011b7a 0x1b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .rodata.str1.1 + 0x3c011b7a 0xe zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .rodata.__sx12xx_configure_pin.str1.1 + 0x3c011b7a 0x39 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .rodata.sx12xx_lora_send.str1.1 + 0x3c011b7a 0x1c zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .rodata.sx12xx_lora_recv.str1.1 + 0x3c011b7a 0x1e zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .rodata.sx12xx_lora_config.str1.1 + 0x3c011b7a 0x1a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .rodata.str1.1 + 0x3c011b7a 0xe zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .rodata.sx126x_variant_init.str1.1 + 0x3c011b7a 0x4b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .rodata.CSWTCH$59 + 0x3c011b7a 0x4 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .rodata.str1.1 + 0x3c011b7e 0xe zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .rodata.spi_esp32_gdma_config$isra$0.str1.1 + 0x3c011b7e 0x5f zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.str1.1 + 0x3c011b7e 0x9e zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.spi_esp32_transceive.str1.1 + 0x3c011b7e 0x7c zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.spi_esp32_init.str1.1 + 0x3c011b7e 0xd6 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .rodata.boot_banner.str1.1 + 0x3c011b7e 0x3d zephyr/kernel/libkernel.a(banner.c.obj) + .rodata.str1.1 + 0x3c011b7e 0x9 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .rodata.__l_vfprintf.str1.1 + 0x3c011b7e 0xf /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + *(SORT_BY_ALIGNMENT(.rodata1)) + 0x3c011b7e __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.xt_except_table)) + *(SORT_BY_ALIGNMENT(.gcc_except_table) SORT_BY_ALIGNMENT(.gcc_except_table.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.e.*)) + *(SORT_BY_ALIGNMENT(.gnu.version_r)) + 0x3c011cb4 . = ((. + 0x3) & 0xfffffffffffffffc) + *fill* 0x3c011b7e 0x2 + 0x3c011b80 __eh_frame = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.eh_frame)) + .eh_frame 0x3c011b80 0x28 /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/libgcc.a(_divdi3.o) + .eh_frame 0x3c011ba8 0x28 /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/libgcc.a(_moddi3.o) + .eh_frame 0x3c011bd0 0x28 /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/libgcc.a(_udivdi3.o) + .eh_frame 0x3c011bf8 0x28 /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/libgcc.a(_umoddi3.o) + 0x3c011c24 . = ((. + 0x7) & 0xfffffffffffffffc) + *fill* 0x3c011c20 0x4 + 0x3c011c24 __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.xt_except_desc)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.h.*)) + 0x3c011c24 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(.xt_except_desc_end)) + *(SORT_BY_ALIGNMENT(.dynamic)) + *(SORT_BY_ALIGNMENT(.gnu.version_d)) + 0x3c011c24 . = ALIGN (0x4) + 0x3c011c24 __rodata_region_end = ABSOLUTE (.) + 0x3c011c24 _lit4_start = ABSOLUTE (.) + *(SORT_BY_ALIGNMENT(*.lit4)) + *(SORT_BY_ALIGNMENT(.lit4.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.lit4.*)) + 0x3c011c24 _lit4_end = ABSOLUTE (.) + 0x3c011c24 . = ALIGN (0x4) + *(SORT_BY_ALIGNMENT(.rodata_wlog)) + *(SORT_BY_ALIGNMENT(.rodata_wlog*)) + 0x3c011c24 . = ALIGN (0x4) + [!provide] PROVIDE (__eh_frame_start = 0x0) + [!provide] PROVIDE (__eh_frame_end = 0x0) + [!provide] PROVIDE (__eh_frame_hdr_start = 0x0) + [!provide] PROVIDE (__eh_frame_hdr_end = 0x0) + +/DISCARD/ + *(SORT_BY_ALIGNMENT(.eh_frame)) + +init_array 0x3c011c24 0x0 load address 0x00021c24 + 0x3c011c24 __zephyr_init_array_start = . + *(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)) + *(SORT_BY_ALIGNMENT(.init_array) SORT_BY_ALIGNMENT(.ctors)) + 0x3c011c24 __zephyr_init_array_end = . + 0x00000001 ASSERT ((__zephyr_init_array_start == __zephyr_init_array_end), GNU-style constructors required but STATIC_INIT_GNU not enabled) + +initlevel 0x3c011c24 0x70 load address 0x00021c24 + 0x3c011c24 __init_start = . + 0x3c011c24 __init_EARLY_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY_P_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_EARLY_P_???_*))) + 0x3c011c24 __init_PRE_KERNEL_1_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1_P_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1_P_??_*))) + .z_init_PRE_KERNEL_1_P_30_SUB_00034_ + 0x3c011c24 0x8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .z_init_PRE_KERNEL_1_P_30_SUB_0_ + 0x3c011c2c 0x8 zephyr/kernel/libkernel.a(kheap.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00015_ + 0x3c011c34 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .z_init_PRE_KERNEL_1_P_40_SUB_00094_ + 0x3c011c3c 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .z_init_PRE_KERNEL_1_P_50_SUB_00064_ + 0x3c011c44 0x8 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .z_init_PRE_KERNEL_1_P_50_SUB_00067_ + 0x3c011c4c 0x8 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .z_init_PRE_KERNEL_1_P_60_SUB_0_ + 0x3c011c54 0x8 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_1_P_???_*))) + 0x3c011c5c __init_PRE_KERNEL_2_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2_P_?_*))) + .z_init_PRE_KERNEL_2_P_0_SUB_0_ + 0x3c011c5c 0x8 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_PRE_KERNEL_2_P_???_*))) + 0x3c011c64 __init_POST_KERNEL_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL_P_?_*))) + .z_init_POST_KERNEL_P_0_SUB_0_ + 0x3c011c64 0x8 zephyr/libzephyr.a(log_core.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL_P_??_*))) + .z_init_POST_KERNEL_P_35_SUB_0_ + 0x3c011c6c 0x8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .z_init_POST_KERNEL_P_40_SUB_0_ + 0x3c011c74 0x8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .z_init_POST_KERNEL_P_40_SUB_0_ + 0x3c011c7c 0x8 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .z_init_POST_KERNEL_P_50_SUB_00103_ + 0x3c011c84 0x8 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .z_init_POST_KERNEL_P_90_SUB_00104_ + 0x3c011c8c 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_POST_KERNEL_P_???_*))) + 0x3c011c94 __init_APPLICATION_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION_P_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_APPLICATION_P_???_*))) + 0x3c011c94 __init_SMP_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP_P_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP_P_??_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_SMP_P_???_*))) + 0x3c011c94 __init_end = . + +device_area 0x3c011c94 0xc4 load address 0x00021c94 + 0x3c011c94 _device_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_?_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_??_*))) + ._device.static.1_30_ + 0x3c011c94 0x1c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x3c011c94 __device_dts_ord_34 + ._device.static.1_40_ + 0x3c011cb0 0x38 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x3c011cb0 __device_dts_ord_94 + 0x3c011ccc __device_dts_ord_15 + ._device.static.1_50_ + 0x3c011ce8 0x1c zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x3c011ce8 __device_dts_ord_67 + ._device.static.1_50_ + 0x3c011d04 0x1c zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x3c011d04 __device_dts_ord_64 + ._device.static.3_50_ + 0x3c011d20 0x1c zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x3c011d20 __device_dts_ord_103 + ._device.static.3_90_ + 0x3c011d3c 0x1c zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3c011d3c __device_dts_ord_104 + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_???_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_????_*))) + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._device.static.*_?????_*))) + 0x3c011d58 _device_list_end = . + +initlevel_error + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.z_init_*))) + 0x00000001 ASSERT ((SIZEOF (initlevel_error) == 0x0), Undefined initialization levels used.) + +app_shmem_regions + 0x3c011d58 0x0 load address 0x00021d58 + 0x3c011d58 __app_shmem_regions_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.app_regions.*))) + 0x3c011d58 __app_shmem_regions_end = . + +k_p4wq_initparam_area + 0x3c011d58 0x0 load address 0x00021d58 + 0x3c011d58 _k_p4wq_initparam_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._k_p4wq_initparam.static.*))) + 0x3c011d58 _k_p4wq_initparam_list_end = . + +_static_thread_data_area + 0x3c011d58 0x0 load address 0x00021d58 + 0x3c011d58 __static_thread_data_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.__static_thread_data.static.*))) + 0x3c011d58 __static_thread_data_list_end = . + +device_deps 0x3c011d58 0x0 load address 0x00021d58 + 0x3c011d58 __device_deps_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.__device_deps_pass2*))) + 0x3c011d58 __device_deps_end = . + +gpio_driver_api_area + 0x3c011d58 0x24 load address 0x00021d58 + 0x3c011d58 _gpio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._gpio_driver_api.static.*))) + ._gpio_driver_api.static.gpio_esp32_driver_api_ + 0x3c011d58 0x24 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + 0x3c011d7c _gpio_driver_api_list_end = . + +spi_driver_api_area + 0x3c011d7c 0x8 load address 0x00021d7c + 0x3c011d7c _spi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._spi_driver_api.static.*))) + ._spi_driver_api.static.spi_api_ + 0x3c011d7c 0x8 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x3c011d84 _spi_driver_api_list_end = . + +shared_irq_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _shared_irq_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shared_irq_driver_api.static.*))) + 0x3c011d84 _shared_irq_driver_api_list_end = . + +crypto_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _crypto_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._crypto_driver_api.static.*))) + 0x3c011d84 _crypto_driver_api_list_end = . + +adc_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _adc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._adc_driver_api.static.*))) + 0x3c011d84 _adc_driver_api_list_end = . + +auxdisplay_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _auxdisplay_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._auxdisplay_driver_api.static.*))) + 0x3c011d84 _auxdisplay_driver_api_list_end = . + +bbram_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _bbram_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bbram_driver_api.static.*))) + 0x3c011d84 _bbram_driver_api_list_end = . + +biometric_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _biometric_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._biometric_driver_api.static.*))) + 0x3c011d84 _biometric_driver_api_list_end = . + +bt_hci_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _bt_hci_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_hci_driver_api.static.*))) + 0x3c011d84 _bt_hci_driver_api_list_end = . + +can_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _can_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._can_driver_api.static.*))) + 0x3c011d84 _can_driver_api_list_end = . + +cellular_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _cellular_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._cellular_driver_api.static.*))) + 0x3c011d84 _cellular_driver_api_list_end = . + +charger_driver_api_area + 0x3c011d84 0x0 load address 0x00021d84 + 0x3c011d84 _charger_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._charger_driver_api.static.*))) + 0x3c011d84 _charger_driver_api_list_end = . + +clock_control_driver_api_area + 0x3c011d84 0x1c load address 0x00021d84 + 0x3c011d84 _clock_control_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._clock_control_driver_api.static.*))) + ._clock_control_driver_api.static.clock_control_esp32_api_ + 0x3c011d84 0x1c zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x3c011da0 _clock_control_driver_api_list_end = . + +comparator_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _comparator_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._comparator_driver_api.static.*))) + 0x3c011da0 _comparator_driver_api_list_end = . + +coredump_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _coredump_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._coredump_driver_api.static.*))) + 0x3c011da0 _coredump_driver_api_list_end = . + +counter_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _counter_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._counter_driver_api.static.*))) + 0x3c011da0 _counter_driver_api_list_end = . + +crc_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _crc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._crc_driver_api.static.*))) + 0x3c011da0 _crc_driver_api_list_end = . + +dac_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _dac_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dac_driver_api.static.*))) + 0x3c011da0 _dac_driver_api_list_end = . + +dai_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _dai_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dai_driver_api.static.*))) + 0x3c011da0 _dai_driver_api_list_end = . + +display_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _display_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._display_driver_api.static.*))) + 0x3c011da0 _display_driver_api_list_end = . + +dma_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _dma_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._dma_driver_api.static.*))) + 0x3c011da0 _dma_driver_api_list_end = . + +edac_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _edac_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._edac_driver_api.static.*))) + 0x3c011da0 _edac_driver_api_list_end = . + +eeprom_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _eeprom_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._eeprom_driver_api.static.*))) + 0x3c011da0 _eeprom_driver_api_list_end = . + +emul_bbram_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _emul_bbram_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._emul_bbram_driver_api.static.*))) + 0x3c011da0 _emul_bbram_driver_api_list_end = . + +fuel_gauge_emul_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _fuel_gauge_emul_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fuel_gauge_emul_driver_api.static.*))) + 0x3c011da0 _fuel_gauge_emul_driver_api_list_end = . + +emul_sensor_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _emul_sensor_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._emul_sensor_driver_api.static.*))) + 0x3c011da0 _emul_sensor_driver_api_list_end = . + +entropy_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _entropy_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._entropy_driver_api.static.*))) + 0x3c011da0 _entropy_driver_api_list_end = . + +espi_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _espi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._espi_driver_api.static.*))) + 0x3c011da0 _espi_driver_api_list_end = . + +espi_saf_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _espi_saf_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._espi_saf_driver_api.static.*))) + 0x3c011da0 _espi_saf_driver_api_list_end = . + +flash_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _flash_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._flash_driver_api.static.*))) + 0x3c011da0 _flash_driver_api_list_end = . + +fpga_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _fpga_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fpga_driver_api.static.*))) + 0x3c011da0 _fpga_driver_api_list_end = . + +fuel_gauge_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _fuel_gauge_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._fuel_gauge_driver_api.static.*))) + 0x3c011da0 _fuel_gauge_driver_api_list_end = . + +gnss_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _gnss_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._gnss_driver_api.static.*))) + 0x3c011da0 _gnss_driver_api_list_end = . + +haptics_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _haptics_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._haptics_driver_api.static.*))) + 0x3c011da0 _haptics_driver_api_list_end = . + +hwspinlock_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _hwspinlock_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._hwspinlock_driver_api.static.*))) + 0x3c011da0 _hwspinlock_driver_api_list_end = . + +i2c_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _i2c_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2c_driver_api.static.*))) + 0x3c011da0 _i2c_driver_api_list_end = . + +i2c_target_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _i2c_target_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2c_target_driver_api.static.*))) + 0x3c011da0 _i2c_target_driver_api_list_end = . + +i2s_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _i2s_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i2s_driver_api.static.*))) + 0x3c011da0 _i2s_driver_api_list_end = . + +i3c_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _i3c_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i3c_driver_api.static.*))) + 0x3c011da0 _i3c_driver_api_list_end = . + +ipm_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _ipm_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ipm_driver_api.static.*))) + 0x3c011da0 _ipm_driver_api_list_end = . + +led_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _led_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._led_driver_api.static.*))) + 0x3c011da0 _led_driver_api_list_end = . + +led_strip_driver_api_area + 0x3c011da0 0x0 load address 0x00021da0 + 0x3c011da0 _led_strip_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._led_strip_driver_api.static.*))) + 0x3c011da0 _led_strip_driver_api_list_end = . + +lora_driver_api_area + 0x3c011da0 0x28 load address 0x00021da0 + 0x3c011da0 _lora_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._lora_driver_api.static.*))) + ._lora_driver_api.static.sx126x_lora_api_ + 0x3c011da0 0x28 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x3c011dc8 _lora_driver_api_list_end = . + +mbox_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _mbox_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mbox_driver_api.static.*))) + 0x3c011dc8 _mbox_driver_api_list_end = . + +mdio_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _mdio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mdio_driver_api.static.*))) + 0x3c011dc8 _mdio_driver_api_list_end = . + +mipi_dbi_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _mipi_dbi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mipi_dbi_driver_api.static.*))) + 0x3c011dc8 _mipi_dbi_driver_api_list_end = . + +mipi_dsi_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _mipi_dsi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mipi_dsi_driver_api.static.*))) + 0x3c011dc8 _mipi_dsi_driver_api_list_end = . + +mspi_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _mspi_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._mspi_driver_api.static.*))) + 0x3c011dc8 _mspi_driver_api_list_end = . + +opamp_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _opamp_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._opamp_driver_api.static.*))) + 0x3c011dc8 _opamp_driver_api_list_end = . + +otp_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _otp_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._otp_driver_api.static.*))) + 0x3c011dc8 _otp_driver_api_list_end = . + +peci_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _peci_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._peci_driver_api.static.*))) + 0x3c011dc8 _peci_driver_api_list_end = . + +ps2_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _ps2_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ps2_driver_api.static.*))) + 0x3c011dc8 _ps2_driver_api_list_end = . + +ptp_clock_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _ptp_clock_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ptp_clock_driver_api.static.*))) + 0x3c011dc8 _ptp_clock_driver_api_list_end = . + +pwm_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _pwm_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pwm_driver_api.static.*))) + 0x3c011dc8 _pwm_driver_api_list_end = . + +regulator_parent_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _regulator_parent_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._regulator_parent_driver_api.static.*))) + 0x3c011dc8 _regulator_parent_driver_api_list_end = . + +regulator_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _regulator_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._regulator_driver_api.static.*))) + 0x3c011dc8 _regulator_driver_api_list_end = . + +reset_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _reset_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._reset_driver_api.static.*))) + 0x3c011dc8 _reset_driver_api_list_end = . + +retained_mem_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _retained_mem_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._retained_mem_driver_api.static.*))) + 0x3c011dc8 _retained_mem_driver_api_list_end = . + +rtc_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _rtc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._rtc_driver_api.static.*))) + 0x3c011dc8 _rtc_driver_api_list_end = . + +sdhc_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _sdhc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sdhc_driver_api.static.*))) + 0x3c011dc8 _sdhc_driver_api_list_end = . + +sensor_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _sensor_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sensor_driver_api.static.*))) + 0x3c011dc8 _sensor_driver_api_list_end = . + +smbus_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _smbus_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._smbus_driver_api.static.*))) + 0x3c011dc8 _smbus_driver_api_list_end = . + +syscon_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _syscon_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._syscon_driver_api.static.*))) + 0x3c011dc8 _syscon_driver_api_list_end = . + +tee_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _tee_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tee_driver_api.static.*))) + 0x3c011dc8 _tee_driver_api_list_end = . + +uaol_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _uaol_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._uaol_driver_api.static.*))) + 0x3c011dc8 _uaol_driver_api_list_end = . + +video_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _video_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._video_driver_api.static.*))) + 0x3c011dc8 _video_driver_api_list_end = . + +virtio_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _virtio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._virtio_driver_api.static.*))) + 0x3c011dc8 _virtio_driver_api_list_end = . + +w1_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _w1_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._w1_driver_api.static.*))) + 0x3c011dc8 _w1_driver_api_list_end = . + +wdt_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _wdt_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._wdt_driver_api.static.*))) + 0x3c011dc8 _wdt_driver_api_list_end = . + +wuc_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _wuc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._wuc_driver_api.static.*))) + 0x3c011dc8 _wuc_driver_api_list_end = . + +can_transceiver_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _can_transceiver_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._can_transceiver_driver_api.static.*))) + 0x3c011dc8 _can_transceiver_driver_api_list_end = . + +nrf_clock_control_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _nrf_clock_control_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._nrf_clock_control_driver_api.static.*))) + 0x3c011dc8 _nrf_clock_control_driver_api_list_end = . + +i3c_target_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _i3c_target_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._i3c_target_driver_api.static.*))) + 0x3c011dc8 _i3c_target_driver_api_list_end = . + +its_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _its_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._its_driver_api.static.*))) + 0x3c011dc8 _its_driver_api_list_end = . + +vtd_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _vtd_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._vtd_driver_api.static.*))) + 0x3c011dc8 _vtd_driver_api_list_end = . + +renesas_elc_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _renesas_elc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._renesas_elc_driver_api.static.*))) + 0x3c011dc8 _renesas_elc_driver_api_list_end = . + +tgpio_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _tgpio_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tgpio_driver_api.static.*))) + 0x3c011dc8 _tgpio_driver_api_list_end = . + +pcie_ctrl_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _pcie_ctrl_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pcie_ctrl_driver_api.static.*))) + 0x3c011dc8 _pcie_ctrl_driver_api_list_end = . + +pcie_ep_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _pcie_ep_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._pcie_ep_driver_api.static.*))) + 0x3c011dc8 _pcie_ep_driver_api_list_end = . + +psi5_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _psi5_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._psi5_driver_api.static.*))) + 0x3c011dc8 _psi5_driver_api_list_end = . + +sent_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _sent_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._sent_driver_api.static.*))) + 0x3c011dc8 _sent_driver_api_list_end = . + +svc_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _svc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._svc_driver_api.static.*))) + 0x3c011dc8 _svc_driver_api_list_end = . + +stepper_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _stepper_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._stepper_driver_api.static.*))) + 0x3c011dc8 _stepper_driver_api_list_end = . + +stepper_ctrl_driver_api_area + 0x3c011dc8 0x0 load address 0x00021dc8 + 0x3c011dc8 _stepper_ctrl_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._stepper_ctrl_driver_api.static.*))) + 0x3c011dc8 _stepper_ctrl_driver_api_list_end = . + +uart_driver_api_area + 0x3c011dc8 0x98 load address 0x00021dc8 + 0x3c011dc8 _uart_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._uart_driver_api.static.*))) + ._uart_driver_api.static.serial_esp32_usb_api_ + 0x3c011dc8 0x4c zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + ._uart_driver_api.static.uart_esp32_api_ + 0x3c011e14 0x4c zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x3c011e60 _uart_driver_api_list_end = . + +bc12_emul_driver_api_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _bc12_emul_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bc12_emul_driver_api.static.*))) + 0x3c011e60 _bc12_emul_driver_api_list_end = . + +bc12_driver_api_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _bc12_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bc12_driver_api.static.*))) + 0x3c011e60 _bc12_driver_api_list_end = . + +usbc_ppc_driver_api_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _usbc_ppc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usbc_ppc_driver_api.static.*))) + 0x3c011e60 _usbc_ppc_driver_api_list_end = . + +tcpc_driver_api_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _tcpc_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tcpc_driver_api.static.*))) + 0x3c011e60 _tcpc_driver_api_list_end = . + +usbc_vbus_driver_api_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _usbc_vbus_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._usbc_vbus_driver_api.static.*))) + 0x3c011e60 _usbc_vbus_driver_api_list_end = . + +ivshmem_driver_api_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _ivshmem_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ivshmem_driver_api.static.*))) + 0x3c011e60 _ivshmem_driver_api_list_end = . + +ethphy_driver_api_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _ethphy_driver_api_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ethphy_driver_api.static.*))) + 0x3c011e60 _ethphy_driver_api_list_end = . + +ztest 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _ztest_expected_result_entry_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_expected_result_entry.static.*))) + 0x3c011e60 _ztest_expected_result_entry_list_end = . + 0x3c011e60 _ztest_suite_node_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_suite_node.static.*))) + 0x3c011e60 _ztest_suite_node_list_end = . + 0x3c011e60 _ztest_unit_test_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_unit_test.static.*))) + 0x3c011e60 _ztest_unit_test_list_end = . + 0x3c011e60 _ztest_test_rule_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._ztest_test_rule.static.*))) + 0x3c011e60 _ztest_test_rule_list_end = . + +bt_l2cap_fixed_chan_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _bt_l2cap_fixed_chan_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_l2cap_fixed_chan.static.*))) + 0x3c011e60 _bt_l2cap_fixed_chan_list_end = . + +bt_gatt_service_static_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _bt_gatt_service_static_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._bt_gatt_service_static.static.*))) + 0x3c011e60 _bt_gatt_service_static_list_end = . + +tracing_backend_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _tracing_backend_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._tracing_backend.static.*))) + 0x3c011e60 _tracing_backend_list_end = . + +zephyr_dbg_info + *(SORT_BY_ALIGNMENT(.dbg_thread_info)) + +symbol_to_keep 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 __symbol_to_keep_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(.symbol_to_keep*))) + 0x3c011e60 __symbol_to_keep_end = . + +shell_area 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _shell_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell.static.*))) + 0x3c011e60 _shell_list_end = . + +shell_root_cmds_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _shell_root_cmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_root_cmds.static.*))) + 0x3c011e60 _shell_root_cmds_list_end = . + +shell_subcmds_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _shell_subcmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_subcmds.static.*))) + 0x3c011e60 _shell_subcmds_list_end = . + +shell_dynamic_subcmds_area + 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _shell_dynamic_subcmds_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._shell_dynamic_subcmds.static.*))) + 0x3c011e60 _shell_dynamic_subcmds_list_end = . + +cfb_font_area 0x3c011e60 0x0 load address 0x00021e60 + 0x3c011e60 _cfb_font_list_start = . + *(SORT_BY_NAME(SORT_BY_ALIGNMENT(._cfb_font.static.*))) + 0x3c011e60 _cfb_font_list_end = . + +.intList 0x3c011e60 0x18 load address 0x3ebfe010 + *(SORT_BY_ALIGNMENT(.irq_info*)) + .irq_info 0x3c011e60 0x8 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + 0x3c011e60 _iheader + *(SORT_BY_ALIGNMENT(.intList*)) + .intList 0x3c011e68 0x10 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + +.flash.rodata_end + 0x3c011e80 0x0 load address 0x00021e60 + 0x3c011e80 . = ALIGN (0x4) + 0x3c011e80 _rodata_reserved_end = ABSOLUTE (.) + 0x3c011e80 _image_rodata_end = ABSOLUTE (.) + +.intList + *(SORT_BY_ALIGNMENT(.irq_info*)) + *(SORT_BY_ALIGNMENT(.intList*)) + +.stab + *(SORT_BY_ALIGNMENT(.stab)) + +.stabstr + *(SORT_BY_ALIGNMENT(.stabstr)) + +.stab.excl + *(SORT_BY_ALIGNMENT(.stab.excl)) + +.stab.exclstr + *(SORT_BY_ALIGNMENT(.stab.exclstr)) + +.stab.index + *(SORT_BY_ALIGNMENT(.stab.index)) + +.stab.indexstr + *(SORT_BY_ALIGNMENT(.stab.indexstr)) + +.gnu.build.attributes + *(SORT_BY_ALIGNMENT(.gnu.build.attributes) SORT_BY_ALIGNMENT(.gnu.build.attributes.*)) + +.comment 0x00000000 0x1f + *(SORT_BY_ALIGNMENT(.comment)) + .comment 0x00000000 0x1f zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + 0x20 (size before relaxing) + .comment 0x0000001f 0x20 app/libapp.a(main.c.obj) + .comment 0x0000001f 0x20 app/libapp.a(kiss.c.obj) + .comment 0x0000001f 0x20 app/libapp.a(lora_modem.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(heap.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(printk.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(thread_entry.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(getopt.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(configs.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(soc.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(loader.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(hw_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(log_core.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(log_mgmt.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(log_msg.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(log_output.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(log_backend_uart.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_flash_api.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(flash_mmap.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(flash_ops.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(cache_utils.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(uart_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(console_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(soc_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(rtc_io.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(systimer_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_clk.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(periph_ctrl.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(rtc_clk.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(rtc_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(rtc_sleep.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(rtc_time.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(systimer.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(rtc_module.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(sleep_modes.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(ext_mem_layout.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(clk.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(reset_reason.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(esp_timer_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(efuse_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(cache_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(efuse_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(mmu_hal.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(gpio_periph.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(flash_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(bootloader_flash.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(soc_flash_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(soc_init.c.obj) + .comment 0x0000001f 0x20 zephyr/libzephyr.a(soc_random.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/common/libarch__common.a(init.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .comment 0x0000001f 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .comment 0x0000001f 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .comment 0x0000001f 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .comment 0x0000001f 0x20 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .comment 0x0000001f 0x20 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .comment 0x0000001f 0x20 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(device.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(fatal.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(init.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(idle.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(mutex.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(sem.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(work.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(thread.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(sched.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(timeout.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(timer.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(poll.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(mempool.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(banner.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(kheap.c.obj) + .comment 0x0000001f 0x20 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .comment 0x0000001f 0x20 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + +.debug + *(SORT_BY_ALIGNMENT(.debug)) + +.line + *(SORT_BY_ALIGNMENT(.line)) + +.debug_srcinfo + *(SORT_BY_ALIGNMENT(.debug_srcinfo)) + +.debug_sfnames + *(SORT_BY_ALIGNMENT(.debug_sfnames)) + +.debug_aranges 0x00000000 0x3808 + *(SORT_BY_ALIGNMENT(.debug_aranges)) + .debug_aranges + 0x00000000 0x20 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_aranges + 0x00000020 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .debug_aranges + 0x00000040 0x70 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .debug_aranges + 0x000000b0 0x20 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .debug_aranges + 0x000000d0 0x40 app/libapp.a(main.c.obj) + .debug_aranges + 0x00000110 0x38 app/libapp.a(kiss.c.obj) + .debug_aranges + 0x00000148 0x68 app/libapp.a(lora_modem.c.obj) + .debug_aranges + 0x000001b0 0xd0 zephyr/libzephyr.a(heap.c.obj) + .debug_aranges + 0x00000280 0x40 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_aranges + 0x000002c0 0x48 zephyr/libzephyr.a(printk.c.obj) + .debug_aranges + 0x00000308 0x20 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_aranges + 0x00000328 0xb0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_aranges + 0x000003d8 0x28 zephyr/libzephyr.a(getopt.c.obj) + .debug_aranges + 0x00000400 0x20 zephyr/libzephyr.a(configs.c.obj) + .debug_aranges + 0x00000420 0x38 zephyr/libzephyr.a(soc.c.obj) + .debug_aranges + 0x00000458 0x28 zephyr/libzephyr.a(loader.c.obj) + .debug_aranges + 0x00000480 0x20 zephyr/libzephyr.a(hw_init.c.obj) + .debug_aranges + 0x000004a0 0x178 zephyr/libzephyr.a(log_core.c.obj) + .debug_aranges + 0x00000618 0xb8 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_aranges + 0x000006d0 0x60 zephyr/libzephyr.a(log_msg.c.obj) + .debug_aranges + 0x00000730 0x70 zephyr/libzephyr.a(log_output.c.obj) + .debug_aranges + 0x000007a0 0x48 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_aranges + 0x000007e8 0x48 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_aranges + 0x00000830 0x38 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_aranges + 0x00000868 0xb8 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_aranges + 0x00000920 0x60 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_aranges + 0x00000980 0x40 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_aranges + 0x000009c0 0x120 zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_aranges + 0x00000ae0 0x48 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_aranges + 0x00000b28 0x58 zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_aranges + 0x00000b80 0x58 zephyr/libzephyr.a(flash_ops.c.obj) + .debug_aranges + 0x00000bd8 0x78 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_aranges + 0x00000c50 0x28 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_aranges + 0x00000c78 0x20 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .debug_aranges + 0x00000c98 0x48 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_aranges + 0x00000ce0 0x110 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_aranges + 0x00000df0 0x38 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_aranges + 0x00000e28 0x30 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_aranges + 0x00000e58 0x90 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_aranges + 0x00000ee8 0x28 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_aranges + 0x00000f10 0x50 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_aranges + 0x00000f60 0x40 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_aranges + 0x00000fa0 0x90 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_aranges + 0x00001030 0x88 zephyr/libzephyr.a(cache_utils.c.obj) + .debug_aranges + 0x000010b8 0xf0 zephyr/libzephyr.a(uart_hal.c.obj) + .debug_aranges + 0x000011a8 0x40 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_aranges + 0x000011e8 0x48 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_aranges + 0x00001230 0x98 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_aranges + 0x000012c8 0x28 zephyr/libzephyr.a(console_init.c.obj) + .debug_aranges + 0x000012f0 0x38 zephyr/libzephyr.a(soc_init.c.obj) + .debug_aranges + 0x00001328 0xd0 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_aranges + 0x000013f8 0x50 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_aranges + 0x00001448 0x18 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .debug_aranges + 0x00001460 0x90 zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_aranges + 0x000014f0 0x70 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_aranges + 0x00001560 0x68 zephyr/libzephyr.a(esp_clk.c.obj) + .debug_aranges + 0x000015c8 0x68 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_aranges + 0x00001630 0x28 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_aranges + 0x00001658 0xb8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_aranges + 0x00001710 0x40 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_aranges + 0x00001750 0x20 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_aranges + 0x00001770 0x120 zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_aranges + 0x00001890 0x38 zephyr/libzephyr.a(rtc_init.c.obj) + .debug_aranges + 0x000018c8 0x40 zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_aranges + 0x00001908 0x58 zephyr/libzephyr.a(rtc_time.c.obj) + .debug_aranges + 0x00001960 0x88 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_aranges + 0x000019e8 0x28 zephyr/libzephyr.a(systimer.c.obj) + .debug_aranges + 0x00001a10 0x40 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_aranges + 0x00001a50 0x68 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_aranges + 0x00001ab8 0x40 zephyr/libzephyr.a(rtc_module.c.obj) + .debug_aranges + 0x00001af8 0x1f8 zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_aranges + 0x00001cf0 0x40 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_aranges + 0x00001d30 0x48 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_aranges + 0x00001d78 0xa0 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_aranges + 0x00001e18 0x18 zephyr/libzephyr.a(ext_mem_layout.c.obj) + .debug_aranges + 0x00001e30 0x48 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_aranges + 0x00001e78 0x20 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_aranges + 0x00001e98 0x20 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .debug_aranges + 0x00001eb8 0x30 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .debug_aranges + 0x00001ee8 0x40 zephyr/libzephyr.a(clk.c.obj) + .debug_aranges + 0x00001f28 0x38 zephyr/libzephyr.a(reset_reason.c.obj) + .debug_aranges + 0x00001f60 0x68 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_aranges + 0x00001fc8 0x30 zephyr/libzephyr.a(esp_timer_init.c.obj) + .debug_aranges + 0x00001ff8 0x58 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_aranges + 0x00002050 0x88 zephyr/libzephyr.a(cache_hal.c.obj) + .debug_aranges + 0x000020d8 0x50 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_aranges + 0x00002128 0x68 zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_aranges + 0x00002190 0x18 zephyr/libzephyr.a(gpio_periph.c.obj) + .debug_aranges + 0x000021a8 0x30 zephyr/libzephyr.a(flash_init.c.obj) + .debug_aranges + 0x000021d8 0xe8 zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_aranges + 0x000022c0 0x48 zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_aranges + 0x00002308 0x68 zephyr/libzephyr.a(soc_init.c.obj) + .debug_aranges + 0x00002370 0x28 zephyr/libzephyr.a(soc_random.c.obj) + .debug_aranges + 0x00002398 0x20 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_aranges + 0x000023b8 0x28 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_aranges + 0x000023e0 0x30 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_aranges + 0x00002410 0x28 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .debug_aranges + 0x00002438 0x30 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_aranges + 0x00002468 0x38 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_aranges + 0x000024a0 0x28 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_aranges + 0x000024c8 0x90 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_aranges + 0x00002558 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .debug_aranges + 0x00002578 0x20 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_aranges + 0x00002598 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_aranges + 0x000025c0 0x38 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_aranges + 0x000025f8 0x20 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_aranges + 0x00002618 0x60 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_aranges + 0x00002678 0xa0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_aranges + 0x00002718 0x58 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_aranges + 0x00002770 0x30 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_aranges + 0x000027a0 0x80 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_aranges + 0x00002820 0xf0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_aranges + 0x00002910 0xa8 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_aranges + 0x000029b8 0x88 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_aranges + 0x00002a40 0x78 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_aranges + 0x00002ab8 0x88 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_aranges + 0x00002b40 0x28 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_aranges + 0x00002b68 0x188 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_aranges + 0x00002cf0 0x120 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_aranges + 0x00002e10 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_aranges + 0x00002e30 0x20 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_aranges + 0x00002e50 0xb0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_aranges + 0x00002f00 0xc0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_aranges + 0x00002fc0 0x68 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_aranges + 0x00003028 0x48 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_aranges + 0x00003070 0x20 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_aranges + 0x00003090 0x48 zephyr/kernel/libkernel.a(device.c.obj) + .debug_aranges + 0x000030d8 0x38 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_aranges + 0x00003110 0x40 zephyr/kernel/libkernel.a(init.c.obj) + .debug_aranges + 0x00003150 0x28 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_aranges + 0x00003178 0x38 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_aranges + 0x000031b0 0x38 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_aranges + 0x000031e8 0x120 zephyr/kernel/libkernel.a(work.c.obj) + .debug_aranges + 0x00003308 0x90 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_aranges + 0x00003398 0x190 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_aranges + 0x00003528 0x40 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_aranges + 0x00003568 0x98 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_aranges + 0x00003600 0x48 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_aranges + 0x00003648 0xa0 zephyr/kernel/libkernel.a(poll.c.obj) + .debug_aranges + 0x000036e8 0x68 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_aranges + 0x00003750 0x20 zephyr/kernel/libkernel.a(banner.c.obj) + .debug_aranges + 0x00003770 0x60 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_aranges + 0x000037d0 0x20 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_aranges + 0x000037f0 0x18 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + +.debug_pubnames + *(SORT_BY_ALIGNMENT(.debug_pubnames)) + +.debug_info 0x00000000 0x17126c + *(SORT_BY_ALIGNMENT(.debug_info) SORT_BY_ALIGNMENT(.gnu.linkonce.wi.*)) + .debug_info 0x00000000 0xdc zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .debug_info 0x000000dc 0xb0cd app/libapp.a(main.c.obj) + .debug_info 0x0000b1a9 0x34f app/libapp.a(kiss.c.obj) + .debug_info 0x0000b4f8 0x6acb app/libapp.a(lora_modem.c.obj) + .debug_info 0x00011fc3 0x8d28 zephyr/libzephyr.a(heap.c.obj) + .debug_info 0x0001aceb 0x2278 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_info 0x0001cf63 0x469 zephyr/libzephyr.a(printk.c.obj) + .debug_info 0x0001d3cc 0x637 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_info 0x0001da03 0x1f07 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_info 0x0001f90a 0x1854 zephyr/libzephyr.a(getopt.c.obj) + .debug_info 0x0002115e 0x38 zephyr/libzephyr.a(configs.c.obj) + .debug_info 0x00021196 0x224 zephyr/libzephyr.a(soc.c.obj) + .debug_info 0x000213ba 0x12d9 zephyr/libzephyr.a(loader.c.obj) + .debug_info 0x00022693 0x5c2 zephyr/libzephyr.a(hw_init.c.obj) + .debug_info 0x00022c55 0x4557 zephyr/libzephyr.a(log_core.c.obj) + .debug_info 0x000271ac 0x21d9 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_info 0x00029385 0x2777 zephyr/libzephyr.a(log_msg.c.obj) + .debug_info 0x0002bafc 0x208c zephyr/libzephyr.a(log_output.c.obj) + .debug_info 0x0002db88 0x1b5f zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_info 0x0002f6e7 0x44f zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_info 0x0002fb36 0x5120 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_info 0x00034c56 0x6917 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_info 0x0003b56d 0x5808 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_info 0x00040d75 0x1128 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_info 0x00041e9d 0x482b zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_info 0x000466c8 0x73b4 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_info 0x0004da7c 0xf03 zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_info 0x0004e97f 0x570 zephyr/libzephyr.a(flash_ops.c.obj) + .debug_info 0x0004eeef 0x56ef zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_info 0x000545de 0xf1a zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_info 0x000554f8 0xcd9 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .debug_info 0x000561d1 0x1195 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_info 0x00057366 0x2bdf zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_info 0x00059f45 0x103e zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_info 0x0005af83 0x11ee zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_info 0x0005c171 0x1c1b zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_info 0x0005dd8c 0xf1a zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_info 0x0005eca6 0x1632 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_info 0x000602d8 0x9cd zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_info 0x00060ca5 0x1151 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_info 0x00061df6 0x12c1 zephyr/libzephyr.a(cache_utils.c.obj) + .debug_info 0x000630b7 0x2fa8 zephyr/libzephyr.a(uart_hal.c.obj) + .debug_info 0x0006605f 0x1c8e zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_info 0x00067ced 0x2235 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_info 0x00069f22 0x38d0 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_info 0x0006d7f2 0x16d zephyr/libzephyr.a(console_init.c.obj) + .debug_info 0x0006d95f 0x8927 zephyr/libzephyr.a(soc_init.c.obj) + .debug_info 0x00076286 0x3e38 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_info 0x0007a0be 0xaab zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_info 0x0007ab69 0x1ce zephyr/libzephyr.a(rtc_io_periph.c.obj) + .debug_info 0x0007ad37 0x1980 zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_info 0x0007c6b7 0x5c10 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_info 0x000822c7 0xaee zephyr/libzephyr.a(esp_clk.c.obj) + .debug_info 0x00082db5 0x614 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_info 0x000833c9 0x46d zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_info 0x00083836 0x85df zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_info 0x0008be15 0x855 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_info 0x0008c66a 0x1da zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_info 0x0008c844 0x399d zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_info 0x000901e1 0x4a57 zephyr/libzephyr.a(rtc_init.c.obj) + .debug_info 0x00094c38 0x4479 zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_info 0x000990b1 0x1409 zephyr/libzephyr.a(rtc_time.c.obj) + .debug_info 0x0009a4ba 0x7393 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_info 0x000a184d 0xdd zephyr/libzephyr.a(systimer.c.obj) + .debug_info 0x000a192a 0x525 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_info 0x000a1e4f 0xc72 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_info 0x000a2ac1 0x46e0 zephyr/libzephyr.a(rtc_module.c.obj) + .debug_info 0x000a71a1 0xaf13 zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_info 0x000b20b4 0x89c zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_info 0x000b2950 0x4a0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_info 0x000b2df0 0x2c57 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_info 0x000b5a47 0x1ba zephyr/libzephyr.a(ext_mem_layout.c.obj) + .debug_info 0x000b5c01 0x56a zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_info 0x000b616b 0x30 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_info 0x000b619b 0x37a zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_info 0x000b6515 0x2e3 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .debug_info 0x000b67f8 0x1b4 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .debug_info 0x000b69ac 0xd8b zephyr/libzephyr.a(clk.c.obj) + .debug_info 0x000b7737 0x44b zephyr/libzephyr.a(reset_reason.c.obj) + .debug_info 0x000b7b82 0x6bc8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_info 0x000be74a 0x14e zephyr/libzephyr.a(esp_timer_init.c.obj) + .debug_info 0x000be898 0x3f31 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_info 0x000c27c9 0x16bf zephyr/libzephyr.a(cache_hal.c.obj) + .debug_info 0x000c3e88 0x3a6c zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_info 0x000c78f4 0xdd2 zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_info 0x000c86c6 0xd1 zephyr/libzephyr.a(gpio_periph.c.obj) + .debug_info 0x000c8797 0x3d77 zephyr/libzephyr.a(flash_init.c.obj) + .debug_info 0x000cc50e 0x8e24 zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_info 0x000d5332 0x8b0 zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_info 0x000d5be2 0x4629 zephyr/libzephyr.a(soc_init.c.obj) + .debug_info 0x000da20b 0x8f1b zephyr/libzephyr.a(soc_random.c.obj) + .debug_info 0x000e3126 0xba zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_info 0x000e31e0 0x1e4 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_info 0x000e33c4 0x1d7 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_info 0x000e359b 0xb8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .debug_info 0x000e3653 0x351 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_info 0x000e39a4 0x24 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .debug_info 0x000e39c8 0x22 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .debug_info 0x000e39ea 0x1118 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_info 0x000e4b02 0x9b7 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_info 0x000e54b9 0xdc4a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_info 0x000f3103 0x5f7 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .debug_info 0x000f36fa 0xa5 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_info 0x000f379f 0x317 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_info 0x000f3ab6 0x3c3 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_info 0x000f3e79 0x121 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_info 0x000f3f9a 0xe05 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_info 0x000f4d9f 0x2e5b zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_info 0x000f7bfa 0xaa89 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_info 0x00102683 0x977 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_info 0x00102ffa 0x68da zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_info 0x001098d4 0x11d8b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_info 0x0011b65f 0xd9f zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_info 0x0011c3fe 0x6626 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_info 0x00122a24 0x2a38 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_info 0x0012545c 0x830 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_info 0x00125c8c 0x13a zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_info 0x00125dc6 0x22a2 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_info 0x00128068 0x313a zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_info 0x0012b1a2 0x1b2 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_info 0x0012b354 0x2580 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_info 0x0012d8d4 0x2217 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_info 0x0012faeb 0x5c6c zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_info 0x00135757 0x14207 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_info 0x0014995e 0x9de zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_info 0x0014a33c 0x1ab zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_info 0x0014a4e7 0x3f7 zephyr/kernel/libkernel.a(device.c.obj) + .debug_info 0x0014a8de 0x29df zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_info 0x0014d2bd 0x16c8 zephyr/kernel/libkernel.a(init.c.obj) + .debug_info 0x0014e985 0x246 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_info 0x0014ebcb 0x7e8b zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_info 0x00156a56 0x1232 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_info 0x00157c88 0x51e7 zephyr/kernel/libkernel.a(work.c.obj) + .debug_info 0x0015ce6f 0x2aef zephyr/kernel/libkernel.a(thread.c.obj) + .debug_info 0x0015f95e 0x8c10 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_info 0x0016856e 0xcfd zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_info 0x0016926b 0x1564 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_info 0x0016a7cf 0x1355 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_info 0x0016bb24 0x2dad zephyr/kernel/libkernel.a(poll.c.obj) + .debug_info 0x0016e8d1 0xf45 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_info 0x0016f816 0xc5 zephyr/kernel/libkernel.a(banner.c.obj) + .debug_info 0x0016f8db 0xf79 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_info 0x00170854 0x8c6 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_info 0x0017111a 0x152 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + +.debug_abbrev 0x00000000 0x1f98e + *(SORT_BY_ALIGNMENT(.debug_abbrev)) + .debug_abbrev 0x00000000 0x62 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .debug_abbrev 0x00000062 0x650 app/libapp.a(main.c.obj) + .debug_abbrev 0x000006b2 0x1bf app/libapp.a(kiss.c.obj) + .debug_abbrev 0x00000871 0x561 app/libapp.a(lora_modem.c.obj) + .debug_abbrev 0x00000dd2 0x595 zephyr/libzephyr.a(heap.c.obj) + .debug_abbrev 0x00001367 0x563 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_abbrev 0x000018ca 0x277 zephyr/libzephyr.a(printk.c.obj) + .debug_abbrev 0x00001b41 0x236 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_abbrev 0x00001d77 0x593 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_abbrev 0x0000230a 0x2aa zephyr/libzephyr.a(getopt.c.obj) + .debug_abbrev 0x000025b4 0x2e zephyr/libzephyr.a(configs.c.obj) + .debug_abbrev 0x000025e2 0x14a zephyr/libzephyr.a(soc.c.obj) + .debug_abbrev 0x0000272c 0x3f9 zephyr/libzephyr.a(loader.c.obj) + .debug_abbrev 0x00002b25 0x19e zephyr/libzephyr.a(hw_init.c.obj) + .debug_abbrev 0x00002cc3 0x8fc zephyr/libzephyr.a(log_core.c.obj) + .debug_abbrev 0x000035bf 0x642 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_abbrev 0x00003c01 0x5bc zephyr/libzephyr.a(log_msg.c.obj) + .debug_abbrev 0x000041bd 0x5d9 zephyr/libzephyr.a(log_output.c.obj) + .debug_abbrev 0x00004796 0x44e zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_abbrev 0x00004be4 0x1e6 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_abbrev 0x00004dca 0x46f zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_abbrev 0x00005239 0x543 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_abbrev 0x0000577c 0x527 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_abbrev 0x00005ca3 0x40f zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_abbrev 0x000060b2 0x5b1 zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_abbrev 0x00006663 0x649 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_abbrev 0x00006cac 0x4a4 zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_abbrev 0x00007150 0x289 zephyr/libzephyr.a(flash_ops.c.obj) + .debug_abbrev 0x000073d9 0x451 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_abbrev 0x0000782a 0x1ea zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_abbrev 0x00007a14 0x192 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .debug_abbrev 0x00007ba6 0x330 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_abbrev 0x00007ed6 0x542 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_abbrev 0x00008418 0x266 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_abbrev 0x0000867e 0x220 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_abbrev 0x0000889e 0x42b zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_abbrev 0x00008cc9 0x1ea zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_abbrev 0x00008eb3 0x377 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_abbrev 0x0000922a 0x202 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_abbrev 0x0000942c 0x42f zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_abbrev 0x0000985b 0x49b zephyr/libzephyr.a(cache_utils.c.obj) + .debug_abbrev 0x00009cf6 0x3fc zephyr/libzephyr.a(uart_hal.c.obj) + .debug_abbrev 0x0000a0f2 0x2c6 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_abbrev 0x0000a3b8 0x3a0 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_abbrev 0x0000a758 0x506 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_abbrev 0x0000ac5e 0xc1 zephyr/libzephyr.a(console_init.c.obj) + .debug_abbrev 0x0000ad1f 0x3c5 zephyr/libzephyr.a(soc_init.c.obj) + .debug_abbrev 0x0000b0e4 0x4d1 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_abbrev 0x0000b5b5 0x2ac zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_abbrev 0x0000b861 0xa1 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .debug_abbrev 0x0000b902 0x3c1 zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_abbrev 0x0000bcc3 0x407 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_abbrev 0x0000c0ca 0x354 zephyr/libzephyr.a(esp_clk.c.obj) + .debug_abbrev 0x0000c41e 0x2d0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_abbrev 0x0000c6ee 0x1a4 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_abbrev 0x0000c892 0x4d1 zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_abbrev 0x0000cd63 0x1d7 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_abbrev 0x0000cf3a 0x10a zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_abbrev 0x0000d044 0x64a zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_abbrev 0x0000d68e 0x4f2 zephyr/libzephyr.a(rtc_init.c.obj) + .debug_abbrev 0x0000db80 0x3b9 zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_abbrev 0x0000df39 0x400 zephyr/libzephyr.a(rtc_time.c.obj) + .debug_abbrev 0x0000e339 0x3eb zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_abbrev 0x0000e724 0x9b zephyr/libzephyr.a(systimer.c.obj) + .debug_abbrev 0x0000e7bf 0x28a zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_abbrev 0x0000ea49 0x2e2 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_abbrev 0x0000ed2b 0x4cc zephyr/libzephyr.a(rtc_module.c.obj) + .debug_abbrev 0x0000f1f7 0x826 zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_abbrev 0x0000fa1d 0x341 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_abbrev 0x0000fd5e 0x224 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_abbrev 0x0000ff82 0x5df zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_abbrev 0x00010561 0xbd zephyr/libzephyr.a(ext_mem_layout.c.obj) + .debug_abbrev 0x0001061e 0x259 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_abbrev 0x00010877 0x28 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_abbrev 0x0001089f 0xef zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_abbrev 0x0001098e 0x16c zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .debug_abbrev 0x00010afa 0x114 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .debug_abbrev 0x00010c0e 0x367 zephyr/libzephyr.a(clk.c.obj) + .debug_abbrev 0x00010f75 0x1bf zephyr/libzephyr.a(reset_reason.c.obj) + .debug_abbrev 0x00011134 0x51f zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_abbrev 0x00011653 0xfd zephyr/libzephyr.a(esp_timer_init.c.obj) + .debug_abbrev 0x00011750 0x3c2 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_abbrev 0x00011b12 0x408 zephyr/libzephyr.a(cache_hal.c.obj) + .debug_abbrev 0x00011f1a 0x210 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_abbrev 0x0001212a 0x36e zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_abbrev 0x00012498 0x70 zephyr/libzephyr.a(gpio_periph.c.obj) + .debug_abbrev 0x00012508 0x30a zephyr/libzephyr.a(flash_init.c.obj) + .debug_abbrev 0x00012812 0x6df zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_abbrev 0x00012ef1 0x332 zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_abbrev 0x00013223 0x3e3 zephyr/libzephyr.a(soc_init.c.obj) + .debug_abbrev 0x00013606 0x3bd zephyr/libzephyr.a(soc_random.c.obj) + .debug_abbrev 0x000139c3 0x6b zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_abbrev 0x00013a2e 0x136 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_abbrev 0x00013b64 0xe2 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_abbrev 0x00013c46 0x71 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .debug_abbrev 0x00013cb7 0x20a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_abbrev 0x00013ec1 0x14 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .debug_abbrev 0x00013ed5 0x12 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .debug_abbrev 0x00013ee7 0x322 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_abbrev 0x00014209 0x2a2 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_abbrev 0x000144ab 0x61a zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_abbrev 0x00014ac5 0x1ac zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .debug_abbrev 0x00014c71 0x68 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_abbrev 0x00014cd9 0x1a9 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_abbrev 0x00014e82 0x203 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_abbrev 0x00015085 0xba zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_abbrev 0x0001513f 0x493 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_abbrev 0x000155d2 0x618 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_abbrev 0x00015bea 0x6e1 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_abbrev 0x000162cb 0x359 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_abbrev 0x00016624 0x6b7 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_abbrev 0x00016cdb 0x741 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_abbrev 0x0001741c 0x463 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_abbrev 0x0001787f 0x6f9 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_abbrev 0x00017f78 0x62a zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_abbrev 0x000185a2 0x34c zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_abbrev 0x000188ee 0xf6 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_abbrev 0x000189e4 0x479 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_abbrev 0x00018e5d 0x4c6 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_abbrev 0x00019323 0xd0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_abbrev 0x000193f3 0x3c8 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_abbrev 0x000197bb 0x54b zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_abbrev 0x00019d06 0x705 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_abbrev 0x0001a40b 0x78a zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_abbrev 0x0001ab95 0x378 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_abbrev 0x0001af0d 0x11f zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_abbrev 0x0001b02c 0x1c2 zephyr/kernel/libkernel.a(device.c.obj) + .debug_abbrev 0x0001b1ee 0x488 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_abbrev 0x0001b676 0x655 zephyr/kernel/libkernel.a(init.c.obj) + .debug_abbrev 0x0001bccb 0x18c zephyr/kernel/libkernel.a(idle.c.obj) + .debug_abbrev 0x0001be57 0x4a4 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_abbrev 0x0001c2fb 0x427 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_abbrev 0x0001c722 0x665 zephyr/kernel/libkernel.a(work.c.obj) + .debug_abbrev 0x0001cd87 0x5bc zephyr/kernel/libkernel.a(thread.c.obj) + .debug_abbrev 0x0001d343 0x68a zephyr/kernel/libkernel.a(sched.c.obj) + .debug_abbrev 0x0001d9cd 0x3d0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_abbrev 0x0001dd9d 0x4b8 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_abbrev 0x0001e255 0x4b0 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_abbrev 0x0001e705 0x656 zephyr/kernel/libkernel.a(poll.c.obj) + .debug_abbrev 0x0001ed5b 0x433 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_abbrev 0x0001f18e 0x8c zephyr/kernel/libkernel.a(banner.c.obj) + .debug_abbrev 0x0001f21a 0x458 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_abbrev 0x0001f672 0x235 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_abbrev 0x0001f8a7 0xe7 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + +.debug_line 0x00000000 0x9da05 + *(SORT_BY_ALIGNMENT(.debug_line) SORT_BY_ALIGNMENT(.debug_line.*) SORT_BY_ALIGNMENT(.debug_line_end)) + .debug_line 0x00000000 0x28a zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .debug_line 0x0000028a 0x201d app/libapp.a(main.c.obj) + .debug_line 0x000022a7 0x6a5 app/libapp.a(kiss.c.obj) + .debug_line 0x0000294c 0x2c60 app/libapp.a(lora_modem.c.obj) + .debug_line 0x000055ac 0x3f6a zephyr/libzephyr.a(heap.c.obj) + .debug_line 0x00009516 0x2a51 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_line 0x0000bf67 0x545 zephyr/libzephyr.a(printk.c.obj) + .debug_line 0x0000c4ac 0x4cc zephyr/libzephyr.a(thread_entry.c.obj) + .debug_line 0x0000c978 0x267a zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_line 0x0000eff2 0x819 zephyr/libzephyr.a(getopt.c.obj) + .debug_line 0x0000f80b 0x1237 zephyr/libzephyr.a(configs.c.obj) + .debug_line 0x00010a42 0x5a7 zephyr/libzephyr.a(soc.c.obj) + .debug_line 0x00010fe9 0x1197 zephyr/libzephyr.a(loader.c.obj) + .debug_line 0x00012180 0x6e5 zephyr/libzephyr.a(hw_init.c.obj) + .debug_line 0x00012865 0x28aa zephyr/libzephyr.a(log_core.c.obj) + .debug_line 0x0001510f 0x15a4 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_line 0x000166b3 0x175a zephyr/libzephyr.a(log_msg.c.obj) + .debug_line 0x00017e0d 0x134f zephyr/libzephyr.a(log_output.c.obj) + .debug_line 0x0001915c 0x93f zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_line 0x00019a9b 0x5ec zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_line 0x0001a087 0xba4 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_line 0x0001ac2b 0x2812 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_line 0x0001d43d 0x1693 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_line 0x0001ead0 0x8c7 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_line 0x0001f397 0x3cad zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_line 0x00023044 0x1bd9 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_line 0x00024c1d 0x126a zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_line 0x00025e87 0x9fd zephyr/libzephyr.a(flash_ops.c.obj) + .debug_line 0x00026884 0xfc3 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_line 0x00027847 0x520 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_line 0x00027d67 0x51e zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .debug_line 0x00028285 0x7b3 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_line 0x00028a38 0x271e zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_line 0x0002b156 0x5ed zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_line 0x0002b743 0x671 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_line 0x0002bdb4 0x1560 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_line 0x0002d314 0x51e zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_line 0x0002d832 0xea8 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_line 0x0002e6da 0x643 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_line 0x0002ed1d 0xe48 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_line 0x0002fb65 0xe15 zephyr/libzephyr.a(cache_utils.c.obj) + .debug_line 0x0003097a 0x163b zephyr/libzephyr.a(uart_hal.c.obj) + .debug_line 0x00031fb5 0x6b0 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_line 0x00032665 0xed7 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_line 0x0003353c 0x2671 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_line 0x00035bad 0x26a zephyr/libzephyr.a(console_init.c.obj) + .debug_line 0x00035e17 0xa10 zephyr/libzephyr.a(soc_init.c.obj) + .debug_line 0x00036827 0x2390 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_line 0x00038bb7 0xa40 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_line 0x000395f7 0x220 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .debug_line 0x00039817 0xe58 zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_line 0x0003a66f 0x16c4 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_line 0x0003bd33 0xa5a zephyr/libzephyr.a(esp_clk.c.obj) + .debug_line 0x0003c78d 0x857 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_line 0x0003cfe4 0x63f zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_line 0x0003d623 0x2e97 zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_line 0x000404ba 0x936 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_line 0x00040df0 0x338 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_line 0x00041128 0x21f3 zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_line 0x0004331b 0x193c zephyr/libzephyr.a(rtc_init.c.obj) + .debug_line 0x00044c57 0x1270 zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_line 0x00045ec7 0xf39 zephyr/libzephyr.a(rtc_time.c.obj) + .debug_line 0x00046e00 0xbc8 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_line 0x000479c8 0x20b zephyr/libzephyr.a(systimer.c.obj) + .debug_line 0x00047bd3 0x93c zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_line 0x0004850f 0xa82 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_line 0x00048f91 0xcd0 zephyr/libzephyr.a(rtc_module.c.obj) + .debug_line 0x00049c61 0x4a06 zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_line 0x0004e667 0xc72 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_line 0x0004f2d9 0x637 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_line 0x0004f910 0x2c88 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_line 0x00052598 0x32c zephyr/libzephyr.a(ext_mem_layout.c.obj) + .debug_line 0x000528c4 0x76d zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_line 0x00053031 0x16e zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_line 0x0005319f 0x272 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_line 0x00053411 0x3e4 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .debug_line 0x000537f5 0x2dd zephyr/libzephyr.a(esp_rom_sys.c.obj) + .debug_line 0x00053ad2 0xc8c zephyr/libzephyr.a(clk.c.obj) + .debug_line 0x0005475e 0x69e zephyr/libzephyr.a(reset_reason.c.obj) + .debug_line 0x00054dfc 0x105b zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_line 0x00055e57 0x36a zephyr/libzephyr.a(esp_timer_init.c.obj) + .debug_line 0x000561c1 0xa58 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_line 0x00056c19 0x1180 zephyr/libzephyr.a(cache_hal.c.obj) + .debug_line 0x00057d99 0x59c zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_line 0x00058335 0xdb6 zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_line 0x000590eb 0x20a zephyr/libzephyr.a(gpio_periph.c.obj) + .debug_line 0x000592f5 0x819 zephyr/libzephyr.a(flash_init.c.obj) + .debug_line 0x00059b0e 0x2479 zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_line 0x0005bf87 0xac4 zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_line 0x0005ca4b 0xcd1 zephyr/libzephyr.a(soc_init.c.obj) + .debug_line 0x0005d71c 0xeec zephyr/libzephyr.a(soc_random.c.obj) + .debug_line 0x0005e608 0xa2 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_line 0x0005e6aa 0x2d6 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_line 0x0005e980 0x273 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_line 0x0005ebf3 0xaf zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .debug_line 0x0005eca2 0x3d7 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_line 0x0005f079 0x227 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .debug_line 0x0005f2a0 0x35d zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .debug_line 0x0005f5fd 0xdae zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_line 0x000603ab 0x6ba zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_line 0x00060a65 0x7a74 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_line 0x000684d9 0x3b8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .debug_line 0x00068891 0xfe zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_line 0x0006898f 0x305 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_line 0x00068c94 0x424 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_line 0x000690b8 0x1ef zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_line 0x000692a7 0x9a1 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_line 0x00069c48 0x2860 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_line 0x0006c4a8 0x1c49 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_line 0x0006e0f1 0x5a9 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_line 0x0006e69a 0x2999 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_line 0x00071033 0x1b61 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_line 0x00072b94 0x967 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_line 0x000734fb 0x2dee zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_line 0x000762e9 0x12da zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_line 0x000775c3 0xb95 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_line 0x00078158 0x275 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_line 0x000783cd 0x1ee7 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_line 0x0007a2b4 0x1db9 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_line 0x0007c06d 0x2b8 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_line 0x0007c325 0x1029 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_line 0x0007d34e 0x1256 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_line 0x0007e5a4 0x21ba zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_line 0x0008075e 0x4434 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_line 0x00084b92 0x908 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_line 0x0008549a 0x36f zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_line 0x00085809 0x688 zephyr/kernel/libkernel.a(device.c.obj) + .debug_line 0x00085e91 0x1c37 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_line 0x00087ac8 0xecc zephyr/kernel/libkernel.a(init.c.obj) + .debug_line 0x00088994 0x384 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_line 0x00088d18 0x1006 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_line 0x00089d1e 0xf34 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_line 0x0008ac52 0x42b6 zephyr/kernel/libkernel.a(work.c.obj) + .debug_line 0x0008ef08 0x1202 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_line 0x0009010a 0x628c zephyr/kernel/libkernel.a(sched.c.obj) + .debug_line 0x00096396 0x8a0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_line 0x00096c36 0x1879 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_line 0x000984af 0x115c zephyr/kernel/libkernel.a(timer.c.obj) + .debug_line 0x0009960b 0x24f2 zephyr/kernel/libkernel.a(poll.c.obj) + .debug_line 0x0009bafd 0xb2a zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_line 0x0009c627 0xbb zephyr/kernel/libkernel.a(banner.c.obj) + .debug_line 0x0009c6e2 0xd63 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_line 0x0009d445 0x400 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_line 0x0009d845 0x1c0 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + +.debug_frame 0x00000000 0x884c + *(SORT_BY_ALIGNMENT(.debug_frame)) + .debug_frame 0x00000000 0x28 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .debug_frame 0x00000028 0x88 app/libapp.a(main.c.obj) + .debug_frame 0x000000b0 0x70 app/libapp.a(kiss.c.obj) + .debug_frame 0x00000120 0x100 app/libapp.a(lora_modem.c.obj) + .debug_frame 0x00000220 0x238 zephyr/libzephyr.a(heap.c.obj) + .debug_frame 0x00000458 0x8c zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_frame 0x000004e4 0xa0 zephyr/libzephyr.a(printk.c.obj) + .debug_frame 0x00000584 0x28 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_frame 0x000005ac 0x1d8 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_frame 0x00000784 0x40 zephyr/libzephyr.a(getopt.c.obj) + .debug_frame 0x000007c4 0x28 zephyr/libzephyr.a(configs.c.obj) + .debug_frame 0x000007ec 0x70 zephyr/libzephyr.a(soc.c.obj) + .debug_frame 0x0000085c 0x40 zephyr/libzephyr.a(loader.c.obj) + .debug_frame 0x0000089c 0x28 zephyr/libzephyr.a(hw_init.c.obj) + .debug_frame 0x000008c4 0x430 zephyr/libzephyr.a(log_core.c.obj) + .debug_frame 0x00000cf4 0x1f0 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_frame 0x00000ee4 0xe8 zephyr/libzephyr.a(log_msg.c.obj) + .debug_frame 0x00000fcc 0x118 zephyr/libzephyr.a(log_output.c.obj) + .debug_frame 0x000010e4 0xa0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_frame 0x00001184 0xa0 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_frame 0x00001224 0x70 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_frame 0x00001294 0x1f0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_frame 0x00001484 0xe8 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_frame 0x0000156c 0x88 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_frame 0x000015f4 0x328 zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_frame 0x0000191c 0xa0 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_frame 0x000019bc 0xd0 zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_frame 0x00001a8c 0xd0 zephyr/libzephyr.a(flash_ops.c.obj) + .debug_frame 0x00001b5c 0x130 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_frame 0x00001c8c 0x40 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_frame 0x00001ccc 0x28 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .debug_frame 0x00001cf4 0xa0 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_frame 0x00001d94 0x2f8 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_frame 0x0000208c 0x70 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_frame 0x000020fc 0x58 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_frame 0x00002154 0x178 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_frame 0x000022cc 0x40 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_frame 0x0000230c 0xb8 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_frame 0x000023c4 0x88 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_frame 0x0000244c 0x178 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_frame 0x000025c4 0x160 zephyr/libzephyr.a(cache_utils.c.obj) + .debug_frame 0x00002724 0x298 zephyr/libzephyr.a(uart_hal.c.obj) + .debug_frame 0x000029bc 0x88 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_frame 0x00002a44 0xa0 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_frame 0x00002ae4 0x190 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_frame 0x00002c74 0x40 zephyr/libzephyr.a(console_init.c.obj) + .debug_frame 0x00002cb4 0x70 zephyr/libzephyr.a(soc_init.c.obj) + .debug_frame 0x00002d24 0x238 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_frame 0x00002f5c 0xb8 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_frame 0x00003014 0x178 zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_frame 0x0000318c 0x118 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_frame 0x000032a4 0x100 zephyr/libzephyr.a(esp_clk.c.obj) + .debug_frame 0x000033a4 0x100 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_frame 0x000034a4 0x40 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_frame 0x000034e4 0x1f0 zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_frame 0x000036d4 0x88 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_frame 0x0000375c 0x28 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_frame 0x00003784 0x328 zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_frame 0x00003aac 0x70 zephyr/libzephyr.a(rtc_init.c.obj) + .debug_frame 0x00003b1c 0x88 zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_frame 0x00003ba4 0xd0 zephyr/libzephyr.a(rtc_time.c.obj) + .debug_frame 0x00003c74 0x160 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_frame 0x00003dd4 0x40 zephyr/libzephyr.a(systimer.c.obj) + .debug_frame 0x00003e14 0x88 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_frame 0x00003e9c 0x100 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_frame 0x00003f9c 0x88 zephyr/libzephyr.a(rtc_module.c.obj) + .debug_frame 0x00004024 0x5b0 zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_frame 0x000045d4 0x88 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_frame 0x0000465c 0xa0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_frame 0x000046fc 0x1a8 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_frame 0x000048a4 0xa0 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_frame 0x00004944 0x28 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_frame 0x0000496c 0x28 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .debug_frame 0x00004994 0x58 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .debug_frame 0x000049ec 0x88 zephyr/libzephyr.a(clk.c.obj) + .debug_frame 0x00004a74 0x70 zephyr/libzephyr.a(reset_reason.c.obj) + .debug_frame 0x00004ae4 0x100 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_frame 0x00004be4 0x58 zephyr/libzephyr.a(esp_timer_init.c.obj) + .debug_frame 0x00004c3c 0xd0 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_frame 0x00004d0c 0x160 zephyr/libzephyr.a(cache_hal.c.obj) + .debug_frame 0x00004e6c 0xb8 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_frame 0x00004f24 0x100 zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_frame 0x00005024 0x58 zephyr/libzephyr.a(flash_init.c.obj) + .debug_frame 0x0000507c 0x280 zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_frame 0x000052fc 0xa0 zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_frame 0x0000539c 0x100 zephyr/libzephyr.a(soc_init.c.obj) + .debug_frame 0x0000549c 0x40 zephyr/libzephyr.a(soc_random.c.obj) + .debug_frame 0x000054dc 0x28 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_frame 0x00005504 0x40 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_frame 0x00005544 0x58 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_frame 0x0000559c 0x40 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .debug_frame 0x000055dc 0x58 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_frame 0x00005634 0x70 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_frame 0x000056a4 0x40 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_frame 0x000056e4 0x178 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_frame 0x0000585c 0x28 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .debug_frame 0x00005884 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_frame 0x000058ac 0x40 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_frame 0x000058ec 0x70 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_frame 0x0000595c 0x28 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_frame 0x00005984 0xe8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_frame 0x00005a6c 0x1a8 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_frame 0x00005c14 0xd0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_frame 0x00005ce4 0x58 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_frame 0x00005d3c 0x148 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_frame 0x00005e84 0x298 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_frame 0x0000611c 0x1c0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_frame 0x000062dc 0x160 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_frame 0x0000643c 0x130 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_frame 0x0000656c 0x160 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_frame 0x000066cc 0x40 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_frame 0x0000670c 0x460 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_frame 0x00006b6c 0x328 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_frame 0x00006e94 0x28 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_frame 0x00006ebc 0x28 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_frame 0x00006ee4 0x1d8 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_frame 0x000070bc 0x208 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_frame 0x000072c4 0x100 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_frame 0x000073c4 0xa0 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_frame 0x00007464 0x28 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_frame 0x0000748c 0xa0 zephyr/kernel/libkernel.a(device.c.obj) + .debug_frame 0x0000752c 0x70 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_frame 0x0000759c 0x88 zephyr/kernel/libkernel.a(init.c.obj) + .debug_frame 0x00007624 0x40 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_frame 0x00007664 0x70 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_frame 0x000076d4 0x70 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_frame 0x00007744 0x328 zephyr/kernel/libkernel.a(work.c.obj) + .debug_frame 0x00007a6c 0x178 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_frame 0x00007be4 0x478 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_frame 0x0000805c 0x88 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_frame 0x000080e4 0x190 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_frame 0x00008274 0xa0 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_frame 0x00008314 0x1a8 zephyr/kernel/libkernel.a(poll.c.obj) + .debug_frame 0x000084bc 0x100 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_frame 0x000085bc 0x28 zephyr/kernel/libkernel.a(banner.c.obj) + .debug_frame 0x000085e4 0xe8 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_frame 0x000086cc 0x28 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_frame 0x000086f4 0x28 /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/libgcc.a(_divdi3.o) + .debug_frame 0x0000871c 0x28 /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/libgcc.a(_moddi3.o) + .debug_frame 0x00008744 0x28 /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/libgcc.a(_udivdi3.o) + .debug_frame 0x0000876c 0x28 /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/libgcc.a(_umoddi3.o) + .debug_frame 0x00008794 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + .debug_frame 0x000087bc 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + .debug_frame 0x000087e4 0x40 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .debug_frame 0x00008824 0x28 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + +.debug_str 0x00000000 0x2b207 + *(SORT_BY_ALIGNMENT(.debug_str)) + .debug_str 0x00000000 0x2b207 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + 0x347 (size before relaxing) + .debug_str 0x0002b207 0x1108 app/libapp.a(main.c.obj) + .debug_str 0x0002b207 0x303 app/libapp.a(kiss.c.obj) + .debug_str 0x0002b207 0x114e app/libapp.a(lora_modem.c.obj) + .debug_str 0x0002b207 0xe33 zephyr/libzephyr.a(heap.c.obj) + .debug_str 0x0002b207 0xc21 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_str 0x0002b207 0x506 zephyr/libzephyr.a(printk.c.obj) + .debug_str 0x0002b207 0x561 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_str 0x0002b207 0x766 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_str 0x0002b207 0x8f2 zephyr/libzephyr.a(getopt.c.obj) + .debug_str 0x0002b207 0x1b5 zephyr/libzephyr.a(configs.c.obj) + .debug_str 0x0002b207 0x38f zephyr/libzephyr.a(soc.c.obj) + .debug_str 0x0002b207 0x1988 zephyr/libzephyr.a(loader.c.obj) + .debug_str 0x0002b207 0xf49 zephyr/libzephyr.a(hw_init.c.obj) + .debug_str 0x0002b207 0x1bec zephyr/libzephyr.a(log_core.c.obj) + .debug_str 0x0002b207 0xee9 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_str 0x0002b207 0xbb8 zephyr/libzephyr.a(log_msg.c.obj) + .debug_str 0x0002b207 0xc28 zephyr/libzephyr.a(log_output.c.obj) + .debug_str 0x0002b207 0xe5a zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_str 0x0002b207 0x51d zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_str 0x0002b207 0x36e3 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_str 0x0002b207 0x3210 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_str 0x0002b207 0x2da9 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_str 0x0002b207 0x160d zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_str 0x0002b207 0x2869 zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_str 0x0002b207 0x4813 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_str 0x0002b207 0x84c zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_str 0x0002b207 0x777 zephyr/libzephyr.a(flash_ops.c.obj) + .debug_str 0x0002b207 0x3ae9 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_str 0x0002b207 0xc4d zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_str 0x0002b207 0xa06 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .debug_str 0x0002b207 0xd24 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_str 0x0002b207 0x1f0e zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_str 0x0002b207 0xcee zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_str 0x0002b207 0x1754 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_str 0x0002b207 0x1960 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_str 0x0002b207 0xc45 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_str 0x0002b207 0xd69 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_str 0x0002b207 0x773 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_str 0x0002b207 0xb4c zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_str 0x0002b207 0x1982 zephyr/libzephyr.a(cache_utils.c.obj) + .debug_str 0x0002b207 0x1cba zephyr/libzephyr.a(uart_hal.c.obj) + .debug_str 0x0002b207 0x128e zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_str 0x0002b207 0x11b7 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_str 0x0002b207 0x1a3f zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_str 0x0002b207 0x2ee zephyr/libzephyr.a(console_init.c.obj) + .debug_str 0x0002b207 0x65bb zephyr/libzephyr.a(soc_init.c.obj) + .debug_str 0x0002b207 0x29a9 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_str 0x0002b207 0x1638 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_str 0x0002b207 0x2e5 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .debug_str 0x0002b207 0xe7f zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_str 0x0002b207 0x3649 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_str 0x0002b207 0x1699 zephyr/libzephyr.a(esp_clk.c.obj) + .debug_str 0x0002b207 0x7c3 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_str 0x0002b207 0x460 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_str 0x0002b207 0x6729 zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_str 0x0002b207 0x155c zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_str 0x0002b207 0x353 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_str 0x0002b207 0x310c zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_str 0x0002b207 0x3caa zephyr/libzephyr.a(rtc_init.c.obj) + .debug_str 0x0002b207 0x385e zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_str 0x0002b207 0xdb5 zephyr/libzephyr.a(rtc_time.c.obj) + .debug_str 0x0002b207 0x5e01 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_str 0x0002b207 0x286 zephyr/libzephyr.a(systimer.c.obj) + .debug_str 0x0002b207 0x66a zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_str 0x0002b207 0x119b zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_str 0x0002b207 0x382c zephyr/libzephyr.a(rtc_module.c.obj) + .debug_str 0x0002b207 0x7b45 zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_str 0x0002b207 0x6ed zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_str 0x0002b207 0x639 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_str 0x0002b207 0x1116 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_str 0x0002b207 0x3a2 zephyr/libzephyr.a(ext_mem_layout.c.obj) + .debug_str 0x0002b207 0x4d8 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_str 0x0002b207 0xc8 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_str 0x0002b207 0x555 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_str 0x0002b207 0x57d zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .debug_str 0x0002b207 0x328 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .debug_str 0x0002b207 0x19e0 zephyr/libzephyr.a(clk.c.obj) + .debug_str 0x0002b207 0x8db zephyr/libzephyr.a(reset_reason.c.obj) + .debug_str 0x0002b207 0x5c6e zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_str 0x0002b207 0x32d zephyr/libzephyr.a(esp_timer_init.c.obj) + .debug_str 0x0002b207 0x2cf1 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_str 0x0002b207 0xa6a zephyr/libzephyr.a(cache_hal.c.obj) + .debug_str 0x0002b207 0x2b1a zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_str 0x0002b207 0x6c0 zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_str 0x0002b207 0x275 zephyr/libzephyr.a(gpio_periph.c.obj) + .debug_str 0x0002b207 0x35bf zephyr/libzephyr.a(flash_init.c.obj) + .debug_str 0x0002b207 0x615b zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_str 0x0002b207 0x95a zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_str 0x0002b207 0x3b11 zephyr/libzephyr.a(soc_init.c.obj) + .debug_str 0x0002b207 0x596c zephyr/libzephyr.a(soc_random.c.obj) + .debug_str 0x0002b207 0x255 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_str 0x0002b207 0x2d4 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_str 0x0002b207 0x293 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_str 0x0002b207 0x257 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .debug_str 0x0002b207 0x40b zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_str 0x0002b207 0x81 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .debug_str 0x0002b207 0x83 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .debug_str 0x0002b207 0x9c8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_str 0x0002b207 0x700 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_str 0x0002b207 0x1054 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_str 0x0002b207 0x540 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .debug_str 0x0002b207 0x253 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_str 0x0002b207 0x309 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_str 0x0002b207 0x4bc zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_str 0x0002b207 0x2f9 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_str 0x0002b207 0x808 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_str 0x0002b207 0xe93 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_str 0x0002b207 0x6c3e zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_str 0x0002b207 0x6a0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_str 0x0002b207 0x290d zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_str 0x0002b207 0x2039 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_str 0x0002b207 0x9ee zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_str 0x0002b207 0x16d6 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_str 0x0002b207 0x12ea zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_str 0x0002b207 0x53c zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_str 0x0002b207 0x259 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_str 0x0002b207 0x17f5 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_str 0x0002b207 0x1a9d zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_str 0x0002b207 0x2e8 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_str 0x0002b207 0x17c1 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_str 0x0002b207 0x17fd zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_str 0x0002b207 0x2d6f zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_str 0x0002b207 0x412e zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_str 0x0002b207 0x59e zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_str 0x0002b207 0x2d8 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_str 0x0002b207 0x38d zephyr/kernel/libkernel.a(device.c.obj) + .debug_str 0x0002b207 0xcfb zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_str 0x0002b207 0xe70 zephyr/kernel/libkernel.a(init.c.obj) + .debug_str 0x0002b207 0x32a zephyr/kernel/libkernel.a(idle.c.obj) + .debug_str 0x0002b207 0xc96 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_str 0x0002b207 0x900 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_str 0x0002b207 0x1155 zephyr/kernel/libkernel.a(work.c.obj) + .debug_str 0x0002b207 0xd80 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_str 0x0002b207 0x1628 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_str 0x0002b207 0x943 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_str 0x0002b207 0x811 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_str 0x0002b207 0x9a5 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_str 0x0002b207 0xfe5 zephyr/kernel/libkernel.a(poll.c.obj) + .debug_str 0x0002b207 0x8d9 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_str 0x0002b207 0x23b zephyr/kernel/libkernel.a(banner.c.obj) + .debug_str 0x0002b207 0x7dc zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_str 0x0002b207 0x7da zephyr/kernel/libkernel.a(system_work_q.c.obj) + .debug_str 0x0002b207 0x29e zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + +.debug_loc 0x00000000 0x3e0aa + *(SORT_BY_ALIGNMENT(.debug_loc)) + .debug_loc 0x00000000 0x114f app/libapp.a(main.c.obj) + .debug_loc 0x0000114f 0x246 app/libapp.a(kiss.c.obj) + .debug_loc 0x00001395 0xf65 app/libapp.a(lora_modem.c.obj) + .debug_loc 0x000022fa 0x2923 zephyr/libzephyr.a(heap.c.obj) + .debug_loc 0x00004c1d 0x1f85 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_loc 0x00006ba2 0xf8 zephyr/libzephyr.a(printk.c.obj) + .debug_loc 0x00006c9a 0x15 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_loc 0x00006caf 0xaee zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_loc 0x0000779d 0xd3 zephyr/libzephyr.a(getopt.c.obj) + .debug_loc 0x00007870 0x2b zephyr/libzephyr.a(soc.c.obj) + .debug_loc 0x0000789b 0x393 zephyr/libzephyr.a(loader.c.obj) + .debug_loc 0x00007c2e 0x23 zephyr/libzephyr.a(hw_init.c.obj) + .debug_loc 0x00007c51 0xf5b zephyr/libzephyr.a(log_core.c.obj) + .debug_loc 0x00008bac 0xba0 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_loc 0x0000974c 0xc6b zephyr/libzephyr.a(log_msg.c.obj) + .debug_loc 0x0000a3b7 0xfc9 zephyr/libzephyr.a(log_output.c.obj) + .debug_loc 0x0000b380 0x332 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_loc 0x0000b6b2 0x158 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_loc 0x0000b80a 0x36c zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_loc 0x0000bb76 0x15a4 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_loc 0x0000d11a 0xbd3 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_loc 0x0000dced 0x15e zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_loc 0x0000de4b 0x1695 zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_loc 0x0000f4e0 0x89c zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_loc 0x0000fd7c 0xae8 zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_loc 0x00010864 0x1ad zephyr/libzephyr.a(flash_ops.c.obj) + .debug_loc 0x00010a11 0x5a2 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_loc 0x00010fb3 0xd5 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_loc 0x00011088 0x2a1 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_loc 0x00011329 0x1079 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_loc 0x000123a2 0x140 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_loc 0x000124e2 0x14f zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_loc 0x00012631 0x79c zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_loc 0x00012dcd 0xd5 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_loc 0x00012ea2 0x524 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_loc 0x000133c6 0xd7 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_loc 0x0001349d 0x48f zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_loc 0x0001392c 0x2ea zephyr/libzephyr.a(cache_utils.c.obj) + .debug_loc 0x00013c16 0xc25 zephyr/libzephyr.a(uart_hal.c.obj) + .debug_loc 0x0001483b 0x24d zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_loc 0x00014a88 0x561 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_loc 0x00014fe9 0x15bd zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_loc 0x000165a6 0x119 zephyr/libzephyr.a(soc_init.c.obj) + .debug_loc 0x000166bf 0xca5 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_loc 0x00017364 0x207 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_loc 0x0001756b 0xa52 zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_loc 0x00017fbd 0xa02 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_loc 0x000189bf 0x187 zephyr/libzephyr.a(esp_clk.c.obj) + .debug_loc 0x00018b46 0x16 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_loc 0x00018b5c 0x305 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_loc 0x00018e61 0xc48 zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_loc 0x00019aa9 0x202 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_loc 0x00019cab 0x2b zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_loc 0x00019cd6 0x80a zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_loc 0x0001a4e0 0x787 zephyr/libzephyr.a(rtc_init.c.obj) + .debug_loc 0x0001ac67 0x99 zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_loc 0x0001ad00 0x50c zephyr/libzephyr.a(rtc_time.c.obj) + .debug_loc 0x0001b20c 0x151 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_loc 0x0001b35d 0x58 zephyr/libzephyr.a(systimer.c.obj) + .debug_loc 0x0001b3b5 0x1f3 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_loc 0x0001b5a8 0x3a8 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_loc 0x0001b950 0x27b zephyr/libzephyr.a(rtc_module.c.obj) + .debug_loc 0x0001bbcb 0x131f zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_loc 0x0001ceea 0x540 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_loc 0x0001d42a 0xae zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_loc 0x0001d4d8 0x2385 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_loc 0x0001f85d 0x3a1 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_loc 0x0001fbfe 0x15 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_loc 0x0001fc13 0x385 zephyr/libzephyr.a(clk.c.obj) + .debug_loc 0x0001ff98 0x116 zephyr/libzephyr.a(reset_reason.c.obj) + .debug_loc 0x000200ae 0x374 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_loc 0x00020422 0x227 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_loc 0x00020649 0xca1 zephyr/libzephyr.a(cache_hal.c.obj) + .debug_loc 0x000212ea 0x38 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_loc 0x00021322 0xafe zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_loc 0x00021e20 0x2f zephyr/libzephyr.a(flash_init.c.obj) + .debug_loc 0x00021e4f 0x120d zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_loc 0x0002305c 0x1df zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_loc 0x0002323b 0x253 zephyr/libzephyr.a(soc_init.c.obj) + .debug_loc 0x0002348e 0x3e3 zephyr/libzephyr.a(soc_random.c.obj) + .debug_loc 0x00023871 0x15 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_loc 0x00023886 0x15 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_loc 0x0002389b 0x77 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_loc 0x00023912 0x255 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_loc 0x00023b67 0x126 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_loc 0x00023c8d 0x3940 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_loc 0x000275cd 0x6b zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_loc 0x00027638 0xa4 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_loc 0x000276dc 0x2e4 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_loc 0x000279c0 0x1362 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_loc 0x00028d22 0x923 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_loc 0x00029645 0x56 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_loc 0x0002969b 0x140b zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_loc 0x0002aaa6 0xb08 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_loc 0x0002b5ae 0xa4 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_loc 0x0002b652 0x16cc zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_loc 0x0002cd1e 0x97b zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_loc 0x0002d699 0x390 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_loc 0x0002da29 0x24 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_loc 0x0002da4d 0x571 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_loc 0x0002dfbe 0xbce zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_loc 0x0002eb8c 0x4e zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_loc 0x0002ebda 0x721 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_loc 0x0002f2fb 0x544 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_loc 0x0002f83f 0xf96 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_loc 0x000307d5 0x24af zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_loc 0x00032c84 0x2ba zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_loc 0x00032f3e 0x3f zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_loc 0x00032f7d 0x183 zephyr/kernel/libkernel.a(device.c.obj) + .debug_loc 0x00033100 0x655 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_loc 0x00033755 0x394 zephyr/kernel/libkernel.a(init.c.obj) + .debug_loc 0x00033ae9 0x3f zephyr/kernel/libkernel.a(idle.c.obj) + .debug_loc 0x00033b28 0x65e zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_loc 0x00034186 0x662 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_loc 0x000347e8 0x2a67 zephyr/kernel/libkernel.a(work.c.obj) + .debug_loc 0x0003724f 0x8d4 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_loc 0x00037b23 0x34d1 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_loc 0x0003aff4 0x1d5 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_loc 0x0003b1c9 0xbec zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_loc 0x0003bdb5 0x591 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_loc 0x0003c346 0x1217 zephyr/kernel/libkernel.a(poll.c.obj) + .debug_loc 0x0003d55d 0x654 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_loc 0x0003dbb1 0x4f9 zephyr/kernel/libkernel.a(kheap.c.obj) + +.debug_macinfo + *(SORT_BY_ALIGNMENT(.debug_macinfo)) + +.debug_weaknames + *(SORT_BY_ALIGNMENT(.debug_weaknames)) + +.debug_funcnames + *(SORT_BY_ALIGNMENT(.debug_funcnames)) + +.debug_typenames + *(SORT_BY_ALIGNMENT(.debug_typenames)) + +.debug_varnames + *(SORT_BY_ALIGNMENT(.debug_varnames)) + +.debug_pubtypes + *(SORT_BY_ALIGNMENT(.debug_pubtypes)) + +.debug_ranges 0x00000000 0xafa0 + *(SORT_BY_ALIGNMENT(.debug_ranges)) + .debug_ranges 0x00000000 0x68 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .debug_ranges 0x00000068 0x10 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .debug_ranges 0x00000078 0x188 app/libapp.a(main.c.obj) + .debug_ranges 0x00000200 0x40 app/libapp.a(kiss.c.obj) + .debug_ranges 0x00000240 0x5b0 app/libapp.a(lora_modem.c.obj) + .debug_ranges 0x000007f0 0x4e0 zephyr/libzephyr.a(heap.c.obj) + .debug_ranges 0x00000cd0 0x3e8 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .debug_ranges 0x000010b8 0x50 zephyr/libzephyr.a(printk.c.obj) + .debug_ranges 0x00001108 0x10 zephyr/libzephyr.a(thread_entry.c.obj) + .debug_ranges 0x00001118 0x1b8 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .debug_ranges 0x000012d0 0x18 zephyr/libzephyr.a(getopt.c.obj) + .debug_ranges 0x000012e8 0x10 zephyr/libzephyr.a(configs.c.obj) + .debug_ranges 0x000012f8 0x28 zephyr/libzephyr.a(soc.c.obj) + .debug_ranges 0x00001320 0x30 zephyr/libzephyr.a(loader.c.obj) + .debug_ranges 0x00001350 0x10 zephyr/libzephyr.a(hw_init.c.obj) + .debug_ranges 0x00001360 0x410 zephyr/libzephyr.a(log_core.c.obj) + .debug_ranges 0x00001770 0x480 zephyr/libzephyr.a(log_mgmt.c.obj) + .debug_ranges 0x00001bf0 0x270 zephyr/libzephyr.a(log_msg.c.obj) + .debug_ranges 0x00001e60 0x160 zephyr/libzephyr.a(log_output.c.obj) + .debug_ranges 0x00001fc0 0x98 zephyr/libzephyr.a(log_backend_uart.c.obj) + .debug_ranges 0x00002058 0x70 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_ranges 0x000020c8 0x78 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .debug_ranges 0x00002140 0x4e8 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .debug_ranges 0x00002628 0x1e0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .debug_ranges 0x00002808 0x58 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .debug_ranges 0x00002860 0x2d0 zephyr/libzephyr.a(esp_flash_api.c.obj) + .debug_ranges 0x00002b30 0x180 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .debug_ranges 0x00002cb0 0x108 zephyr/libzephyr.a(flash_mmap.c.obj) + .debug_ranges 0x00002db8 0x60 zephyr/libzephyr.a(flash_ops.c.obj) + .debug_ranges 0x00002e18 0x80 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .debug_ranges 0x00002e98 0x18 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .debug_ranges 0x00002eb0 0x10 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .debug_ranges 0x00002ec0 0x50 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .debug_ranges 0x00002f10 0x160 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .debug_ranges 0x00003070 0x28 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .debug_ranges 0x00003098 0x20 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .debug_ranges 0x000030b8 0xc8 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .debug_ranges 0x00003180 0x18 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .debug_ranges 0x00003198 0x88 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .debug_ranges 0x00003220 0x30 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .debug_ranges 0x00003250 0x80 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .debug_ranges 0x000032d0 0x90 zephyr/libzephyr.a(cache_utils.c.obj) + .debug_ranges 0x00003360 0x1b8 zephyr/libzephyr.a(uart_hal.c.obj) + .debug_ranges 0x00003518 0x60 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .debug_ranges 0x00003578 0x68 zephyr/libzephyr.a(spi_hal.c.obj) + .debug_ranges 0x000035e0 0x270 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .debug_ranges 0x00003850 0x18 zephyr/libzephyr.a(console_init.c.obj) + .debug_ranges 0x00003868 0x60 zephyr/libzephyr.a(soc_init.c.obj) + .debug_ranges 0x000038c8 0x380 zephyr/libzephyr.a(rtc_io.c.obj) + .debug_ranges 0x00003c48 0xa0 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .debug_ranges 0x00003ce8 0x110 zephyr/libzephyr.a(systimer_hal.c.obj) + .debug_ranges 0x00003df8 0x180 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .debug_ranges 0x00003f78 0x88 zephyr/libzephyr.a(esp_clk.c.obj) + .debug_ranges 0x00004000 0x58 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .debug_ranges 0x00004058 0x30 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .debug_ranges 0x00004088 0x2c8 zephyr/libzephyr.a(periph_ctrl.c.obj) + .debug_ranges 0x00004350 0x30 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .debug_ranges 0x00004380 0x10 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .debug_ranges 0x00004390 0x220 zephyr/libzephyr.a(rtc_clk.c.obj) + .debug_ranges 0x000045b0 0x120 zephyr/libzephyr.a(rtc_init.c.obj) + .debug_ranges 0x000046d0 0x78 zephyr/libzephyr.a(rtc_sleep.c.obj) + .debug_ranges 0x00004748 0xb0 zephyr/libzephyr.a(rtc_time.c.obj) + .debug_ranges 0x000047f8 0xf8 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .debug_ranges 0x000048f0 0x18 zephyr/libzephyr.a(systimer.c.obj) + .debug_ranges 0x00004908 0x50 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .debug_ranges 0x00004958 0xd0 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .debug_ranges 0x00004a28 0xd8 zephyr/libzephyr.a(rtc_module.c.obj) + .debug_ranges 0x00004b00 0x3e0 zephyr/libzephyr.a(sleep_modes.c.obj) + .debug_ranges 0x00004ee0 0x78 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .debug_ranges 0x00004f58 0x50 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .debug_ranges 0x00004fa8 0x2f8 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .debug_ranges 0x000052a0 0x68 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_ranges 0x00005308 0x10 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .debug_ranges 0x00005318 0x10 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .debug_ranges 0x00005328 0x20 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .debug_ranges 0x00005348 0x60 zephyr/libzephyr.a(clk.c.obj) + .debug_ranges 0x000053a8 0x40 zephyr/libzephyr.a(reset_reason.c.obj) + .debug_ranges 0x000053e8 0x170 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .debug_ranges 0x00005558 0x20 zephyr/libzephyr.a(esp_timer_init.c.obj) + .debug_ranges 0x00005578 0x160 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_ranges 0x000056d8 0x2a8 zephyr/libzephyr.a(cache_hal.c.obj) + .debug_ranges 0x00005980 0x90 zephyr/libzephyr.a(efuse_hal.c.obj) + .debug_ranges 0x00005a10 0x1f0 zephyr/libzephyr.a(mmu_hal.c.obj) + .debug_ranges 0x00005c00 0x38 zephyr/libzephyr.a(flash_init.c.obj) + .debug_ranges 0x00005c38 0x2b0 zephyr/libzephyr.a(bootloader_flash.c.obj) + .debug_ranges 0x00005ee8 0x38 zephyr/libzephyr.a(soc_flash_init.c.obj) + .debug_ranges 0x00005f20 0x88 zephyr/libzephyr.a(soc_init.c.obj) + .debug_ranges 0x00005fa8 0x238 zephyr/libzephyr.a(soc_random.c.obj) + .debug_ranges 0x000061e0 0x10 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .debug_ranges 0x000061f0 0x18 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .debug_ranges 0x00006208 0x20 zephyr/arch/common/libarch__common.a(init.c.obj) + .debug_ranges 0x00006228 0x18 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .debug_ranges 0x00006240 0x20 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .debug_ranges 0x00006260 0xf8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .debug_ranges 0x00006358 0x18 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .debug_ranges 0x00006370 0x1250 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .debug_ranges 0x000075c0 0x10 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .debug_ranges 0x000075d0 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .debug_ranges 0x000075e0 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .debug_ranges 0x000075f8 0x28 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .debug_ranges 0x00007620 0x10 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .debug_ranges 0x00007630 0x68 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .debug_ranges 0x00007698 0x1d0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .debug_ranges 0x00007868 0x1b8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .debug_ranges 0x00007a20 0x38 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .debug_ranges 0x00007a58 0x2c8 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .debug_ranges 0x00007d20 0x1e0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_ranges 0x00007f00 0xb0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .debug_ranges 0x00007fb0 0x498 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .debug_ranges 0x00008448 0x108 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .debug_ranges 0x00008550 0x78 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .debug_ranges 0x000085c8 0x30 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .debug_ranges 0x000085f8 0x1d8 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .debug_ranges 0x000087d0 0x140 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .debug_ranges 0x00008910 0x10 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .debug_ranges 0x00008920 0xd8 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .debug_ranges 0x000089f8 0x178 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .debug_ranges 0x00008b70 0x2d8 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .debug_ranges 0x00008e48 0x480 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .debug_ranges 0x000092c8 0x50 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .debug_ranges 0x00009318 0x30 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .debug_ranges 0x00009348 0x70 zephyr/kernel/libkernel.a(device.c.obj) + .debug_ranges 0x000093b8 0x370 zephyr/kernel/libkernel.a(fatal.c.obj) + .debug_ranges 0x00009728 0x78 zephyr/kernel/libkernel.a(init.c.obj) + .debug_ranges 0x000097a0 0x18 zephyr/kernel/libkernel.a(idle.c.obj) + .debug_ranges 0x000097b8 0xf0 zephyr/kernel/libkernel.a(mutex.c.obj) + .debug_ranges 0x000098a8 0x190 zephyr/kernel/libkernel.a(sem.c.obj) + .debug_ranges 0x00009a38 0x458 zephyr/kernel/libkernel.a(work.c.obj) + .debug_ranges 0x00009e90 0x180 zephyr/kernel/libkernel.a(thread.c.obj) + .debug_ranges 0x0000a010 0x938 zephyr/kernel/libkernel.a(sched.c.obj) + .debug_ranges 0x0000a948 0x30 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .debug_ranges 0x0000a978 0x1f0 zephyr/kernel/libkernel.a(timeout.c.obj) + .debug_ranges 0x0000ab68 0xf8 zephyr/kernel/libkernel.a(timer.c.obj) + .debug_ranges 0x0000ac60 0x1c8 zephyr/kernel/libkernel.a(poll.c.obj) + .debug_ranges 0x0000ae28 0x58 zephyr/kernel/libkernel.a(mempool.c.obj) + .debug_ranges 0x0000ae80 0x10 zephyr/kernel/libkernel.a(banner.c.obj) + .debug_ranges 0x0000ae90 0x100 zephyr/kernel/libkernel.a(kheap.c.obj) + .debug_ranges 0x0000af90 0x10 zephyr/kernel/libkernel.a(system_work_q.c.obj) + +.debug_addr + *(SORT_BY_ALIGNMENT(.debug_addr)) + +.debug_line_str + *(SORT_BY_ALIGNMENT(.debug_line_str)) + +.debug_loclists + *(SORT_BY_ALIGNMENT(.debug_loclists)) + +.debug_macro + *(SORT_BY_ALIGNMENT(.debug_macro)) + +.debug_names + *(SORT_BY_ALIGNMENT(.debug_names)) + +.debug_rnglists + *(SORT_BY_ALIGNMENT(.debug_rnglists)) + +.debug_str_offsets + *(SORT_BY_ALIGNMENT(.debug_str_offsets)) + +.debug_sup + *(SORT_BY_ALIGNMENT(.debug_sup)) + +.xtensa.info 0x00000000 0x38 + *(SORT_BY_ALIGNMENT(.xtensa.info)) + .xtensa.info 0x00000000 0x38 zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj + .xtensa.info 0x00000038 0x0 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .xtensa.info 0x00000038 0x0 app/libapp.a(main.c.obj) + .xtensa.info 0x00000038 0x0 app/libapp.a(kiss.c.obj) + .xtensa.info 0x00000038 0x0 app/libapp.a(lora_modem.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(validate_libc.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(heap.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(clock.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(printk.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(sem.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(thread_entry.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(assert.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(dec.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(hex.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rb.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(set.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(timeutil.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(bitarray.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(bitmask.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(getopt.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(getopt_common.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(configs.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(soc.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp32s3-mp.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(loader.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(hw_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(log_core.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(log_mgmt.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(log_cache.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(log_msg.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(log_output.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_efuse_api.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_efuse_table.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(flash_encrypt.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_flash_api.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(flash_mmap.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(flash_ops.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(memspi_host_driver.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(cache_utils.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(uart_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(spi_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(lldesc.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(gdma_hal_top.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(mpu_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(flash_qio_mode.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(console_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_io.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(clk_tree_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_io_periph.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_io_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(systimer_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(cpu.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_clk.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(hw_random.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(mac_addr.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(periph_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(cpu_region_protect.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(io_mux.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_clk.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_clk_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_sleep.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_time.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(systimer.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(rtc_module.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(sleep_modes.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_cache_msync.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_mmu_map.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(ext_mem_layout.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_crc.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_gpio.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_print.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_rom_sys.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_err.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(clk.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(reset_reason.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(system_internal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_timer.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_timer_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(cache_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(mmu_hal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(gpio_periph.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(esp_restart.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(flash_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(bootloader_flash.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(soc_flash_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(soc_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/libzephyr.a(soc_random.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/common/libarch__common.a(init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(device.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(errno.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(fatal.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(init.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(mutex.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(sem.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(work.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(sched.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(timeslicing.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(timeout.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(timer.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(poll.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(mempool.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(banner.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(kheap.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .xtensa.info 0x00000038 0x0 zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_ashldi3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_ashrdi3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_lshrdi3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_bswapsi2.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_bswapdi2.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_divsf3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_addsubdf3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_muldf3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_divdf3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_fixdfdi.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_floatsidf.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_floatdidf.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_truncdfsf2.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_extendsfdf2.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_popcountsi2.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_divdi3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_moddi3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_udivdi3.o) + .xtensa.info 0x00000038 0x0 /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/libgcc.a(_umoddi3.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memcpy.S.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memset.S.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + .xtensa.info 0x00000038 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + +.xt.insn + *(SORT_BY_ALIGNMENT(.xt.insn)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.x.*)) + +.xt.prop 0x00000000 0x10a94 + *(SORT_BY_ALIGNMENT(.xt.prop)) + .xt.prop 0x00000000 0x24 zephyr/CMakeFiles/offsets.dir/./arch/xtensa/core/offsets/offsets.c.obj + .xt.prop 0x00000024 0x330 app/libapp.a(main.c.obj) + .xt.prop 0x00000354 0x18c app/libapp.a(kiss.c.obj) + 0x198 (size before relaxing) + .xt.prop 0x000004e0 0x2f4 app/libapp.a(lora_modem.c.obj) + 0x30c (size before relaxing) + .xt.prop 0x000007d4 0x408 zephyr/libzephyr.a(heap.c.obj) + 0x750 (size before relaxing) + .xt.prop 0x00000bdc 0x684 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x6c0 (size before relaxing) + .xt.prop 0x00001260 0x0 zephyr/libzephyr.a(clock.c.obj) + 0x324 (size before relaxing) + .xt.prop 0x00001260 0x60 zephyr/libzephyr.a(printk.c.obj) + 0x138 (size before relaxing) + .xt.prop 0x000012c0 0x0 zephyr/libzephyr.a(sem.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x000012c0 0x24 zephyr/libzephyr.a(thread_entry.c.obj) + .xt.prop 0x000012e4 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + 0x900 (size before relaxing) + .xt.prop 0x000012e4 0x0 zephyr/libzephyr.a(assert.c.obj) + 0x54 (size before relaxing) + .xt.prop 0x000012e4 0x420 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x654 (size before relaxing) + .xt.prop 0x00001704 0x0 zephyr/libzephyr.a(dec.c.obj) + 0x78 (size before relaxing) + .xt.prop 0x00001704 0x0 zephyr/libzephyr.a(hex.c.obj) + 0x18c (size before relaxing) + .xt.prop 0x00001704 0x0 zephyr/libzephyr.a(rb.c.obj) + 0x5b8 (size before relaxing) + .xt.prop 0x00001704 0x0 zephyr/libzephyr.a(set.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x00001704 0x0 zephyr/libzephyr.a(timeutil.c.obj) + 0x3f0 (size before relaxing) + .xt.prop 0x00001704 0x0 zephyr/libzephyr.a(bitarray.c.obj) + 0x6d8 (size before relaxing) + .xt.prop 0x00001704 0x0 zephyr/libzephyr.a(bitmask.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x00001704 0xc zephyr/libzephyr.a(getopt.c.obj) + 0x180 (size before relaxing) + .xt.prop 0x00001710 0x0 zephyr/libzephyr.a(getopt_common.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x00001710 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + 0x24c (size before relaxing) + .xt.prop 0x00001710 0x24 zephyr/libzephyr.a(configs.c.obj) + .xt.prop 0x00001734 0x60 zephyr/libzephyr.a(soc.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x00001794 0x1e0 zephyr/libzephyr.a(loader.c.obj) + 0x1ec (size before relaxing) + .xt.prop 0x00001974 0x60 zephyr/libzephyr.a(hw_init.c.obj) + .xt.prop 0x000019d4 0x7c8 zephyr/libzephyr.a(log_core.c.obj) + 0xbb8 (size before relaxing) + .xt.prop 0x0000219c 0x78 zephyr/libzephyr.a(log_mgmt.c.obj) + 0x4e0 (size before relaxing) + .xt.prop 0x00002214 0x0 zephyr/libzephyr.a(log_cache.c.obj) + 0x198 (size before relaxing) + .xt.prop 0x00002214 0x1d4 zephyr/libzephyr.a(log_msg.c.obj) + 0x240 (size before relaxing) + .xt.prop 0x000023e8 0x360 zephyr/libzephyr.a(log_output.c.obj) + 0x3c0 (size before relaxing) + .xt.prop 0x00002748 0x168 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x18c (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(tracing_none.c.obj) + 0xb4 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_efuse_api.c.obj) + 0x5c4 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + 0x180 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + 0x5c4 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_efuse_table.c.obj) + 0x1530 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + 0xd8 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + 0x2b8 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + 0x7d4 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(flash_encrypt.c.obj) + 0x210 (size before relaxing) + .xt.prop 0x000028b0 0x0 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x000028b0 0x120 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x12c (size before relaxing) + .xt.prop 0x000029d0 0x168 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x174 (size before relaxing) + .xt.prop 0x00002b38 0x498 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x57c (size before relaxing) + .xt.prop 0x00002fd0 0x2ac zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x2d0 (size before relaxing) + .xt.prop 0x0000327c 0x150 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0x180 (size before relaxing) + .xt.prop 0x000033cc 0x3d8 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0xf9c (size before relaxing) + .xt.prop 0x000037a4 0xf0 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x36c (size before relaxing) + .xt.prop 0x00003894 0x6c zephyr/libzephyr.a(flash_mmap.c.obj) + 0x348 (size before relaxing) + .xt.prop 0x00003900 0xd8 zephyr/libzephyr.a(flash_ops.c.obj) + 0x264 (size before relaxing) + .xt.prop 0x000039d8 0x2c4 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x348 (size before relaxing) + .xt.prop 0x00003c9c 0x60 zephyr/libzephyr.a(spi_flash_chip_boya.c.obj) + .xt.prop 0x00003cfc 0x3c zephyr/libzephyr.a(spi_flash_chip_drivers.c.obj) + .xt.prop 0x00003d38 0x138 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x144 (size before relaxing) + .xt.prop 0x00003e70 0x930 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0xa20 (size before relaxing) + .xt.prop 0x000047a0 0xc0 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x00004860 0xa8 zephyr/libzephyr.a(spi_flash_chip_mxic.c.obj) + .xt.prop 0x00004908 0x3c0 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x420 (size before relaxing) + .xt.prop 0x00004cc8 0x60 zephyr/libzephyr.a(spi_flash_chip_th.c.obj) + .xt.prop 0x00004d28 0x240 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x270 (size before relaxing) + .xt.prop 0x00004f68 0x0 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x00004f68 0x78 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x00004fe0 0x180 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x378 (size before relaxing) + .xt.prop 0x00005160 0x0 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + 0x21c (size before relaxing) + .xt.prop 0x00005160 0xe4 zephyr/libzephyr.a(cache_utils.c.obj) + 0x2c4 (size before relaxing) + .xt.prop 0x00005244 0x360 zephyr/libzephyr.a(uart_hal.c.obj) + 0x558 (size before relaxing) + .xt.prop 0x000055a4 0xe4 zephyr/libzephyr.a(uart_hal_iram.c.obj) + 0x120 (size before relaxing) + .xt.prop 0x00005688 0x6c zephyr/libzephyr.a(spi_hal.c.obj) + 0x198 (size before relaxing) + .xt.prop 0x000056f4 0x2f4 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x690 (size before relaxing) + .xt.prop 0x000059e8 0x0 zephyr/libzephyr.a(lldesc.c.obj) + 0xb4 (size before relaxing) + .xt.prop 0x000059e8 0x0 zephyr/libzephyr.a(gdma_hal_top.c.obj) + 0x270 (size before relaxing) + .xt.prop 0x000059e8 0x0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + 0x480 (size before relaxing) + .xt.prop 0x000059e8 0x0 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x000059e8 0x0 zephyr/libzephyr.a(mpu_hal.c.obj) + 0x78 (size before relaxing) + .xt.prop 0x000059e8 0x0 zephyr/libzephyr.a(flash_qio_mode.c.obj) + 0x270 (size before relaxing) + .xt.prop 0x000059e8 0x0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + 0x1ec (size before relaxing) + .xt.prop 0x000059e8 0x30 zephyr/libzephyr.a(console_init.c.obj) + 0x54 (size before relaxing) + .xt.prop 0x00005a18 0x108 zephyr/libzephyr.a(soc_init.c.obj) + .xt.prop 0x00005b20 0x174 zephyr/libzephyr.a(rtc_io.c.obj) + 0x6fc (size before relaxing) + .xt.prop 0x00005c94 0x0 zephyr/libzephyr.a(temperature_sensor_periph.c.obj) + 0xc (size before relaxing) + .xt.prop 0x00005c94 0x0 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + 0x168 (size before relaxing) + .xt.prop 0x00005c94 0x15c zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x240 (size before relaxing) + .xt.prop 0x00005df0 0xc zephyr/libzephyr.a(rtc_io_periph.c.obj) + .xt.prop 0x00005dfc 0x0 zephyr/libzephyr.a(rtc_io_hal.c.obj) + 0x2f4 (size before relaxing) + .xt.prop 0x00005dfc 0x12c zephyr/libzephyr.a(systimer_hal.c.obj) + 0x2ac (size before relaxing) + .xt.prop 0x00005f28 0xfc zephyr/libzephyr.a(wdt_hal_iram.c.obj) + 0x3a8 (size before relaxing) + .xt.prop 0x00006024 0x0 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x00006024 0x0 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + 0x2dc (size before relaxing) + .xt.prop 0x00006024 0x0 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x00006024 0x0 zephyr/libzephyr.a(cpu.c.obj) + 0x1f8 (size before relaxing) + .xt.prop 0x00006024 0x30 zephyr/libzephyr.a(esp_clk.c.obj) + 0x228 (size before relaxing) + .xt.prop 0x00006054 0x0 zephyr/libzephyr.a(hw_random.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x00006054 0x0 zephyr/libzephyr.a(mac_addr.c.obj) + 0x4b0 (size before relaxing) + .xt.prop 0x00006054 0x120 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x1bc (size before relaxing) + .xt.prop 0x00006174 0x78 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .xt.prop 0x000061ec 0x81c zephyr/libzephyr.a(periph_ctrl.c.obj) + 0xac8 (size before relaxing) + .xt.prop 0x00006a08 0x0 zephyr/libzephyr.a(cpu_region_protect.c.obj) + 0x48 (size before relaxing) + .xt.prop 0x00006a08 0x198 zephyr/libzephyr.a(esp_clk_tree.c.obj) + 0x228 (size before relaxing) + .xt.prop 0x00006ba0 0x54 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .xt.prop 0x00006bf4 0x0 zephyr/libzephyr.a(io_mux.c.obj) + 0xfc (size before relaxing) + .xt.prop 0x00006bf4 0x6cc zephyr/libzephyr.a(rtc_clk.c.obj) + 0xa20 (size before relaxing) + .xt.prop 0x000072c0 0x0 zephyr/libzephyr.a(rtc_clk_init.c.obj) + 0x54 (size before relaxing) + .xt.prop 0x000072c0 0x168 zephyr/libzephyr.a(rtc_init.c.obj) + 0x1e0 (size before relaxing) + .xt.prop 0x00007428 0x60 zephyr/libzephyr.a(rtc_sleep.c.obj) + 0x294 (size before relaxing) + .xt.prop 0x00007488 0x27c zephyr/libzephyr.a(rtc_time.c.obj) + 0x33c (size before relaxing) + .xt.prop 0x00007704 0x30 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + 0x2a0 (size before relaxing) + .xt.prop 0x00007734 0x48 zephyr/libzephyr.a(systimer.c.obj) + .xt.prop 0x0000777c 0x180 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x1a4 (size before relaxing) + .xt.prop 0x000078fc 0x198 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x258 (size before relaxing) + .xt.prop 0x00007a94 0x90 zephyr/libzephyr.a(rtc_module.c.obj) + 0x1ec (size before relaxing) + .xt.prop 0x00007b24 0x0 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + 0xe4 (size before relaxing) + .xt.prop 0x00007b24 0xe4 zephyr/libzephyr.a(sleep_modes.c.obj) + 0x12b4 (size before relaxing) + .xt.prop 0x00007c08 0x18c zephyr/libzephyr.a(esp_cache_msync.c.obj) + 0x258 (size before relaxing) + .xt.prop 0x00007d94 0x90 zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x12c (size before relaxing) + .xt.prop 0x00007e24 0x15c zephyr/libzephyr.a(esp_mmu_map.c.obj) + 0x918 (size before relaxing) + .xt.prop 0x00007f80 0xc zephyr/libzephyr.a(ext_mem_layout.c.obj) + .xt.prop 0x00007f8c 0x174 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x1b0 (size before relaxing) + .xt.prop 0x00008100 0x54 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .xt.prop 0x00008154 0x0 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + 0x48 (size before relaxing) + .xt.prop 0x00008154 0x0 zephyr/libzephyr.a(esp_rom_longjmp.S.obj) + 0x3c (size before relaxing) + .xt.prop 0x00008154 0x0 zephyr/libzephyr.a(esp_rom_print.c.obj) + 0x630 (size before relaxing) + .xt.prop 0x00008154 0x30 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .xt.prop 0x00008184 0x54 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .xt.prop 0x000081d8 0x78 zephyr/libzephyr.a(esp_rom_sys.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x00008250 0x0 zephyr/libzephyr.a(esp_err.c.obj) + 0x54 (size before relaxing) + .xt.prop 0x00008250 0x90 zephyr/libzephyr.a(clk.c.obj) + 0x1a4 (size before relaxing) + .xt.prop 0x000082e0 0x150 zephyr/libzephyr.a(reset_reason.c.obj) + 0x1bc (size before relaxing) + .xt.prop 0x00008430 0x0 zephyr/libzephyr.a(system_internal.c.obj) + 0xc0 (size before relaxing) + .xt.prop 0x00008430 0x0 zephyr/libzephyr.a(esp_timer.c.obj) + 0x9c0 (size before relaxing) + .xt.prop 0x00008430 0x0 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x00008430 0x48 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + 0x270 (size before relaxing) + .xt.prop 0x00008478 0x24 zephyr/libzephyr.a(esp_timer_init.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x0000849c 0x0 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + 0x18c (size before relaxing) + .xt.prop 0x0000849c 0x84 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x210 (size before relaxing) + .xt.prop 0x00008520 0x2b8 zephyr/libzephyr.a(cache_hal.c.obj) + 0x3c0 (size before relaxing) + .xt.prop 0x000087d8 0x24 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x168 (size before relaxing) + .xt.prop 0x000087fc 0x138 zephyr/libzephyr.a(mmu_hal.c.obj) + 0x27c (size before relaxing) + .xt.prop 0x00008934 0xc zephyr/libzephyr.a(gpio_periph.c.obj) + 0x18 (size before relaxing) + .xt.prop 0x00008940 0x0 zephyr/libzephyr.a(esp_restart.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x00008940 0x60 zephyr/libzephyr.a(flash_init.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x000089a0 0x354 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0x810 (size before relaxing) + .xt.prop 0x00008cf4 0x0 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + 0x588 (size before relaxing) + .xt.prop 0x00008cf4 0x234 zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x24c (size before relaxing) + .xt.prop 0x00008f28 0x1ec zephyr/libzephyr.a(soc_init.c.obj) + 0x228 (size before relaxing) + .xt.prop 0x00009114 0x60 zephyr/libzephyr.a(soc_random.c.obj) + .xt.prop 0x00009174 0x24 zephyr/arch/common/libarch__common.a(sw_isr_common.c.obj) + .xt.prop 0x00009198 0x48 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + 0x60 (size before relaxing) + .xt.prop 0x000091e0 0x54 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x00009234 0x24 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(cpu_idle.c.obj) + 0x48 (size before relaxing) + .xt.prop 0x00009258 0x6c zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x000092c4 0xa8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(window_vectors.S.obj) + 0xe4 (size before relaxing) + .xt.prop 0x0000936c 0x318 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .xt.prop 0x00009684 0x30 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x000096b4 0x54 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .xt.prop 0x00009708 0x318 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x3a8 (size before relaxing) + .xt.prop 0x00009a20 0x18 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + 0x24 (size before relaxing) + .xt.prop 0x00009a38 0x18 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + 0x24 (size before relaxing) + .xt.prop 0x00009a50 0x54 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .xt.prop 0x00009aa4 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + 0x24 (size before relaxing) + .xt.prop 0x00009aa4 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x00009aa4 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x00009aa4 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + 0x1ec (size before relaxing) + .xt.prop 0x00009aa4 0x9c zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0xfc (size before relaxing) + .xt.prop 0x00009b40 0x24 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .xt.prop 0x00009b64 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + 0x3c (size before relaxing) + .xt.prop 0x00009b64 0x48 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + 0x234 (size before relaxing) + .xt.prop 0x00009bac 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + 0x504 (size before relaxing) + .xt.prop 0x00009bac 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x00009bac 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x00009bac 0x618 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x8c4 (size before relaxing) + .xt.prop 0x0000a1c4 0x3d8 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x3fc (size before relaxing) + .xt.prop 0x0000a59c 0x78 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x0000a614 0x66c zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .xt.prop 0x0000ac80 0x57c zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x63c (size before relaxing) + .xt.prop 0x0000b1fc 0x27c zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x354 (size before relaxing) + .xt.prop 0x0000b478 0x408 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x45c (size before relaxing) + .xt.prop 0x0000b880 0x2a0 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x2f4 (size before relaxing) + .xt.prop 0x0000bb20 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + 0x294 (size before relaxing) + .xt.prop 0x0000bb20 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + 0x2d0 (size before relaxing) + .xt.prop 0x0000bb20 0x360 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x48c (size before relaxing) + .xt.prop 0x0000be80 0x24 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + 0x60 (size before relaxing) + .xt.prop 0x0000bea4 0x7bc zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xae0 (size before relaxing) + .xt.prop 0x0000c660 0x8ac zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x99c (size before relaxing) + .xt.prop 0x0000cf0c 0x54 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(common.c.obj) + .xt.prop 0x0000cf60 0x294 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .xt.prop 0x0000d1f4 0x3cc zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x45c (size before relaxing) + .xt.prop 0x0000d5c0 0x690 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x6cc (size before relaxing) + .xt.prop 0x0000dc50 0x78c zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x7b0 (size before relaxing) + .xt.prop 0x0000e3dc 0x0 zephyr/drivers/timer/libdrivers__timer.a(sys_clock_init.c.obj) + 0x48 (size before relaxing) + .xt.prop 0x0000e3dc 0x114 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x144 (size before relaxing) + .xt.prop 0x0000e4f0 0x30 zephyr/kernel/libkernel.a(busy_wait.c.obj) + 0x3c (size before relaxing) + .xt.prop 0x0000e520 0x78 zephyr/kernel/libkernel.a(device.c.obj) + 0x180 (size before relaxing) + .xt.prop 0x0000e598 0x0 zephyr/kernel/libkernel.a(errno.c.obj) + 0x3c (size before relaxing) + .xt.prop 0x0000e598 0x90 zephyr/kernel/libkernel.a(fatal.c.obj) + 0xb4 (size before relaxing) + .xt.prop 0x0000e628 0x18c zephyr/kernel/libkernel.a(init.c.obj) + 0x1ec (size before relaxing) + .xt.prop 0x0000e7b4 0x24 zephyr/kernel/libkernel.a(idle.c.obj) + 0x54 (size before relaxing) + .xt.prop 0x0000e7d8 0x1bc zephyr/kernel/libkernel.a(mutex.c.obj) + 0x1d4 (size before relaxing) + .xt.prop 0x0000e994 0xf0 zephyr/kernel/libkernel.a(sem.c.obj) + 0x15c (size before relaxing) + .xt.prop 0x0000ea84 0x318 zephyr/kernel/libkernel.a(work.c.obj) + 0x93c (size before relaxing) + .xt.prop 0x0000ed9c 0x108 zephyr/kernel/libkernel.a(thread.c.obj) + 0x2f4 (size before relaxing) + .xt.prop 0x0000eea4 0x828 zephyr/kernel/libkernel.a(sched.c.obj) + 0xdbc (size before relaxing) + .xt.prop 0x0000f6cc 0xfc zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x138 (size before relaxing) + .xt.prop 0x0000f7c8 0x324 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x54c (size before relaxing) + .xt.prop 0x0000faec 0x174 zephyr/kernel/libkernel.a(timer.c.obj) + 0x1e0 (size before relaxing) + .xt.prop 0x0000fc60 0x390 zephyr/kernel/libkernel.a(poll.c.obj) + 0x5f4 (size before relaxing) + .xt.prop 0x0000fff0 0x12c zephyr/kernel/libkernel.a(mempool.c.obj) + 0x2b8 (size before relaxing) + .xt.prop 0x0001011c 0x30 zephyr/kernel/libkernel.a(banner.c.obj) + .xt.prop 0x0001014c 0xcc zephyr/kernel/libkernel.a(kheap.c.obj) + 0x234 (size before relaxing) + .xt.prop 0x00010218 0x60 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .xt.prop 0x00010278 0xc zephyr/arch/common/libisr_tables.a(isr_tables.c.obj) + .xt.prop 0x00010284 0x0 /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/libgcc.a(_ashldi3.o) + 0x3c (size before relaxing) + .xt.prop 0x00010284 0x0 /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/libgcc.a(_ashrdi3.o) + 0x3c (size before relaxing) + .xt.prop 0x00010284 0x0 /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/libgcc.a(_lshrdi3.o) + 0x3c (size before relaxing) + .xt.prop 0x00010284 0x0 /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/libgcc.a(_bswapsi2.o) + 0x24 (size before relaxing) + .xt.prop 0x00010284 0x0 /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/libgcc.a(_bswapdi2.o) + 0x24 (size before relaxing) + .xt.prop 0x00010284 0x0 /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/libgcc.a(_divsf3.o) + 0x24 (size before relaxing) + .xt.prop 0x00010284 0x0 /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/libgcc.a(_addsubdf3.o) + 0x420 (size before relaxing) + .xt.prop 0x00010284 0x0 /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/libgcc.a(_muldf3.o) + 0x228 (size before relaxing) + .xt.prop 0x00010284 0x0 /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/libgcc.a(_divdf3.o) + 0x264 (size before relaxing) + .xt.prop 0x00010284 0x0 /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/libgcc.a(_fixdfdi.o) + 0xa8 (size before relaxing) + .xt.prop 0x00010284 0x0 /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/libgcc.a(_floatsidf.o) + 0x54 (size before relaxing) + .xt.prop 0x00010284 0x0 /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/libgcc.a(_floatdidf.o) + 0x9c (size before relaxing) + .xt.prop 0x00010284 0x0 /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/libgcc.a(_truncdfsf2.o) + 0xb4 (size before relaxing) + .xt.prop 0x00010284 0x0 /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/libgcc.a(_extendsfdf2.o) + 0x6c (size before relaxing) + .xt.prop 0x00010284 0x0 /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/libgcc.a(_popcountsi2.o) + 0x30 (size before relaxing) + .xt.prop 0x00010284 0x0 /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/libgcc.a(_divdi3.o) + 0x18c (size before relaxing) + .xt.prop 0x00010284 0x0 /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/libgcc.a(_moddi3.o) + 0x168 (size before relaxing) + .xt.prop 0x00010284 0x0 /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/libgcc.a(_udivdi3.o) + 0x174 (size before relaxing) + .xt.prop 0x00010284 0x0 /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/libgcc.a(_umoddi3.o) + 0x144 (size before relaxing) + .xt.prop 0x00010284 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memcpy.S.o) + 0x15c (size before relaxing) + .xt.prop 0x00010284 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_memset.S.o) + 0xd8 (size before relaxing) + .xt.prop 0x00010284 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + 0x120 (size before relaxing) + .xt.prop 0x00010284 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + 0xc0 (size before relaxing) + .xt.prop 0x00010284 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_memcmp.c.o) + 0x54 (size before relaxing) + .xt.prop 0x00010284 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strchr.c.o) + 0x54 (size before relaxing) + .xt.prop 0x00010284 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_string_strnlen.c.o) + 0x48 (size before relaxing) + .xt.prop 0x00010284 0x24 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + 0x30 (size before relaxing) + .xt.prop 0x000102a8 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputc.c.o) + 0x3c (size before relaxing) + .xt.prop 0x000102a8 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fputs.c.o) + 0x60 (size before relaxing) + .xt.prop 0x000102a8 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + 0x30 (size before relaxing) + .xt.prop 0x000102a8 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + 0x78 (size before relaxing) + .xt.prop 0x000102a8 0x60 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + .xt.prop 0x00010308 0x75c /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + 0x768 (size before relaxing) + .xt.prop 0x00010a64 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + 0x540 (size before relaxing) + .xt.prop 0x00010a64 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fgetc.c.o) + 0x60 (size before relaxing) + .xt.prop 0x00010a64 0x30 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_filestrput.c.o) + .xt.prop 0x00010a94 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_ungetc.c.o) + 0x54 (size before relaxing) + *(SORT_BY_ALIGNMENT(.xt.prop.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.prop.*)) + +.xt.lit 0x00000000 0xa48 + *(SORT_BY_ALIGNMENT(.xt.lit)) + .xt.lit 0x00000000 0x28 app/libapp.a(main.c.obj) + .xt.lit 0x00000028 0x0 app/libapp.a(kiss.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000028 0x38 app/libapp.a(lora_modem.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000060 0x10 zephyr/libzephyr.a(heap.c.obj) + 0x90 (size before relaxing) + .xt.lit 0x00000070 0x10 zephyr/libzephyr.a(cbprintf_packaged.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000080 0x0 zephyr/libzephyr.a(clock.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000080 0x8 zephyr/libzephyr.a(printk.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000088 0x0 zephyr/libzephyr.a(sem.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000088 0x8 zephyr/libzephyr.a(thread_entry.c.obj) + .xt.lit 0x00000090 0x0 zephyr/libzephyr.a(cbprintf_complete.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000090 0x0 zephyr/libzephyr.a(assert.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000090 0x18 zephyr/libzephyr.a(mpsc_pbuf.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(dec.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(hex.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(rb.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(set.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(timeutil.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(bitarray.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(getopt.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(getopt_common.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000000a8 0x0 zephyr/libzephyr.a(ring_buffer.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x000000a8 0x10 zephyr/libzephyr.a(soc.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000000b8 0x10 zephyr/libzephyr.a(loader.c.obj) + .xt.lit 0x000000c8 0x8 zephyr/libzephyr.a(hw_init.c.obj) + .xt.lit 0x000000d0 0x88 zephyr/libzephyr.a(log_core.c.obj) + 0x128 (size before relaxing) + .xt.lit 0x00000158 0x10 zephyr/libzephyr.a(log_mgmt.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x00000168 0x18 zephyr/libzephyr.a(log_msg.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000180 0x28 zephyr/libzephyr.a(log_output.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(log_backend_uart.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(esp_efuse_api.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(esp_efuse_fields.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(esp_efuse_utility.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(esp_efuse_api_key.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(flash_encrypt.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x000001a8 0x0 zephyr/libzephyr.a(esp_gpio_reserve.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000001a8 0x20 zephyr/libzephyr.a(spi_flash_encrypt_hal_iram.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000001c8 0x18 zephyr/libzephyr.a(spi_flash_hal.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000001e0 0x18 zephyr/libzephyr.a(spi_flash_hal_iram.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x000001f8 0x10 zephyr/libzephyr.a(spi_flash_hal_gpspi.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000208 0x20 zephyr/libzephyr.a(spi_flash_oct_flash_init.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000228 0x18 zephyr/libzephyr.a(esp_flash_api.c.obj) + 0xf0 (size before relaxing) + .xt.lit 0x00000240 0x10 zephyr/libzephyr.a(esp_flash_spi_init.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000250 0x8 zephyr/libzephyr.a(flash_mmap.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000258 0x10 zephyr/libzephyr.a(flash_ops.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000268 0x10 zephyr/libzephyr.a(memspi_host_driver.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000278 0x10 zephyr/libzephyr.a(spi_flash_chip_gd.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000288 0x20 zephyr/libzephyr.a(spi_flash_chip_generic.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x000002a8 0x8 zephyr/libzephyr.a(spi_flash_chip_issi.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000002b0 0x10 zephyr/libzephyr.a(spi_flash_chip_mxic_opi.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x000002c0 0x8 zephyr/libzephyr.a(spi_flash_chip_winbond.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000002c8 0x0 zephyr/libzephyr.a(spi_flash_hpm_enable.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000002c8 0x0 zephyr/libzephyr.a(spi_flash_os_func_noos.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000002c8 0x8 zephyr/libzephyr.a(spi_flash_os_func_app.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x000002d0 0x0 zephyr/libzephyr.a(spi_flash_wrap.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x000002d0 0x18 zephyr/libzephyr.a(cache_utils.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x000002e8 0x28 zephyr/libzephyr.a(uart_hal.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00000310 0x10 zephyr/libzephyr.a(uart_hal_iram.c.obj) + .xt.lit 0x00000320 0x8 zephyr/libzephyr.a(spi_hal.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000328 0x28 zephyr/libzephyr.a(spi_hal_iram.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000350 0x0 zephyr/libzephyr.a(lldesc.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000350 0x0 zephyr/libzephyr.a(gdma_hal_ahb_v1.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000350 0x0 zephyr/libzephyr.a(bootloader_clock_init.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000350 0x0 zephyr/libzephyr.a(flash_qio_mode.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00000350 0x0 zephyr/libzephyr.a(bootloader_flash_config_esp32s3.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000350 0x8 zephyr/libzephyr.a(console_init.c.obj) + .xt.lit 0x00000358 0x20 zephyr/libzephyr.a(soc_init.c.obj) + .xt.lit 0x00000378 0x28 zephyr/libzephyr.a(rtc_io.c.obj) + 0xb8 (size before relaxing) + .xt.lit 0x000003a0 0x0 zephyr/libzephyr.a(temperature_sensor_hal.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000003a0 0x28 zephyr/libzephyr.a(clk_tree_hal.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x000003c8 0x0 zephyr/libzephyr.a(rtc_io_hal.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x000003c8 0x8 zephyr/libzephyr.a(systimer_hal.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000003d0 0x8 zephyr/libzephyr.a(wdt_hal_iram.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000003d8 0x0 zephyr/libzephyr.a(xt_wdt_hal.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000003d8 0x0 zephyr/libzephyr.a(adc_share_hw_ctrl.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x000003d8 0x0 zephyr/libzephyr.a(clk_ctrl_os.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000003d8 0x0 zephyr/libzephyr.a(cpu.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000003d8 0x8 zephyr/libzephyr.a(esp_clk.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x000003e0 0x0 zephyr/libzephyr.a(hw_random.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000003e0 0x0 zephyr/libzephyr.a(mac_addr.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x000003e0 0x8 zephyr/libzephyr.a(mspi_timing_tuning.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000003e8 0x10 zephyr/libzephyr.a(mspi_timing_config.c.obj) + .xt.lit 0x000003f8 0x30 zephyr/libzephyr.a(periph_ctrl.c.obj) + 0xa0 (size before relaxing) + .xt.lit 0x00000428 0x0 zephyr/libzephyr.a(cpu_region_protect.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000428 0x8 zephyr/libzephyr.a(esp_clk_tree.c.obj) + .xt.lit 0x00000430 0x8 zephyr/libzephyr.a(esp_cpu_intr.c.obj) + .xt.lit 0x00000438 0x0 zephyr/libzephyr.a(io_mux.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000438 0x60 zephyr/libzephyr.a(rtc_clk.c.obj) + 0x108 (size before relaxing) + .xt.lit 0x00000498 0x0 zephyr/libzephyr.a(rtc_clk_init.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000498 0x10 zephyr/libzephyr.a(rtc_init.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000004a8 0x8 zephyr/libzephyr.a(rtc_sleep.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000004b0 0x18 zephyr/libzephyr.a(rtc_time.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x000004c8 0x8 zephyr/libzephyr.a(sar_periph_ctrl.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x000004d0 0x10 zephyr/libzephyr.a(esp_clk_tree_common.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000004e0 0x28 zephyr/libzephyr.a(regi2c_ctrl.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000508 0x8 zephyr/libzephyr.a(rtc_module.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000510 0x0 zephyr/libzephyr.a(sar_tsens_ctrl.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000510 0x10 zephyr/libzephyr.a(sleep_modes.c.obj) + 0x1c0 (size before relaxing) + .xt.lit 0x00000520 0x10 zephyr/libzephyr.a(esp_cache_msync.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000530 0x0 zephyr/libzephyr.a(esp_cache_utils.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000530 0x10 zephyr/libzephyr.a(esp_mmu_map.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x00000540 0x28 zephyr/libzephyr.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000568 0x8 zephyr/libzephyr.a(esp_rom_cache_writeback_esp32s3.S.obj) + .xt.lit 0x00000570 0x0 zephyr/libzephyr.a(esp_rom_efuse.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000570 0x0 zephyr/libzephyr.a(esp_rom_print.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000570 0x8 zephyr/libzephyr.a(esp_rom_serial_output.c.obj) + .xt.lit 0x00000578 0x8 zephyr/libzephyr.a(esp_rom_spiflash.c.obj) + .xt.lit 0x00000580 0x8 zephyr/libzephyr.a(esp_rom_sys.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000588 0x0 zephyr/libzephyr.a(esp_err.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000588 0x10 zephyr/libzephyr.a(clk.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000598 0x10 zephyr/libzephyr.a(reset_reason.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000005a8 0x0 zephyr/libzephyr.a(system_internal.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000005a8 0x0 zephyr/libzephyr.a(esp_timer.c.obj) + 0xd8 (size before relaxing) + .xt.lit 0x000005a8 0x0 zephyr/libzephyr.a(esp_timer_impl_common.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000005a8 0x8 zephyr/libzephyr.a(esp_timer_impl_systimer.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x000005b0 0x0 zephyr/libzephyr.a(esp_timer_init.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000005b0 0x0 zephyr/libzephyr.a(ets_timer_legacy.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000005b0 0x8 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x000005b8 0x38 zephyr/libzephyr.a(cache_hal.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x000005f0 0x0 zephyr/libzephyr.a(efuse_hal.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x000005f0 0x18 zephyr/libzephyr.a(mmu_hal.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000608 0x0 zephyr/libzephyr.a(esp_restart.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000608 0x8 zephyr/libzephyr.a(flash_init.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000610 0x28 zephyr/libzephyr.a(bootloader_flash.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x00000638 0x0 zephyr/libzephyr.a(heap_caps_zephyr.c.obj) + 0x90 (size before relaxing) + .xt.lit 0x00000638 0x20 zephyr/libzephyr.a(soc_flash_init.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000658 0x38 zephyr/libzephyr.a(soc_init.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000690 0x10 zephyr/libzephyr.a(soc_random.c.obj) + .xt.lit 0x000006a0 0x0 zephyr/arch/common/libarch__common.a(dynamic_isr.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000006a0 0x8 zephyr/arch/common/libarch__common.a(init.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000006a8 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(fatal.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000006b0 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(xtensa_asm2_util.S.obj) + .xt.lit 0x000006b8 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(irq_manage.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000006c0 0x8 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(thread.c.obj) + .xt.lit 0x000006c8 0x28 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(vector_handlers.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x000006f0 0x0 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a(prep_c.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000006f0 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(assert.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000006f0 0x8 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(cbprintf.c.obj) + .xt.lit 0x000006f8 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(chk_fail.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000006f8 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(errno_wrap.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000006f8 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(exit.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000006f8 0x0 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(locks.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x000006f8 0x10 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a(stdio.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000708 0x8 zephyr/lib/libc/common/liblib__libc__common.a(abort.c.obj) + .xt.lit 0x00000710 0x0 zephyr/lib/libc/common/liblib__libc__common.a(time.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000710 0x8 zephyr/lib/libc/common/liblib__libc__common.a(malloc.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000718 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(fnmatch.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000718 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getentropy.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000718 0x0 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a(getopt_shim.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000718 0x30 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a(intc_esp32.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00000748 0x28 zephyr/drivers/clock_control/libdrivers__clock_control.a(clock_control_esp32.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000770 0x10 zephyr/drivers/console/libdrivers__console.a(uart_console.c.obj) + .xt.lit 0x00000780 0x20 zephyr/drivers/gpio/libdrivers__gpio.a(gpio_esp32.c.obj) + .xt.lit 0x000007a0 0x30 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0xb0 (size before relaxing) + .xt.lit 0x000007d0 0x28 zephyr/drivers/lora/loramac-node/libloramac-node.a(hal_common.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x000007f8 0x38 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx12xx_common.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x00000830 0x18 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x_standalone.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000848 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(utilities.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000848 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(systime.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000848 0x8 zephyr/drivers/lora/loramac-node/libloramac-node.a(timer.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00000850 0x0 zephyr/drivers/lora/loramac-node/libloramac-node.a(delay.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000850 0x30 zephyr/drivers/lora/loramac-node/libloramac-node.a(sx126x.c.obj) + 0x170 (size before relaxing) + .xt.lit 0x00000880 0x60 zephyr/drivers/lora/loramac-node/libloramac-node.a(radio.c.obj) + 0x100 (size before relaxing) + .xt.lit 0x000008e0 0x8 zephyr/drivers/pinctrl/libdrivers__pinctrl.a(pinctrl_esp32.c.obj) + .xt.lit 0x000008e8 0x18 zephyr/drivers/serial/libdrivers__serial.a(serial_esp32_usb.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x00000900 0x18 zephyr/drivers/serial/libdrivers__serial.a(uart_esp32.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000918 0x28 zephyr/drivers/spi/libdrivers__spi.a(spi_esp32_spim.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000940 0x10 zephyr/drivers/timer/libdrivers__timer.a(xtensa_sys_timer.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000950 0x0 zephyr/kernel/libkernel.a(busy_wait.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000950 0x0 zephyr/kernel/libkernel.a(device.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000950 0x0 zephyr/kernel/libkernel.a(errno.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000950 0x10 zephyr/kernel/libkernel.a(fatal.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000960 0x20 zephyr/kernel/libkernel.a(init.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000980 0x0 zephyr/kernel/libkernel.a(idle.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000980 0x8 zephyr/kernel/libkernel.a(mutex.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000988 0x8 zephyr/kernel/libkernel.a(sem.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000990 0x18 zephyr/kernel/libkernel.a(work.c.obj) + 0xf0 (size before relaxing) + .xt.lit 0x000009a8 0x0 zephyr/kernel/libkernel.a(thread.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x000009a8 0x10 zephyr/kernel/libkernel.a(sched.c.obj) + 0x160 (size before relaxing) + .xt.lit 0x000009b8 0x18 zephyr/kernel/libkernel.a(timeslicing.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000009d0 0x18 zephyr/kernel/libkernel.a(timeout.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x000009e8 0x8 zephyr/kernel/libkernel.a(timer.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000009f0 0x18 zephyr/kernel/libkernel.a(poll.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x00000a08 0x8 zephyr/kernel/libkernel.a(mempool.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000a10 0x8 zephyr/kernel/libkernel.a(banner.c.obj) + .xt.lit 0x00000a18 0x18 zephyr/kernel/libkernel.a(kheap.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000a30 0x8 zephyr/kernel/libkernel.a(system_work_q.c.obj) + .xt.lit 0x00000a38 0x0 /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/libgcc.a(_addsubdf3.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /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/libgcc.a(_muldf3.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /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/libgcc.a(_divdf3.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /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/libgcc.a(_fixdfdi.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /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/libgcc.a(_truncdfsf2.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /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/libgcc.a(_extendsfdf2.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /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/libgcc.a(_popcountsi2.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strcmp.S.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_machine_xtensa_strlen.S.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_fprintf.c.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_printf.c.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_puts.c.o) + 0x8 (size before relaxing) + .xt.lit 0x00000a38 0x8 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_snprintf.c.o) + .xt.lit 0x00000a40 0x8 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflprintf.c.o) + .xt.lit 0x00000a48 0x0 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/../../../../xtensa-espressif_esp32s3_zephyr-elf/lib/space/libc.a(libc_tinystdio_vflscanf.c.o) + 0x18 (size before relaxing) + *(SORT_BY_ALIGNMENT(.xt.lit.*)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.p.*)) + +.xt.profile_range + *(SORT_BY_ALIGNMENT(.xt.profile_range)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.profile_range.*)) + +.xt.profile_ranges + *(SORT_BY_ALIGNMENT(.xt.profile_ranges)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.xt.profile_ranges.*)) + +.xt.profile_files + *(SORT_BY_ALIGNMENT(.xt.profile_files)) + *(SORT_BY_ALIGNMENT(.gnu.linkonce.xt.profile_files.*)) + 0x00000001 ASSERT (((_iram_end - ORIGIN (iram0_0_seg)) <= LENGTH (iram0_0_seg)), IRAM0 segment data does not fit.) + 0x00000001 ASSERT (((_end - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) + [!provide] PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char) + [!provide] PROVIDE (esp_rom_uart_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_uart_attach = uartAttach) + [!provide] PROVIDE (esp_rom_uart_tx_wait_idle = uart_tx_wait_idle) + [!provide] PROVIDE (esp_rom_intr_matrix_set = intr_matrix_set) + 0x40001a94 PROVIDE (esp_rom_gpio_matrix_in = rom_gpio_matrix_in) + 0x40001aa0 PROVIDE (esp_rom_gpio_matrix_out = rom_gpio_matrix_out) + [!provide] PROVIDE (esp_rom_ets_set_appcpu_boot_addr = ets_set_appcpu_boot_addr) + [!provide] PROVIDE (esp_rom_i2c_readReg = rom_i2c_readReg) + [!provide] PROVIDE (esp_rom_i2c_writeReg = rom_i2c_writeReg) + [!provide] PROVIDE (esp_rom_ets_printf = ets_printf) + [!provide] PROVIDE (esp_rom_ets_delay_us = ets_delay_us) + [!provide] PROVIDE (esp_rom_Cache_Disable_ICache = Cache_Disable_ICache) + [!provide] PROVIDE (esp_rom_Cache_Disable_DCache = Cache_Disable_DCache) + [!provide] PROVIDE (esp_rom_Cache_Allocate_SRAM = Cache_Allocate_SRAM) + [!provide] PROVIDE (esp_rom_Cache_Suspend_ICache = Cache_Suspend_ICache) + [!provide] PROVIDE (esp_rom_Cache_Dbus_MMU_Set = Cache_Dbus_MMU_Set) + [!provide] PROVIDE (esp_rom_Cache_Ibus_MMU_Set = Cache_Ibus_MMU_Set) + [!provide] PROVIDE (esp_rom_Cache_Set_ICache_Mode = Cache_Set_ICache_Mode) + [!provide] PROVIDE (esp_rom_Cache_Invalidate_ICache_All = Cache_Invalidate_ICache_All) + [!provide] PROVIDE (esp_rom_Cache_Resume_ICache = Cache_Resume_ICache) + [!provide] PROVIDE (esp_rom_Cache_Invalidate_Addr = Cache_Invalidate_Addr) + [!provide] PROVIDE (esp_rom_Cache_Set_DCache_Mode = Cache_Set_DCache_Mode) + [!provide] PROVIDE (esp_rom_Cache_Invalidate_DCache_All = Cache_Invalidate_DCache_All) + [!provide] PROVIDE (esp_rom_Cache_Enable_DCache = Cache_Enable_DCache) + [!provide] PROVIDE (esp_rom_Cache_Set_DCache_Mode = Cache_Set_DCache_Mode) + 0x4000057c rtc_get_reset_reason = 0x4000057c + 0x40000588 analog_super_wdt_reset_happened = 0x40000588 + 0x40000594 jtag_cpu_reset_happened = 0x40000594 + 0x400005a0 rtc_get_wakeup_cause = 0x400005a0 + 0x400005ac rtc_select_apb_bridge = 0x400005ac + 0x400005b8 rtc_unhold_all_pads = 0x400005b8 + 0x400005c4 ets_is_print_boot = 0x400005c4 + 0x400005d0 ets_printf = 0x400005d0 + 0x400005dc ets_install_putc1 = 0x400005dc + 0x400005e8 ets_install_uart_printf = 0x400005e8 + 0x400005f4 ets_install_putc2 = 0x400005f4 + 0x40000600 PROVIDE (ets_delay_us = 0x40000600) + 0x4000060c ets_get_stack_info = 0x4000060c + 0x40000618 ets_install_lock = 0x40000618 + 0x40000624 ets_backup_dma_copy = 0x40000624 + 0x40000630 ets_apb_backup_init_lock_func = 0x40000630 + 0x4000063c UartRxString = 0x4000063c + 0x40000648 uart_tx_one_char = 0x40000648 + 0x40000654 uart_tx_one_char2 = 0x40000654 + 0x40000660 uart_rx_one_char = 0x40000660 + 0x4000066c uart_rx_one_char_block = 0x4000066c + 0x40000678 uart_rx_readbuff = 0x40000678 + 0x40000684 uartAttach = 0x40000684 + 0x40000690 uart_tx_flush = 0x40000690 + 0x4000069c uart_tx_wait_idle = 0x4000069c + 0x400006a8 uart_div_modify = 0x400006a8 + 0x400006b4 ets_write_char_uart = 0x400006b4 + 0x400006c0 uart_tx_switch = 0x400006c0 + 0x400006cc multofup = 0x400006cc + 0x400006d8 software_reset = 0x400006d8 + 0x400006e4 software_reset_cpu = 0x400006e4 + 0x400006f0 assist_debug_clock_enable = 0x400006f0 + 0x400006fc assist_debug_record_enable = 0x400006fc + 0x40000708 clear_super_wdt_reset_flag = 0x40000708 + 0x40000714 disable_default_watchdog = 0x40000714 + 0x40000720 ets_set_appcpu_boot_addr = 0x40000720 + 0x4000072c esp_rom_set_rtc_wake_addr = 0x4000072c + 0x40000738 esp_rom_get_rtc_wake_addr = 0x40000738 + 0x40000744 send_packet = 0x40000744 + 0x40000750 recv_packet = 0x40000750 + 0x4000075c GetUartDevice = 0x4000075c + 0x40000768 UartDwnLdProc = 0x40000768 + 0x40000774 Uart_Init = 0x40000774 + 0x40000780 ets_set_user_start = 0x40000780 + 0x3ff1fffc ets_rom_layout_p = 0x3ff1fffc + 0x3fcefffc ets_ops_table_ptr = 0x3fcefffc + 0x4000078c mz_adler32 = 0x4000078c + 0x40000798 mz_crc32 = 0x40000798 + 0x400007a4 mz_free = 0x400007a4 + 0x400007b0 tdefl_compress = 0x400007b0 + 0x400007bc tdefl_compress_buffer = 0x400007bc + 0x400007c8 tdefl_compress_mem_to_heap = 0x400007c8 + 0x400007d4 tdefl_compress_mem_to_mem = 0x400007d4 + 0x400007e0 tdefl_compress_mem_to_output = 0x400007e0 + 0x400007ec tdefl_get_adler32 = 0x400007ec + 0x400007f8 tdefl_get_prev_return_status = 0x400007f8 + 0x40000804 tdefl_init = 0x40000804 + 0x40000810 tdefl_write_image_to_png_file_in_memory = 0x40000810 + 0x4000081c tdefl_write_image_to_png_file_in_memory_ex = 0x4000081c + 0x40000828 tinfl_decompress = 0x40000828 + 0x40000834 tinfl_decompress_mem_to_callback = 0x40000834 + 0x40000840 tinfl_decompress_mem_to_heap = 0x40000840 + 0x4000084c tinfl_decompress_mem_to_mem = 0x4000084c + [!provide] PROVIDE (jd_prepare = 0x40000858) + [!provide] PROVIDE (jd_decomp = 0x40000864) + 0x3fcefff8 dsps_fft2r_w_table_fc32_1024 = 0x3fcefff8 + [!provide] PROVIDE (opi_flash_set_lock_func = 0x40000870) + [!provide] PROVIDE (esp_rom_spi_cmd_config = 0x4000087c) + [!provide] PROVIDE (esp_rom_spi_cmd_start = 0x40000888) + 0x40000894 PROVIDE (esp_rom_opiflash_pin_config = 0x40000894) + 0x400008a0 PROVIDE (esp_rom_spi_set_op_mode = 0x400008a0) + [!provide] PROVIDE (esp_rom_opiflash_mode_reset = 0x400008ac) + 0x400008b8 PROVIDE (esp_rom_opiflash_exec_cmd = 0x400008b8) + [!provide] PROVIDE (esp_rom_opiflash_soft_reset = 0x400008c4) + [!provide] PROVIDE (esp_rom_opiflash_read_id = 0x400008d0) + [!provide] PROVIDE (esp_rom_opiflash_rdsr = 0x400008dc) + 0x400008e8 PROVIDE (esp_rom_opiflash_wait_idle = 0x400008e8) + 0x400008f4 PROVIDE (esp_rom_opiflash_wren = 0x400008f4) + 0x40000900 PROVIDE (esp_rom_opiflash_erase_sector = 0x40000900) + 0x4000090c PROVIDE (esp_rom_opiflash_erase_block_64k = 0x4000090c) + 0x40000918 PROVIDE (esp_rom_opiflash_erase_area = 0x40000918) + 0x40000924 PROVIDE (esp_rom_opiflash_read = 0x40000924) + 0x40000930 PROVIDE (esp_rom_opiflash_write = 0x40000930) + 0x4000093c PROVIDE (esp_rom_spi_set_dtr_swap_mode = 0x4000093c) + [!provide] PROVIDE (esp_rom_opiflash_exit_continuous_read_mode = 0x40000948) + 0x40000954 PROVIDE (esp_rom_opiflash_legacy_driver_init = 0x40000954) + [!provide] PROVIDE (esp_rom_opiflash_read_raw = 0x4004d9d4) + 0x3fcefff4 PROVIDE (rom_opiflash_cmd_def = 0x3fcefff4) + [!provide] PROVIDE (rom_spi_usr_cmd_legacy_funcs = 0x3fcefff0) + 0x40000960 PROVIDE (esp_rom_spiflash_wait_idle = 0x40000960) + 0x4000096c PROVIDE (esp_rom_spiflash_write_encrypted = 0x4000096c) + [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_dest = 0x40000978) + [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_enable = 0x40000984) + [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_disable = 0x40000990) + [!provide] PROVIDE (esp_rom_spiflash_erase_chip = 0x4000099c) + [!provide] PROVIDE (_esp_rom_spiflash_erase_sector = 0x400009a8) + [!provide] PROVIDE (_esp_rom_spiflash_erase_block = 0x400009b4) + [!provide] PROVIDE (_esp_rom_spiflash_write = 0x400009c0) + [!provide] PROVIDE (_esp_rom_spiflash_read = 0x400009cc) + [!provide] PROVIDE (_esp_rom_spiflash_unlock = 0x400009d8) + [!provide] PROVIDE (_SPIEraseArea = 0x400009e4) + [!provide] PROVIDE (_SPI_write_enable = 0x400009f0) + 0x400009fc PROVIDE (esp_rom_spiflash_erase_sector = 0x400009fc) + 0x40000a08 PROVIDE (esp_rom_spiflash_erase_block = 0x40000a08) + 0x40000a14 PROVIDE (esp_rom_spiflash_write = 0x40000a14) + 0x40000a20 PROVIDE (esp_rom_spiflash_read = 0x40000a20) + [!provide] PROVIDE (esp_rom_spiflash_unlock = 0x40000a2c) + [!provide] PROVIDE (SPIEraseArea = 0x40000a38) + 0x40000a44 PROVIDE (SPI_write_enable = 0x40000a44) + 0x40000a50 PROVIDE (esp_rom_spiflash_config_param = 0x40000a50) + [!provide] PROVIDE (esp_rom_spiflash_read_user_cmd = 0x40000a5c) + 0x40000a68 PROVIDE (esp_rom_spiflash_select_qio_pins = 0x40000a68) + [!provide] PROVIDE (esp_rom_spi_flash_auto_sus_res = 0x40000a74) + [!provide] PROVIDE (esp_rom_spi_flash_send_resume = 0x40000a80) + [!provide] PROVIDE (esp_rom_spi_flash_update_id = 0x40000a8c) + 0x40000a98 PROVIDE (esp_rom_spiflash_config_clk = 0x40000a98) + 0x40000aa4 PROVIDE (esp_rom_spiflash_config_readmode = 0x40000aa4) + [!provide] PROVIDE (esp_rom_spiflash_read_status = 0x40000ab0) + [!provide] PROVIDE (esp_rom_spiflash_read_statushigh = 0x40000abc) + [!provide] PROVIDE (esp_rom_spiflash_write_status = 0x40000ac8) + [!provide] PROVIDE (esp_rom_opiflash_cache_mode_config = 0x40000ad4) + [!provide] PROVIDE (esp_rom_spiflash_auto_wait_idle = 0x40000ae0) + [!provide] PROVIDE (spi_flash_attach = 0x40000aec) + [!provide] PROVIDE (spi_flash_get_chip_size = 0x40000af8) + [!provide] PROVIDE (spi_flash_guard_set = 0x40000b04) + [!provide] PROVIDE (spi_flash_guard_get = 0x40000b10) + [!provide] PROVIDE (spi_flash_write_config_set = 0x40000b1c) + [!provide] PROVIDE (spi_flash_write_config_get = 0x40000b28) + [!provide] PROVIDE (spi_flash_safe_write_address_func_set = 0x40000b34) + [!provide] PROVIDE (spi_flash_unlock = 0x40000b40) + [!provide] PROVIDE (spi_flash_erase_range = 0x40000b4c) + [!provide] PROVIDE (spi_flash_erase_sector = 0x40000b58) + [!provide] PROVIDE (spi_flash_write = 0x40000b64) + [!provide] PROVIDE (spi_flash_read = 0x40000b70) + [!provide] PROVIDE (spi_flash_write_encrypted = 0x40000b7c) + [!provide] PROVIDE (spi_flash_read_encrypted = 0x40000b88) + [!provide] PROVIDE (spi_flash_mmap_os_func_set = 0x40000b94) + [!provide] PROVIDE (spi_flash_mmap_page_num_init = 0x40000ba0) + [!provide] PROVIDE (spi_flash_mmap = 0x40000bac) + [!provide] PROVIDE (spi_flash_mmap_pages = 0x40000bb8) + [!provide] PROVIDE (spi_flash_munmap = 0x40000bc4) + [!provide] PROVIDE (spi_flash_mmap_dump = 0x40000bd0) + [!provide] PROVIDE (spi_flash_check_and_flush_cache = 0x40000bdc) + [!provide] PROVIDE (spi_flash_mmap_get_free_pages = 0x40000be8) + [!provide] PROVIDE (spi_flash_cache2phys = 0x40000bf4) + [!provide] PROVIDE (spi_flash_phys2cache = 0x40000c00) + [!provide] PROVIDE (spi_flash_disable_cache = 0x40000c0c) + [!provide] PROVIDE (spi_flash_restore_cache = 0x40000c18) + [!provide] PROVIDE (spi_flash_cache_enabled = 0x40000c24) + [!provide] PROVIDE (spi_flash_enable_cache = 0x40000c30) + [!provide] PROVIDE (spi_cache_mode_switch = 0x40000c3c) + [!provide] PROVIDE (spi_common_set_dummy_output = 0x40000c48) + [!provide] PROVIDE (spi_common_set_flash_cs_timing = 0x40000c54) + 0x40000c60 PROVIDE (esp_rom_spi_set_address_bit_len = 0x40000c60) + [!provide] PROVIDE (esp_enable_cache_flash_wrap = 0x40000c6c) + [!provide] PROVIDE (SPILock = 0x40000c78) + [!provide] PROVIDE (SPIMasterReadModeCnfig = 0x40000c84) + [!provide] PROVIDE (SPI_Common_Command = 0x40000c90) + [!provide] PROVIDE (SPI_WakeUp = 0x40000c9c) + [!provide] PROVIDE (SPI_block_erase = 0x40000ca8) + [!provide] PROVIDE (SPI_chip_erase = 0x40000cb4) + [!provide] PROVIDE (SPI_init = 0x40000cc0) + [!provide] PROVIDE (SPI_page_program = 0x40000ccc) + [!provide] PROVIDE (SPI_read_data = 0x40000cd8) + [!provide] PROVIDE (SPI_sector_erase = 0x40000ce4) + [!provide] PROVIDE (SelectSpiFunction = 0x40000cf0) + [!provide] PROVIDE (SetSpiDrvs = 0x40000cfc) + [!provide] PROVIDE (Wait_SPI_Idle = 0x40000d08) + [!provide] PROVIDE (spi_dummy_len_fix = 0x40000d14) + [!provide] PROVIDE (Disable_QMode = 0x40000d20) + [!provide] PROVIDE (Enable_QMode = 0x40000d2c) + 0x3fceffe8 PROVIDE (rom_spiflash_legacy_funcs = 0x3fceffe8) + 0x3fceffe4 PROVIDE (rom_spiflash_legacy_data = 0x3fceffe4) + [!provide] PROVIDE (g_flash_guard_ops = 0x3fceffec) + [!provide] PROVIDE (spi_flash_hal_poll_cmd_done = 0x40000d38) + [!provide] PROVIDE (spi_flash_hal_device_config = 0x40000d44) + [!provide] PROVIDE (spi_flash_hal_configure_host_io_mode = 0x40000d50) + [!provide] PROVIDE (spi_flash_hal_common_command = 0x40000d5c) + [!provide] PROVIDE (spi_flash_hal_read = 0x40000d68) + [!provide] PROVIDE (spi_flash_hal_erase_chip = 0x40000d74) + [!provide] PROVIDE (spi_flash_hal_erase_sector = 0x40000d80) + [!provide] PROVIDE (spi_flash_hal_erase_block = 0x40000d8c) + [!provide] PROVIDE (spi_flash_hal_program_page = 0x40000d98) + [!provide] PROVIDE (spi_flash_hal_set_write_protect = 0x40000da4) + [!provide] PROVIDE (spi_flash_hal_host_idle = 0x40000db0) + [!provide] PROVIDE (spi_flash_chip_generic_probe = 0x40000ed0) + [!provide] PROVIDE (spi_flash_chip_generic_detect_size = 0x40000edc) + [!provide] PROVIDE (spi_flash_chip_generic_write = 0x40000ee8) + [!provide] PROVIDE (spi_flash_chip_generic_write_encrypted = 0x40000ef4) + [!provide] PROVIDE (spi_flash_chip_generic_set_write_protect = 0x40000f00) + [!provide] PROVIDE (spi_flash_common_write_status_16b_wrsr = 0x40000f0c) + [!provide] PROVIDE (spi_flash_chip_generic_reset = 0x40000f18) + [!provide] PROVIDE (spi_flash_chip_generic_erase_chip = 0x40000f24) + [!provide] PROVIDE (spi_flash_chip_generic_erase_sector = 0x40000f30) + [!provide] PROVIDE (spi_flash_chip_generic_erase_block = 0x40000f3c) + [!provide] PROVIDE (spi_flash_chip_generic_page_program = 0x40000f48) + [!provide] PROVIDE (spi_flash_chip_generic_get_write_protect = 0x40000f54) + [!provide] PROVIDE (spi_flash_common_read_status_16b_rdsr_rdsr2 = 0x40000f60) + [!provide] PROVIDE (spi_flash_chip_generic_read_reg = 0x40000f6c) + [!provide] PROVIDE (spi_flash_chip_generic_yield = 0x40000f78) + [!provide] PROVIDE (spi_flash_generic_wait_host_idle = 0x40000f84) + [!provide] PROVIDE (spi_flash_chip_generic_wait_idle = 0x40000f90) + [!provide] PROVIDE (spi_flash_chip_generic_config_host_io_mode = 0x40000f9c) + [!provide] PROVIDE (spi_flash_chip_generic_read = 0x40000fa8) + [!provide] PROVIDE (spi_flash_common_read_status_8b_rdsr2 = 0x40000fb4) + [!provide] PROVIDE (spi_flash_chip_generic_get_io_mode = 0x40000fc0) + [!provide] PROVIDE (spi_flash_common_read_status_8b_rdsr = 0x40000fcc) + [!provide] PROVIDE (spi_flash_common_write_status_8b_wrsr = 0x40000fd8) + [!provide] PROVIDE (spi_flash_common_write_status_8b_wrsr2 = 0x40000fe4) + [!provide] PROVIDE (spi_flash_common_set_io_mode = 0x40000ff0) + [!provide] PROVIDE (spi_flash_chip_generic_set_io_mode = 0x40000ffc) + [!provide] PROVIDE (spi_flash_chip_gd_get_io_mode = 0x40001008) + [!provide] PROVIDE (spi_flash_chip_gd_probe = 0x40001014) + [!provide] PROVIDE (spi_flash_chip_gd_set_io_mode = 0x40001020) + [!provide] PROVIDE (spi_flash_chip_generic_config_data = 0x3fceffe0) + [!provide] PROVIDE (memspi_host_read_id_hs = 0x4000102c) + [!provide] PROVIDE (memspi_host_read_status_hs = 0x40001038) + [!provide] PROVIDE (memspi_host_flush_cache = 0x40001044) + [!provide] PROVIDE (memspi_host_erase_chip = 0x40001050) + [!provide] PROVIDE (memspi_host_erase_sector = 0x4000105c) + [!provide] PROVIDE (memspi_host_erase_block = 0x40001068) + [!provide] PROVIDE (memspi_host_program_page = 0x40001074) + [!provide] PROVIDE (memspi_host_read = 0x40001080) + [!provide] PROVIDE (memspi_host_set_write_protect = 0x4000108c) + [!provide] PROVIDE (memspi_host_set_max_read_len = 0x40001098) + [!provide] PROVIDE (memspi_host_read_data_slicer = 0x400010a4) + [!provide] PROVIDE (memspi_host_write_data_slicer = 0x400010b0) + [!provide] PROVIDE (esp_flash_chip_driver_initialized = 0x400010bc) + [!provide] PROVIDE (esp_flash_read_id = 0x400010c8) + [!provide] PROVIDE (esp_flash_get_size = 0x400010d4) + [!provide] PROVIDE (esp_flash_erase_chip = 0x400010e0) + [!provide] PROVIDE (rom_esp_flash_erase_region = 0x400010ec) + [!provide] PROVIDE (esp_flash_get_chip_write_protect = 0x400010f8) + [!provide] PROVIDE (esp_flash_set_chip_write_protect = 0x40001104) + [!provide] PROVIDE (esp_flash_get_protectable_regions = 0x40001110) + [!provide] PROVIDE (esp_flash_get_protected_region = 0x4000111c) + [!provide] PROVIDE (esp_flash_set_protected_region = 0x40001128) + [!provide] PROVIDE (esp_flash_read = 0x40001134) + [!provide] PROVIDE (rom_esp_flash_write = 0x40001140) + [!provide] PROVIDE (rom_esp_flash_write_encrypted = 0x4000114c) + [!provide] PROVIDE (esp_flash_read_encrypted = 0x40001158) + [!provide] PROVIDE (esp_flash_get_io_mode = 0x40001164) + [!provide] PROVIDE (esp_flash_set_io_mode = 0x40001170) + [!provide] PROVIDE (spi_flash_boot_attach = 0x4000117c) + [!provide] PROVIDE (spi_flash_dump_counters = 0x40001188) + [!provide] PROVIDE (spi_flash_get_counters = 0x40001194) + [!provide] PROVIDE (spi_flash_op_counters_config = 0x400011a0) + [!provide] PROVIDE (spi_flash_reset_counters = 0x400011ac) + [!provide] PROVIDE (esp_flash_read_chip_id = 0x400011b8) + [!provide] PROVIDE (detect_spi_flash_chip = 0x400011c4) + [!provide] PROVIDE (esp_rom_spiflash_write_disable = 0x400011d0) + [!provide] PROVIDE (esp_flash_default_chip = 0x3fceffdc) + [!provide] PROVIDE (esp_flash_api_funcs = 0x3fceffd8) + 0x400015fc PROVIDE (Cache_Get_ICache_Line_Size = 0x400015fc) + 0x40001608 PROVIDE (Cache_Get_DCache_Line_Size = 0x40001608) + [!provide] PROVIDE (Cache_Get_Mode = 0x40001614) + 0x40001620 PROVIDE (Cache_Set_ICache_Mode = 0x40001620) + 0x4000162c PROVIDE (Cache_Set_DCache_Mode = 0x4000162c) + [!provide] PROVIDE (Cache_Address_Through_ICache = 0x40001638) + [!provide] PROVIDE (Cache_Address_Through_DCache = 0x40001644) + [!provide] PROVIDE (Cache_Set_Default_Mode = 0x40001650) + [!provide] PROVIDE (Cache_Enable_Default_ICache_Mode = 0x4000165c) + 0x40001668 PROVIDE (ROM_Boot_Cache_Init = 0x40001668) + [!provide] PROVIDE (Cache_Invalidate_ICache_Items = 0x40001674) + [!provide] PROVIDE (Cache_Invalidate_DCache_Items = 0x40001680) + [!provide] PROVIDE (Cache_Clean_Items = 0x4000168c) + [!provide] PROVIDE (Cache_WriteBack_Items = 0x40001698) + [!provide] PROVIDE (Cache_Op_Addr = 0x400016a4) + 0x400016b0 PROVIDE (Cache_Invalidate_Addr = 0x400016b0) + [!provide] PROVIDE (Cache_Clean_Addr = 0x400016bc) + 0x400016c8 PROVIDE (rom_Cache_WriteBack_Addr = 0x400016c8) + 0x400016d4 PROVIDE (Cache_Invalidate_ICache_All = 0x400016d4) + 0x400016e0 PROVIDE (Cache_Invalidate_DCache_All = 0x400016e0) + [!provide] PROVIDE (Cache_Clean_All = 0x400016ec) + [!provide] PROVIDE (Cache_WriteBack_All = 0x400016f8) + [!provide] PROVIDE (Cache_Mask_All = 0x40001704) + [!provide] PROVIDE (Cache_UnMask_Dram0 = 0x40001710) + [!provide] PROVIDE (Cache_Suspend_ICache_Autoload = 0x4000171c) + [!provide] PROVIDE (Cache_Resume_ICache_Autoload = 0x40001728) + 0x40001734 PROVIDE (Cache_Suspend_DCache_Autoload = 0x40001734) + 0x40001740 PROVIDE (Cache_Resume_DCache_Autoload = 0x40001740) + [!provide] PROVIDE (Cache_Start_ICache_Preload = 0x4000174c) + [!provide] PROVIDE (Cache_ICache_Preload_Done = 0x40001758) + [!provide] PROVIDE (Cache_End_ICache_Preload = 0x40001764) + [!provide] PROVIDE (Cache_Start_DCache_Preload = 0x40001770) + [!provide] PROVIDE (Cache_DCache_Preload_Done = 0x4000177c) + [!provide] PROVIDE (Cache_End_DCache_Preload = 0x40001788) + [!provide] PROVIDE (Cache_Config_ICache_Autoload = 0x40001794) + [!provide] PROVIDE (Cache_Config_ICache_Region_Autoload = 0x400017a0) + [!provide] PROVIDE (Cache_Enable_ICache_Autoload = 0x400017ac) + [!provide] PROVIDE (Cache_Disable_ICache_Autoload = 0x400017b8) + [!provide] PROVIDE (Cache_Config_DCache_Autoload = 0x400017c4) + [!provide] PROVIDE (Cache_Config_DCache_Region_Autoload = 0x400017d0) + [!provide] PROVIDE (Cache_Enable_DCache_Autoload = 0x400017dc) + [!provide] PROVIDE (Cache_Disable_DCache_Autoload = 0x400017e8) + [!provide] PROVIDE (Cache_Enable_ICache_PreLock = 0x400017f4) + [!provide] PROVIDE (Cache_Disable_ICache_PreLock = 0x40001800) + [!provide] PROVIDE (Cache_Lock_ICache_Items = 0x4000180c) + [!provide] PROVIDE (Cache_Unlock_ICache_Items = 0x40001818) + [!provide] PROVIDE (Cache_Enable_DCache_PreLock = 0x40001824) + [!provide] PROVIDE (Cache_Disable_DCache_PreLock = 0x40001830) + [!provide] PROVIDE (Cache_Lock_DCache_Items = 0x4000183c) + [!provide] PROVIDE (Cache_Unlock_DCache_Items = 0x40001848) + [!provide] PROVIDE (Cache_Lock_Addr = 0x40001854) + [!provide] PROVIDE (Cache_Unlock_Addr = 0x40001860) + 0x4000186c PROVIDE (Cache_Disable_ICache = 0x4000186c) + 0x40001878 PROVIDE (Cache_Enable_ICache = 0x40001878) + 0x40001884 PROVIDE (Cache_Disable_DCache = 0x40001884) + 0x40001890 PROVIDE (Cache_Enable_DCache = 0x40001890) + 0x4000189c PROVIDE (rom_Cache_Suspend_ICache = 0x4000189c) + 0x400018a8 PROVIDE (Cache_Resume_ICache = 0x400018a8) + 0x400018b4 PROVIDE (rom_Cache_Suspend_DCache = 0x400018b4) + 0x400018c0 PROVIDE (Cache_Resume_DCache = 0x400018c0) + [!provide] PROVIDE (Cache_Occupy_Items = 0x400018cc) + [!provide] PROVIDE (Cache_Occupy_Addr = 0x400018d8) + 0x400018e4 PROVIDE (rom_Cache_Freeze_ICache_Enable = 0x400018e4) + 0x400018f0 PROVIDE (Cache_Freeze_ICache_Disable = 0x400018f0) + 0x400018fc PROVIDE (rom_Cache_Freeze_DCache_Enable = 0x400018fc) + 0x40001908 PROVIDE (Cache_Freeze_DCache_Disable = 0x40001908) + 0x40001914 PROVIDE (Cache_Set_IDROM_MMU_Size = 0x40001914) + [!provide] PROVIDE (flash2spiram_instruction_offset = 0x40001920) + [!provide] PROVIDE (flash2spiram_rodata_offset = 0x4000192c) + [!provide] PROVIDE (flash_instr_rodata_start_page = 0x40001938) + [!provide] PROVIDE (flash_instr_rodata_end_page = 0x40001944) + [!provide] PROVIDE (Cache_Set_IDROM_MMU_Info = 0x40001950) + [!provide] PROVIDE (Cache_Get_IROM_MMU_End = 0x4000195c) + [!provide] PROVIDE (Cache_Get_DROM_MMU_End = 0x40001968) + [!provide] PROVIDE (Cache_Owner_Init = 0x40001974) + 0x40001980 PROVIDE (Cache_Occupy_ICache_MEMORY = 0x40001980) + 0x4000198c PROVIDE (Cache_Occupy_DCache_MEMORY = 0x4000198c) + [!provide] PROVIDE (Cache_MMU_Init = 0x40001998) + [!provide] PROVIDE (Cache_Ibus_MMU_Set = 0x400019a4) + [!provide] PROVIDE (Cache_Dbus_MMU_Set = 0x400019b0) + 0x400019bc PROVIDE (rom_Cache_Count_Flash_Pages = 0x400019bc) + [!provide] PROVIDE (Cache_Flash_To_SPIRAM_Copy = 0x400019c8) + [!provide] PROVIDE (Cache_Travel_Tag_Memory = 0x400019d4) + [!provide] PROVIDE (Cache_Travel_Tag_Memory2 = 0x400019e0) + [!provide] PROVIDE (Cache_Get_Virtual_Addr = 0x400019ec) + [!provide] PROVIDE (Cache_Get_Memory_BaseAddr = 0x400019f8) + [!provide] PROVIDE (Cache_Get_Memory_Addr = 0x40001a04) + [!provide] PROVIDE (Cache_Get_Memory_value = 0x40001a10) + [!provide] PROVIDE (rom_config_instruction_cache_mode = 0x40001a1c) + [!provide] PROVIDE (rom_config_data_cache_mode = 0x40001a28) + [!provide] PROVIDE (rom_cache_op_cb = 0x3fceffc8) + [!provide] PROVIDE (rom_cache_internal_table_ptr = 0x3fceffc4) + 0x40001a34 ets_get_apb_freq = 0x40001a34 + 0x40001a40 ets_get_cpu_frequency = 0x40001a40 + 0x40001a4c ets_update_cpu_frequency = 0x40001a4c + 0x40001a58 ets_get_printf_channel = 0x40001a58 + 0x40001a64 ets_get_xtal_div = 0x40001a64 + 0x40001a70 ets_set_xtal_div = 0x40001a70 + 0x40001a7c ets_get_xtal_freq = 0x40001a7c + 0x40001a88 rom_gpio_input_get = 0x40001a88 + 0x40001a94 rom_gpio_matrix_in = 0x40001a94 + 0x40001aa0 rom_gpio_matrix_out = 0x40001aa0 + 0x40001aac rom_gpio_output_disable = 0x40001aac + 0x40001ab8 rom_gpio_output_enable = 0x40001ab8 + 0x40001ac4 rom_gpio_output_set = 0x40001ac4 + 0x40001ad0 rom_gpio_pad_hold = 0x40001ad0 + 0x40001adc rom_gpio_pad_input_disable = 0x40001adc + 0x40001ae8 rom_gpio_pad_input_enable = 0x40001ae8 + 0x40001af4 rom_gpio_pad_pulldown = 0x40001af4 + 0x40001b00 rom_gpio_pad_pullup = 0x40001b00 + 0x40001b0c rom_gpio_pad_select_gpio = 0x40001b0c + 0x40001b18 rom_gpio_pad_set_drv = 0x40001b18 + 0x40001b24 rom_gpio_pad_unhold = 0x40001b24 + 0x40001b30 rom_gpio_pin_wakeup_disable = 0x40001b30 + 0x40001b3c rom_gpio_pin_wakeup_enable = 0x40001b3c + 0x40001b48 rom_gpio_bypass_matrix_in = 0x40001b48 + 0x40001b54 intr_matrix_set = 0x40001b54 + 0x40001b60 ets_intr_lock = 0x40001b60 + 0x40001b6c ets_intr_unlock = 0x40001b6c + 0x40001b78 ets_isr_attach = 0x40001b78 + 0x40001b84 ets_isr_mask = 0x40001b84 + 0x40001b90 ets_isr_unmask = 0x40001b90 + 0x40001b9c xthal_bcopy = 0x40001b9c + 0x40001ba8 xthal_memcpy = 0x40001ba8 + 0x40001bb4 xthal_get_ccompare = 0x40001bb4 + 0x40001bc0 xthal_set_ccompare = 0x40001bc0 + 0x40001bcc xthal_get_ccount = 0x40001bcc + 0x40001bd8 xthal_get_interrupt = 0x40001bd8 + 0x40001be4 xthal_set_intclear = 0x40001be4 + 0x40001bf0 _xtos_ints_off = 0x40001bf0 + 0x40001bfc _xtos_ints_on = 0x40001bfc + 0x40001c08 _xtos_restore_intlevel = 0x40001c08 + 0x40001c14 _xtos_set_exception_handler = 0x40001c14 + 0x40001c20 _xtos_set_interrupt_handler = 0x40001c20 + 0x40001c2c _xtos_set_interrupt_handler_arg = 0x40001c2c + 0x40001c38 _xtos_set_intlevel = 0x40001c38 + 0x40001c44 _xtos_set_vpri = 0x40001c44 + 0x40001c50 md5_vector = 0x40001c50 + 0x40001c5c MD5Init = 0x40001c5c + 0x40001c68 MD5Update = 0x40001c68 + 0x40001c74 MD5Final = 0x40001c74 + 0x40001c98 crc32_le = 0x40001c98 + 0x40001ca4 crc32_be = 0x40001ca4 + 0x40001cb0 crc16_le = 0x40001cb0 + 0x40001cbc crc16_be = 0x40001cbc + 0x40001cc8 crc8_le = 0x40001cc8 + 0x40001cd4 crc8_be = 0x40001cd4 + 0x40001ce0 esp_crc8 = 0x40001ce0 + 0x40001cec ets_sha_enable = 0x40001cec + 0x40001cf8 ets_sha_disable = 0x40001cf8 + 0x40001d04 ets_sha_get_state = 0x40001d04 + 0x40001d10 ets_sha_init = 0x40001d10 + 0x40001d1c ets_sha_process = 0x40001d1c + 0x40001d28 ets_sha_starts = 0x40001d28 + 0x40001d34 ets_sha_update = 0x40001d34 + 0x40001d40 ets_sha_finish = 0x40001d40 + 0x40001d4c ets_sha_clone = 0x40001d4c + 0x40001d58 ets_hmac_enable = 0x40001d58 + 0x40001d64 ets_hmac_disable = 0x40001d64 + 0x40001d70 ets_hmac_calculate_message = 0x40001d70 + 0x40001d7c ets_hmac_calculate_downstream = 0x40001d7c + 0x40001d88 ets_hmac_invalidate_downstream = 0x40001d88 + 0x40001d94 ets_jtag_enable_temporarily = 0x40001d94 + 0x40001da0 ets_aes_enable = 0x40001da0 + 0x40001dac ets_aes_disable = 0x40001dac + 0x40001db8 ets_aes_setkey = 0x40001db8 + 0x40001dc4 ets_aes_block = 0x40001dc4 + 0x40001dd0 ets_bigint_enable = 0x40001dd0 + 0x40001ddc ets_bigint_disable = 0x40001ddc + 0x40001de8 ets_bigint_multiply = 0x40001de8 + 0x40001df4 ets_bigint_modmult = 0x40001df4 + 0x40001e00 ets_bigint_modexp = 0x40001e00 + 0x40001e0c ets_bigint_wait_finish = 0x40001e0c + 0x40001e18 ets_bigint_getz = 0x40001e18 + 0x40001e24 ets_ds_enable = 0x40001e24 + 0x40001e30 ets_ds_disable = 0x40001e30 + 0x40001e3c ets_ds_start_sign = 0x40001e3c + 0x40001e48 ets_ds_is_busy = 0x40001e48 + 0x40001e54 ets_ds_finish_sign = 0x40001e54 + 0x40001e60 ets_ds_encrypt_params = 0x40001e60 + 0x40001e6c ets_aes_setkey_dec = 0x40001e6c + 0x40001e78 ets_aes_setkey_enc = 0x40001e78 + 0x40001e84 ets_mgf1_sha256 = 0x40001e84 + 0x40001e90 ets_efuse_read = 0x40001e90 + 0x40001e9c ets_efuse_program = 0x40001e9c + 0x40001ea8 ets_efuse_clear_program_registers = 0x40001ea8 + 0x40001eb4 ets_efuse_write_key = 0x40001eb4 + 0x40001ec0 ets_efuse_get_read_register_address = 0x40001ec0 + 0x40001ecc ets_efuse_get_key_purpose = 0x40001ecc + 0x40001ed8 ets_efuse_key_block_unused = 0x40001ed8 + 0x40001ee4 ets_efuse_find_unused_key_block = 0x40001ee4 + 0x40001ef0 ets_efuse_rs_calculate = 0x40001ef0 + 0x40001efc ets_efuse_count_unused_key_blocks = 0x40001efc + 0x40001f08 ets_efuse_secure_boot_enabled = 0x40001f08 + 0x40001f14 ets_efuse_secure_boot_aggressive_revoke_enabled = 0x40001f14 + 0x40001f20 ets_efuse_cache_encryption_enabled = 0x40001f20 + 0x40001f2c ets_efuse_download_modes_disabled = 0x40001f2c + 0x40001f38 ets_efuse_find_purpose = 0x40001f38 + 0x40001f44 ets_efuse_flash_opi_5pads_power_sel_vddspi = 0x40001f44 + 0x40001f50 ets_efuse_force_send_resume = 0x40001f50 + 0x40001f5c ets_efuse_get_flash_delay_us = 0x40001f5c + 0x40001f68 ets_efuse_get_mac = 0x40001f68 + 0x40001f74 ets_efuse_get_spiconfig = 0x40001f74 + 0x40001f80 ets_efuse_usb_print_is_disabled = 0x40001f80 + 0x40001f8c ets_efuse_usb_serial_jtag_print_is_disabled = 0x40001f8c + 0x40001f98 ets_efuse_get_uart_print_control = 0x40001f98 + 0x40001fa4 ets_efuse_get_wp_pad = 0x40001fa4 + 0x40001fb0 ets_efuse_legacy_spi_boot_mode_disabled = 0x40001fb0 + 0x40001fbc ets_efuse_security_download_modes_enabled = 0x40001fbc + 0x40001fc8 ets_efuse_set_timing = 0x40001fc8 + 0x40001fd4 ets_efuse_jtag_disabled = 0x40001fd4 + 0x40001fe0 ets_efuse_usb_download_mode_disabled = 0x40001fe0 + 0x40001fec ets_efuse_usb_module_disabled = 0x40001fec + 0x40001ff8 ets_efuse_usb_device_disabled = 0x40001ff8 + 0x40002004 ets_efuse_flash_octal_mode = 0x40002004 + 0x40002010 ets_efuse_ecc_en = 0x40002010 + 0x4000201c ets_efuse_ecc_flash_page_size = 0x4000201c + 0x40002028 ets_efuse_ecc_16to17_mode = 0x40002028 + 0x40002034 ets_ecc_flash_enable = 0x40002034 + 0x40002040 ets_ecc_flash_enable_all = 0x40002040 + 0x4000204c ets_ecc_flash_disable = 0x4000204c + 0x40002058 ets_ecc_flash_disable_all = 0x40002058 + 0x40002064 ets_ecc_get_flash_page_size = 0x40002064 + 0x40002070 ets_ecc_set_flash_page_size = 0x40002070 + 0x4000207c ets_ecc_set_flash_byte_mode = 0x4000207c + 0x40002088 ets_ecc_get_flash_byte_mode = 0x40002088 + 0x40002094 ets_ecc_set_flash_range = 0x40002094 + 0x400020a0 ets_ecc_get_flash_range = 0x400020a0 + 0x400020ac ets_ecc_sram_enable = 0x400020ac + 0x400020b8 ets_ecc_sram_disable = 0x400020b8 + 0x400020c4 ets_ecc_sram_enable_all = 0x400020c4 + 0x400020d0 ets_ecc_sram_disable_all = 0x400020d0 + 0x400020dc ets_ecc_get_sram_page_size = 0x400020dc + 0x400020e8 ets_ecc_set_sram_page_size = 0x400020e8 + 0x400020f4 ets_ecc_get_sram_byte_mode = 0x400020f4 + 0x40002100 ets_ecc_set_sram_byte_mode = 0x40002100 + 0x4000210c ets_ecc_set_sram_range = 0x4000210c + 0x40002118 ets_ecc_get_sram_range = 0x40002118 + 0x3fceffc0 ets_ecc_table_ptr = 0x3fceffc0 + 0x40002124 ets_emsa_pss_verify = 0x40002124 + 0x40002130 ets_rsa_pss_verify = 0x40002130 + 0x4000213c ets_secure_boot_verify_bootloader_with_keys = 0x4000213c + 0x40002148 ets_secure_boot_verify_signature = 0x40002148 + 0x40002154 ets_secure_boot_read_key_digests = 0x40002154 + 0x40002160 ets_secure_boot_revoke_public_key_digest = 0x40002160 + [!provide] PROVIDE (usb_uart_otg_rx_one_char = 0x400025a4) + [!provide] PROVIDE (usb_uart_otg_rx_one_char_block = 0x400025b0) + [!provide] PROVIDE (usb_uart_otg_tx_flush = 0x400025bc) + [!provide] PROVIDE (usb_uart_otg_tx_one_char = 0x400025c8) + [!provide] PROVIDE (usb_uart_device_rx_one_char = 0x400025d4) + [!provide] PROVIDE (usb_uart_device_rx_one_char_block = 0x400025e0) + [!provide] PROVIDE (usb_uart_device_tx_flush = 0x400025ec) + [!provide] PROVIDE (usb_uart_device_tx_one_char = 0x400025f8) + [!provide] PROVIDE (Uart_Init_USB = 0x40002604) + [!provide] PROVIDE (uart_acm_dev = 0x3fceffbc) + 0x3fceffb9 PROVIDE (g_uart_print = 0x3fceffb9) + 0x3fceffb8 PROVIDE (g_usb_print = 0x3fceffb8) + 0x40002610 cdc_acm_class_handle_req = 0x40002610 + 0x4000261c cdc_acm_init = 0x4000261c + 0x40002628 cdc_acm_fifo_fill = 0x40002628 + 0x40002634 cdc_acm_rx_fifo_cnt = 0x40002634 + 0x40002640 cdc_acm_fifo_read = 0x40002640 + 0x4000264c cdc_acm_irq_tx_enable = 0x4000264c + 0x40002658 cdc_acm_irq_tx_disable = 0x40002658 + 0x40002664 cdc_acm_irq_state_enable = 0x40002664 + 0x40002670 cdc_acm_irq_state_disable = 0x40002670 + 0x4000267c cdc_acm_irq_tx_ready = 0x4000267c + 0x40002688 cdc_acm_irq_rx_enable = 0x40002688 + 0x40002694 cdc_acm_irq_rx_disable = 0x40002694 + 0x400026a0 cdc_acm_irq_rx_ready = 0x400026a0 + 0x400026ac cdc_acm_irq_is_pending = 0x400026ac + 0x400026b8 cdc_acm_irq_callback_set = 0x400026b8 + 0x400026c4 cdc_acm_line_ctrl_set = 0x400026c4 + 0x400026d0 cdc_acm_line_ctrl_get = 0x400026d0 + 0x400026dc cdc_acm_poll_out = 0x400026dc + 0x400026e8 chip_usb_dw_did_persist = 0x400026e8 + 0x400026f4 chip_usb_dw_init = 0x400026f4 + 0x40002700 chip_usb_detach = 0x40002700 + 0x4000270c chip_usb_dw_prepare_persist = 0x4000270c + 0x40002718 chip_usb_get_persist_flags = 0x40002718 + 0x40002724 chip_usb_set_persist_flags = 0x40002724 + 0x40002730 cpio_start = 0x40002730 + 0x4000273c cpio_feed = 0x4000273c + 0x40002748 cpio_done = 0x40002748 + 0x40002754 cpio_destroy = 0x40002754 + 0x40002760 dfu_flash_init = 0x40002760 + 0x4000276c dfu_flash_erase = 0x4000276c + 0x40002778 dfu_flash_program = 0x40002778 + 0x40002784 dfu_flash_read = 0x40002784 + 0x40002790 dfu_flash_attach = 0x40002790 + 0x4000279c dfu_cpio_callback = 0x4000279c + 0x400027a8 dfu_updater_get_err = 0x400027a8 + 0x400027b4 dfu_updater_clear_err = 0x400027b4 + 0x400027c0 dfu_updater_enable = 0x400027c0 + 0x400027cc dfu_updater_begin = 0x400027cc + 0x400027d8 dfu_updater_feed = 0x400027d8 + 0x400027e4 dfu_updater_end = 0x400027e4 + 0x400027f0 dfu_updater_set_raw_addr = 0x400027f0 + 0x400027fc dfu_updater_flash_read = 0x400027fc + 0x40002808 usb_dc_prepare_persist = 0x40002808 + 0x40002814 usb_dw_isr_handler = 0x40002814 + 0x40002820 usb_dc_attach = 0x40002820 + 0x4000282c usb_dc_detach = 0x4000282c + 0x40002838 usb_dc_reset = 0x40002838 + 0x40002844 usb_dc_set_address = 0x40002844 + 0x40002850 usb_dc_ep_check_cap = 0x40002850 + 0x4000285c usb_dc_ep_configure = 0x4000285c + 0x40002868 usb_dc_ep_set_stall = 0x40002868 + 0x40002874 usb_dc_ep_clear_stall = 0x40002874 + 0x40002880 usb_dc_ep_halt = 0x40002880 + 0x4000288c usb_dc_ep_is_stalled = 0x4000288c + 0x40002898 usb_dc_ep_enable = 0x40002898 + 0x400028a4 usb_dc_ep_disable = 0x400028a4 + 0x400028b0 usb_dc_ep_flush = 0x400028b0 + 0x400028bc usb_dc_ep_write_would_block = 0x400028bc + 0x400028c8 usb_dc_ep_write = 0x400028c8 + 0x400028d4 usb_dc_ep_read_wait = 0x400028d4 + 0x400028e0 usb_dc_ep_read_continue = 0x400028e0 + 0x400028ec usb_dc_ep_read = 0x400028ec + 0x400028f8 usb_dc_ep_set_callback = 0x400028f8 + 0x40002904 usb_dc_set_status_callback = 0x40002904 + 0x40002910 usb_dc_ep_mps = 0x40002910 + 0x4000291c usb_dc_check_poll_for_interrupts = 0x4000291c + 0x40002928 mac_addr_to_serial_str_desc = 0x40002928 + 0x40002934 usb_set_current_descriptor = 0x40002934 + 0x40002940 usb_get_descriptor = 0x40002940 + 0x4000294c usb_dev_resume = 0x4000294c + 0x40002958 usb_dev_get_configuration = 0x40002958 + 0x40002964 usb_set_config = 0x40002964 + 0x40002970 usb_deconfig = 0x40002970 + 0x4000297c usb_enable = 0x4000297c + 0x40002988 usb_disable = 0x40002988 + 0x40002994 usb_write_would_block = 0x40002994 + 0x400029a0 usb_write = 0x400029a0 + 0x400029ac usb_read = 0x400029ac + 0x400029b8 usb_ep_set_stall = 0x400029b8 + 0x400029c4 usb_ep_clear_stall = 0x400029c4 + 0x400029d0 usb_ep_read_wait = 0x400029d0 + 0x400029dc usb_ep_read_continue = 0x400029dc + 0x400029e8 usb_transfer_ep_callback = 0x400029e8 + 0x400029f4 usb_transfer = 0x400029f4 + 0x40002a00 usb_cancel_transfer = 0x40002a00 + 0x40002a0c usb_transfer_sync = 0x40002a0c + 0x40002a18 usb_dfu_set_detach_cb = 0x40002a18 + 0x40002a24 dfu_class_handle_req = 0x40002a24 + 0x40002a30 dfu_status_cb = 0x40002a30 + 0x40002a3c dfu_custom_handle_req = 0x40002a3c + 0x40002a48 usb_dfu_init = 0x40002a48 + 0x40002a54 usb_dfu_force_detach = 0x40002a54 + 0x40002a60 usb_dev_deinit = 0x40002a60 + 0x40002a6c usb_dw_ctrl_deinit = 0x40002a6c + 0x3fceffac rom_usb_osglue = 0x3fceffac + 0x3fceffa8 bt_rf_coex_cfg_p = 0x3fceffa8 + 0x3fceffa4 bt_rf_coex_hooks_p = 0x3fceffa4 + 0x3fceffa0 btdm_env_p = 0x3fceffa0 + 0x3fceff9c g_rw_controller_task_handle = 0x3fceff9c + 0x3fceff98 g_rw_init_sem = 0x3fceff98 + 0x3fceff94 g_rw_schd_queue = 0x3fceff94 + 0x3fceff90 lld_init_env = 0x3fceff90 + 0x3fceff8c lld_rpa_renew_env = 0x3fceff8c + 0x3fceff88 lld_scan_env = 0x3fceff88 + 0x3fceff84 lld_scan_sync_env = 0x3fceff84 + 0x3fceff80 lld_test_env = 0x3fceff80 + 0x3fceff7c p_ble_util_buf_env = 0x3fceff7c + 0x3fceff78 p_lld_env = 0x3fceff78 + 0x3fceff74 p_llm_env = 0x3fceff74 + 0x3fceff70 r_h4tl_eif_p = 0x3fceff70 + 0x3fceff6c r_hli_funcs_p = 0x3fceff6c + 0x3fceff68 r_ip_funcs_p = 0x3fceff68 + 0x3fceff64 r_modules_funcs_p = 0x3fceff64 + 0x3fceff60 r_osi_funcs_p = 0x3fceff60 + 0x3fceff5c r_plf_funcs_p = 0x3fceff5c + 0x3fceff58 vhci_env_p = 0x3fceff58 + 0x3fceff54 aa_gen = 0x3fceff54 + 0x3fceff48 aes_env = 0x3fceff48 + 0x3fcefef8 bt_rf_coex_cfg_cb = 0x3fcefef8 + 0x3fcefef4 btdm_pwr_state = 0x3fcefef4 + 0x3fcefef0 btdm_slp_err = 0x3fcefef0 + 0x3fcefee8 ecc_env = 0x3fcefee8 + 0x3fcefee0 esp_handler = 0x3fcefee0 + 0x3fcefed8 esp_vendor_cmd = 0x3fcefed8 + 0x3fcefed4 g_adv_delay_dis = 0x3fcefed4 + 0x3fcefed0 g_conflict_elt = 0x3fcefed0 + 0x3fcefec0 g_eif_api = 0x3fcefec0 + 0x3fcefeb4 g_event_empty = 0x3fcefeb4 + 0x3fcefeaa g_llc_state = 0x3fcefeaa + 0x3fcefea9 g_llm_state = 0x3fcefea9 + 0x3fcefea7 g_max_evt_env = 0x3fcefea7 + 0x3fcefea6 g_misc_state = 0x3fcefea6 + 0x3fcefe8a g_rma_rule_db = 0x3fcefe8a + 0x3fcefe6e g_rtp_rule_db = 0x3fcefe6e + 0x3fcefe6d g_scan_forever = 0x3fcefe6d + 0x3fcefe6c g_time_msb = 0x3fcefe6c + 0x3fcefe44 h4tl_env = 0x3fcefe44 + 0x3fcefe21 hci_env = 0x3fcefe21 + 0x3fcefe20 hci_ext_host = 0x3fcefe20 + 0x3fcefe18 hci_fc_env = 0x3fcefe18 + 0x3fcefdec hci_tl_env = 0x3fcefdec + 0x3fcefdbc ke_env = 0x3fcefdbc + 0x3fcefd7c ke_event_env = 0x3fcefd7c + 0x3fcefd00 ke_task_env = 0x3fcefd00 + 0x3fcefcd8 llc_env = 0x3fcefcd8 + 0x3fcefcb0 lld_adv_env = 0x3fcefcb0 + 0x3fcefc88 lld_con_env = 0x3fcefc88 + 0x3fcefc80 lld_exp_sync_pos_tab = 0x3fcefc80 + 0x3fcefc58 lld_per_adv_env = 0x3fcefc58 + 0x3fcefc30 lld_sync_env = 0x3fcefc30 + 0x3fcefc24 llm_le_adv_flow_env = 0x3fcefc24 + 0x3fcefc20 rw_sleep_enable = 0x3fcefc20 + 0x3fcefc18 rwble_env = 0x3fcefc18 + 0x3fcefbfc rwip_env = 0x3fcefbfc + 0x3fcefbf0 rwip_param = 0x3fcefbf0 + 0x3fcefbec rwip_prog_delay = 0x3fcefbec + 0x3fcefbb4 rwip_rf = 0x3fcefbb4 + 0x3fcefbac sch_alarm_env = 0x3fcefbac + 0x3fcefb98 sch_arb_env = 0x3fcefb98 + 0x3fcefb90 sch_plan_env = 0x3fcefb90 + 0x3fcefa8c sch_prog_env = 0x3fcefa8c + 0x3fcefa2c sch_slice_env = 0x3fcefa2c + 0x3fcefa24 sch_slice_params = 0x3fcefa24 + 0x3fcefa1c timer_env = 0x3fcefa1c + 0x3fcefa18 unloaded_area = 0x3fcefa18 + 0x3fcefa14 vshci_state = 0x3fcefa14 + 0x3fcefa08 TASK_DESC_LLC = 0x3fcefa08 + 0x3fcef9fc TASK_DESC_LLM = 0x3fcef9fc + 0x3fcef9f0 TASK_DESC_VSHCI = 0x3fcef9f0 + 0x3fcef9e8 co_default_bdaddr = 0x3fcef9e8 + 0x3fcef9e4 dbg_assert_block = 0x3fcef9e4 + 0x3fcef9e0 g_bt_plf_log_level = 0x3fcef9e0 + 0x3fcef9bc hci_cmd_desc_tab_vs_esp = 0x3fcef9bc + 0x3fcef9a4 hci_command_handler_tab_esp = 0x3fcef9a4 + 0x3fcef9a0 privacy_en = 0x3fcef9a0 + 0x3fcef958 sdk_cfg_priv_opts = 0x3fcef958 + 0x3ff1ffdc BasePoint_x_256 = 0x3ff1ffdc + 0x3ff1ffbc BasePoint_y_256 = 0x3ff1ffbc + 0x3ff1ff9c DebugE256PublicKey_x = 0x3ff1ff9c + 0x3ff1ff7c DebugE256PublicKey_y = 0x3ff1ff7c + 0x3ff1ff5c DebugE256SecretKey = 0x3ff1ff5c + 0x3ff1f7a0 ECC_4Win_Look_up_table = 0x3ff1f7a0 + 0x3ff1f79a LLM_AA_CT1 = 0x3ff1f79a + 0x3ff1f798 LLM_AA_CT2 = 0x3ff1f798 + 0x3ff1f790 RF_TX_PW_CONV_TBL = 0x3ff1f790 + 0x3ff1f784 TASK_DESC_MISC = 0x3ff1f784 + 0x3ff1f766 adv_evt_prop2type = 0x3ff1f766 + 0x3ff1f761 adv_evt_type2prop = 0x3ff1f761 + 0x3ff1f751 aes_cmac_zero = 0x3ff1f751 + 0x3ff1f741 aes_k2_salt = 0x3ff1f741 + 0x3ff1f73c aes_k3_id64 = 0x3ff1f73c + 0x3ff1f72c aes_k3_salt = 0x3ff1f72c + 0x3ff1f728 aes_k4_id6 = 0x3ff1f728 + 0x3ff1f718 aes_k4_salt = 0x3ff1f718 + 0x3ff1f6ec bigHexP256 = 0x3ff1f6ec + 0x3ff1f6e2 byte_tx_time = 0x3ff1f6e2 + 0x3ff1f6dc co_null_bdaddr = 0x3ff1f6dc + 0x3ff1f6d7 co_phy_mask_to_rate = 0x3ff1f6d7 + 0x3ff1f6d2 co_phy_mask_to_value = 0x3ff1f6d2 + 0x3ff1f6ce co_phy_to_rate = 0x3ff1f6ce + 0x3ff1f6ca co_phy_value_to_mask = 0x3ff1f6ca + 0x3ff1f6c5 co_rate_to_byte_dur_us = 0x3ff1f6c5 + 0x3ff1f6c0 co_rate_to_phy = 0x3ff1f6c0 + 0x3ff1f6bc co_rate_to_phy_mask = 0x3ff1f6bc + 0x3ff1f6ac co_sca2ppm = 0x3ff1f6ac + 0x3ff1f680 coef_B = 0x3ff1f680 + 0x3ff1f678 connect_req_dur_tab = 0x3ff1f678 + 0x3ff1f5f4 ecc_Jacobian_InfinityPoint256 = 0x3ff1f5f4 + 0x3ff1f526 em_base_reg_lut = 0x3ff1f526 + 0x3ff1f51e fixed_tx_time = 0x3ff1f51e + 0x3ff1f518 h4tl_msgtype2hdrlen = 0x3ff1f518 + 0x3ff1f4e8 hci_cmd_desc_root_tab = 0x3ff1f4e8 + 0x3ff1f47c hci_cmd_desc_tab_ctrl_bb = 0x3ff1f47c + 0x3ff1f44c hci_cmd_desc_tab_info_par = 0x3ff1f44c + 0x3ff1f0b0 hci_cmd_desc_tab_le = 0x3ff1f0b0 + 0x3ff1f098 hci_cmd_desc_tab_lk_ctrl = 0x3ff1f098 + 0x3ff1f08c hci_cmd_desc_tab_stat_par = 0x3ff1f08c + 0x3ff1f050 hci_cmd_desc_tab_vs = 0x3ff1f050 + 0x3ff1f008 hci_evt_desc_tab = 0x3ff1f008 + 0x3ff1ef68 hci_evt_le_desc_tab = 0x3ff1ef68 + 0x3ff1ef60 hci_evt_le_desc_tab_esp = 0x3ff1ef60 + 0x3ff1ef57 hci_rsvd_evt_msk = 0x3ff1ef57 + 0x3ff1ef54 lld_aux_phy_to_rate = 0x3ff1ef54 + 0x3ff1ef4c lld_init_max_aux_dur_tab = 0x3ff1ef4c + 0x3ff1ef44 lld_scan_map_legacy_pdu_to_evt_type = 0x3ff1ef44 + 0x3ff1ef3c lld_scan_max_aux_dur_tab = 0x3ff1ef3c + 0x3ff1ef34 lld_sync_max_aux_dur_tab = 0x3ff1ef34 + 0x3ff1ef2c llm_local_le_feats = 0x3ff1ef2c + 0x3ff1ef24 llm_local_le_states = 0x3ff1ef24 + 0x3ff1eefc llm_local_supp_cmds = 0x3ff1eefc + 0x3ff1eedc maxSecretKey_256 = 0x3ff1eedc + 0x3ff1eed4 max_data_tx_time = 0x3ff1eed4 + 0x3ff1eec3 one_bits = 0x3ff1eec3 + 0x3ff1eebe rwip_coex_cfg = 0x3ff1eebe + 0x3ff1eea8 rwip_priority = 0x3ff1eea8 + 0x3ff1ee5c veryBigHexP256 = 0x3ff1ee5c + 0x40005250 esp_pp_rom_version_get = 0x40005250 + 0x4000525c RC_GetBlockAckTime = 0x4000525c + 0x40005268 ebuf_list_remove = 0x40005268 + 0x40005298 GetAccess = 0x40005298 + 0x400052a4 hal_mac_is_low_rate_enabled = 0x400052a4 + 0x400052b0 hal_mac_tx_get_blockack = 0x400052b0 + 0x400052c8 ic_get_trc = 0x400052c8 + 0x400052ec ic_interface_enabled = 0x400052ec + 0x400052f8 is_lmac_idle = 0x400052f8 + 0x40005310 lmacDiscardAgedMSDU = 0x40005310 + 0x40005334 lmacIsIdle = 0x40005334 + 0x40005340 lmacIsLongFrame = 0x40005340 + 0x40005358 lmacPostTxComplete = 0x40005358 + 0x40005364 lmacProcessAllTxTimeout = 0x40005364 + 0x40005370 lmacProcessCollisions = 0x40005370 + 0x4000537c lmacProcessRxSucData = 0x4000537c + 0x40005388 lmacReachLongLimit = 0x40005388 + 0x40005394 lmacReachShortLimit = 0x40005394 + 0x400053a0 lmacRecycleMPDU = 0x400053a0 + 0x400053ac lmacRxDone = 0x400053ac + 0x400053dc mac_tx_set_duration = 0x400053dc + 0x400053f4 mac_tx_set_plcp0 = 0x400053f4 + 0x4000540c mac_tx_set_plcp2 = 0x4000540c + 0x40005424 pm_disable_dream_timer = 0x40005424 + 0x40005430 pm_disable_sleep_delay_timer = 0x40005430 + 0x40005448 pm_mac_wakeup = 0x40005448 + 0x40005454 pm_mac_sleep = 0x40005454 + 0x40005460 pm_enable_active_timer = 0x40005460 + 0x4000546c pm_enable_sleep_delay_timer = 0x4000546c + 0x40005478 pm_local_tsf_process = 0x40005478 + 0x40005484 //pm_set_beacon_filter = 0x40005484 + 0x4000549c pm_is_waked = 0x4000549c + 0x400054c0 pm_on_data_rx = 0x400054c0 + 0x400054cc pm_on_tbtt = 0x400054cc + 0x40005514 pm_sleep_for = 0x40005514 + 0x4000552c ppAMPDU2Normal = 0x4000552c + 0x40005544 ppCalFrameTimes = 0x40005544 + 0x40005550 ppCalSubFrameLength = 0x40005550 + 0x40005568 ppCheckTxAMPDUlength = 0x40005568 + 0x40005574 ppDequeueRxq_Locked = 0x40005574 + 0x40005580 ppDequeueTxQ = 0x40005580 + 0x4000558c ppEmptyDelimiterLength = 0x4000558c + 0x40005598 ppEnqueueRxq = 0x40005598 + 0x400055a4 ppEnqueueTxDone = 0x400055a4 + 0x400055b0 ppGetTxQFirstAvail_Locked = 0x400055b0 + 0x400055bc ppGetTxframe = 0x400055bc + 0x400055e0 ppProcessRxPktHdr = 0x400055e0 + 0x400055f8 ppRecordBarRRC = 0x400055f8 + 0x40005604 lmacRequestTxopQueue = 0x40005604 + 0x40005610 lmacReleaseTxopQueue = 0x40005610 + 0x4000561c ppRecycleAmpdu = 0x4000561c + 0x40005628 ppRecycleRxPkt = 0x40005628 + 0x40005634 ppResortTxAMPDU = 0x40005634 + 0x40005640 ppResumeTxAMPDU = 0x40005640 + 0x40005670 ppSearchTxQueue = 0x40005670 + 0x4000567c ppSearchTxframe = 0x4000567c + 0x40005688 ppSelectNextQueue = 0x40005688 + 0x40005694 ppSubFromAMPDU = 0x40005694 + 0x400056ac ppTxPkt = 0x400056ac + 0x400056b8 ppTxProtoProc = 0x400056b8 + 0x400056c4 ppTxqUpdateBitmap = 0x400056c4 + 0x400056dc pp_hdrsize = 0x400056dc + 0x400056e8 pp_post = 0x400056e8 + 0x400056f4 pp_process_hmac_waiting_txq = 0x400056f4 + 0x40005700 rcGetAmpduSched = 0x40005700 + 0x4000570c rcUpdateRxDone = 0x4000570c + 0x40005718 rc_get_trc = 0x40005718 + 0x40005724 rc_get_trc_by_index = 0x40005724 + 0x40005730 rcAmpduLowerRate = 0x40005730 + 0x4000573c rcampduuprate = 0x4000573c + 0x40005748 rcClearCurAMPDUSched = 0x40005748 + 0x40005754 rcClearCurSched = 0x40005754 + 0x40005760 rcClearCurStat = 0x40005760 + 0x40005778 rcLowerSched = 0x40005778 + 0x40005784 rcSetTxAmpduLimit = 0x40005784 + 0x4000579c rcUpdateAckSnr = 0x4000579c + 0x400057cc rcUpSched = 0x400057cc + 0x400057d8 rssi_margin = 0x400057d8 + 0x400057e4 rx11NRate2AMPDULimit = 0x400057e4 + 0x400057f0 TRC_AMPDU_PER_DOWN_THRESHOLD = 0x400057f0 + 0x400057fc TRC_AMPDU_PER_UP_THRESHOLD = 0x400057fc + 0x40005808 trc_calc_duration = 0x40005808 + 0x40005814 trc_isTxAmpduOperational = 0x40005814 + 0x40005820 trc_onAmpduOp = 0x40005820 + 0x4000582c TRC_PER_IS_GOOD = 0x4000582c + 0x40005838 trc_SetTxAmpduState = 0x40005838 + 0x40005844 trc_tid_isTxAmpduOperational = 0x40005844 + 0x40005850 trcAmpduSetState = 0x40005850 + 0x4000585c wDevCheckBlockError = 0x4000585c + 0x40005874 wDev_DiscardFrame = 0x40005874 + 0x40005880 wDev_GetNoiseFloor = 0x40005880 + 0x4000588c wDev_IndicateAmpdu = 0x4000588c + 0x400058a4 wdev_bank_store = 0x400058a4 + 0x400058b0 wdev_bank_load = 0x400058b0 + 0x400058bc wdev_mac_reg_load = 0x400058bc + 0x400058c8 wdev_mac_reg_store = 0x400058c8 + 0x400058d4 wdev_mac_special_reg_load = 0x400058d4 + 0x400058e0 wdev_mac_special_reg_store = 0x400058e0 + 0x400058ec wdev_mac_wakeup = 0x400058ec + 0x400058f8 wdev_mac_sleep = 0x400058f8 + 0x40005904 hal_mac_is_dma_enable = 0x40005904 + 0x40005928 wdevProcessRxSucDataAll = 0x40005928 + 0x40005934 wdev_csi_len_align = 0x40005934 + 0x40005940 ppDequeueTxDone_Locked = 0x40005940 + 0x40005964 config_is_cache_tx_buf_enabled = 0x40005964 + 0x40005970 //ppMapWaitTxq = 0x40005970 + 0x4000597c ppProcessWaitingQueue = 0x4000597c + 0x40005988 ppDisableQueue = 0x40005988 + 0x40005994 pm_allow_tx = 0x40005994 + 0x400059a0 wdev_is_data_in_rxlist = 0x400059a0 + 0x400059ac ppProcTxCallback = 0x400059ac + 0x3ff1ee58 our_instances_ptr = 0x3ff1ee58 + 0x3fcef954 pTxRx = 0x3fcef954 + 0x3fcef950 lmacConfMib_ptr = 0x3fcef950 + 0x3fcef94c our_wait_eb = 0x3fcef94c + 0x3fcef948 our_tx_eb = 0x3fcef948 + 0x3fcef944 pp_wdev_funcs = 0x3fcef944 + 0x3fcef940 g_osi_funcs_p = 0x3fcef940 + 0x3fcef93c wDevCtrl_ptr = 0x3fcef93c + 0x3ff1ee54 g_wdev_last_desc_reset_ptr = 0x3ff1ee54 + 0x3fcef938 wDevMacSleep_ptr = 0x3fcef938 + 0x3fcef934 g_lmac_cnt_ptr = 0x3fcef934 + 0x3ff1ee50 our_controls_ptr = 0x3ff1ee50 + 0x3fcef930 pp_sig_cnt_ptr = 0x3fcef930 + 0x3fcef92c g_eb_list_desc_ptr = 0x3fcef92c + 0x3fcef928 s_fragment_ptr = 0x3fcef928 + 0x3fcef924 if_ctrl_ptr = 0x3fcef924 + 0x3fcef920 g_intr_lock_mux = 0x3fcef920 + 0x3fcef91c g_wifi_global_lock = 0x3fcef91c + 0x3fcef918 s_wifi_queue = 0x3fcef918 + 0x3fcef914 pp_task_hdl = 0x3fcef914 + 0x3fcef910 s_pp_task_create_sem = 0x3fcef910 + 0x3fcef90c s_pp_task_del_sem = 0x3fcef90c + 0x3fcef908 g_wifi_menuconfig_ptr = 0x3fcef908 + 0x3fcef904 xphyQueue = 0x3fcef904 + 0x3fcef900 ap_no_lr_ptr = 0x3fcef900 + 0x3fcef8fc rc11BSchedTbl_ptr = 0x3fcef8fc + 0x3fcef8f8 rc11NSchedTbl_ptr = 0x3fcef8f8 + 0x3fcef8f4 rcLoRaSchedTbl_ptr = 0x3fcef8f4 + 0x3fcef8f0 BasicOFDMSched_ptr = 0x3fcef8f0 + 0x3fcef8ec trc_ctl_ptr = 0x3fcef8ec + 0x3fcef8e8 g_pm_cnt_ptr = 0x3fcef8e8 + 0x3fcef8e4 g_pm_ptr = 0x3fcef8e4 + 0x3fcef8e0 g_pm_cfg_ptr = 0x3fcef8e0 + 0x3fcef8dc g_esp_mesh_quick_funcs_ptr = 0x3fcef8dc + 0x3fcef8d8 g_txop_queue_status_ptr = 0x3fcef8d8 + 0x3fcef8d4 g_mac_sleep_en_ptr = 0x3fcef8d4 + 0x3fcef8d0 g_mesh_is_root_ptr = 0x3fcef8d0 + 0x3fcef8cc g_mesh_topology_ptr = 0x3fcef8cc + 0x3fcef8c8 g_mesh_init_ps_type_ptr = 0x3fcef8c8 + 0x3fcef8c4 g_mesh_is_started_ptr = 0x3fcef8c4 + 0x3fcef8c0 g_config_func = 0x3fcef8c0 + 0x3fcef8bc g_net80211_tx_func = 0x3fcef8bc + 0x3fcef8b8 g_timer_func = 0x3fcef8b8 + 0x3fcef8b4 s_michael_mic_failure_cb = 0x3fcef8b4 + 0x3fcef8b0 wifi_sta_rx_probe_req = 0x3fcef8b0 + 0x3fcef8ac g_tx_done_cb_func = 0x3fcef8ac + 0x3fcef860 g_per_conn_trc = 0x3fcef860 + 0x3fcef85c s_encap_amsdu_func = 0x3fcef85c + 0x400059b8 esp_net80211_rom_version_get = 0x400059b8 + 0x400059c4 ampdu_dispatch = 0x400059c4 + 0x400059d0 ampdu_dispatch_all = 0x400059d0 + 0x400059dc ampdu_dispatch_as_many_as_possible = 0x400059dc + 0x400059e8 ampdu_dispatch_movement = 0x400059e8 + 0x400059f4 ampdu_dispatch_upto = 0x400059f4 + 0x40005a00 chm_is_at_home_channel = 0x40005a00 + 0x40005a0c cnx_node_is_existing = 0x40005a0c + 0x40005a18 cnx_node_search = 0x40005a18 + 0x40005a24 ic_ebuf_recycle_rx = 0x40005a24 + 0x40005a30 ic_ebuf_recycle_tx = 0x40005a30 + 0x40005a3c ic_reset_rx_ba = 0x40005a3c + 0x40005a48 ieee80211_align_eb = 0x40005a48 + 0x40005a60 ieee80211_ampdu_start_age_timer = 0x40005a60 + 0x40005a78 ieee80211_is_tx_allowed = 0x40005a78 + 0x40005a84 ieee80211_output_pending_eb = 0x40005a84 + 0x40005a9c ieee80211_set_tx_desc = 0x40005a9c + 0x40005ab4 wifi_get_macaddr = 0x40005ab4 + 0x40005ac0 wifi_rf_phy_disable = 0x40005ac0 + 0x40005acc wifi_rf_phy_enable = 0x40005acc + 0x40005ad8 ic_ebuf_alloc = 0x40005ad8 + 0x40005af0 ieee80211_copy_eb_header = 0x40005af0 + 0x40005afc ieee80211_recycle_cache_eb = 0x40005afc + 0x40005b08 ieee80211_search_node = 0x40005b08 + 0x40005b14 roundup2 = 0x40005b14 + 0x40005b20 ieee80211_crypto_encap = 0x40005b20 + 0x40005b44 ieee80211_set_tx_pti = 0x40005b44 + 0x40005b50 wifi_is_started = 0x40005b50 + 0x40005b5c ieee80211_gettid = 0x40005b5c + 0x3fcef858 net80211_funcs = 0x3fcef858 + 0x3fcef854 g_scan = 0x3fcef854 + 0x3fcef850 g_chm = 0x3fcef850 + 0x3fcef84c g_ic_ptr = 0x3fcef84c + 0x3fcef848 g_hmac_cnt_ptr = 0x3fcef848 + 0x3fcef844 g_tx_cacheq_ptr = 0x3fcef844 + 0x3fcef840 s_netstack_free = 0x3fcef840 + 0x3fcef83c mesh_rxcb = 0x3fcef83c + 0x3fcef838 sta_rxcb = 0x3fcef838 + 0x40005b68 esp_coex_rom_version_get = 0x40005b68 + 0x40005b74 coex_bt_release = 0x40005b74 + 0x40005b80 coex_bt_request = 0x40005b80 + 0x40005b8c coex_core_ble_conn_dyn_prio_get = 0x40005b8c + 0x40005ba4 coex_core_pti_get = 0x40005ba4 + 0x40005bb0 coex_core_release = 0x40005bb0 + 0x40005bbc coex_core_request = 0x40005bbc + 0x40005bc8 coex_core_status_get = 0x40005bc8 + 0x40005be0 coex_event_duration_get = 0x40005be0 + 0x40005bec coex_hw_timer_disable = 0x40005bec + 0x40005bf8 coex_hw_timer_enable = 0x40005bf8 + 0x40005c04 coex_hw_timer_set = 0x40005c04 + 0x40005c10 coex_schm_interval_set = 0x40005c10 + 0x40005c1c coex_schm_lock = 0x40005c1c + 0x40005c28 coex_schm_unlock = 0x40005c28 + 0x40005c40 coex_wifi_release = 0x40005c40 + 0x40005c4c esp_coex_ble_conn_dynamic_prio_get = 0x40005c4c + 0x3fcef834 coex_env_ptr = 0x3fcef834 + 0x3fcef830 coex_pti_tab_ptr = 0x3fcef830 + 0x3fcef82c coex_schm_env_ptr = 0x3fcef82c + 0x3fcef828 coexist_funcs = 0x3fcef828 + 0x3fcef824 g_coa_funcs_p = 0x3fcef824 + 0x3fcef820 g_coex_param_ptr = 0x3fcef820 + 0x40005c58 phy_get_romfuncs = 0x40005c58 + 0x40005c64 rom_abs_temp = 0x40005c64 + 0x40005c70 rom_bb_bss_cbw40_dig = 0x40005c70 + 0x40005c7c rom_bb_wdg_test_en = 0x40005c7c + 0x40005c88 rom_bb_wdt_get_status = 0x40005c88 + 0x40005c94 rom_bb_wdt_int_enable = 0x40005c94 + 0x40005ca0 rom_bb_wdt_rst_enable = 0x40005ca0 + 0x40005cac rom_bb_wdt_timeout_clear = 0x40005cac + 0x40005cb8 rom_cbw2040_cfg = 0x40005cb8 + 0x40005cc4 rom_check_noise_floor = 0x40005cc4 + 0x40005cd0 rom_chip_i2c_readReg = 0x40005cd0 + 0x40005cdc rom_chip_i2c_writeReg = 0x40005cdc + 0x40005ce8 rom_dc_iq_est = 0x40005ce8 + 0x40005cf4 rom_disable_agc = 0x40005cf4 + 0x40005d00 rom_en_pwdet = 0x40005d00 + 0x40005d0c rom_enable_agc = 0x40005d0c + 0x40005d18 rom_get_bbgain_db = 0x40005d18 + 0x40005d24 rom_get_data_sat = 0x40005d24 + 0x40005d30 rom_get_i2c_read_mask = 0x40005d30 + 0x40005d3c rom_get_pwctrl_correct = 0x40005d3c + 0x40005d48 rom_i2c_readReg = 0x40005d48 + 0x40005d54 rom_i2c_readReg_Mask = 0x40005d54 + 0x40005d60 rom_i2c_writeReg = 0x40005d60 + 0x40005d6c rom_i2c_writeReg_Mask = 0x40005d6c + 0x40005d78 rom_index_to_txbbgain = 0x40005d78 + 0x40005d84 rom_iq_est_disable = 0x40005d84 + 0x40005d90 rom_iq_est_enable = 0x40005d90 + 0x40005d9c rom_linear_to_db = 0x40005d9c + 0x40005da8 rom_loopback_mode_en = 0x40005da8 + 0x40005db4 rom_mhz2ieee = 0x40005db4 + 0x40005dc0 rom_noise_floor_auto_set = 0x40005dc0 + 0x40005dcc rom_pbus_debugmode = 0x40005dcc + 0x40005dd8 rom_pbus_force_mode = 0x40005dd8 + 0x40005de4 rom_pbus_force_test = 0x40005de4 + 0x40005df0 rom_pbus_rd = 0x40005df0 + 0x40005dfc rom_pbus_rd_addr = 0x40005dfc + 0x40005e08 rom_pbus_rd_shift = 0x40005e08 + 0x40005e14 rom_pbus_set_dco = 0x40005e14 + 0x40005e20 rom_pbus_set_rxgain = 0x40005e20 + 0x40005e2c rom_pbus_workmode = 0x40005e2c + 0x40005e38 rom_pbus_xpd_rx_off = 0x40005e38 + 0x40005e44 rom_pbus_xpd_rx_on = 0x40005e44 + 0x40005e50 rom_pbus_xpd_tx_off = 0x40005e50 + 0x40005e5c rom_pbus_xpd_tx_on = 0x40005e5c + 0x40005e68 rom_phy_byte_to_word = 0x40005e68 + 0x40005e74 rom_phy_disable_cca = 0x40005e74 + 0x40005e80 rom_phy_enable_cca = 0x40005e80 + 0x40005e8c rom_phy_get_noisefloor = 0x40005e8c + 0x40005e98 rom_phy_get_rx_freq = 0x40005e98 + 0x40005ea4 rom_phy_set_bbfreq_init = 0x40005ea4 + 0x40005eb0 rom_pow_usr = 0x40005eb0 + 0x40005ebc rom_pwdet_sar2_init = 0x40005ebc + 0x40005ec8 rom_read_hw_noisefloor = 0x40005ec8 + 0x40005ed4 rom_read_sar_dout = 0x40005ed4 + 0x40005ee0 rom_set_cal_rxdc = 0x40005ee0 + 0x40005eec rom_set_chan_cal_interp = 0x40005eec + 0x40005ef8 rom_set_loopback_gain = 0x40005ef8 + 0x40005f04 rom_set_noise_floor = 0x40005f04 + 0x40005f10 rom_set_rxclk_en = 0x40005f10 + 0x40005f1c rom_set_tx_dig_gain = 0x40005f1c + 0x40005f28 rom_set_txcap_reg = 0x40005f28 + 0x40005f34 rom_set_txclk_en = 0x40005f34 + 0x40005f40 rom_spur_cal = 0x40005f40 + 0x40005f4c rom_spur_reg_write_one_tone = 0x40005f4c + 0x40005f58 rom_target_power_add_backoff = 0x40005f58 + 0x40005f64 rom_tx_pwctrl_bg_init = 0x40005f64 + 0x40005f70 rom_txbbgain_to_index = 0x40005f70 + 0x40005f7c rom_wifi_11g_rate_chg = 0x40005f7c + 0x40005f88 rom_write_gain_mem = 0x40005f88 + 0x40005f94 chip728_phyrom_version = 0x40005f94 + 0x40005fa0 rom_disable_wifi_agc = 0x40005fa0 + 0x40005fac rom_enable_wifi_agc = 0x40005fac + 0x40005fb8 rom_bt_index_to_bb = 0x40005fb8 + 0x40005fc4 rom_bt_bb_to_index = 0x40005fc4 + 0x40005fd0 rom_spur_coef_cfg = 0x40005fd0 + 0x40005fdc rom_bb_bss_cbw40 = 0x40005fdc + 0x40005fe8 rom_set_cca = 0x40005fe8 + 0x40005ff4 rom_tx_paon_set = 0x40005ff4 + 0x40006000 rom_i2cmst_reg_init = 0x40006000 + 0x4000600c rom_iq_corr_enable = 0x4000600c + 0x40006018 rom_fe_reg_init = 0x40006018 + 0x40006024 rom_agc_reg_init = 0x40006024 + 0x40006030 rom_bb_reg_init = 0x40006030 + 0x4000603c rom_mac_enable_bb = 0x4000603c + 0x40006048 rom_bb_wdg_cfg = 0x40006048 + 0x40006054 rom_force_txon = 0x40006054 + 0x40006060 rom_fe_txrx_reset = 0x40006060 + 0x4000606c rom_set_rx_comp = 0x4000606c + 0x40006078 rom_set_pbus_reg = 0x40006078 + 0x40006084 rom_write_chan_freq = 0x40006084 + 0x40006090 rom_phy_xpd_rf = 0x40006090 + 0x4000609c rom_set_xpd_sar = 0x4000609c + 0x400060a8 rom_get_target_power_offset = 0x400060a8 + 0x400060b4 rom_write_txrate_power_offset = 0x400060b4 + 0x400060c0 rom_get_rate_fcc_index = 0x400060c0 + 0x400060cc rom_get_rate_target_power = 0x400060cc + 0x400060d8 rom_pkdet_vol_start = 0x400060d8 + 0x400060e4 rom_read_sar2_code = 0x400060e4 + 0x400060f0 rom_get_sar2_vol = 0x400060f0 + 0x400060fc rom_get_pll_vol = 0x400060fc + 0x40006108 rom_get_phy_target_power = 0x40006108 + 0x40006114 rom_temp_to_power = 0x40006114 + 0x40006120 rom_phy_track_pll_cap = 0x40006120 + 0x4000612c rom_phy_pwdet_always_en = 0x4000612c + 0x40006138 rom_phy_pwdet_onetime_en = 0x40006138 + 0x40006144 rom_get_i2c_mst0_mask = 0x40006144 + 0x40006150 rom_get_i2c_hostid = 0x40006150 + 0x4000615c rom_enter_critical_phy = 0x4000615c + 0x40006168 rom_exit_critical_phy = 0x40006168 + 0x40006174 rom_chip_i2c_readReg_org = 0x40006174 + 0x40006180 rom_i2c_paral_set_mst0 = 0x40006180 + 0x4000618c rom_i2c_paral_set_read = 0x4000618c + 0x40006198 rom_i2c_paral_read = 0x40006198 + 0x400061a4 rom_i2c_paral_write = 0x400061a4 + 0x400061b0 rom_i2c_paral_write_num = 0x400061b0 + 0x400061bc rom_i2c_paral_write_mask = 0x400061bc + 0x400061c8 rom_bb_bss_cbw40_ana = 0x400061c8 + 0x400061d4 rom_chan_to_freq = 0x400061d4 + 0x400061e0 rom_open_i2c_xpd = 0x400061e0 + 0x400061ec rom_dac_rate_set = 0x400061ec + 0x400061f8 rom_tsens_read_init = 0x400061f8 + 0x40006204 rom_tsens_code_read = 0x40006204 + 0x40006210 rom_tsens_index_to_dac = 0x40006210 + 0x4000621c rom_tsens_index_to_offset = 0x4000621c + 0x40006228 rom_tsens_dac_cal = 0x40006228 + 0x40006234 rom_code_to_temp = 0x40006234 + 0x40006240 rom_write_pll_cap_mem = 0x40006240 + 0x4000624c rom_pll_correct_dcap = 0x4000624c + 0x40006258 rom_phy_en_hw_set_freq = 0x40006258 + 0x40006264 rom_phy_dis_hw_set_freq = 0x40006264 + 0x40006270 rom_pll_vol_cal = 0x40006270 + 0x4000627c rom_wrtie_pll_cap = 0x4000627c + 0x40006288 rom_set_tx_gain_mem = 0x40006288 + 0x40006294 rom_bt_tx_dig_gain = 0x40006294 + 0x400062a0 rom_bt_get_tx_gain = 0x400062a0 + 0x400062ac rom_get_chan_target_power = 0x400062ac + 0x400062b8 rom_get_tx_gain_value = 0x400062b8 + 0x400062c4 rom_wifi_tx_dig_gain = 0x400062c4 + 0x400062d0 rom_wifi_get_tx_gain = 0x400062d0 + 0x400062dc rom_fe_i2c_reg_renew = 0x400062dc + 0x400062e8 rom_wifi_agc_sat_gain = 0x400062e8 + 0x400062f4 rom_i2c_master_reset = 0x400062f4 + 0x40006300 rom_bt_filter_reg = 0x40006300 + 0x4000630c rom_phy_bbpll_cal = 0x4000630c + 0x40006318 rom_i2c_sar2_init_code = 0x40006318 + 0x40006324 rom_phy_param_addr = 0x40006324 + 0x40006330 rom_phy_reg_init = 0x40006330 + 0x4000633c rom_set_chan_reg = 0x4000633c + 0x40006348 rom_phy_wakeup_init = 0x40006348 + 0x40006354 rom_phy_i2c_init1 = 0x40006354 + 0x40006360 rom_tsens_temp_read = 0x40006360 + 0x4000636c rom_bt_track_pll_cap = 0x4000636c + 0x40006378 rom_wifi_track_pll_cap = 0x40006378 + 0x40006384 rom_wifi_set_tx_gain = 0x40006384 + 0x40006390 rom_txpwr_cal_track = 0x40006390 + 0x4000639c rom_tx_pwctrl_background = 0x4000639c + 0x400063a8 rom_bt_set_tx_gain = 0x400063a8 + 0x400063b4 rom_noise_check_loop = 0x400063b4 + 0x400063c0 rom_phy_close_rf = 0x400063c0 + 0x400063cc rom_phy_xpd_tsens = 0x400063cc + 0x400063d8 rom_phy_freq_mem_backup = 0x400063d8 + 0x400063e4 rom_phy_ant_init = 0x400063e4 + 0x400063f0 rom_bt_track_tx_power = 0x400063f0 + 0x400063fc rom_wifi_track_tx_power = 0x400063fc + 0x40006408 rom_phy_dig_reg_backup = 0x40006408 + 0x40006414 chip728_phyrom_version_num = 0x40006414 + 0x40006420 rom_mac_tx_chan_offset = 0x40006420 + 0x4000642c rom_rx_gain_force = 0x4000642c + 0x3fcef81c phy_param_rom = 0x3fcef81c + [!provide] PROVIDE (esp_rom_crc32_le = crc32_le) + [!provide] PROVIDE (esp_rom_crc16_le = crc16_le) + [!provide] PROVIDE (esp_rom_crc8_le = crc8_le) + [!provide] PROVIDE (esp_rom_crc32_be = crc32_be) + [!provide] PROVIDE (esp_rom_crc16_be = crc16_be) + [!provide] PROVIDE (esp_rom_crc8_be = crc8_be) + [!provide] PROVIDE (esp_rom_gpio_pad_select_gpio = rom_gpio_pad_select_gpio) + [!provide] PROVIDE (esp_rom_gpio_pad_pullup_only = rom_gpio_pad_pullup) + 0x40001b18 PROVIDE (esp_rom_gpio_pad_set_drv = rom_gpio_pad_set_drv) + [!provide] PROVIDE (esp_rom_gpio_pad_unhold = rom_gpio_pad_unhold) + 0x40001a94 PROVIDE (esp_rom_gpio_connect_in_signal = rom_gpio_matrix_in) + 0x40001aa0 PROVIDE (esp_rom_gpio_connect_out_signal = rom_gpio_matrix_out) + [!provide] PROVIDE (esp_rom_efuse_mac_address_crc8 = esp_crc8) + 0x40001f74 PROVIDE (esp_rom_efuse_get_flash_gpio_info = ets_efuse_get_spiconfig) + 0x40001fa4 PROVIDE (esp_rom_efuse_get_flash_wp_gpio = ets_efuse_get_wp_pad) + [!provide] PROVIDE (esp_rom_efuse_is_secure_boot_enabled = ets_efuse_secure_boot_enabled) + [!provide] PROVIDE (esp_rom_uart_flush_tx = uart_tx_flush) + [!provide] PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char) + [!provide] PROVIDE (esp_rom_uart_tx_wait_idle = uart_tx_wait_idle) + [!provide] PROVIDE (esp_rom_uart_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_uart_rx_string = UartRxString) + [!provide] PROVIDE (esp_rom_uart_set_as_console = uart_tx_switch) + [!provide] PROVIDE (esp_rom_uart_usb_acm_init = Uart_Init_USB) + [!provide] PROVIDE (esp_rom_uart_putc = ets_write_char_uart) + [!provide] PROVIDE (esp_rom_output_flush_tx = uart_tx_flush) + 0x40000648 PROVIDE (esp_rom_output_tx_one_char = uart_tx_one_char) + 0x4000069c PROVIDE (esp_rom_output_tx_wait_idle = uart_tx_wait_idle) + [!provide] PROVIDE (esp_rom_output_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_output_rx_string = UartRxString) + 0x400006c0 PROVIDE (esp_rom_output_set_as_console = uart_tx_switch) + [!provide] PROVIDE (esp_rom_output_usb_acm_init = Uart_Init_USB) + 0x400006b4 PROVIDE (esp_rom_output_putc = ets_write_char_uart) + [!provide] PROVIDE (esp_rom_md5_init = MD5Init) + [!provide] PROVIDE (esp_rom_md5_update = MD5Update) + [!provide] PROVIDE (esp_rom_md5_final = MD5Final) + 0x400006d8 PROVIDE (esp_rom_software_reset_system = software_reset) + 0x400006e4 PROVIDE (esp_rom_software_reset_cpu = software_reset_cpu) + 0x400005d0 PROVIDE (esp_rom_printf = ets_printf) + 0x40000600 PROVIDE (esp_rom_delay_us = ets_delay_us) + [!provide] PROVIDE (esp_rom_install_uart_printf = ets_install_uart_printf) + 0x4000057c PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason) + 0x40001b54 PROVIDE (esp_rom_route_intr_matrix = intr_matrix_set) + 0x40001a40 PROVIDE (esp_rom_get_cpu_ticks_per_us = ets_get_cpu_frequency) + 0x40001a4c PROVIDE (esp_rom_set_cpu_ticks_per_us = ets_update_cpu_frequency) + [!provide] PROVIDE (esp_rom_spiflash_attach = spi_flash_attach) + [!provide] PROVIDE (esp_rom_spiflash_clear_bp = esp_rom_spiflash_unlock) + 0x40000a44 PROVIDE (esp_rom_spiflash_write_enable = SPI_write_enable) + [!provide] PROVIDE (esp_rom_spiflash_erase_area = SPIEraseArea) + [!provide] PROVIDE (esp_rom_spiflash_fix_dummylen = spi_dummy_len_fix) + [!provide] PROVIDE (esp_rom_spiflash_set_drvs = SetSpiDrvs) + [!provide] PROVIDE (esp_rom_spiflash_select_padsfunc = SelectSpiFunction) + [!provide] PROVIDE (esp_rom_spiflash_common_cmd = SPI_Common_Command) + 0x40005d48 PROVIDE (esp_rom_regi2c_read = rom_i2c_readReg) + 0x40005d54 PROVIDE (esp_rom_regi2c_read_mask = rom_i2c_readReg_Mask) + 0x40005d60 PROVIDE (esp_rom_regi2c_write = rom_i2c_writeReg) + 0x40005d6c PROVIDE (esp_rom_regi2c_write_mask = rom_i2c_writeReg_Mask) + 0x4000216c __absvdi2 = 0x4000216c + 0x40002178 __absvsi2 = 0x40002178 + 0x40002184 __adddf3 = 0x40002184 + 0x40002190 __addsf3 = 0x40002190 + 0x4000219c __addvdi3 = 0x4000219c + 0x400021a8 __addvsi3 = 0x400021a8 + 0x400021b4 __ashldi3 = 0x400021b4 + 0x400021c0 __ashrdi3 = 0x400021c0 + 0x400021cc __bswapdi2 = 0x400021cc + 0x400021d8 __bswapsi2 = 0x400021d8 + 0x400021e4 __clear_cache = 0x400021e4 + 0x400021f0 __clrsbdi2 = 0x400021f0 + 0x400021fc __clrsbsi2 = 0x400021fc + 0x40002208 __clzdi2 = 0x40002208 + 0x40002214 __clzsi2 = 0x40002214 + 0x40002220 __cmpdi2 = 0x40002220 + 0x4000222c __ctzdi2 = 0x4000222c + 0x40002238 __ctzsi2 = 0x40002238 + 0x40002244 __divdc3 = 0x40002244 + 0x40002250 __divdf3 = 0x40002250 + 0x4000225c __divdi3 = 0x4000225c + 0x40002268 __divsc3 = 0x40002268 + 0x40002274 __divsf3 = 0x40002274 + 0x40002280 __divsi3 = 0x40002280 + 0x4000228c __eqdf2 = 0x4000228c + 0x40002298 __eqsf2 = 0x40002298 + 0x400022a4 __extendsfdf2 = 0x400022a4 + 0x400022b0 __ffsdi2 = 0x400022b0 + 0x400022bc __ffssi2 = 0x400022bc + 0x400022c8 __fixdfdi = 0x400022c8 + 0x400022d4 __fixdfsi = 0x400022d4 + 0x400022e0 __fixsfdi = 0x400022e0 + 0x400022ec __fixsfsi = 0x400022ec + 0x400022f8 __fixunsdfsi = 0x400022f8 + 0x40002304 __fixunssfdi = 0x40002304 + 0x40002310 __fixunssfsi = 0x40002310 + 0x4000231c __floatdidf = 0x4000231c + 0x40002328 __floatdisf = 0x40002328 + 0x40002334 __floatsidf = 0x40002334 + 0x40002340 __floatsisf = 0x40002340 + 0x4000234c __floatundidf = 0x4000234c + 0x40002358 __floatundisf = 0x40002358 + 0x40002364 __floatunsidf = 0x40002364 + 0x40002370 __floatunsisf = 0x40002370 + 0x4000237c __gcc_bcmp = 0x4000237c + 0x40002388 __gedf2 = 0x40002388 + 0x40002394 __gesf2 = 0x40002394 + 0x400023a0 __gtdf2 = 0x400023a0 + 0x400023ac __gtsf2 = 0x400023ac + 0x400023b8 __ledf2 = 0x400023b8 + 0x400023c4 __lesf2 = 0x400023c4 + 0x400023d0 __lshrdi3 = 0x400023d0 + 0x400023dc __ltdf2 = 0x400023dc + 0x400023e8 __ltsf2 = 0x400023e8 + 0x400023f4 __moddi3 = 0x400023f4 + 0x40002400 __modsi3 = 0x40002400 + 0x4000240c __muldc3 = 0x4000240c + 0x40002418 __muldf3 = 0x40002418 + 0x40002424 __muldi3 = 0x40002424 + 0x40002430 __mulsc3 = 0x40002430 + 0x4000243c __mulsf3 = 0x4000243c + 0x40002448 __mulsi3 = 0x40002448 + 0x40002454 __mulvdi3 = 0x40002454 + 0x40002460 __mulvsi3 = 0x40002460 + 0x4000246c __nedf2 = 0x4000246c + 0x40002478 __negdf2 = 0x40002478 + 0x40002484 __negdi2 = 0x40002484 + 0x40002490 __negsf2 = 0x40002490 + 0x4000249c __negvdi2 = 0x4000249c + 0x400024a8 __negvsi2 = 0x400024a8 + 0x400024b4 __nesf2 = 0x400024b4 + 0x400024c0 __paritysi2 = 0x400024c0 + 0x400024cc __popcountdi2 = 0x400024cc + 0x400024d8 __popcountsi2 = 0x400024d8 + 0x400024e4 __powidf2 = 0x400024e4 + 0x400024f0 __powisf2 = 0x400024f0 + 0x400024fc __subdf3 = 0x400024fc + 0x40002508 __subsf3 = 0x40002508 + 0x40002514 __subvdi3 = 0x40002514 + 0x40002520 __subvsi3 = 0x40002520 + 0x4000252c __truncdfsf2 = 0x4000252c + 0x40002538 __ucmpdi2 = 0x40002538 + 0x40002544 __udivdi3 = 0x40002544 + 0x40002550 __udivmoddi4 = 0x40002550 + 0x4000255c __udivsi3 = 0x4000255c + 0x40002568 __udiv_w_sdiv = 0x40002568 + 0x40002574 __umoddi3 = 0x40002574 + 0x40002580 __umodsi3 = 0x40002580 + 0x4000258c __unorddf2 = 0x4000258c + 0x40002598 __unordsf2 = 0x40002598 + [!provide] PROVIDE (atoi = 0x400014d0) + [!provide] PROVIDE (atol = 0x400014dc) + [!provide] PROVIDE (strdup = 0x40001380) + [!provide] PROVIDE (strndup = 0x400013ec) + [!provide] PROVIDE (rand_r = 0x40001494) + [!provide] PROVIDE (rand = 0x400014a0) + [!provide] PROVIDE (srand = 0x400014ac) + [!provide] PROVIDE (strtol = 0x400014e8) + [!provide] PROVIDE (strtoul = 0x400014f4) + [!provide] PROVIDE (longjmp = 0x40001440) + [!provide] PROVIDE (setjmp = 0x4000144c) + [!provide] PROVIDE (fflush = 0x40001500) + [!provide] PROVIDE (_fflush_r = 0x4000150c) + [!provide] PROVIDE (_fwalk = 0x40001518) + [!provide] PROVIDE (_fwalk_reent = 0x40001524) + [!provide] PROVIDE (__swbuf_r = 0x40001548) + 0x40001554 __swbuf = 0x40001554 + 0x40001314 toupper = 0x40001314 + 0x40001320 tolower = 0x40001320 + 0x40001284 isalnum = 0x40001284 + 0x40001290 isalpha = 0x40001290 + 0x400012c0 isdigit = 0x400012c0 + 0x400012cc islower = 0x400012cc + 0x400012fc isspace = 0x400012fc + 0x40001308 isupper = 0x40001308 + 0x4000135c strcasecmp = 0x4000135c + 0x400013a4 strcoll = 0x400013a4 + 0x400013c8 strlwr = 0x400013c8 + 0x400013d4 strncasecmp = 0x400013d4 + 0x40001434 strupr = 0x40001434 + 0x40001c80 hmac_md5_vector = 0x40001c80 + 0x40001c8c hmac_md5 = 0x40001c8c + 0x40000570 _rom_chip_id = 0x40000570 + 0x40000574 _rom_eco_version = 0x40000574 + 0x400011dc esp_rom_newlib_init_common_mutexes = 0x400011dc + 0x400011e8 memset = 0x400011e8 + 0x400011f4 memcpy = 0x400011f4 + 0x40001200 memmove = 0x40001200 + 0x4000120c memcmp = 0x4000120c + 0x40001218 strcpy = 0x40001218 + 0x40001224 strncpy = 0x40001224 + 0x40001230 strcmp = 0x40001230 + 0x4000123c strncmp = 0x4000123c + 0x40001248 strlen = 0x40001248 + 0x40001254 strstr = 0x40001254 + 0x40001260 bzero = 0x40001260 + 0x40001278 sbrk = 0x40001278 + 0x4000129c isascii = 0x4000129c + 0x400012a8 isblank = 0x400012a8 + 0x400012b4 iscntrl = 0x400012b4 + 0x400012d8 isgraph = 0x400012d8 + 0x400012e4 isprint = 0x400012e4 + 0x400012f0 ispunct = 0x400012f0 + 0x4000132c toascii = 0x4000132c + 0x40001338 memccpy = 0x40001338 + 0x40001344 memchr = 0x40001344 + 0x40001350 memrchr = 0x40001350 + 0x40001368 strcasestr = 0x40001368 + 0x40001374 strcat = 0x40001374 + 0x4000138c strchr = 0x4000138c + 0x40001398 strcspn = 0x40001398 + 0x400013b0 strlcat = 0x400013b0 + 0x400013bc strlcpy = 0x400013bc + 0x400013e0 strncat = 0x400013e0 + 0x400013f8 strnlen = 0x400013f8 + 0x40001404 strrchr = 0x40001404 + 0x40001410 strsep = 0x40001410 + 0x4000141c strspn = 0x4000141c + 0x40001428 strtok_r = 0x40001428 + 0x40001440 longjmp = 0x40001440 + 0x4000144c setjmp = 0x4000144c + 0x40001458 abs = 0x40001458 + 0x40001464 div = 0x40001464 + 0x40001470 labs = 0x40001470 + 0x4000147c ldiv = 0x4000147c + 0x40001488 qsort = 0x40001488 + 0x40001494 rand_r = 0x40001494 + 0x400014b8 utoa = 0x400014b8 + 0x400014c4 itoa = 0x400014c4 + 0x3fceffd4 syscall_table_ptr = 0x3fceffd4 + 0x3fceffd0 _global_impure_ptr = 0x3fceffd0 + 0x60000000 PROVIDE (UART0 = 0x60000000) + 0x60002000 PROVIDE (SPIMEM1 = 0x60002000) + 0x60003000 PROVIDE (SPIMEM0 = 0x60003000) + 0x60004000 PROVIDE (GPIO = 0x60004000) + [!provide] PROVIDE (SDM = 0x60004f00) + 0x60007000 PROVIDE (EFUSE = 0x60007000) + 0x60008000 PROVIDE (RTCCNTL = 0x60008000) + 0x60008400 PROVIDE (RTCIO = 0x60008400) + 0x60008800 PROVIDE (SENS = 0x60008800) + [!provide] PROVIDE (RTC_I2C = 0x60008c00) + [!provide] PROVIDE (HINF = 0x6000b000) + [!provide] PROVIDE (I2S0 = 0x6000f000) + [!provide] PROVIDE (I2S1 = 0x6002d000) + 0x60010000 PROVIDE (UART1 = 0x60010000) + [!provide] PROVIDE (I2C0 = 0x60013000) + [!provide] PROVIDE (UHCI0 = 0x60014000) + [!provide] PROVIDE (HOST = 0x60015000) + [!provide] PROVIDE (RMT = 0x60016000) + [!provide] PROVIDE (RMTMEM = 0x60016800) + [!provide] PROVIDE (PCNT = 0x60017000) + [!provide] PROVIDE (SLC = 0x60018000) + [!provide] PROVIDE (LEDC = 0x60019000) + [!provide] PROVIDE (MCPWM0 = 0x6001e000) + [!provide] PROVIDE (MCPWM1 = 0x6002c000) + [!provide] PROVIDE (MCP = 0x600c3000) + 0x6001f000 PROVIDE (TIMERG0 = 0x6001f000) + 0x60020000 PROVIDE (TIMERG1 = 0x60020000) + 0x60023000 PROVIDE (SYSTIMER = 0x60023000) + 0x60024000 PROVIDE (GPSPI2 = 0x60024000) + 0x60025000 PROVIDE (GPSPI3 = 0x60025000) + [!provide] PROVIDE (SYSCON = 0x60026000) + [!provide] PROVIDE (I2C1 = 0x60027000) + [!provide] PROVIDE (SDMMC = 0x60028000) + [!provide] PROVIDE (TWAI = 0x6002b000) + 0x6003f000 PROVIDE (GDMA = 0x6003f000) + 0x6002e000 PROVIDE (UART2 = 0x6002e000) + [!provide] PROVIDE (DMA = 0x6003f000) + 0x60040000 PROVIDE (APB_SARADC = 0x60040000) + [!provide] PROVIDE (LCD_CAM = 0x60041000) + 0x60038000 PROVIDE (USB_SERIAL_JTAG = 0x60038000) + [!provide] PROVIDE (USB0 = 0x60080000) + [!provide] PROVIDE (USB_DWC = 0x60080000) + [!provide] PROVIDE (USB_WRAP = 0x60039000) + [!provide] PROVIDE (WORLD_CONTROLLER = 0x600d0000) + 0x600c0000 PROVIDE (SYSTEM = 0x600c0000) +OUTPUT(zephyr/zephyr_pre0.elf elf32-xtensa-le) diff --git a/build/zephyr_modules.txt b/build/zephyr_modules.txt new file mode 100644 index 0000000..9f019b6 --- /dev/null +++ b/build/zephyr_modules.txt @@ -0,0 +1,64 @@ +"acpica":"/Users/wijnand/zephyrproject/modules/lib/acpica":"${ZEPHYR_ACPICA_CMAKE_DIR}" +"cmsis":"/Users/wijnand/zephyrproject/modules/hal/cmsis":"${ZEPHYR_CMSIS_CMAKE_DIR}" +"cmsis-dsp":"/Users/wijnand/zephyrproject/modules/lib/cmsis-dsp":"${ZEPHYR_CMSIS_DSP_CMAKE_DIR}" +"cmsis-nn":"/Users/wijnand/zephyrproject/modules/lib/cmsis-nn":"${ZEPHYR_CMSIS_NN_CMAKE_DIR}" +"cmsis_6":"/Users/wijnand/zephyrproject/modules/hal/cmsis_6":"${ZEPHYR_CMSIS_6_CMAKE_DIR}" +"dhara":"/Users/wijnand/zephyrproject/modules/lib/dhara":"${ZEPHYR_DHARA_CMAKE_DIR}" +"fatfs":"/Users/wijnand/zephyrproject/modules/fs/fatfs":"${ZEPHYR_FATFS_CMAKE_DIR}" +"adi":"/Users/wijnand/zephyrproject/modules/hal/adi":"/Users/wijnand/zephyrproject/modules/hal/adi" +"hal_afbr":"/Users/wijnand/zephyrproject/modules/hal/afbr":"${ZEPHYR_HAL_AFBR_CMAKE_DIR}" +"hal_ambiq":"/Users/wijnand/zephyrproject/modules/hal/ambiq":"/Users/wijnand/zephyrproject/modules/hal/ambiq" +"atmel":"/Users/wijnand/zephyrproject/modules/hal/atmel":"/Users/wijnand/zephyrproject/modules/hal/atmel" +"hal_bouffalolab":"/Users/wijnand/zephyrproject/modules/hal/bouffalolab":"${ZEPHYR_HAL_BOUFFALOLAB_CMAKE_DIR}" +"hal_espressif":"/Users/wijnand/zephyrproject/modules/hal/espressif":"${ZEPHYR_HAL_ESPRESSIF_CMAKE_DIR}" +"hal_ethos_u":"/Users/wijnand/zephyrproject/modules/hal/ethos_u":"${ZEPHYR_HAL_ETHOS_U_CMAKE_DIR}" +"hal_gigadevice":"/Users/wijnand/zephyrproject/modules/hal/gigadevice":"${ZEPHYR_HAL_GIGADEVICE_CMAKE_DIR}" +"hal_infineon":"/Users/wijnand/zephyrproject/modules/hal/infineon":"${ZEPHYR_HAL_INFINEON_CMAKE_DIR}" +"hal_intel":"/Users/wijnand/zephyrproject/modules/hal/intel":"/Users/wijnand/zephyrproject/modules/hal/intel/zephyr" +"microchip":"/Users/wijnand/zephyrproject/modules/hal/microchip":"/Users/wijnand/zephyrproject/modules/hal/microchip" +"hal_nordic":"/Users/wijnand/zephyrproject/modules/hal/nordic":"${ZEPHYR_HAL_NORDIC_CMAKE_DIR}" +"nuvoton":"/Users/wijnand/zephyrproject/modules/hal/nuvoton":"/Users/wijnand/zephyrproject/modules/hal/nuvoton" +"hal_nxp":"/Users/wijnand/zephyrproject/modules/hal/nxp":"${ZEPHYR_HAL_NXP_CMAKE_DIR}" +"openisa":"/Users/wijnand/zephyrproject/modules/hal/openisa":"/Users/wijnand/zephyrproject/modules/hal/openisa" +"quicklogic":"/Users/wijnand/zephyrproject/modules/hal/quicklogic":"/Users/wijnand/zephyrproject/modules/hal/quicklogic" +"hal_realtek":"/Users/wijnand/zephyrproject/modules/hal/realtek":"${ZEPHYR_HAL_REALTEK_CMAKE_DIR}" +"hal_renesas":"/Users/wijnand/zephyrproject/modules/hal/renesas":"/Users/wijnand/zephyrproject/modules/hal/renesas" +"hal_rpi_pico":"/Users/wijnand/zephyrproject/modules/hal/rpi_pico":"${ZEPHYR_HAL_RPI_PICO_CMAKE_DIR}" +"hal_sifli":"/Users/wijnand/zephyrproject/modules/hal/sifli":"${ZEPHYR_HAL_SIFLI_CMAKE_DIR}" +"hal_silabs":"/Users/wijnand/zephyrproject/modules/hal/silabs":"${ZEPHYR_HAL_SILABS_CMAKE_DIR}" +"hal_st":"/Users/wijnand/zephyrproject/modules/hal/st":"/Users/wijnand/zephyrproject/modules/hal/st" +"hal_stm32":"/Users/wijnand/zephyrproject/modules/hal/stm32":"/Users/wijnand/zephyrproject/modules/hal/stm32" +"hal_tdk":"/Users/wijnand/zephyrproject/modules/hal/tdk":"/Users/wijnand/zephyrproject/modules/hal/tdk" +"hal_telink":"/Users/wijnand/zephyrproject/modules/hal/telink":"/Users/wijnand/zephyrproject/modules/hal/telink" +"ti":"/Users/wijnand/zephyrproject/modules/hal/ti":"/Users/wijnand/zephyrproject/modules/hal/ti" +"hal_wch":"/Users/wijnand/zephyrproject/modules/hal/wch":"${ZEPHYR_HAL_WCH_CMAKE_DIR}" +"hal_wurthelektronik":"/Users/wijnand/zephyrproject/modules/hal/wurthelektronik":"/Users/wijnand/zephyrproject/modules/hal/wurthelektronik" +"xtensa":"/Users/wijnand/zephyrproject/modules/hal/xtensa":"/Users/wijnand/zephyrproject/modules/hal/xtensa" +"hostap":"/Users/wijnand/zephyrproject/modules/lib/hostap":"${ZEPHYR_HOSTAP_CMAKE_DIR}" +"liblc3":"/Users/wijnand/zephyrproject/modules/lib/liblc3":"${ZEPHYR_LIBLC3_CMAKE_DIR}" +"libmctp":"/Users/wijnand/zephyrproject/modules/lib/libmctp":"/Users/wijnand/zephyrproject/modules/lib/libmctp/zephyr" +"libmetal":"/Users/wijnand/zephyrproject/modules/hal/libmetal":"/Users/wijnand/zephyrproject/modules/hal/libmetal" +"libsbc":"/Users/wijnand/zephyrproject/modules/lib/libsbc":"${ZEPHYR_LIBSBC_CMAKE_DIR}" +"littlefs":"/Users/wijnand/zephyrproject/modules/fs/littlefs":"${ZEPHYR_LITTLEFS_CMAKE_DIR}" +"lora-basics-modem":"/Users/wijnand/zephyrproject/modules/lib/lora-basics-modem":"${ZEPHYR_LORA_BASICS_MODEM_CMAKE_DIR}" +"loramac-node":"/Users/wijnand/zephyrproject/modules/lib/loramac-node":"${ZEPHYR_LORAMAC_NODE_CMAKE_DIR}" +"lvgl":"/Users/wijnand/zephyrproject/modules/lib/gui/lvgl":"${ZEPHYR_LVGL_CMAKE_DIR}" +"mbedtls":"/Users/wijnand/zephyrproject/modules/crypto/mbedtls":"${ZEPHYR_MBEDTLS_CMAKE_DIR}" +"mbedtls-3.6":"/Users/wijnand/zephyrproject/modules/crypto/mbedtls-3.6":"" +"mcuboot":"/Users/wijnand/zephyrproject/bootloader/mcuboot":"/Users/wijnand/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr" +"mipi-sys-t":"/Users/wijnand/zephyrproject/modules/debug/mipi-sys-t":"/Users/wijnand/zephyrproject/modules/debug/mipi-sys-t" +"nanopb":"/Users/wijnand/zephyrproject/modules/lib/nanopb":"${ZEPHYR_NANOPB_CMAKE_DIR}" +"nrf_wifi":"/Users/wijnand/zephyrproject/modules/lib/nrf_wifi":"${ZEPHYR_NRF_WIFI_CMAKE_DIR}" +"open-amp":"/Users/wijnand/zephyrproject/modules/lib/open-amp":"/Users/wijnand/zephyrproject/modules/lib/open-amp" +"openthread":"/Users/wijnand/zephyrproject/modules/lib/openthread":"${ZEPHYR_OPENTHREAD_CMAKE_DIR}" +"percepio":"/Users/wijnand/zephyrproject/modules/debug/percepio":"${ZEPHYR_PERCEPIO_CMAKE_DIR}" +"picolibc":"/Users/wijnand/zephyrproject/modules/lib/picolibc":"/Users/wijnand/zephyrproject/modules/lib/picolibc" +"psa-arch-tests":"/Users/wijnand/zephyrproject/modules/tee/tf-m/psa-arch-tests":"" +"segger":"/Users/wijnand/zephyrproject/modules/debug/segger":"${ZEPHYR_SEGGER_CMAKE_DIR}" +"tf-m-tests":"/Users/wijnand/zephyrproject/modules/tee/tf-m/tf-m-tests":"" +"tf-psa-crypto":"/Users/wijnand/zephyrproject/modules/crypto/mbedtls/tf-psa-crypto":"" +"trusted-firmware-a":"/Users/wijnand/zephyrproject/modules/tee/tf-a/trusted-firmware-a":"${ZEPHYR_TRUSTED_FIRMWARE_A_CMAKE_DIR}" +"trusted-firmware-m":"/Users/wijnand/zephyrproject/modules/tee/tf-m/trusted-firmware-m":"${ZEPHYR_TRUSTED_FIRMWARE_M_CMAKE_DIR}" +"uoscore-uedhoc":"/Users/wijnand/zephyrproject/modules/lib/uoscore-uedhoc":"${ZEPHYR_UOSCORE_UEDHOC_CMAKE_DIR}" +"zcbor":"/Users/wijnand/zephyrproject/modules/lib/zcbor":"${ZEPHYR_ZCBOR_CMAKE_DIR}" +"nrf_hw_models":"/Users/wijnand/zephyrproject/modules/bsim_hw_models/nrf_hw_models":"/Users/wijnand/zephyrproject/modules/bsim_hw_models/nrf_hw_models" diff --git a/build/zephyr_settings.txt b/build/zephyr_settings.txt new file mode 100644 index 0000000..886b02e --- /dev/null +++ b/build/zephyr_settings.txt @@ -0,0 +1,19 @@ +# WARNING. THIS FILE IS AUTO-GENERATED. DO NOT MODIFY! +# +# This file contains build system settings derived from your modules. +# +# Modules may be set via ZEPHYR_MODULES, ZEPHYR_EXTRA_MODULES, +# and/or the west manifest file. +# +# See the Modules guide for more information. +"DTS_ROOT":"/Users/wijnand/zephyrproject/modules/hal/adi" +"DTS_ROOT":"/Users/wijnand/zephyrproject/modules/hal/ambiq" +"DTS_ROOT":"/Users/wijnand/zephyrproject/modules/hal/atmel" +"DTS_ROOT":"/Users/wijnand/zephyrproject/modules/hal/bouffalolab" +"DTS_ROOT":"/Users/wijnand/zephyrproject/modules/hal/espressif" +"DTS_ROOT":"/Users/wijnand/zephyrproject/modules/hal/gigadevice" +"DTS_ROOT":"/Users/wijnand/zephyrproject/modules/hal/microchip" +"DTS_ROOT":"/Users/wijnand/zephyrproject/modules/hal/nuvoton" +"DTS_ROOT":"/Users/wijnand/zephyrproject/modules/hal/nxp" +"DTS_ROOT":"/Users/wijnand/zephyrproject/modules/hal/stm32" +"DTS_ROOT":"/Users/wijnand/zephyrproject/modules/hal/ti" diff --git a/drivers/lora/lr11xx/zephyr/module.yml b/drivers/lora/lr11xx/zephyr/module.yml new file mode 100644 index 0000000..5f710d7 --- /dev/null +++ b/drivers/lora/lr11xx/zephyr/module.yml @@ -0,0 +1,4 @@ +name: lr11xx +type: module +build: + kconfig: Kconfig